blob: 2121d2075e6aaef3e07b437bed244633cbdaf02a [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 Coras83ea6692018-10-12 16:55:14 -070085mq_try_lock_and_alloc_msg (svm_msg_q_t * app_mq, svm_msg_q_msg_t * msg)
86{
87 int rv;
88 u8 try = 0;
89 while (try < 100)
90 {
91 rv = svm_msg_q_lock_and_alloc_msg_w_ring (app_mq,
92 SESSION_MQ_CTRL_EVT_RING,
93 SVM_Q_NOWAIT, msg);
94 if (!rv)
95 return 0;
liuyacan9609e262021-07-24 14:30:51 +080096 /*
97 * Break the loop if mq is full, usually this is because the
98 * app has crashed or is hanging on somewhere.
99 */
100 if (rv != -1)
101 break;
Florin Coras83ea6692018-10-12 16:55:14 -0700102 try++;
Florin Corase2ea1932018-12-17 23:08:14 -0800103 usleep (1);
Florin Coras83ea6692018-10-12 16:55:14 -0700104 }
Florin Corasdc2e2512018-12-03 17:47:26 -0800105 clib_warning ("failed to alloc msg");
Florin Coras83ea6692018-10-12 16:55:14 -0700106 return -1;
107}
108
109static int
Florin Coras288eaab2019-02-03 15:26:14 -0800110mq_send_session_accepted_cb (session_t * s)
Florin Coras52207f12018-07-12 14:48:06 -0700111{
Florin Coras15531972018-08-12 23:50:53 -0700112 app_worker_t *app_wrk = app_worker_get (s->app_wrk_index);
Florin Coras52207f12018-07-12 14:48:06 -0700113 svm_msg_q_msg_t _msg, *msg = &_msg;
Florin Coras09bf91a2021-02-23 08:44:13 -0800114 session_accepted_msg_t m = { 0 };
Florin Corasb4624182020-12-11 13:58:12 -0800115 svm_msg_q_t *app_mq;
116 fifo_segment_t *eq_seg;
Florin Coras288eaab2019-02-03 15:26:14 -0800117 session_t *listener;
Florin Coras52207f12018-07-12 14:48:06 -0700118 session_event_t *evt;
Florin Coras15531972018-08-12 23:50:53 -0700119 application_t *app;
Florin Coras52207f12018-07-12 14:48:06 -0700120
Florin Coras15531972018-08-12 23:50:53 -0700121 app = application_get (app_wrk->app_index);
Florin Coras52207f12018-07-12 14:48:06 -0700122
Florin Coras09bf91a2021-02-23 08:44:13 -0800123 m.context = app->app_index;
124 m.server_rx_fifo = fifo_segment_fifo_offset (s->rx_fifo);
125 m.server_tx_fifo = fifo_segment_fifo_offset (s->tx_fifo);
126 m.segment_handle = session_segment_handle (s);
127 m.flags = s->flags;
Florin Coras52207f12018-07-12 14:48:06 -0700128
Florin Coras41d5f542021-01-15 13:49:33 -0800129 eq_seg = application_get_rx_mqs_segment (app);
Florin Corasb4624182020-12-11 13:58:12 -0800130
Florin Coras52207f12018-07-12 14:48:06 -0700131 if (session_has_transport (s))
132 {
Nathan Skrzypczak2f0f96b2019-06-13 10:14:28 +0200133 listener = listen_session_get_from_handle (s->listener_handle);
Florin Coras09bf91a2021-02-23 08:44:13 -0800134 m.listener_handle = app_listen_session_handle (listener);
Florin Coras52207f12018-07-12 14:48:06 -0700135 if (application_is_proxy (app))
136 {
137 listener =
Florin Coras15531972018-08-12 23:50:53 -0700138 app_worker_first_listener (app_wrk, session_get_fib_proto (s),
139 session_get_transport_proto (s));
Florin Coras52207f12018-07-12 14:48:06 -0700140 if (listener)
Florin Coras09bf91a2021-02-23 08:44:13 -0800141 m.listener_handle = listen_session_get_handle (listener);
Florin Coras52207f12018-07-12 14:48:06 -0700142 }
Florin Coras09bf91a2021-02-23 08:44:13 -0800143 m.vpp_event_queue_address =
Florin Corasb4624182020-12-11 13:58:12 -0800144 fifo_segment_msg_q_offset (eq_seg, s->thread_index);
Florin Coras09bf91a2021-02-23 08:44:13 -0800145 m.mq_index = s->thread_index;
146 m.handle = session_handle (s);
Aloys Augustincdb71702019-04-08 17:54:39 +0200147
Florin Coras09bf91a2021-02-23 08:44:13 -0800148 session_get_endpoint (s, &m.rmt, 0 /* is_lcl */);
Florin Coras67c90a32021-03-09 18:36:06 -0800149 session_get_endpoint (s, &m.lcl, 1 /* is_lcl */);
Florin Coras52207f12018-07-12 14:48:06 -0700150 }
151 else
152 {
Florin Coras2b81e3c2019-02-27 07:55:46 -0800153 ct_connection_t *ct;
Florin Coras99368312018-08-02 10:45:44 -0700154
Florin Coras2b81e3c2019-02-27 07:55:46 -0800155 ct = (ct_connection_t *) session_get_transport (s);
Nathan Skrzypczak2f0f96b2019-06-13 10:14:28 +0200156 listener = listen_session_get_from_handle (s->listener_handle);
Florin Coras09bf91a2021-02-23 08:44:13 -0800157 m.listener_handle = app_listen_session_handle (listener);
158 m.rmt.is_ip4 = session_type_is_ip4 (listener->session_type);
159 m.rmt.port = ct->c_rmt_port;
Florin Coras67c90a32021-03-09 18:36:06 -0800160 m.lcl.port = ct->c_lcl_port;
Florin Coras09bf91a2021-02-23 08:44:13 -0800161 m.handle = session_handle (s);
162 m.vpp_event_queue_address =
Florin Corasb4624182020-12-11 13:58:12 -0800163 fifo_segment_msg_q_offset (eq_seg, s->thread_index);
Florin Coras09bf91a2021-02-23 08:44:13 -0800164 m.mq_index = s->thread_index;
Florin Coras52207f12018-07-12 14:48:06 -0700165 }
Florin Coras09bf91a2021-02-23 08:44:13 -0800166
167 app_mq = app_wrk->event_queue;
168 if (mq_try_lock_and_alloc_msg (app_mq, msg))
169 return SESSION_E_MQ_MSG_ALLOC;
170
171 evt = svm_msg_q_msg_data (app_mq, msg);
172 clib_memset (evt, 0, sizeof (*evt));
173 evt->event_type = SESSION_CTRL_EVT_ACCEPTED;
174 clib_memcpy_fast (evt->data, &m, sizeof (m));
Florin Coras537b17e2018-09-28 10:35:45 -0700175 svm_msg_q_add_and_unlock (app_mq, msg);
Florin Coras52207f12018-07-12 14:48:06 -0700176
177 return 0;
178}
179
Florin Coras72b04282019-01-14 17:23:11 -0800180static inline void
181mq_send_session_close_evt (app_worker_t * app_wrk, session_handle_t sh,
182 session_evt_type_t evt_type)
Florin Coras52207f12018-07-12 14:48:06 -0700183{
Florin Coras52207f12018-07-12 14:48:06 -0700184 svm_msg_q_msg_t _msg, *msg = &_msg;
185 session_disconnected_msg_t *mp;
186 svm_msg_q_t *app_mq;
187 session_event_t *evt;
188
Florin Coras15531972018-08-12 23:50:53 -0700189 app_mq = app_wrk->event_queue;
Florin Coras83ea6692018-10-12 16:55:14 -0700190 if (mq_try_lock_and_alloc_msg (app_mq, msg))
191 return;
Florin Coras52207f12018-07-12 14:48:06 -0700192 evt = svm_msg_q_msg_data (app_mq, msg);
Dave Barachb7b92992018-10-17 10:38:51 -0400193 clib_memset (evt, 0, sizeof (*evt));
Florin Coras72b04282019-01-14 17:23:11 -0800194 evt->event_type = evt_type;
Florin Coras52207f12018-07-12 14:48:06 -0700195 mp = (session_disconnected_msg_t *) evt->data;
Florin Coras72b04282019-01-14 17:23:11 -0800196 mp->handle = sh;
Florin Corasc1f5a432018-11-20 11:31:26 -0800197 mp->context = app_wrk->api_client_index;
Florin Coras537b17e2018-09-28 10:35:45 -0700198 svm_msg_q_add_and_unlock (app_mq, msg);
Florin Coras52207f12018-07-12 14:48:06 -0700199}
200
Florin Coras72b04282019-01-14 17:23:11 -0800201static inline void
202mq_notify_close_subscribers (u32 app_index, session_handle_t sh,
203 svm_fifo_t * f, session_evt_type_t evt_type)
204{
205 app_worker_t *app_wrk;
206 application_t *app;
207 int i;
208
209 app = application_get (app_index);
210 if (!app)
211 return;
212
Florin Corasc547e912020-12-08 17:50:45 -0800213 for (i = 0; i < f->shr->n_subscribers; i++)
Florin Coras72b04282019-01-14 17:23:11 -0800214 {
Florin Corasc547e912020-12-08 17:50:45 -0800215 if (!(app_wrk = application_get_worker (app, f->shr->subscribers[i])))
Florin Coras72b04282019-01-14 17:23:11 -0800216 continue;
217 mq_send_session_close_evt (app_wrk, sh, SESSION_CTRL_EVT_DISCONNECTED);
218 }
219}
220
221static void
Florin Coras288eaab2019-02-03 15:26:14 -0800222mq_send_session_disconnected_cb (session_t * s)
Florin Coras72b04282019-01-14 17:23:11 -0800223{
224 app_worker_t *app_wrk = app_worker_get (s->app_wrk_index);
225 session_handle_t sh = session_handle (s);
226
227 mq_send_session_close_evt (app_wrk, session_handle (s),
228 SESSION_CTRL_EVT_DISCONNECTED);
229
Florin Coras288eaab2019-02-03 15:26:14 -0800230 if (svm_fifo_n_subscribers (s->rx_fifo))
231 mq_notify_close_subscribers (app_wrk->app_index, sh, s->rx_fifo,
Florin Coras72b04282019-01-14 17:23:11 -0800232 SESSION_CTRL_EVT_DISCONNECTED);
233}
234
Florin Coras52207f12018-07-12 14:48:06 -0700235static void
Florin Coras288eaab2019-02-03 15:26:14 -0800236mq_send_session_reset_cb (session_t * s)
Florin Coras52207f12018-07-12 14:48:06 -0700237{
Florin Coras72b04282019-01-14 17:23:11 -0800238 app_worker_t *app_wrk = app_worker_get (s->app_wrk_index);
239 session_handle_t sh = session_handle (s);
Florin Coras52207f12018-07-12 14:48:06 -0700240
Florin Coras72b04282019-01-14 17:23:11 -0800241 mq_send_session_close_evt (app_wrk, sh, SESSION_CTRL_EVT_RESET);
242
Florin Coras288eaab2019-02-03 15:26:14 -0800243 if (svm_fifo_n_subscribers (s->rx_fifo))
244 mq_notify_close_subscribers (app_wrk->app_index, sh, s->rx_fifo,
Florin Coras72b04282019-01-14 17:23:11 -0800245 SESSION_CTRL_EVT_RESET);
Florin Coras52207f12018-07-12 14:48:06 -0700246}
247
Florin Coras458089b2019-08-21 16:20:44 -0700248int
Florin Coras15531972018-08-12 23:50:53 -0700249mq_send_session_connected_cb (u32 app_wrk_index, u32 api_context,
Florin Coras00e01d32019-10-21 16:07:46 -0700250 session_t * s, session_error_t err)
Florin Coras52207f12018-07-12 14:48:06 -0700251{
252 svm_msg_q_msg_t _msg, *msg = &_msg;
Florin Coras09bf91a2021-02-23 08:44:13 -0800253 session_connected_msg_t m = { 0 };
Florin Corasb4624182020-12-11 13:58:12 -0800254 svm_msg_q_t *app_mq;
Florin Coras52207f12018-07-12 14:48:06 -0700255 transport_connection_t *tc;
Florin Corasb4624182020-12-11 13:58:12 -0800256 fifo_segment_t *eq_seg;
Florin Coras15531972018-08-12 23:50:53 -0700257 app_worker_t *app_wrk;
Florin Coras52207f12018-07-12 14:48:06 -0700258 session_event_t *evt;
Florin Coras41d5f542021-01-15 13:49:33 -0800259 application_t *app;
260
261 app_wrk = app_worker_get (app_wrk_index);
Florin Coras52207f12018-07-12 14:48:06 -0700262
Florin Coras09bf91a2021-02-23 08:44:13 -0800263 m.context = api_context;
264 m.retval = err;
Florin Coras52207f12018-07-12 14:48:06 -0700265
Florin Coras00e01d32019-10-21 16:07:46 -0700266 if (err)
Florin Coras09bf91a2021-02-23 08:44:13 -0800267 goto snd_msg;
Florin Coras52207f12018-07-12 14:48:06 -0700268
Florin Coras41d5f542021-01-15 13:49:33 -0800269 app = application_get (app_wrk->app_index);
270 eq_seg = application_get_rx_mqs_segment (app);
Florin Corasb4624182020-12-11 13:58:12 -0800271
Florin Coras52207f12018-07-12 14:48:06 -0700272 if (session_has_transport (s))
273 {
274 tc = session_get_transport (s);
275 if (!tc)
276 {
Florin Coras00e01d32019-10-21 16:07:46 -0700277 clib_warning ("failed to retrieve transport!");
Florin Coras09bf91a2021-02-23 08:44:13 -0800278 m.retval = SESSION_E_REFUSED;
279 goto snd_msg;
Florin Coras52207f12018-07-12 14:48:06 -0700280 }
281
Florin Coras09bf91a2021-02-23 08:44:13 -0800282 m.handle = session_handle (s);
283 m.vpp_event_queue_address =
Florin Corasb4624182020-12-11 13:58:12 -0800284 fifo_segment_msg_q_offset (eq_seg, s->thread_index);
Aloys Augustincdb71702019-04-08 17:54:39 +0200285
Florin Coras09bf91a2021-02-23 08:44:13 -0800286 session_get_endpoint (s, &m.lcl, 1 /* is_lcl */);
Aloys Augustincdb71702019-04-08 17:54:39 +0200287
Florin Coras09bf91a2021-02-23 08:44:13 -0800288 m.server_rx_fifo = fifo_segment_fifo_offset (s->rx_fifo);
289 m.server_tx_fifo = fifo_segment_fifo_offset (s->tx_fifo);
290 m.segment_handle = session_segment_handle (s);
Florin Corasf6e284b2021-07-21 18:17:20 -0700291 m.mq_index = s->thread_index;
Florin Coras52207f12018-07-12 14:48:06 -0700292 }
293 else
294 {
Florin Coras2b81e3c2019-02-27 07:55:46 -0800295 ct_connection_t *cct;
296 session_t *ss;
Florin Coras99368312018-08-02 10:45:44 -0700297
Florin Coras2b81e3c2019-02-27 07:55:46 -0800298 cct = (ct_connection_t *) session_get_transport (s);
Florin Coras09bf91a2021-02-23 08:44:13 -0800299 m.handle = session_handle (s);
300 m.lcl.port = cct->c_lcl_port;
301 m.lcl.is_ip4 = cct->c_is_ip4;
302 m.vpp_event_queue_address =
Florin Corasb4624182020-12-11 13:58:12 -0800303 fifo_segment_msg_q_offset (eq_seg, s->thread_index);
Florin Coras09bf91a2021-02-23 08:44:13 -0800304 m.server_rx_fifo = fifo_segment_fifo_offset (s->rx_fifo);
305 m.server_tx_fifo = fifo_segment_fifo_offset (s->tx_fifo);
306 m.segment_handle = session_segment_handle (s);
Florin Coras2b81e3c2019-02-27 07:55:46 -0800307 ss = ct_session_get_peer (s);
Florin Coras09bf91a2021-02-23 08:44:13 -0800308 m.ct_rx_fifo = fifo_segment_fifo_offset (ss->tx_fifo);
309 m.ct_tx_fifo = fifo_segment_fifo_offset (ss->rx_fifo);
310 m.ct_segment_handle = session_segment_handle (ss);
Florin Corasf6e284b2021-07-21 18:17:20 -0700311 m.mq_index = s->thread_index;
Florin Coras52207f12018-07-12 14:48:06 -0700312 }
313
Florin Coras893bc972021-04-23 08:58:57 -0700314 /* Setup client session index in advance, in case data arrives
315 * before the app processes message and updates it */
316 s->rx_fifo->shr->client_session_index = api_context;
317 s->tx_fifo->shr->client_session_index = api_context;
318
Florin Coras09bf91a2021-02-23 08:44:13 -0800319snd_msg:
320
Florin Coras09bf91a2021-02-23 08:44:13 -0800321 app_mq = app_wrk->event_queue;
322
323 if (mq_try_lock_and_alloc_msg (app_mq, msg))
324 return SESSION_E_MQ_MSG_ALLOC;
325
326 evt = svm_msg_q_msg_data (app_mq, msg);
327 clib_memset (evt, 0, sizeof (*evt));
328 evt->event_type = SESSION_CTRL_EVT_CONNECTED;
329 clib_memcpy_fast (evt->data, &m, sizeof (m));
Florin Coras52207f12018-07-12 14:48:06 -0700330
Florin Coras537b17e2018-09-28 10:35:45 -0700331 svm_msg_q_add_and_unlock (app_mq, msg);
Florin Coras52207f12018-07-12 14:48:06 -0700332 return 0;
333}
334
Florin Coras458089b2019-08-21 16:20:44 -0700335int
Florin Coras60116992018-08-27 09:52:18 -0700336mq_send_session_bound_cb (u32 app_wrk_index, u32 api_context,
337 session_handle_t handle, int rv)
338{
339 svm_msg_q_msg_t _msg, *msg = &_msg;
Florin Coras09bf91a2021-02-23 08:44:13 -0800340 session_bound_msg_t m = { 0 };
Florin Corasb4624182020-12-11 13:58:12 -0800341 svm_msg_q_t *app_mq;
Yu Ping0b819152019-05-07 02:24:30 +0800342 transport_endpoint_t tep;
Florin Corasb4624182020-12-11 13:58:12 -0800343 fifo_segment_t *eq_seg;
Florin Coras60116992018-08-27 09:52:18 -0700344 app_worker_t *app_wrk;
345 session_event_t *evt;
Florin Coras41d5f542021-01-15 13:49:33 -0800346 application_t *app;
Florin Corasc9940fc2019-02-05 20:55:11 -0800347 app_listener_t *al;
348 session_t *ls = 0;
Florin Coras09bf91a2021-02-23 08:44:13 -0800349
Florin Coras41d5f542021-01-15 13:49:33 -0800350 app_wrk = app_worker_get (app_wrk_index);
351
Florin Coras09bf91a2021-02-23 08:44:13 -0800352 m.context = api_context;
353 m.retval = rv;
354
355 if (rv)
356 goto snd_msg;
357
358 m.handle = handle;
359 al = app_listener_get_w_handle (handle);
360 if (al->session_index != SESSION_INVALID_INDEX)
361 ls = app_listener_get_session (al);
362 else
363 ls = app_listener_get_local_session (al);
364
365 session_get_endpoint (ls, &tep, 1 /* is_lcl */);
366 m.lcl_port = tep.port;
367 m.lcl_is_ip4 = tep.is_ip4;
368 clib_memcpy_fast (m.lcl_ip, &tep.ip, sizeof (tep.ip));
Florin Coras41d5f542021-01-15 13:49:33 -0800369 app = application_get (app_wrk->app_index);
370 eq_seg = application_get_rx_mqs_segment (app);
Florin Coras09bf91a2021-02-23 08:44:13 -0800371 m.vpp_evt_q = fifo_segment_msg_q_offset (eq_seg, ls->thread_index);
Florin Corasf6e284b2021-07-21 18:17:20 -0700372 m.mq_index = ls->thread_index;
Florin Coras09bf91a2021-02-23 08:44:13 -0800373
Florin Coras8694fbc2021-03-10 00:21:02 -0800374 if (session_transport_service_type (ls) == TRANSPORT_SERVICE_CL &&
375 ls->rx_fifo)
Florin Coras09bf91a2021-02-23 08:44:13 -0800376 {
377 m.rx_fifo = fifo_segment_fifo_offset (ls->rx_fifo);
378 m.tx_fifo = fifo_segment_fifo_offset (ls->tx_fifo);
379 m.segment_handle = session_segment_handle (ls);
380 }
381
382snd_msg:
383
Florin Coras60116992018-08-27 09:52:18 -0700384 app_mq = app_wrk->event_queue;
Florin Coras60116992018-08-27 09:52:18 -0700385
Florin Coras83ea6692018-10-12 16:55:14 -0700386 if (mq_try_lock_and_alloc_msg (app_mq, msg))
Florin Coras00e01d32019-10-21 16:07:46 -0700387 return SESSION_E_MQ_MSG_ALLOC;
Florin Coras83ea6692018-10-12 16:55:14 -0700388
Florin Coras60116992018-08-27 09:52:18 -0700389 evt = svm_msg_q_msg_data (app_mq, msg);
Dave Barachb7b92992018-10-17 10:38:51 -0400390 clib_memset (evt, 0, sizeof (*evt));
Florin Coras60116992018-08-27 09:52:18 -0700391 evt->event_type = SESSION_CTRL_EVT_BOUND;
Florin Coras09bf91a2021-02-23 08:44:13 -0800392 clib_memcpy_fast (evt->data, &m, sizeof (m));
Florin Coras60116992018-08-27 09:52:18 -0700393
Florin Coras537b17e2018-09-28 10:35:45 -0700394 svm_msg_q_add_and_unlock (app_mq, msg);
Florin Coras60116992018-08-27 09:52:18 -0700395 return 0;
396}
397
Florin Coras458089b2019-08-21 16:20:44 -0700398void
399mq_send_unlisten_reply (app_worker_t * app_wrk, session_handle_t sh,
400 u32 context, int rv)
401{
402 svm_msg_q_msg_t _msg, *msg = &_msg;
403 session_unlisten_reply_msg_t *ump;
404 svm_msg_q_t *app_mq;
405 session_event_t *evt;
406
407 app_mq = app_wrk->event_queue;
408 if (mq_try_lock_and_alloc_msg (app_mq, msg))
409 return;
410
411 evt = svm_msg_q_msg_data (app_mq, msg);
412 clib_memset (evt, 0, sizeof (*evt));
413 evt->event_type = SESSION_CTRL_EVT_UNLISTEN_REPLY;
414 ump = (session_unlisten_reply_msg_t *) evt->data;
415 ump->context = context;
416 ump->handle = sh;
417 ump->retval = rv;
418 svm_msg_q_add_and_unlock (app_mq, msg);
419}
420
Florin Coras49568af2019-07-31 16:46:24 -0700421static void
422mq_send_session_migrate_cb (session_t * s, session_handle_t new_sh)
423{
Florin Coras68b7e582020-01-21 18:33:23 -0800424 svm_msg_q_msg_t _msg, *msg = &_msg;
Florin Coras09bf91a2021-02-23 08:44:13 -0800425 session_migrated_msg_t m = { 0 };
Florin Corasb4624182020-12-11 13:58:12 -0800426 fifo_segment_t *eq_seg;
Florin Coras68b7e582020-01-21 18:33:23 -0800427 app_worker_t *app_wrk;
428 session_event_t *evt;
429 svm_msg_q_t *app_mq;
Florin Coras41d5f542021-01-15 13:49:33 -0800430 application_t *app;
Florin Corasb4624182020-12-11 13:58:12 -0800431 u32 thread_index;
432
433 thread_index = session_thread_from_handle (new_sh);
Florin Coras41d5f542021-01-15 13:49:33 -0800434 app_wrk = app_worker_get (s->app_wrk_index);
435 app_mq = app_wrk->event_queue;
436 app = application_get (app_wrk->app_index);
437 eq_seg = application_get_rx_mqs_segment (app);
Florin Coras68b7e582020-01-21 18:33:23 -0800438
Florin Coras09bf91a2021-02-23 08:44:13 -0800439 m.handle = session_handle (s);
440 m.new_handle = new_sh;
441 m.vpp_thread_index = thread_index;
442 m.vpp_evt_q = fifo_segment_msg_q_offset (eq_seg, thread_index);
443 m.segment_handle = SESSION_INVALID_HANDLE;
444
Florin Coras68b7e582020-01-21 18:33:23 -0800445 if (mq_try_lock_and_alloc_msg (app_mq, msg))
446 return;
447
448 evt = svm_msg_q_msg_data (app_mq, msg);
449 clib_memset (evt, 0, sizeof (*evt));
450 evt->event_type = SESSION_CTRL_EVT_MIGRATED;
Florin Coras09bf91a2021-02-23 08:44:13 -0800451 clib_memcpy_fast (evt->data, &m, sizeof (m));
452
Florin Coras68b7e582020-01-21 18:33:23 -0800453 svm_msg_q_add_and_unlock (app_mq, msg);
Florin Coras49568af2019-07-31 16:46:24 -0700454}
455
Florin Corasc4c4cf52019-08-24 18:17:34 -0700456static int
457mq_send_add_segment_cb (u32 app_wrk_index, u64 segment_handle)
458{
459 int fds[SESSION_N_FD_TYPE], n_fds = 0;
460 svm_msg_q_msg_t _msg, *msg = &_msg;
461 session_app_add_segment_msg_t *mp;
462 vl_api_registration_t *reg;
463 app_worker_t *app_wrk;
464 session_event_t *evt;
465 svm_msg_q_t *app_mq;
466 fifo_segment_t *fs;
467 ssvm_private_t *sp;
468 u8 fd_flags = 0;
469
470 app_wrk = app_worker_get (app_wrk_index);
471
472 reg = vl_mem_api_client_index_to_registration (app_wrk->api_client_index);
473 if (!reg)
474 {
475 clib_warning ("no api registration for client: %u",
476 app_wrk->api_client_index);
477 return -1;
478 }
479
480 fs = segment_manager_get_segment_w_handle (segment_handle);
481 sp = &fs->ssvm;
482 if (ssvm_type (sp) == SSVM_SEGMENT_MEMFD)
483 {
484 if (vl_api_registration_file_index (reg) == VL_API_INVALID_FI)
485 {
486 clib_warning ("can't send memfd fd");
487 return -1;
488 }
489
490 fd_flags |= SESSION_FD_F_MEMFD_SEGMENT;
491 fds[n_fds] = sp->fd;
492 n_fds += 1;
493 }
494
495 app_mq = app_wrk->event_queue;
496 if (mq_try_lock_and_alloc_msg (app_mq, msg))
497 return -1;
498
499 if (n_fds)
500 session_send_fds (reg, fds, n_fds);
501
502 evt = svm_msg_q_msg_data (app_mq, msg);
503 clib_memset (evt, 0, sizeof (*evt));
504 evt->event_type = SESSION_CTRL_EVT_APP_ADD_SEGMENT;
505 mp = (session_app_add_segment_msg_t *) evt->data;
506 clib_memset (mp, 0, sizeof (*mp));
507 mp->segment_size = sp->ssvm_size;
508 mp->fd_flags = fd_flags;
509 mp->segment_handle = segment_handle;
510 strncpy ((char *) mp->segment_name, (char *) sp->name,
511 sizeof (mp->segment_name) - 1);
512
513 svm_msg_q_add_and_unlock (app_mq, msg);
514
515 return 0;
516}
517
518static int
519mq_send_del_segment_cb (u32 app_wrk_index, u64 segment_handle)
520{
521 svm_msg_q_msg_t _msg, *msg = &_msg;
522 session_app_del_segment_msg_t *mp;
523 vl_api_registration_t *reg;
524 app_worker_t *app_wrk;
525 session_event_t *evt;
526 svm_msg_q_t *app_mq;
527
528 app_wrk = app_worker_get (app_wrk_index);
529 reg = vl_mem_api_client_index_to_registration (app_wrk->api_client_index);
530 if (!reg)
531 {
532 clib_warning ("no registration: %u", app_wrk->api_client_index);
533 return -1;
534 }
535
536 app_mq = app_wrk->event_queue;
537 if (mq_try_lock_and_alloc_msg (app_mq, msg))
538 return -1;
539
540 evt = svm_msg_q_msg_data (app_mq, msg);
541 clib_memset (evt, 0, sizeof (*evt));
542 evt->event_type = SESSION_CTRL_EVT_APP_DEL_SEGMENT;
543 mp = (session_app_del_segment_msg_t *) evt->data;
544 clib_memset (mp, 0, sizeof (*mp));
545 mp->segment_handle = segment_handle;
546 svm_msg_q_add_and_unlock (app_mq, msg);
547
548 return 0;
549}
550
Florin Coras9ace36d2019-10-28 13:14:17 -0700551static void
552mq_send_session_cleanup_cb (session_t * s, session_cleanup_ntf_t ntf)
553{
554 svm_msg_q_msg_t _msg, *msg = &_msg;
555 session_cleanup_msg_t *mp;
556 svm_msg_q_t *app_mq;
557 session_event_t *evt;
558 app_worker_t *app_wrk;
559
Florin Coras36d49392020-04-24 23:00:11 +0000560 /* Propagate transport cleanup notifications only if app didn't close */
561 if (ntf == SESSION_CLEANUP_TRANSPORT
562 && s->session_state != SESSION_STATE_TRANSPORT_DELETED)
Florin Coras9ace36d2019-10-28 13:14:17 -0700563 return;
564
565 app_wrk = app_worker_get_if_valid (s->app_wrk_index);
566 if (!app_wrk)
567 return;
568
569 app_mq = app_wrk->event_queue;
570 if (mq_try_lock_and_alloc_msg (app_mq, msg))
571 return;
572
573 evt = svm_msg_q_msg_data (app_mq, msg);
574 clib_memset (evt, 0, sizeof (*evt));
575 evt->event_type = SESSION_CTRL_EVT_CLEANUP;
576 mp = (session_cleanup_msg_t *) evt->data;
577 mp->handle = session_handle (s);
Florin Coras36d49392020-04-24 23:00:11 +0000578 mp->type = ntf;
Florin Coras9ace36d2019-10-28 13:14:17 -0700579 svm_msg_q_add_and_unlock (app_mq, msg);
580}
581
Florin Corasc4c4cf52019-08-24 18:17:34 -0700582static session_cb_vft_t session_mq_cb_vft = {
583 .session_accept_callback = mq_send_session_accepted_cb,
584 .session_disconnect_callback = mq_send_session_disconnected_cb,
585 .session_connected_callback = mq_send_session_connected_cb,
586 .session_reset_callback = mq_send_session_reset_cb,
587 .session_migrate_callback = mq_send_session_migrate_cb,
Florin Coras9ace36d2019-10-28 13:14:17 -0700588 .session_cleanup_callback = mq_send_session_cleanup_cb,
Florin Corasc4c4cf52019-08-24 18:17:34 -0700589 .add_segment_callback = mq_send_add_segment_cb,
590 .del_segment_callback = mq_send_del_segment_cb,
591};
592
Dave Barach68b0fb02017-02-28 15:15:56 -0500593static void
Florin Corase04c2992017-03-01 08:17:34 -0800594vl_api_session_enable_disable_t_handler (vl_api_session_enable_disable_t * mp)
595{
596 vl_api_session_enable_disable_reply_t *rmp;
597 vlib_main_t *vm = vlib_get_main ();
598 int rv = 0;
599
600 vnet_session_enable_disable (vm, mp->is_enable);
601 REPLY_MACRO (VL_API_SESSION_ENABLE_DISABLE_REPLY);
602}
603
Dave Barach68b0fb02017-02-28 15:15:56 -0500604static void
Nathan Skrzypczak7b3a3df2021-07-28 14:09:50 +0200605vl_api_session_sapi_enable_disable_t_handler (
606 vl_api_session_sapi_enable_disable_t *mp)
607{
608 vl_api_session_sapi_enable_disable_reply_t *rmp;
609 int rv = 0;
610
611 rv = appns_sapi_enable_disable (mp->is_enable);
612 REPLY_MACRO (VL_API_SESSION_SAPI_ENABLE_DISABLE_REPLY);
613}
614
615static void
Florin Coras458089b2019-08-21 16:20:44 -0700616vl_api_app_attach_t_handler (vl_api_app_attach_t * mp)
617{
Florin Coras41d5f542021-01-15 13:49:33 -0800618 int rv = 0, *fds = 0, n_fds = 0, n_workers, i;
619 fifo_segment_t *segp, *rx_mqs_seg = 0;
Florin Coras458089b2019-08-21 16:20:44 -0700620 vnet_app_attach_args_t _a, *a = &_a;
Florin Coras41d5f542021-01-15 13:49:33 -0800621 vl_api_app_attach_reply_t *rmp;
Florin Coras458089b2019-08-21 16:20:44 -0700622 u8 fd_flags = 0, ctrl_thread;
623 vl_api_registration_t *reg;
Florin Coras41d5f542021-01-15 13:49:33 -0800624 svm_msg_q_t *rx_mq;
625 application_t *app;
Florin Coras458089b2019-08-21 16:20:44 -0700626
627 reg = vl_api_client_index_to_registration (mp->client_index);
628 if (!reg)
629 return;
630
Florin Coras41d5f542021-01-15 13:49:33 -0800631 n_workers = vlib_num_workers ();
Florin Coras61ae0562020-09-02 19:10:28 -0700632 if (!session_main_is_enabled () || appns_sapi_enabled ())
Florin Coras458089b2019-08-21 16:20:44 -0700633 {
634 rv = VNET_API_ERROR_FEATURE_DISABLED;
635 goto done;
636 }
Florin Coras6c10ab22020-11-08 16:50:39 -0800637 /* Only support binary api with socket transport */
638 if (vl_api_registration_file_index (reg) == VL_API_INVALID_FI)
639 {
640 rv = VNET_API_ERROR_APP_UNSUPPORTED_CFG;
641 goto done;
642 }
Florin Coras458089b2019-08-21 16:20:44 -0700643
644 STATIC_ASSERT (sizeof (u64) * APP_OPTIONS_N_OPTIONS <=
645 sizeof (mp->options),
646 "Out of options, fix api message definition");
647
648 clib_memset (a, 0, sizeof (*a));
649 a->api_client_index = mp->client_index;
650 a->options = mp->options;
651 a->session_cb_vft = &session_mq_cb_vft;
Dave Barach77841402020-04-29 17:04:10 -0400652 a->namespace_id = vl_api_from_api_to_new_vec (mp, &mp->namespace_id);
Florin Coras458089b2019-08-21 16:20:44 -0700653
654 if ((rv = vnet_application_attach (a)))
655 {
656 clib_warning ("attach returned: %d", rv);
657 vec_free (a->namespace_id);
658 goto done;
659 }
660 vec_free (a->namespace_id);
661
Florin Coras41d5f542021-01-15 13:49:33 -0800662 vec_validate (fds, 3 /* segs + tx evtfd */ + n_workers);
663
664 /* Send rx mqs segment */
665 app = application_get (a->app_index);
666 rx_mqs_seg = application_get_rx_mqs_segment (app);
667
668 fd_flags |= SESSION_FD_F_VPP_MQ_SEGMENT;
669 fds[n_fds] = rx_mqs_seg->ssvm.fd;
670 n_fds += 1;
671
Florin Coras458089b2019-08-21 16:20:44 -0700672 /* Send fifo segment fd if needed */
673 if (ssvm_type (a->segment) == SSVM_SEGMENT_MEMFD)
674 {
675 fd_flags |= SESSION_FD_F_MEMFD_SEGMENT;
676 fds[n_fds] = a->segment->fd;
677 n_fds += 1;
678 }
679 if (a->options[APP_OPTIONS_FLAGS] & APP_OPTIONS_FLAGS_EVT_MQ_USE_EVENTFD)
680 {
681 fd_flags |= SESSION_FD_F_MQ_EVENTFD;
Florin Coras86f12322021-01-22 15:05:14 -0800682 fds[n_fds] = svm_msg_q_get_eventfd (a->app_evt_q);
Florin Coras458089b2019-08-21 16:20:44 -0700683 n_fds += 1;
684 }
685
Florin Coras41d5f542021-01-15 13:49:33 -0800686 if (application_use_private_rx_mqs ())
687 {
688 fd_flags |= SESSION_FD_F_VPP_MQ_EVENTFD;
689 for (i = 0; i < n_workers + 1; i++)
690 {
691 rx_mq = application_rx_mq_get (app, i);
692 fds[n_fds] = svm_msg_q_get_eventfd (rx_mq);
693 n_fds += 1;
694 }
695 }
696
Florin Coras458089b2019-08-21 16:20:44 -0700697done:
Florin Coras458089b2019-08-21 16:20:44 -0700698 /* *INDENT-OFF* */
699 REPLY_MACRO2 (VL_API_APP_ATTACH_REPLY, ({
700 if (!rv)
701 {
Florin Coras41d5f542021-01-15 13:49:33 -0800702 ctrl_thread = n_workers ? 1 : 0;
Florin Corasb4624182020-12-11 13:58:12 -0800703 segp = (fifo_segment_t *) a->segment;
Florin Coras458089b2019-08-21 16:20:44 -0700704 rmp->app_index = clib_host_to_net_u32 (a->app_index);
Florin Corasb4624182020-12-11 13:58:12 -0800705 rmp->app_mq = fifo_segment_msg_q_offset (segp, 0);
Florin Coras41d5f542021-01-15 13:49:33 -0800706 rmp->vpp_ctrl_mq = fifo_segment_msg_q_offset (rx_mqs_seg, ctrl_thread);
Florin Coras458089b2019-08-21 16:20:44 -0700707 rmp->vpp_ctrl_mq_thread = ctrl_thread;
708 rmp->n_fds = n_fds;
709 rmp->fd_flags = fd_flags;
Florin Corasb4624182020-12-11 13:58:12 -0800710 if (vec_len (segp->ssvm.name))
Florin Coras458089b2019-08-21 16:20:44 -0700711 {
Florin Corasb4624182020-12-11 13:58:12 -0800712 vl_api_vec_to_api_string (segp->ssvm.name, &rmp->segment_name);
Florin Coras458089b2019-08-21 16:20:44 -0700713 }
Florin Corasb4624182020-12-11 13:58:12 -0800714 rmp->segment_size = segp->ssvm.ssvm_size;
Florin Coras458089b2019-08-21 16:20:44 -0700715 rmp->segment_handle = clib_host_to_net_u64 (a->segment_handle);
716 }
717 }));
718 /* *INDENT-ON* */
719
720 if (n_fds)
721 session_send_fds (reg, fds, n_fds);
Florin Coras41d5f542021-01-15 13:49:33 -0800722 vec_free (fds);
Florin Coras458089b2019-08-21 16:20:44 -0700723}
724
Florin Corascea194d2017-10-02 00:18:51 -0700725static void
Florin Coras15531972018-08-12 23:50:53 -0700726vl_api_app_worker_add_del_t_handler (vl_api_app_worker_add_del_t * mp)
727{
728 int rv = 0, fds[SESSION_N_FD_TYPE], n_fds = 0;
729 vl_api_app_worker_add_del_reply_t *rmp;
730 vl_api_registration_t *reg;
Florin Coras15531972018-08-12 23:50:53 -0700731 application_t *app;
732 u8 fd_flags = 0;
733
Florin Coras61ae0562020-09-02 19:10:28 -0700734 if (!session_main_is_enabled () || appns_sapi_enabled ())
Florin Coras15531972018-08-12 23:50:53 -0700735 {
736 rv = VNET_API_ERROR_FEATURE_DISABLED;
737 goto done;
738 }
739
740 reg = vl_api_client_index_to_registration (mp->client_index);
741 if (!reg)
742 return;
743
Florin Corasc1f5a432018-11-20 11:31:26 -0800744 app = application_get_if_valid (clib_net_to_host_u32 (mp->app_index));
Florin Coras15531972018-08-12 23:50:53 -0700745 if (!app)
746 {
747 rv = VNET_API_ERROR_INVALID_VALUE;
748 goto done;
749 }
750
751 vnet_app_worker_add_del_args_t args = {
752 .app_index = app->app_index,
Florin Coras349f8ca2018-11-20 16:52:49 -0800753 .wrk_map_index = clib_net_to_host_u32 (mp->wrk_index),
Florin Corasc1f5a432018-11-20 11:31:26 -0800754 .api_client_index = mp->client_index,
Florin Coras15531972018-08-12 23:50:53 -0700755 .is_add = mp->is_add
756 };
Florin Corasc1a42652019-02-08 18:27:29 -0800757 rv = vnet_app_worker_add_del (&args);
758 if (rv)
Florin Coras15531972018-08-12 23:50:53 -0700759 {
Florin Corasc1a42652019-02-08 18:27:29 -0800760 clib_warning ("app worker add/del returned: %d", rv);
Florin Coras15531972018-08-12 23:50:53 -0700761 goto done;
762 }
763
Florin Coras14598772018-09-04 19:47:52 -0700764 if (!mp->is_add)
765 goto done;
Florin Corasc3638fe2018-08-24 13:58:49 -0700766
Florin Coras15531972018-08-12 23:50:53 -0700767 /* Send fifo segment fd if needed */
768 if (ssvm_type (args.segment) == SSVM_SEGMENT_MEMFD)
769 {
770 fd_flags |= SESSION_FD_F_MEMFD_SEGMENT;
771 fds[n_fds] = args.segment->fd;
772 n_fds += 1;
773 }
774 if (application_segment_manager_properties (app)->use_mq_eventfd)
775 {
776 fd_flags |= SESSION_FD_F_MQ_EVENTFD;
Florin Coras86f12322021-01-22 15:05:14 -0800777 fds[n_fds] = svm_msg_q_get_eventfd (args.evt_q);
Florin Coras15531972018-08-12 23:50:53 -0700778 n_fds += 1;
779 }
780
781 /* *INDENT-OFF* */
782done:
783 REPLY_MACRO2 (VL_API_APP_WORKER_ADD_DEL_REPLY, ({
784 rmp->is_add = mp->is_add;
Florin Coras349f8ca2018-11-20 16:52:49 -0800785 rmp->wrk_index = clib_host_to_net_u32 (args.wrk_map_index);
Florin Corasfa76a762018-11-29 12:40:10 -0800786 rmp->segment_handle = clib_host_to_net_u64 (args.segment_handle);
Florin Coras14598772018-09-04 19:47:52 -0700787 if (!rv && mp->is_add)
Florin Coras15531972018-08-12 23:50:53 -0700788 {
Florin Corasb4624182020-12-11 13:58:12 -0800789 rmp->app_event_queue_address =
790 fifo_segment_msg_q_offset ((fifo_segment_t *) args.segment, 0);
791 rmp->n_fds = n_fds;
792 rmp->fd_flags = fd_flags;
Florin Coras15531972018-08-12 23:50:53 -0700793 if (vec_len (args.segment->name))
794 {
Jakub Grajciarb4e5e502020-01-31 09:35:29 +0100795 vl_api_vec_to_api_string (args.segment->name, &rmp->segment_name);
Florin Coras15531972018-08-12 23:50:53 -0700796 }
Florin Coras15531972018-08-12 23:50:53 -0700797 }
798 }));
799 /* *INDENT-ON* */
800
801 if (n_fds)
802 session_send_fds (reg, fds, n_fds);
803}
804
805static void
Florin Coras888d9f02020-04-02 23:00:13 +0000806vl_api_application_detach_t_handler (vl_api_application_detach_t * mp)
807{
808 vl_api_application_detach_reply_t *rmp;
809 int rv = VNET_API_ERROR_INVALID_VALUE_2;
810 vnet_app_detach_args_t _a, *a = &_a;
811 application_t *app;
812
Florin Coras61ae0562020-09-02 19:10:28 -0700813 if (!session_main_is_enabled () || appns_sapi_enabled ())
Florin Coras888d9f02020-04-02 23:00:13 +0000814 {
815 rv = VNET_API_ERROR_FEATURE_DISABLED;
816 goto done;
817 }
818
819 app = application_lookup (mp->client_index);
820 if (app)
821 {
822 a->app_index = app->app_index;
823 a->api_client_index = mp->client_index;
824 rv = vnet_application_detach (a);
825 }
826
827done:
828 REPLY_MACRO (VL_API_APPLICATION_DETACH_REPLY);
829}
830
831static void
Florin Corascea194d2017-10-02 00:18:51 -0700832vl_api_app_namespace_add_del_t_handler (vl_api_app_namespace_add_del_t * mp)
833{
834 vl_api_app_namespace_add_del_reply_t *rmp;
Florin Coras6e8c6672017-11-10 09:03:54 -0800835 u32 appns_index = 0;
836 u8 *ns_id = 0;
Florin Corascea194d2017-10-02 00:18:51 -0700837 int rv = 0;
Nathan Skrzypczak79f89532019-09-13 11:08:13 +0200838 if (session_main_is_enabled () == 0)
Florin Corascea194d2017-10-02 00:18:51 -0700839 {
840 rv = VNET_API_ERROR_FEATURE_DISABLED;
841 goto done;
842 }
843
Dave Barach77841402020-04-29 17:04:10 -0400844 ns_id = vl_api_from_api_to_new_vec (mp, &mp->namespace_id);
Florin Corascea194d2017-10-02 00:18:51 -0700845
Florin Corascea194d2017-10-02 00:18:51 -0700846 vnet_app_namespace_add_del_args_t args = {
847 .ns_id = ns_id,
Nathan Skrzypczak1a9e2f92021-07-28 19:35:08 +0200848 .netns = 0,
849 .sock_name = 0,
Florin Coras9a9adb22017-10-26 08:16:59 -0700850 .secret = clib_net_to_host_u64 (mp->secret),
Florin Corascea194d2017-10-02 00:18:51 -0700851 .sw_if_index = clib_net_to_host_u32 (mp->sw_if_index),
852 .ip4_fib_id = clib_net_to_host_u32 (mp->ip4_fib_id),
853 .ip6_fib_id = clib_net_to_host_u32 (mp->ip6_fib_id),
854 .is_add = 1
855 };
Florin Corasc1a42652019-02-08 18:27:29 -0800856 rv = vnet_app_namespace_add_del (&args);
857 if (!rv)
Florin Coras6e8c6672017-11-10 09:03:54 -0800858 {
859 appns_index = app_namespace_index_from_id (ns_id);
860 if (appns_index == APP_NAMESPACE_INVALID_INDEX)
861 {
862 clib_warning ("app ns lookup failed");
863 rv = VNET_API_ERROR_UNSPECIFIED;
864 }
865 }
Florin Corascea194d2017-10-02 00:18:51 -0700866 vec_free (ns_id);
Florin Coras6e8c6672017-11-10 09:03:54 -0800867
868 /* *INDENT-OFF* */
Florin Corascea194d2017-10-02 00:18:51 -0700869done:
Florin Coras6e8c6672017-11-10 09:03:54 -0800870 REPLY_MACRO2 (VL_API_APP_NAMESPACE_ADD_DEL_REPLY, ({
871 if (!rv)
872 rmp->appns_index = clib_host_to_net_u32 (appns_index);
873 }));
874 /* *INDENT-ON* */
Florin Corascea194d2017-10-02 00:18:51 -0700875}
876
Florin Coras1c710452017-10-17 00:03:13 -0700877static void
Florin Coras7cb471a2021-07-23 08:39:26 -0700878vl_api_app_namespace_add_del_v2_t_handler (
879 vl_api_app_namespace_add_del_v2_t *mp)
880{
881 vl_api_app_namespace_add_del_v2_reply_t *rmp;
882 u8 *ns_id = 0, *netns = 0;
883 u32 appns_index = 0;
884 int rv = 0;
885
886 if (session_main_is_enabled () == 0)
887 {
888 rv = VNET_API_ERROR_FEATURE_DISABLED;
889 goto done;
890 }
891
892 mp->namespace_id[sizeof (mp->namespace_id) - 1] = 0;
893 mp->netns[sizeof (mp->netns) - 1] = 0;
894 ns_id = format (0, "%s", &mp->namespace_id);
895 netns = format (0, "%s", &mp->netns);
896
897 vnet_app_namespace_add_del_args_t args = {
898 .ns_id = ns_id,
899 .netns = netns,
Nathan Skrzypczak1a9e2f92021-07-28 19:35:08 +0200900 .sock_name = 0,
Florin Coras7cb471a2021-07-23 08:39:26 -0700901 .secret = clib_net_to_host_u64 (mp->secret),
902 .sw_if_index = clib_net_to_host_u32 (mp->sw_if_index),
903 .ip4_fib_id = clib_net_to_host_u32 (mp->ip4_fib_id),
904 .ip6_fib_id = clib_net_to_host_u32 (mp->ip6_fib_id),
905 .is_add = 1
906 };
907 rv = vnet_app_namespace_add_del (&args);
908 if (!rv)
909 {
910 appns_index = app_namespace_index_from_id (ns_id);
911 if (appns_index == APP_NAMESPACE_INVALID_INDEX)
912 {
Nathan Skrzypczak1a9e2f92021-07-28 19:35:08 +0200913 clib_warning ("app ns lookup failed id:%s", ns_id);
Florin Coras7cb471a2021-07-23 08:39:26 -0700914 rv = VNET_API_ERROR_UNSPECIFIED;
915 }
916 }
917 vec_free (ns_id);
918 vec_free (netns);
919
920done:
921 REPLY_MACRO2 (VL_API_APP_NAMESPACE_ADD_DEL_V2_REPLY, ({
922 if (!rv)
923 rmp->appns_index = clib_host_to_net_u32 (appns_index);
924 }));
925}
926
927static void
Nathan Skrzypczak1a9e2f92021-07-28 19:35:08 +0200928vl_api_app_namespace_add_del_v3_t_handler (
929 vl_api_app_namespace_add_del_v3_t *mp)
930{
931 vl_api_app_namespace_add_del_v3_reply_t *rmp;
932 u8 *ns_id = 0, *netns = 0, *sock_name = 0;
933 u32 appns_index = 0;
934 int rv = 0;
935 if (session_main_is_enabled () == 0)
936 {
937 rv = VNET_API_ERROR_FEATURE_DISABLED;
938 goto done;
939 }
940 mp->namespace_id[sizeof (mp->namespace_id) - 1] = 0;
941 mp->netns[sizeof (mp->netns) - 1] = 0;
942 ns_id = format (0, "%s", &mp->namespace_id);
943 netns = format (0, "%s", &mp->netns);
Nathan Skrzypczakb3ea73e2021-08-05 10:22:52 +0200944 sock_name = vl_api_from_api_to_new_vec (mp, &mp->sock_name);
Nathan Skrzypczak1a9e2f92021-07-28 19:35:08 +0200945 vnet_app_namespace_add_del_args_t args = {
946 .ns_id = ns_id,
947 .netns = netns,
948 .sock_name = sock_name,
949 .secret = clib_net_to_host_u64 (mp->secret),
950 .sw_if_index = clib_net_to_host_u32 (mp->sw_if_index),
951 .ip4_fib_id = clib_net_to_host_u32 (mp->ip4_fib_id),
952 .ip6_fib_id = clib_net_to_host_u32 (mp->ip6_fib_id),
953 .is_add = mp->is_add,
954 };
955 rv = vnet_app_namespace_add_del (&args);
956 if (!rv && mp->is_add)
957 {
958 appns_index = app_namespace_index_from_id (ns_id);
959 if (appns_index == APP_NAMESPACE_INVALID_INDEX)
960 {
961 clib_warning ("app ns lookup failed id:%s", ns_id);
962 rv = VNET_API_ERROR_UNSPECIFIED;
963 }
964 }
965 vec_free (ns_id);
966 vec_free (netns);
967 vec_free (sock_name);
968done:
969 REPLY_MACRO2 (VL_API_APP_NAMESPACE_ADD_DEL_V3_REPLY, ({
970 if (!rv)
971 rmp->appns_index = clib_host_to_net_u32 (appns_index);
972 }));
973}
974
975static void
Florin Coras1c710452017-10-17 00:03:13 -0700976vl_api_session_rule_add_del_t_handler (vl_api_session_rule_add_del_t * mp)
977{
978 vl_api_session_rule_add_del_reply_t *rmp;
979 session_rule_add_del_args_t args;
980 session_rule_table_add_del_args_t *table_args = &args.table_args;
Florin Coras1c710452017-10-17 00:03:13 -0700981 int rv = 0;
982
Dave Barachb7b92992018-10-17 10:38:51 -0400983 clib_memset (&args, 0, sizeof (args));
Florin Coras1c710452017-10-17 00:03:13 -0700984
Jakub Grajciarb4e5e502020-01-31 09:35:29 +0100985 ip_prefix_decode (&mp->lcl, &table_args->lcl);
986 ip_prefix_decode (&mp->rmt, &table_args->rmt);
987
Milan Lenco8b9a5d12017-11-24 17:12:33 +0100988 table_args->lcl_port = mp->lcl_port;
989 table_args->rmt_port = mp->rmt_port;
Florin Coras1c710452017-10-17 00:03:13 -0700990 table_args->action_index = clib_net_to_host_u32 (mp->action_index);
991 table_args->is_add = mp->is_add;
Florin Corasc97a7392017-11-05 23:07:07 -0800992 mp->tag[sizeof (mp->tag) - 1] = 0;
993 table_args->tag = format (0, "%s", mp->tag);
Florin Coras1c710452017-10-17 00:03:13 -0700994 args.appns_index = clib_net_to_host_u32 (mp->appns_index);
995 args.scope = mp->scope;
Jakub Grajciarb4e5e502020-01-31 09:35:29 +0100996 args.transport_proto =
997 api_session_transport_proto_decode (&mp->transport_proto) ==
998 TRANSPORT_PROTO_UDP ? 1 : 0;
Florin Coras1c710452017-10-17 00:03:13 -0700999
Florin Corasc1a42652019-02-08 18:27:29 -08001000 rv = vnet_session_rule_add_del (&args);
1001 if (rv)
1002 clib_warning ("rule add del returned: %d", rv);
Florin Corasc97a7392017-11-05 23:07:07 -08001003 vec_free (table_args->tag);
Florin Coras1c710452017-10-17 00:03:13 -07001004 REPLY_MACRO (VL_API_SESSION_RULE_ADD_DEL_REPLY);
1005}
1006
Florin Coras6c36f532017-11-03 18:32:34 -07001007static void
1008send_session_rule_details4 (mma_rule_16_t * rule, u8 is_local,
Florin Corasc97a7392017-11-05 23:07:07 -08001009 u8 transport_proto, u32 appns_index, u8 * tag,
Florin Coras6c4dae22018-01-09 06:39:23 -08001010 vl_api_registration_t * reg, u32 context)
Florin Coras6c36f532017-11-03 18:32:34 -07001011{
1012 vl_api_session_rules_details_t *rmp = 0;
1013 session_mask_or_match_4_t *match =
1014 (session_mask_or_match_4_t *) & rule->match;
1015 session_mask_or_match_4_t *mask =
1016 (session_mask_or_match_4_t *) & rule->mask;
Jakub Grajciarb4e5e502020-01-31 09:35:29 +01001017 fib_prefix_t lcl, rmt;
Florin Coras6c36f532017-11-03 18:32:34 -07001018
1019 rmp = vl_msg_api_alloc (sizeof (*rmp));
Dave Barachb7b92992018-10-17 10:38:51 -04001020 clib_memset (rmp, 0, sizeof (*rmp));
Filip Tehlar0046e972021-06-26 22:12:08 +00001021 rmp->_vl_msg_id = ntohs (REPLY_MSG_ID_BASE + VL_API_SESSION_RULES_DETAILS);
Florin Coras6c36f532017-11-03 18:32:34 -07001022 rmp->context = context;
1023
Jakub Grajciarb4e5e502020-01-31 09:35:29 +01001024 clib_memset (&lcl, 0, sizeof (lcl));
1025 clib_memset (&rmt, 0, sizeof (rmt));
1026 ip_set (&lcl.fp_addr, &match->lcl_ip, 1);
1027 ip_set (&rmt.fp_addr, &match->rmt_ip, 1);
1028 lcl.fp_len = ip4_mask_to_preflen (&mask->lcl_ip);
1029 rmt.fp_len = ip4_mask_to_preflen (&mask->rmt_ip);
1030
1031 ip_prefix_encode (&lcl, &rmp->lcl);
1032 ip_prefix_encode (&rmt, &rmp->rmt);
Milan Lenco8b9a5d12017-11-24 17:12:33 +01001033 rmp->lcl_port = match->lcl_port;
1034 rmp->rmt_port = match->rmt_port;
Florin Coras6c36f532017-11-03 18:32:34 -07001035 rmp->action_index = clib_host_to_net_u32 (rule->action_index);
1036 rmp->scope =
Jakub Grajciarb4e5e502020-01-31 09:35:29 +01001037 is_local ? SESSION_RULE_SCOPE_API_LOCAL : SESSION_RULE_SCOPE_API_GLOBAL;
1038 rmp->transport_proto = api_session_transport_proto_encode (transport_proto);
Florin Coras6c36f532017-11-03 18:32:34 -07001039 rmp->appns_index = clib_host_to_net_u32 (appns_index);
Florin Corasc97a7392017-11-05 23:07:07 -08001040 if (tag)
1041 {
Dave Barach178cf492018-11-13 16:34:13 -05001042 clib_memcpy_fast (rmp->tag, tag, vec_len (tag));
Florin Corasc97a7392017-11-05 23:07:07 -08001043 rmp->tag[vec_len (tag)] = 0;
1044 }
Florin Coras6c36f532017-11-03 18:32:34 -07001045
Florin Coras6c4dae22018-01-09 06:39:23 -08001046 vl_api_send_msg (reg, (u8 *) rmp);
Florin Coras6c36f532017-11-03 18:32:34 -07001047}
1048
1049static void
Florin Corasc97a7392017-11-05 23:07:07 -08001050send_session_rule_details6 (mma_rule_40_t * rule, u8 is_local,
1051 u8 transport_proto, u32 appns_index, u8 * tag,
Florin Coras6c4dae22018-01-09 06:39:23 -08001052 vl_api_registration_t * reg, u32 context)
Florin Coras6c36f532017-11-03 18:32:34 -07001053{
1054 vl_api_session_rules_details_t *rmp = 0;
1055 session_mask_or_match_6_t *match =
1056 (session_mask_or_match_6_t *) & rule->match;
1057 session_mask_or_match_6_t *mask =
1058 (session_mask_or_match_6_t *) & rule->mask;
Jakub Grajciarb4e5e502020-01-31 09:35:29 +01001059 fib_prefix_t lcl, rmt;
Florin Coras6c36f532017-11-03 18:32:34 -07001060
1061 rmp = vl_msg_api_alloc (sizeof (*rmp));
Dave Barachb7b92992018-10-17 10:38:51 -04001062 clib_memset (rmp, 0, sizeof (*rmp));
Filip Tehlar0046e972021-06-26 22:12:08 +00001063 rmp->_vl_msg_id = ntohs (REPLY_MSG_ID_BASE + VL_API_SESSION_RULES_DETAILS);
Florin Coras6c36f532017-11-03 18:32:34 -07001064 rmp->context = context;
1065
Jakub Grajciarb4e5e502020-01-31 09:35:29 +01001066 clib_memset (&lcl, 0, sizeof (lcl));
1067 clib_memset (&rmt, 0, sizeof (rmt));
1068 ip_set (&lcl.fp_addr, &match->lcl_ip, 0);
1069 ip_set (&rmt.fp_addr, &match->rmt_ip, 0);
1070 lcl.fp_len = ip6_mask_to_preflen (&mask->lcl_ip);
1071 rmt.fp_len = ip6_mask_to_preflen (&mask->rmt_ip);
1072
1073 ip_prefix_encode (&lcl, &rmp->lcl);
1074 ip_prefix_encode (&rmt, &rmp->rmt);
Milan Lenco8b9a5d12017-11-24 17:12:33 +01001075 rmp->lcl_port = match->lcl_port;
1076 rmp->rmt_port = match->rmt_port;
Florin Coras6c36f532017-11-03 18:32:34 -07001077 rmp->action_index = clib_host_to_net_u32 (rule->action_index);
Florin Corasc97a7392017-11-05 23:07:07 -08001078 rmp->scope =
Jakub Grajciarb4e5e502020-01-31 09:35:29 +01001079 is_local ? SESSION_RULE_SCOPE_API_LOCAL : SESSION_RULE_SCOPE_API_GLOBAL;
1080 rmp->transport_proto = api_session_transport_proto_encode (transport_proto);
Florin Coras6c36f532017-11-03 18:32:34 -07001081 rmp->appns_index = clib_host_to_net_u32 (appns_index);
Florin Corasc97a7392017-11-05 23:07:07 -08001082 if (tag)
1083 {
Dave Barach178cf492018-11-13 16:34:13 -05001084 clib_memcpy_fast (rmp->tag, tag, vec_len (tag));
Florin Corasc97a7392017-11-05 23:07:07 -08001085 rmp->tag[vec_len (tag)] = 0;
1086 }
Florin Coras6c36f532017-11-03 18:32:34 -07001087
Florin Coras6c4dae22018-01-09 06:39:23 -08001088 vl_api_send_msg (reg, (u8 *) rmp);
Florin Coras6c36f532017-11-03 18:32:34 -07001089}
1090
1091static void
1092send_session_rules_table_details (session_rules_table_t * srt, u8 fib_proto,
Florin Corasc97a7392017-11-05 23:07:07 -08001093 u8 tp, u8 is_local, u32 appns_index,
Florin Coras6c4dae22018-01-09 06:39:23 -08001094 vl_api_registration_t * reg, u32 context)
Florin Coras6c36f532017-11-03 18:32:34 -07001095{
1096 mma_rule_16_t *rule16;
1097 mma_rule_40_t *rule40;
1098 mma_rules_table_16_t *srt16;
1099 mma_rules_table_40_t *srt40;
Florin Corasc97a7392017-11-05 23:07:07 -08001100 u32 ri;
Florin Coras6c36f532017-11-03 18:32:34 -07001101
Florin Corasc97a7392017-11-05 23:07:07 -08001102 if (is_local || fib_proto == FIB_PROTOCOL_IP4)
Florin Coras6c36f532017-11-03 18:32:34 -07001103 {
Florin Corasc97a7392017-11-05 23:07:07 -08001104 u8 *tag = 0;
1105 /* *INDENT-OFF* */
1106 srt16 = &srt->session_rules_tables_16;
Damjan Marionb2c31b62020-12-13 21:47:40 +01001107 pool_foreach (rule16, srt16->rules) {
Florin Corasc97a7392017-11-05 23:07:07 -08001108 ri = mma_rules_table_rule_index_16 (srt16, rule16);
1109 tag = session_rules_table_rule_tag (srt, ri, 1);
1110 send_session_rule_details4 (rule16, is_local, tp, appns_index, tag,
Florin Coras6c4dae22018-01-09 06:39:23 -08001111 reg, context);
Damjan Marionb2c31b62020-12-13 21:47:40 +01001112 }
Florin Corasc97a7392017-11-05 23:07:07 -08001113 /* *INDENT-ON* */
1114 }
1115 if (is_local || fib_proto == FIB_PROTOCOL_IP6)
1116 {
1117 u8 *tag = 0;
1118 /* *INDENT-OFF* */
1119 srt40 = &srt->session_rules_tables_40;
Damjan Marionb2c31b62020-12-13 21:47:40 +01001120 pool_foreach (rule40, srt40->rules) {
Florin Corasc97a7392017-11-05 23:07:07 -08001121 ri = mma_rules_table_rule_index_40 (srt40, rule40);
1122 tag = session_rules_table_rule_tag (srt, ri, 1);
1123 send_session_rule_details6 (rule40, is_local, tp, appns_index, tag,
Florin Coras6c4dae22018-01-09 06:39:23 -08001124 reg, context);
Damjan Marionb2c31b62020-12-13 21:47:40 +01001125 }
Florin Corasc97a7392017-11-05 23:07:07 -08001126 /* *INDENT-ON* */
Florin Coras6c36f532017-11-03 18:32:34 -07001127 }
1128}
1129
1130static void
Neale Ranns2b202bc2020-09-21 08:17:51 +00001131vl_api_session_rules_dump_t_handler (vl_api_session_rules_dump_t * mp)
Florin Coras6c36f532017-11-03 18:32:34 -07001132{
Florin Coras6c4dae22018-01-09 06:39:23 -08001133 vl_api_registration_t *reg;
Florin Coras6c36f532017-11-03 18:32:34 -07001134 session_table_t *st;
Florin Corasc97a7392017-11-05 23:07:07 -08001135 u8 tp;
Florin Coras6c36f532017-11-03 18:32:34 -07001136
Florin Coras6c4dae22018-01-09 06:39:23 -08001137 reg = vl_api_client_index_to_registration (mp->client_index);
1138 if (!reg)
Florin Coras6c36f532017-11-03 18:32:34 -07001139 return;
1140
1141 /* *INDENT-OFF* */
1142 session_table_foreach (st, ({
Florin Coras07063b82020-03-13 04:44:51 +00001143 for (tp = 0; tp < TRANSPORT_N_PROTOS; tp++)
Florin Corasc97a7392017-11-05 23:07:07 -08001144 {
1145 send_session_rules_table_details (&st->session_rules[tp],
1146 st->active_fib_proto, tp,
Florin Coras6c4dae22018-01-09 06:39:23 -08001147 st->is_local, st->appns_index, reg,
Florin Corasc97a7392017-11-05 23:07:07 -08001148 mp->context);
1149 }
Florin Coras6c36f532017-11-03 18:32:34 -07001150 }));
1151 /* *INDENT-ON* */
1152}
1153
Florin Coras371ca502018-02-21 12:07:41 -08001154static void
Nathan Skrzypczak79f89532019-09-13 11:08:13 +02001155vl_api_app_add_cert_key_pair_t_handler (vl_api_app_add_cert_key_pair_t * mp)
Florin Coras371ca502018-02-21 12:07:41 -08001156{
Nathan Skrzypczak79f89532019-09-13 11:08:13 +02001157 vl_api_app_add_cert_key_pair_reply_t *rmp;
1158 vnet_app_add_cert_key_pair_args_t _a, *a = &_a;
1159 u32 certkey_len, key_len, cert_len;
Florin Coras371ca502018-02-21 12:07:41 -08001160 int rv = 0;
Nathan Skrzypczak79f89532019-09-13 11:08:13 +02001161 if (session_main_is_enabled () == 0)
Florin Coras371ca502018-02-21 12:07:41 -08001162 {
1163 rv = VNET_API_ERROR_FEATURE_DISABLED;
1164 goto done;
1165 }
Nathan Skrzypczak79f89532019-09-13 11:08:13 +02001166
Florin Coras371ca502018-02-21 12:07:41 -08001167 cert_len = clib_net_to_host_u16 (mp->cert_len);
Florin Coras5090c572018-03-18 08:22:17 -07001168 if (cert_len > 10000)
1169 {
1170 rv = VNET_API_ERROR_INVALID_VALUE;
1171 goto done;
1172 }
Nathan Skrzypczak79f89532019-09-13 11:08:13 +02001173
1174 certkey_len = clib_net_to_host_u16 (mp->certkey_len);
1175 if (certkey_len < cert_len)
Florin Coras371ca502018-02-21 12:07:41 -08001176 {
Nathan Skrzypczak79f89532019-09-13 11:08:13 +02001177 rv = VNET_API_ERROR_INVALID_VALUE;
1178 goto done;
Florin Coras371ca502018-02-21 12:07:41 -08001179 }
Nathan Skrzypczak79f89532019-09-13 11:08:13 +02001180
1181 key_len = certkey_len - cert_len;
1182 if (key_len > 10000)
1183 {
1184 rv = VNET_API_ERROR_INVALID_VALUE;
1185 goto done;
1186 }
1187
1188 clib_memset (a, 0, sizeof (*a));
Florin Corasa5a9efd2021-01-05 17:03:29 -08001189 a->cert = mp->certkey;
1190 a->key = mp->certkey + cert_len;
1191 a->cert_len = cert_len;
1192 a->key_len = key_len;
Nathan Skrzypczak79f89532019-09-13 11:08:13 +02001193 rv = vnet_app_add_cert_key_pair (a);
Nathan Skrzypczak79f89532019-09-13 11:08:13 +02001194
Florin Coras371ca502018-02-21 12:07:41 -08001195done:
Nathan Skrzypczak79f89532019-09-13 11:08:13 +02001196 /* *INDENT-OFF* */
1197 REPLY_MACRO2 (VL_API_APP_ADD_CERT_KEY_PAIR_REPLY, ({
1198 if (!rv)
Nathan Skrzypczak45ec9f42019-11-06 14:47:40 +01001199 rmp->index = clib_host_to_net_u32 (a->index);
Nathan Skrzypczak79f89532019-09-13 11:08:13 +02001200 }));
1201 /* *INDENT-ON* */
Florin Coras371ca502018-02-21 12:07:41 -08001202}
1203
1204static void
Nathan Skrzypczak79f89532019-09-13 11:08:13 +02001205vl_api_app_del_cert_key_pair_t_handler (vl_api_app_del_cert_key_pair_t * mp)
Florin Coras371ca502018-02-21 12:07:41 -08001206{
Nathan Skrzypczak79f89532019-09-13 11:08:13 +02001207 vl_api_app_del_cert_key_pair_reply_t *rmp;
Nathan Skrzypczak45ec9f42019-11-06 14:47:40 +01001208 u32 ckpair_index;
Florin Coras371ca502018-02-21 12:07:41 -08001209 int rv = 0;
Nathan Skrzypczak79f89532019-09-13 11:08:13 +02001210 if (session_main_is_enabled () == 0)
1211 {
1212 rv = VNET_API_ERROR_FEATURE_DISABLED;
1213 goto done;
1214 }
Nathan Skrzypczak45ec9f42019-11-06 14:47:40 +01001215 ckpair_index = clib_net_to_host_u32 (mp->index);
1216 rv = vnet_app_del_cert_key_pair (ckpair_index);
Nathan Skrzypczak79f89532019-09-13 11:08:13 +02001217
1218done:
Nathan Skrzypczak45ec9f42019-11-06 14:47:40 +01001219 REPLY_MACRO (VL_API_APP_DEL_CERT_KEY_PAIR_REPLY);
Nathan Skrzypczak79f89532019-09-13 11:08:13 +02001220}
1221
Florin Coras6cf30ad2017-04-04 23:08:23 -07001222static clib_error_t *
1223application_reaper_cb (u32 client_index)
Dave Barach68b0fb02017-02-28 15:15:56 -05001224{
Florin Coras6cf30ad2017-04-04 23:08:23 -07001225 application_t *app = application_lookup (client_index);
1226 vnet_app_detach_args_t _a, *a = &_a;
1227 if (app)
1228 {
Florin Coras15531972018-08-12 23:50:53 -07001229 a->app_index = app->app_index;
Florin Coras053a0e42018-11-13 15:52:38 -08001230 a->api_client_index = client_index;
Florin Coras6cf30ad2017-04-04 23:08:23 -07001231 vnet_application_detach (a);
1232 }
1233 return 0;
Dave Barach68b0fb02017-02-28 15:15:56 -05001234}
1235
Florin Coras6cf30ad2017-04-04 23:08:23 -07001236VL_MSG_API_REAPER_FUNCTION (application_reaper_cb);
Dave Barach68b0fb02017-02-28 15:15:56 -05001237
Dave Barach68b0fb02017-02-28 15:15:56 -05001238/*
Florin Coras61ae0562020-09-02 19:10:28 -07001239 * Socket api functions
1240 */
1241
1242static void
1243sapi_send_fds (app_worker_t * app_wrk, int *fds, int n_fds)
1244{
1245 app_sapi_msg_t smsg = { 0 };
1246 app_namespace_t *app_ns;
1247 application_t *app;
1248 clib_socket_t *cs;
1249 u32 cs_index;
1250
1251 app = application_get (app_wrk->app_index);
1252 app_ns = app_namespace_get (app->ns_index);
1253 cs_index = appns_sapi_handle_sock_index (app_wrk->api_client_index);
1254 cs = appns_sapi_get_socket (app_ns, cs_index);
Florin Coras1c0573d2020-09-23 10:31:27 -07001255 if (PREDICT_FALSE (!cs))
1256 return;
Florin Coras61ae0562020-09-02 19:10:28 -07001257
1258 /* There's no payload for the message only the type */
1259 smsg.type = APP_SAPI_MSG_TYPE_SEND_FDS;
1260 clib_socket_sendmsg (cs, &smsg, sizeof (smsg), fds, n_fds);
1261}
1262
1263static int
1264mq_send_add_segment_sapi_cb (u32 app_wrk_index, u64 segment_handle)
1265{
1266 int fds[SESSION_N_FD_TYPE], n_fds = 0;
1267 svm_msg_q_msg_t _msg, *msg = &_msg;
1268 session_app_add_segment_msg_t *mp;
1269 app_worker_t *app_wrk;
1270 session_event_t *evt;
1271 svm_msg_q_t *app_mq;
1272 fifo_segment_t *fs;
1273 ssvm_private_t *sp;
1274 u8 fd_flags = 0;
1275
1276 app_wrk = app_worker_get (app_wrk_index);
1277
1278 fs = segment_manager_get_segment_w_handle (segment_handle);
1279 sp = &fs->ssvm;
1280 ASSERT (ssvm_type (sp) == SSVM_SEGMENT_MEMFD);
1281
1282 fd_flags |= SESSION_FD_F_MEMFD_SEGMENT;
1283 fds[n_fds] = sp->fd;
1284 n_fds += 1;
1285
1286 app_mq = app_wrk->event_queue;
1287 if (mq_try_lock_and_alloc_msg (app_mq, msg))
1288 return -1;
1289
1290 /*
1291 * Send the fd over api socket
1292 */
1293 sapi_send_fds (app_wrk, fds, n_fds);
1294
1295 /*
1296 * Send the actual message over mq
1297 */
1298 evt = svm_msg_q_msg_data (app_mq, msg);
1299 clib_memset (evt, 0, sizeof (*evt));
1300 evt->event_type = SESSION_CTRL_EVT_APP_ADD_SEGMENT;
1301 mp = (session_app_add_segment_msg_t *) evt->data;
1302 clib_memset (mp, 0, sizeof (*mp));
1303 mp->segment_size = sp->ssvm_size;
1304 mp->fd_flags = fd_flags;
1305 mp->segment_handle = segment_handle;
1306 strncpy ((char *) mp->segment_name, (char *) sp->name,
1307 sizeof (mp->segment_name) - 1);
1308
1309 svm_msg_q_add_and_unlock (app_mq, msg);
1310
1311 return 0;
1312}
1313
1314static int
1315mq_send_del_segment_sapi_cb (u32 app_wrk_index, u64 segment_handle)
1316{
1317 svm_msg_q_msg_t _msg, *msg = &_msg;
1318 session_app_del_segment_msg_t *mp;
1319 app_worker_t *app_wrk;
1320 session_event_t *evt;
1321 svm_msg_q_t *app_mq;
1322
1323 app_wrk = app_worker_get (app_wrk_index);
1324
1325 app_mq = app_wrk->event_queue;
1326 if (mq_try_lock_and_alloc_msg (app_mq, msg))
1327 return -1;
1328
1329 evt = svm_msg_q_msg_data (app_mq, msg);
1330 clib_memset (evt, 0, sizeof (*evt));
1331 evt->event_type = SESSION_CTRL_EVT_APP_DEL_SEGMENT;
1332 mp = (session_app_del_segment_msg_t *) evt->data;
1333 clib_memset (mp, 0, sizeof (*mp));
1334 mp->segment_handle = segment_handle;
1335 svm_msg_q_add_and_unlock (app_mq, msg);
1336
1337 return 0;
1338}
1339
1340static session_cb_vft_t session_mq_sapi_cb_vft = {
1341 .session_accept_callback = mq_send_session_accepted_cb,
1342 .session_disconnect_callback = mq_send_session_disconnected_cb,
1343 .session_connected_callback = mq_send_session_connected_cb,
1344 .session_reset_callback = mq_send_session_reset_cb,
1345 .session_migrate_callback = mq_send_session_migrate_cb,
1346 .session_cleanup_callback = mq_send_session_cleanup_cb,
1347 .add_segment_callback = mq_send_add_segment_sapi_cb,
1348 .del_segment_callback = mq_send_del_segment_sapi_cb,
1349};
1350
1351static void
1352session_api_attach_handler (app_namespace_t * app_ns, clib_socket_t * cs,
1353 app_sapi_attach_msg_t * mp)
1354{
Florin Coras41d5f542021-01-15 13:49:33 -08001355 int rv = 0, *fds = 0, n_fds = 0, i, n_workers;
Florin Coras61ae0562020-09-02 19:10:28 -07001356 vnet_app_attach_args_t _a, *a = &_a;
1357 app_sapi_attach_reply_msg_t *rmp;
Florin Coras61ae0562020-09-02 19:10:28 -07001358 u8 fd_flags = 0, ctrl_thread;
1359 app_ns_api_handle_t *handle;
Florin Coras41d5f542021-01-15 13:49:33 -08001360 fifo_segment_t *rx_mqs_seg;
Florin Coras61ae0562020-09-02 19:10:28 -07001361 app_sapi_msg_t msg = { 0 };
1362 app_worker_t *app_wrk;
Florin Coras61ae0562020-09-02 19:10:28 -07001363 application_t *app;
Florin Coras41d5f542021-01-15 13:49:33 -08001364 svm_msg_q_t *rx_mq;
Florin Coras61ae0562020-09-02 19:10:28 -07001365
1366 /* Make sure name is null terminated */
1367 mp->name[63] = 0;
1368
1369 clib_memset (a, 0, sizeof (*a));
1370 a->api_client_index = appns_sapi_socket_handle (app_ns, cs);
1371 a->name = format (0, "%s", (char *) mp->name);
1372 a->options = mp->options;
1373 a->session_cb_vft = &session_mq_sapi_cb_vft;
1374 a->use_sock_api = 1;
1375 a->options[APP_OPTIONS_NAMESPACE] = app_namespace_index (app_ns);
1376
1377 if ((rv = vnet_application_attach (a)))
1378 {
1379 clib_warning ("attach returned: %d", rv);
1380 goto done;
1381 }
1382
Florin Coras41d5f542021-01-15 13:49:33 -08001383 n_workers = vlib_num_workers ();
1384 vec_validate (fds, 3 /* segs + tx evtfd */ + n_workers);
1385
Florin Coras61ae0562020-09-02 19:10:28 -07001386 /* Send event queues segment */
Florin Coras41d5f542021-01-15 13:49:33 -08001387 app = application_get (a->app_index);
1388 rx_mqs_seg = application_get_rx_mqs_segment (app);
1389
1390 fd_flags |= SESSION_FD_F_VPP_MQ_SEGMENT;
1391 fds[n_fds] = rx_mqs_seg->ssvm.fd;
1392 n_fds += 1;
1393
Florin Coras61ae0562020-09-02 19:10:28 -07001394 /* Send fifo segment fd if needed */
1395 if (ssvm_type (a->segment) == SSVM_SEGMENT_MEMFD)
1396 {
1397 fd_flags |= SESSION_FD_F_MEMFD_SEGMENT;
1398 fds[n_fds] = a->segment->fd;
1399 n_fds += 1;
1400 }
1401 if (a->options[APP_OPTIONS_FLAGS] & APP_OPTIONS_FLAGS_EVT_MQ_USE_EVENTFD)
1402 {
1403 fd_flags |= SESSION_FD_F_MQ_EVENTFD;
Florin Coras86f12322021-01-22 15:05:14 -08001404 fds[n_fds] = svm_msg_q_get_eventfd (a->app_evt_q);
Florin Coras61ae0562020-09-02 19:10:28 -07001405 n_fds += 1;
1406 }
1407
Florin Coras41d5f542021-01-15 13:49:33 -08001408 if (application_use_private_rx_mqs ())
1409 {
1410 fd_flags |= SESSION_FD_F_VPP_MQ_EVENTFD;
1411 for (i = 0; i < n_workers + 1; i++)
1412 {
1413 rx_mq = application_rx_mq_get (app, i);
1414 fds[n_fds] = svm_msg_q_get_eventfd (rx_mq);
1415 n_fds += 1;
1416 }
1417 }
1418
Florin Coras61ae0562020-09-02 19:10:28 -07001419done:
1420
1421 msg.type = APP_SAPI_MSG_TYPE_ATTACH_REPLY;
1422 rmp = &msg.attach_reply;
1423 rmp->retval = rv;
1424 if (!rv)
1425 {
Florin Coras41d5f542021-01-15 13:49:33 -08001426 ctrl_thread = n_workers ? 1 : 0;
Florin Coras61ae0562020-09-02 19:10:28 -07001427 rmp->app_index = a->app_index;
Florin Corasb4624182020-12-11 13:58:12 -08001428 rmp->app_mq =
1429 fifo_segment_msg_q_offset ((fifo_segment_t *) a->segment, 0);
Florin Coras41d5f542021-01-15 13:49:33 -08001430 rmp->vpp_ctrl_mq = fifo_segment_msg_q_offset (rx_mqs_seg, ctrl_thread);
Florin Coras61ae0562020-09-02 19:10:28 -07001431 rmp->vpp_ctrl_mq_thread = ctrl_thread;
1432 rmp->n_fds = n_fds;
1433 rmp->fd_flags = fd_flags;
1434 /* No segment name and size since we only support memfds
1435 * in this configuration */
1436 rmp->segment_handle = a->segment_handle;
1437 rmp->api_client_handle = a->api_client_index;
1438
1439 /* Update app index for socket */
1440 handle = (app_ns_api_handle_t *) & cs->private_data;
Florin Coras61ae0562020-09-02 19:10:28 -07001441 app_wrk = application_get_worker (app, 0);
1442 handle->aah_app_wrk_index = app_wrk->wrk_index;
1443 }
1444
1445 clib_socket_sendmsg (cs, &msg, sizeof (msg), fds, n_fds);
1446 vec_free (a->name);
Florin Coras41d5f542021-01-15 13:49:33 -08001447 vec_free (fds);
Florin Coras61ae0562020-09-02 19:10:28 -07001448}
1449
Florin Coras98078ab2021-08-12 18:12:09 -07001450void
Florin Coras61ae0562020-09-02 19:10:28 -07001451sapi_socket_close_w_handle (u32 api_handle)
1452{
1453 app_namespace_t *app_ns = app_namespace_get (api_handle >> 16);
1454 u16 sock_index = api_handle & 0xffff;
1455 app_ns_api_handle_t *handle;
1456 clib_socket_t *cs;
1457 clib_file_t *cf;
1458
1459 cs = appns_sapi_get_socket (app_ns, sock_index);
1460 if (!cs)
1461 return;
1462
1463 handle = (app_ns_api_handle_t *) & cs->private_data;
1464 cf = clib_file_get (&file_main, handle->aah_file_index);
1465 clib_file_del (&file_main, cf);
1466
1467 clib_socket_close (cs);
1468 appns_sapi_free_socket (app_ns, cs);
1469}
1470
1471static void
1472sapi_add_del_worker_handler (app_namespace_t * app_ns,
1473 clib_socket_t * cs,
1474 app_sapi_worker_add_del_msg_t * mp)
1475{
1476 int rv = 0, fds[SESSION_N_FD_TYPE], n_fds = 0;
1477 app_sapi_worker_add_del_reply_msg_t *rmp;
1478 app_ns_api_handle_t *handle;
1479 app_sapi_msg_t msg = { 0 };
1480 app_worker_t *app_wrk;
Florin Corascc7c88e2020-09-15 15:56:51 -07001481 u32 sapi_handle = -1;
Florin Coras61ae0562020-09-02 19:10:28 -07001482 application_t *app;
Florin Coras61ae0562020-09-02 19:10:28 -07001483 u8 fd_flags = 0;
1484
1485 app = application_get_if_valid (mp->app_index);
1486 if (!app)
1487 {
1488 rv = VNET_API_ERROR_INVALID_VALUE;
1489 goto done;
1490 }
1491
1492 sapi_handle = appns_sapi_socket_handle (app_ns, cs);
1493
1494 vnet_app_worker_add_del_args_t args = {
1495 .app_index = app->app_index,
1496 .wrk_map_index = mp->wrk_index,
1497 .api_client_index = sapi_handle,
1498 .is_add = mp->is_add
1499 };
1500 rv = vnet_app_worker_add_del (&args);
1501 if (rv)
1502 {
1503 clib_warning ("app worker add/del returned: %d", rv);
1504 goto done;
1505 }
1506
1507 if (!mp->is_add)
Florin Coras98078ab2021-08-12 18:12:09 -07001508 goto done;
Florin Coras61ae0562020-09-02 19:10:28 -07001509
1510 /* Send fifo segment fd if needed */
1511 if (ssvm_type (args.segment) == SSVM_SEGMENT_MEMFD)
1512 {
1513 fd_flags |= SESSION_FD_F_MEMFD_SEGMENT;
1514 fds[n_fds] = args.segment->fd;
1515 n_fds += 1;
1516 }
1517 if (application_segment_manager_properties (app)->use_mq_eventfd)
1518 {
1519 fd_flags |= SESSION_FD_F_MQ_EVENTFD;
Florin Coras86f12322021-01-22 15:05:14 -08001520 fds[n_fds] = svm_msg_q_get_eventfd (args.evt_q);
Florin Coras61ae0562020-09-02 19:10:28 -07001521 n_fds += 1;
1522 }
1523
1524done:
1525
1526 msg.type = APP_SAPI_MSG_TYPE_ADD_DEL_WORKER_REPLY;
1527 rmp = &msg.worker_add_del_reply;
1528 rmp->retval = rv;
1529 rmp->is_add = mp->is_add;
Florin Corascc7c88e2020-09-15 15:56:51 -07001530 rmp->api_client_handle = sapi_handle;
Florin Coras61ae0562020-09-02 19:10:28 -07001531 rmp->wrk_index = args.wrk_map_index;
1532 rmp->segment_handle = args.segment_handle;
1533 if (!rv && mp->is_add)
1534 {
1535 /* No segment name and size. This supports only memfds */
Florin Corasb4624182020-12-11 13:58:12 -08001536 rmp->app_event_queue_address =
1537 fifo_segment_msg_q_offset ((fifo_segment_t *) args.segment, 0);
Florin Coras61ae0562020-09-02 19:10:28 -07001538 rmp->n_fds = n_fds;
1539 rmp->fd_flags = fd_flags;
1540
1541 /* Update app index for socket */
1542 handle = (app_ns_api_handle_t *) & cs->private_data;
1543 app_wrk = application_get_worker (app, args.wrk_map_index);
1544 handle->aah_app_wrk_index = app_wrk->wrk_index;
1545 }
1546
1547 clib_socket_sendmsg (cs, &msg, sizeof (msg), fds, n_fds);
1548}
1549
1550static void
Florin Corase191d762021-08-11 14:55:49 -07001551sapi_add_del_cert_key_handler (app_namespace_t *app_ns, clib_socket_t *cs,
1552 app_sapi_cert_key_add_del_msg_t *mp)
1553{
1554 vnet_app_add_cert_key_pair_args_t _a, *a = &_a;
1555 app_sapi_cert_key_add_del_reply_msg_t *rmp;
1556 app_sapi_msg_t msg = { 0 };
1557 int rv = 0;
1558
1559 if (mp->is_add)
1560 {
1561 const u32 max_certkey_len = 2e4, max_cert_len = 1e4, max_key_len = 1e4;
1562 clib_error_t *err;
1563 u8 *certkey = 0;
1564 u32 key_len;
1565
1566 if (mp->certkey_len > max_certkey_len)
1567 {
1568 rv = SESSION_E_INVALID;
1569 goto send_reply;
1570 }
1571
1572 vec_validate (certkey, mp->certkey_len - 1);
1573 err = clib_socket_recvmsg (cs, certkey, mp->certkey_len, 0, 0);
1574 if (err)
1575 {
1576 clib_error_report (err);
1577 clib_error_free (err);
1578 rv = SESSION_E_INVALID;
1579 goto send_reply;
1580 }
1581
1582 if (mp->cert_len > max_cert_len)
1583 {
1584 rv = SESSION_E_INVALID;
1585 goto send_reply;
1586 }
1587
1588 if (mp->certkey_len < mp->cert_len)
1589 {
1590 rv = SESSION_E_INVALID;
1591 goto send_reply;
1592 }
1593
1594 key_len = mp->certkey_len - mp->cert_len;
1595 if (key_len > max_key_len)
1596 {
1597 rv = SESSION_E_INVALID;
1598 goto send_reply;
1599 }
1600
1601 clib_memset (a, 0, sizeof (*a));
1602 a->cert = certkey;
1603 a->key = certkey + mp->cert_len;
1604 a->cert_len = mp->cert_len;
1605 a->key_len = key_len;
1606 rv = vnet_app_add_cert_key_pair (a);
1607
1608 vec_free (certkey);
1609 }
1610 else
1611 {
1612 rv = vnet_app_del_cert_key_pair (mp->index);
1613 }
1614
1615send_reply:
1616
1617 msg.type = APP_SAPI_MSG_TYPE_ADD_DEL_CERT_KEY_REPLY;
1618 rmp = &msg.cert_key_add_del_reply;
1619 rmp->retval = rv;
1620 rmp->context = mp->context;
1621 if (!rv && mp->is_add)
1622 rmp->index = a->index;
1623
1624 clib_socket_sendmsg (cs, &msg, sizeof (msg), 0, 0);
1625}
1626
1627static void
Florin Coras61ae0562020-09-02 19:10:28 -07001628sapi_socket_detach (app_namespace_t * app_ns, clib_socket_t * cs)
1629{
Florin Coras61ae0562020-09-02 19:10:28 -07001630 app_ns_api_handle_t *handle;
1631 app_worker_t *app_wrk;
1632 u32 api_client_handle;
1633
1634 api_client_handle = appns_sapi_socket_handle (app_ns, cs);
Florin Coras61ae0562020-09-02 19:10:28 -07001635
Florin Corasf99a7d62020-09-14 10:29:29 -07001636 /* Cleanup everything because app worker closed socket or crashed */
Florin Coras61ae0562020-09-02 19:10:28 -07001637 handle = (app_ns_api_handle_t *) & cs->private_data;
1638 app_wrk = app_worker_get (handle->aah_app_wrk_index);
Florin Corasf99a7d62020-09-14 10:29:29 -07001639
1640 vnet_app_worker_add_del_args_t args = {
1641 .app_index = app_wrk->app_index,
1642 .wrk_map_index = app_wrk->wrk_map_index,
1643 .api_client_index = api_client_handle,
1644 .is_add = 0
1645 };
1646 /* Send rpc to main thread for worker barrier */
1647 vlib_rpc_call_main_thread (vnet_app_worker_add_del, (u8 *) & args,
1648 sizeof (args));
Florin Coras61ae0562020-09-02 19:10:28 -07001649}
1650
1651static clib_error_t *
1652sapi_sock_read_ready (clib_file_t * cf)
1653{
1654 app_ns_api_handle_t *handle = (app_ns_api_handle_t *) & cf->private_data;
Florin Coras7360e3d2020-09-18 16:15:47 -07001655 vlib_main_t *vm = vlib_get_main ();
Florin Coras61ae0562020-09-02 19:10:28 -07001656 app_sapi_msg_t msg = { 0 };
1657 app_namespace_t *app_ns;
1658 clib_error_t *err = 0;
1659 clib_socket_t *cs;
1660
1661 app_ns = app_namespace_get (handle->aah_app_ns_index);
1662 cs = appns_sapi_get_socket (app_ns, handle->aah_sock_index);
1663 if (!cs)
1664 goto error;
1665
1666 err = clib_socket_recvmsg (cs, &msg, sizeof (msg), 0, 0);
1667 if (err)
1668 {
1669 clib_error_free (err);
1670 sapi_socket_detach (app_ns, cs);
1671 goto error;
1672 }
1673
1674 handle = (app_ns_api_handle_t *) & cs->private_data;
1675
Florin Coras7360e3d2020-09-18 16:15:47 -07001676 vlib_worker_thread_barrier_sync (vm);
1677
Florin Coras61ae0562020-09-02 19:10:28 -07001678 switch (msg.type)
1679 {
1680 case APP_SAPI_MSG_TYPE_ATTACH:
1681 session_api_attach_handler (app_ns, cs, &msg.attach);
1682 break;
1683 case APP_SAPI_MSG_TYPE_ADD_DEL_WORKER:
1684 sapi_add_del_worker_handler (app_ns, cs, &msg.worker_add_del);
1685 break;
Florin Corase191d762021-08-11 14:55:49 -07001686 case APP_SAPI_MSG_TYPE_ADD_DEL_CERT_KEY:
1687 sapi_add_del_cert_key_handler (app_ns, cs, &msg.cert_key_add_del);
1688 break;
Florin Coras61ae0562020-09-02 19:10:28 -07001689 default:
1690 clib_warning ("app wrk %u unknown message type: %u",
1691 handle->aah_app_wrk_index, msg.type);
1692 break;
1693 }
1694
Florin Coras7360e3d2020-09-18 16:15:47 -07001695 vlib_worker_thread_barrier_release (vm);
1696
Florin Coras61ae0562020-09-02 19:10:28 -07001697error:
1698 return 0;
1699}
1700
1701static clib_error_t *
1702sapi_sock_write_ready (clib_file_t * cf)
1703{
1704 app_ns_api_handle_t *handle = (app_ns_api_handle_t *) & cf->private_data;
1705 clib_warning ("called for app ns %u", handle->aah_app_ns_index);
1706 return 0;
1707}
1708
1709static clib_error_t *
1710sapi_sock_error (clib_file_t * cf)
1711{
1712 app_ns_api_handle_t *handle = (app_ns_api_handle_t *) & cf->private_data;
1713 app_namespace_t *app_ns;
1714 clib_socket_t *cs;
1715
1716 app_ns = app_namespace_get (handle->aah_app_ns_index);
1717 cs = appns_sapi_get_socket (app_ns, handle->aah_sock_index);
1718 if (!cs)
1719 return 0;
1720
1721 sapi_socket_detach (app_ns, cs);
1722 return 0;
1723}
1724
1725static clib_error_t *
1726sapi_sock_accept_ready (clib_file_t * scf)
1727{
1728 app_ns_api_handle_t handle = *(app_ns_api_handle_t *) & scf->private_data;
1729 app_namespace_t *app_ns;
1730 clib_file_t cf = { 0 };
1731 clib_error_t *err = 0;
1732 clib_socket_t *ccs, *scs;
1733
1734 /* Listener files point to namespace */
1735 app_ns = app_namespace_get (handle.aah_app_ns_index);
1736
1737 /*
1738 * Initialize client socket
1739 */
1740 ccs = appns_sapi_alloc_socket (app_ns);
1741
1742 /* Grab server socket after client is initialized */
1743 scs = appns_sapi_get_socket (app_ns, handle.aah_sock_index);
1744 if (!scs)
1745 goto error;
1746
1747 err = clib_socket_accept (scs, ccs);
1748 if (err)
1749 {
1750 clib_error_report (err);
1751 goto error;
1752 }
1753
1754 cf.read_function = sapi_sock_read_ready;
1755 cf.write_function = sapi_sock_write_ready;
1756 cf.error_function = sapi_sock_error;
1757 cf.file_descriptor = ccs->fd;
1758 /* File points to app namespace and socket */
1759 handle.aah_sock_index = appns_sapi_socket_index (app_ns, ccs);
Florin Coras6b6c10b2020-09-24 11:58:28 -07001760 cf.private_data = handle.as_u64;
Florin Coras61ae0562020-09-02 19:10:28 -07001761 cf.description = format (0, "app sock conn fd: %d", ccs->fd);
1762
1763 /* Poll until we get an attach message. Socket points to file and
1764 * application that owns the socket */
1765 handle.aah_app_wrk_index = APP_INVALID_INDEX;
1766 handle.aah_file_index = clib_file_add (&file_main, &cf);
Florin Coras6b6c10b2020-09-24 11:58:28 -07001767 ccs->private_data = handle.as_u64;
Florin Coras61ae0562020-09-02 19:10:28 -07001768
1769 return err;
1770
1771error:
1772 appns_sapi_free_socket (app_ns, ccs);
1773 return err;
1774}
1775
Nathan Skrzypczakb3ea73e2021-08-05 10:22:52 +02001776void
1777appns_sapi_del_ns_socket (app_namespace_t *app_ns)
1778{
1779 app_ns_api_handle_t *handle;
1780 clib_socket_t *cs;
1781
1782 pool_foreach (cs, app_ns->app_sockets)
1783 {
1784 handle = (app_ns_api_handle_t *) &cs->private_data;
1785 clib_file_del_by_index (&file_main, handle->aah_file_index);
1786
1787 clib_socket_close (cs);
1788 clib_socket_free (cs);
1789 }
1790 pool_free (app_ns->app_sockets);
1791}
1792
Florin Coras61ae0562020-09-02 19:10:28 -07001793int
1794appns_sapi_add_ns_socket (app_namespace_t * app_ns)
1795{
1796 char *subdir = "/app_ns_sockets/";
1797 app_ns_api_handle_t *handle;
1798 clib_file_t cf = { 0 };
1799 struct stat file_stat;
1800 clib_error_t *err;
1801 clib_socket_t *cs;
Benoît Ganne0bb670e2021-09-09 12:00:00 +02001802 char dir[4096];
Florin Coras61ae0562020-09-02 19:10:28 -07001803
Florin Coras7cb471a2021-07-23 08:39:26 -07001804 if (app_ns->netns)
Nathan Skrzypczak1a9e2f92021-07-28 19:35:08 +02001805 {
1806 if (!app_ns->sock_name)
1807 app_ns->sock_name = format (0, "@vpp/session/%v%c", app_ns->ns_id, 0);
1808 if (app_ns->sock_name[0] != '@')
1809 return VNET_API_ERROR_INVALID_VALUE;
1810 }
Florin Coras7cb471a2021-07-23 08:39:26 -07001811 else
Nathan Skrzypczak1a9e2f92021-07-28 19:35:08 +02001812 {
1813 snprintf (dir, sizeof (dir), "%s%s", vlib_unix_get_runtime_dir (),
1814 subdir);
1815 err = vlib_unix_recursive_mkdir ((char *) dir);
1816 if (err)
1817 {
1818 clib_error_report (err);
1819 return VNET_API_ERROR_SYSCALL_ERROR_1;
1820 }
1821
1822 if (!app_ns->sock_name)
1823 app_ns->sock_name = format (0, "%s%v%c", dir, app_ns->ns_id, 0);
1824 }
Florin Coras61ae0562020-09-02 19:10:28 -07001825
1826 /*
1827 * Create and initialize socket to listen on
1828 */
1829 cs = appns_sapi_alloc_socket (app_ns);
Nathan Skrzypczakb3ea73e2021-08-05 10:22:52 +02001830 cs->config = (char *) vec_dup (app_ns->sock_name);
Florin Coras61ae0562020-09-02 19:10:28 -07001831 cs->flags = CLIB_SOCKET_F_IS_SERVER |
1832 CLIB_SOCKET_F_ALLOW_GROUP_WRITE |
1833 CLIB_SOCKET_F_SEQPACKET | CLIB_SOCKET_F_PASSCRED;
1834
Florin Coras7cb471a2021-07-23 08:39:26 -07001835 if ((err = clib_socket_init_netns (cs, app_ns->netns)))
Florin Coras61ae0562020-09-02 19:10:28 -07001836 {
1837 clib_error_report (err);
Benoît Ganne0bb670e2021-09-09 12:00:00 +02001838 return -1;
Florin Coras61ae0562020-09-02 19:10:28 -07001839 }
1840
Florin Coras7cb471a2021-07-23 08:39:26 -07001841 if (!app_ns->netns && stat ((char *) app_ns->sock_name, &file_stat) == -1)
Benoît Ganne0bb670e2021-09-09 12:00:00 +02001842 return -1;
Florin Coras61ae0562020-09-02 19:10:28 -07001843
1844 /*
1845 * Start polling it
1846 */
1847 cf.read_function = sapi_sock_accept_ready;
1848 cf.file_descriptor = cs->fd;
1849 /* File points to namespace */
1850 handle = (app_ns_api_handle_t *) & cf.private_data;
1851 handle->aah_app_ns_index = app_namespace_index (app_ns);
1852 handle->aah_sock_index = appns_sapi_socket_index (app_ns, cs);
1853 cf.description = format (0, "app sock listener: %s", app_ns->sock_name);
1854
1855 /* Socket points to clib file index */
1856 handle = (app_ns_api_handle_t *) & cs->private_data;
1857 handle->aah_file_index = clib_file_add (&file_main, &cf);
1858 handle->aah_app_wrk_index = APP_INVALID_INDEX;
1859
Benoît Ganne0bb670e2021-09-09 12:00:00 +02001860 return 0;
Florin Coras61ae0562020-09-02 19:10:28 -07001861}
1862
Filip Tehlar0046e972021-06-26 22:12:08 +00001863static void
1864vl_api_application_tls_cert_add_t_handler (
1865 vl_api_application_tls_cert_add_t *mp)
1866{
1867 /* deprecated */
1868}
1869
1870static void
1871vl_api_application_tls_key_add_t_handler (vl_api_application_tls_key_add_t *mp)
1872{
1873 /* deprecated */
1874}
1875
1876#include <vnet/session/session.api.c>
1877static clib_error_t *
1878session_api_hookup (vlib_main_t *vm)
1879{
1880 /*
1881 * Set up the (msg_name, crc, message-id) table
1882 */
1883 REPLY_MSG_ID_BASE = setup_message_id_table ();
1884
1885 return 0;
1886}
1887
1888VLIB_API_INIT_FUNCTION (session_api_hookup);
1889
Florin Coras61ae0562020-09-02 19:10:28 -07001890/*
Dave Barach68b0fb02017-02-28 15:15:56 -05001891 * fd.io coding-style-patch-verification: ON
1892 *
1893 * Local Variables:
1894 * eval: (c-set-style "gnu")
1895 * End:
1896 */