blob: c17d98c0517afefd2168880543117dec27bc5541 [file] [log] [blame]
Dave Barach68b0fb02017-02-28 15:15:56 -05001/*
Florin Coras288eaab2019-02-03 15:26:14 -08002 * Copyright (c) 2015-2019 Cisco and/or its affiliates.
Dave Barach68b0fb02017-02-28 15:15:56 -05003 * Licensed under the Apache License, Version 2.0 (the "License");
4 * you may not use this file except in compliance with the License.
5 * You may obtain a copy of the License at:
6 *
7 * http://www.apache.org/licenses/LICENSE-2.0
8 *
9 * Unless required by applicable law or agreed to in writing, software
10 * distributed under the License is distributed on an "AS IS" BASIS,
11 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12 * See the License for the specific language governing permissions and
13 * limitations under the License.
14 */
15
16#include <vnet/vnet.h>
17#include <vlibmemory/api.h>
18#include <vnet/session/application.h>
Florin Coras1c710452017-10-17 00:03:13 -070019#include <vnet/session/application_interface.h>
Florin Corasba7d8f52019-02-22 13:11:38 -080020#include <vnet/session/application_local.h>
Florin Coras1c710452017-10-17 00:03:13 -070021#include <vnet/session/session_rules_table.h>
Florin Coras6c36f532017-11-03 18:32:34 -070022#include <vnet/session/session_table.h>
Florin Corasc9940fc2019-02-05 20:55:11 -080023#include <vnet/session/session.h>
Dave Barach68b0fb02017-02-28 15:15:56 -050024
25#include <vnet/vnet_msg_enum.h>
Dave Barach68b0fb02017-02-28 15:15:56 -050026
27#define vl_typedefs /* define message structures */
28#include <vnet/vnet_all_api_h.h>
29#undef vl_typedefs
30
31#define vl_endianfun /* define message structures */
32#include <vnet/vnet_all_api_h.h>
33#undef vl_endianfun
34
35/* instantiate all the print functions we know about */
36#define vl_print(handle, ...) vlib_cli_output (handle, __VA_ARGS__)
37#define vl_printfun
38#include <vnet/vnet_all_api_h.h>
39#undef vl_printfun
40
41#include <vlibapi/api_helper_macros.h>
42
43#define foreach_session_api_msg \
44_(MAP_ANOTHER_SEGMENT_REPLY, map_another_segment_reply) \
Florin Coras6cf30ad2017-04-04 23:08:23 -070045_(APPLICATION_ATTACH, application_attach) \
Florin Coras458089b2019-08-21 16:20:44 -070046_(APP_ATTACH, app_attach) \
Florin Coras6cf30ad2017-04-04 23:08:23 -070047_(APPLICATION_DETACH, application_detach) \
Dave Barach68b0fb02017-02-28 15:15:56 -050048_(BIND_URI, bind_uri) \
49_(UNBIND_URI, unbind_uri) \
50_(CONNECT_URI, connect_uri) \
51_(DISCONNECT_SESSION, disconnect_session) \
52_(DISCONNECT_SESSION_REPLY, disconnect_session_reply) \
Florin Corascea194d2017-10-02 00:18:51 -070053_(BIND_SOCK, bind_sock) \
Dave Barach68b0fb02017-02-28 15:15:56 -050054_(UNBIND_SOCK, unbind_sock) \
55_(CONNECT_SOCK, connect_sock) \
Florin Corase04c2992017-03-01 08:17:34 -080056_(SESSION_ENABLE_DISABLE, session_enable_disable) \
Florin Corascea194d2017-10-02 00:18:51 -070057_(APP_NAMESPACE_ADD_DEL, app_namespace_add_del) \
Florin Coras1c710452017-10-17 00:03:13 -070058_(SESSION_RULE_ADD_DEL, session_rule_add_del) \
Florin Coras6c36f532017-11-03 18:32:34 -070059_(SESSION_RULES_DUMP, session_rules_dump) \
Florin Coras371ca502018-02-21 12:07:41 -080060_(APPLICATION_TLS_CERT_ADD, application_tls_cert_add) \
61_(APPLICATION_TLS_KEY_ADD, application_tls_key_add) \
Nathan Skrzypczak79f89532019-09-13 11:08:13 +020062_(APP_ADD_CERT_KEY_PAIR, app_add_cert_key_pair) \
63_(APP_DEL_CERT_KEY_PAIR, app_del_cert_key_pair) \
Florin Coras15531972018-08-12 23:50:53 -070064_(APP_WORKER_ADD_DEL, app_worker_add_del) \
Florin Corase04c2992017-03-01 08:17:34 -080065
Dave Barach68b0fb02017-02-28 15:15:56 -050066static int
Florin Coras99368312018-08-02 10:45:44 -070067session_send_fds (vl_api_registration_t * reg, int fds[], int n_fds)
Florin Corasb384b542018-01-15 01:08:33 -080068{
69 clib_error_t *error;
70 if (vl_api_registration_file_index (reg) == VL_API_INVALID_FI)
71 {
72 clib_warning ("can't send memfd fd");
73 return -1;
74 }
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);
79 return -1;
80 }
81 return 0;
82}
83
84static int
Florin Corasfa76a762018-11-29 12:40:10 -080085send_add_segment_callback (u32 api_client_index, u64 segment_handle)
Dave Barach68b0fb02017-02-28 15:15:56 -050086{
Florin Coras99368312018-08-02 10:45:44 -070087 int fds[SESSION_N_FD_TYPE], n_fds = 0;
Dave Barach68b0fb02017-02-28 15:15:56 -050088 vl_api_map_another_segment_t *mp;
Florin Corasb384b542018-01-15 01:08:33 -080089 vl_api_registration_t *reg;
Florin Coras88001c62019-04-24 14:44:46 -070090 fifo_segment_t *fs;
Florin Corasfa76a762018-11-29 12:40:10 -080091 ssvm_private_t *sp;
Florin Coras99368312018-08-02 10:45:44 -070092 u8 fd_flags = 0;
Dave Barach68b0fb02017-02-28 15:15:56 -050093
Florin Corasb384b542018-01-15 01:08:33 -080094 reg = vl_mem_api_client_index_to_registration (api_client_index);
95 if (!reg)
96 {
Florin Corasfa76a762018-11-29 12:40:10 -080097 clib_warning ("no api registration for client: %u", api_client_index);
Florin Corasb384b542018-01-15 01:08:33 -080098 return -1;
99 }
Dave Barach68b0fb02017-02-28 15:15:56 -0500100
Florin Corasfa76a762018-11-29 12:40:10 -0800101 fs = segment_manager_get_segment_w_handle (segment_handle);
102 sp = &fs->ssvm;
Florin Coras99368312018-08-02 10:45:44 -0700103 if (ssvm_type (sp) == SSVM_SEGMENT_MEMFD)
Florin Corasb384b542018-01-15 01:08:33 -0800104 {
Florin Coras99368312018-08-02 10:45:44 -0700105 if (vl_api_registration_file_index (reg) == VL_API_INVALID_FI)
106 {
107 clib_warning ("can't send memfd fd");
108 return -1;
109 }
110
111 fd_flags |= SESSION_FD_F_MEMFD_SEGMENT;
112 fds[n_fds] = sp->fd;
113 n_fds += 1;
Florin Corasb384b542018-01-15 01:08:33 -0800114 }
Dave Barach68b0fb02017-02-28 15:15:56 -0500115
Florin Coras99368312018-08-02 10:45:44 -0700116 mp = vl_mem_api_alloc_as_if_client_w_reg (reg, sizeof (*mp));
Dave Barachb7b92992018-10-17 10:38:51 -0400117 clib_memset (mp, 0, sizeof (*mp));
Dave Barach68b0fb02017-02-28 15:15:56 -0500118 mp->_vl_msg_id = clib_host_to_net_u16 (VL_API_MAP_ANOTHER_SEGMENT);
Florin Corasb384b542018-01-15 01:08:33 -0800119 mp->segment_size = sp->ssvm_size;
Florin Coras99368312018-08-02 10:45:44 -0700120 mp->fd_flags = fd_flags;
Florin Corasfa76a762018-11-29 12:40:10 -0800121 mp->segment_handle = clib_host_to_net_u64 (segment_handle);
Florin Corasb384b542018-01-15 01:08:33 -0800122 strncpy ((char *) mp->segment_name, (char *) sp->name,
Dave Barach68b0fb02017-02-28 15:15:56 -0500123 sizeof (mp->segment_name) - 1);
124
Florin Corasb384b542018-01-15 01:08:33 -0800125 vl_msg_api_send_shmem (reg->vl_input_queue, (u8 *) & mp);
126
Florin Coras99368312018-08-02 10:45:44 -0700127 if (n_fds)
128 return session_send_fds (reg, fds, n_fds);
Dave Barach68b0fb02017-02-28 15:15:56 -0500129
130 return 0;
131}
132
133static int
Florin Corasfa76a762018-11-29 12:40:10 -0800134send_del_segment_callback (u32 api_client_index, u64 segment_handle)
Florin Corasf8f516a2018-02-08 15:10:09 -0800135{
136 vl_api_unmap_segment_t *mp;
137 vl_api_registration_t *reg;
138
139 reg = vl_mem_api_client_index_to_registration (api_client_index);
140 if (!reg)
141 {
142 clib_warning ("no registration: %u", api_client_index);
143 return -1;
144 }
145
Florin Coras99368312018-08-02 10:45:44 -0700146 mp = vl_mem_api_alloc_as_if_client_w_reg (reg, sizeof (*mp));
Dave Barachb7b92992018-10-17 10:38:51 -0400147 clib_memset (mp, 0, sizeof (*mp));
Florin Corasf8f516a2018-02-08 15:10:09 -0800148 mp->_vl_msg_id = clib_host_to_net_u16 (VL_API_UNMAP_SEGMENT);
Florin Corasfa76a762018-11-29 12:40:10 -0800149 mp->segment_handle = clib_host_to_net_u64 (segment_handle);
Florin Corasf8f516a2018-02-08 15:10:09 -0800150 vl_msg_api_send_shmem (reg->vl_input_queue, (u8 *) & mp);
151
Florin Coras99368312018-08-02 10:45:44 -0700152 return 0;
153}
154
155static int
Florin Coras83ea6692018-10-12 16:55:14 -0700156mq_try_lock_and_alloc_msg (svm_msg_q_t * app_mq, svm_msg_q_msg_t * msg)
157{
158 int rv;
159 u8 try = 0;
160 while (try < 100)
161 {
162 rv = svm_msg_q_lock_and_alloc_msg_w_ring (app_mq,
163 SESSION_MQ_CTRL_EVT_RING,
164 SVM_Q_NOWAIT, msg);
165 if (!rv)
166 return 0;
167 try++;
Florin Corase2ea1932018-12-17 23:08:14 -0800168 usleep (1);
Florin Coras83ea6692018-10-12 16:55:14 -0700169 }
Florin Corasdc2e2512018-12-03 17:47:26 -0800170 clib_warning ("failed to alloc msg");
Florin Coras83ea6692018-10-12 16:55:14 -0700171 return -1;
172}
173
174static int
Florin Coras288eaab2019-02-03 15:26:14 -0800175mq_send_session_accepted_cb (session_t * s)
Florin Coras52207f12018-07-12 14:48:06 -0700176{
Florin Coras15531972018-08-12 23:50:53 -0700177 app_worker_t *app_wrk = app_worker_get (s->app_wrk_index);
Florin Coras52207f12018-07-12 14:48:06 -0700178 svm_msg_q_msg_t _msg, *msg = &_msg;
179 svm_msg_q_t *vpp_queue, *app_mq;
Florin Coras288eaab2019-02-03 15:26:14 -0800180 session_t *listener;
Florin Coras52207f12018-07-12 14:48:06 -0700181 session_accepted_msg_t *mp;
182 session_event_t *evt;
Florin Coras15531972018-08-12 23:50:53 -0700183 application_t *app;
Florin Coras52207f12018-07-12 14:48:06 -0700184
Florin Coras15531972018-08-12 23:50:53 -0700185 app = application_get (app_wrk->app_index);
186 app_mq = app_wrk->event_queue;
Florin Coras83ea6692018-10-12 16:55:14 -0700187 if (mq_try_lock_and_alloc_msg (app_mq, msg))
188 return -1;
Florin Coras52207f12018-07-12 14:48:06 -0700189
190 evt = svm_msg_q_msg_data (app_mq, msg);
Dave Barachb7b92992018-10-17 10:38:51 -0400191 clib_memset (evt, 0, sizeof (*evt));
Florin Coras52207f12018-07-12 14:48:06 -0700192 evt->event_type = SESSION_CTRL_EVT_ACCEPTED;
193 mp = (session_accepted_msg_t *) evt->data;
Florin Coras87c65702019-01-26 14:33:26 -0800194 clib_memset (mp, 0, sizeof (*mp));
Florin Corasab2f6db2018-08-31 14:31:41 -0700195 mp->context = app->app_index;
Florin Coras288eaab2019-02-03 15:26:14 -0800196 mp->server_rx_fifo = pointer_to_uword (s->rx_fifo);
197 mp->server_tx_fifo = pointer_to_uword (s->tx_fifo);
Florin Corasfa76a762018-11-29 12:40:10 -0800198 mp->segment_handle = session_segment_handle (s);
Florin Coras52207f12018-07-12 14:48:06 -0700199
200 if (session_has_transport (s))
201 {
Nathan Skrzypczak2f0f96b2019-06-13 10:14:28 +0200202 listener = listen_session_get_from_handle (s->listener_handle);
Florin Coras87d66332019-06-11 12:31:31 -0700203 mp->listener_handle = app_listen_session_handle (listener);
Florin Coras52207f12018-07-12 14:48:06 -0700204 if (application_is_proxy (app))
205 {
206 listener =
Florin Coras15531972018-08-12 23:50:53 -0700207 app_worker_first_listener (app_wrk, session_get_fib_proto (s),
208 session_get_transport_proto (s));
Florin Coras52207f12018-07-12 14:48:06 -0700209 if (listener)
210 mp->listener_handle = listen_session_get_handle (listener);
211 }
Florin Coras31c99552019-03-01 13:00:58 -0800212 vpp_queue = session_main_get_vpp_event_queue (s->thread_index);
Florin Coras52207f12018-07-12 14:48:06 -0700213 mp->vpp_event_queue_address = pointer_to_uword (vpp_queue);
214 mp->handle = session_handle (s);
Aloys Augustincdb71702019-04-08 17:54:39 +0200215
Florin Coras09d18c22019-04-24 11:10:02 -0700216 session_get_endpoint (s, &mp->rmt, 0 /* is_lcl */ );
Florin Coras52207f12018-07-12 14:48:06 -0700217 }
218 else
219 {
Florin Coras2b81e3c2019-02-27 07:55:46 -0800220 ct_connection_t *ct;
Florin Coras99368312018-08-02 10:45:44 -0700221
Florin Coras2b81e3c2019-02-27 07:55:46 -0800222 ct = (ct_connection_t *) session_get_transport (s);
Nathan Skrzypczak2f0f96b2019-06-13 10:14:28 +0200223 listener = listen_session_get_from_handle (s->listener_handle);
Florin Coras87d66332019-06-11 12:31:31 -0700224 mp->listener_handle = app_listen_session_handle (listener);
Florin Coras09d18c22019-04-24 11:10:02 -0700225 mp->rmt.is_ip4 = session_type_is_ip4 (listener->session_type);
226 mp->rmt.port = ct->c_rmt_port;
Florin Coras2b81e3c2019-02-27 07:55:46 -0800227 mp->handle = session_handle (s);
Florin Coras653e43f2019-03-04 10:56:23 -0800228 vpp_queue = session_main_get_vpp_event_queue (0);
Florin Coras54693d22018-07-17 10:46:29 -0700229 mp->vpp_event_queue_address = pointer_to_uword (vpp_queue);
Florin Coras52207f12018-07-12 14:48:06 -0700230 }
Florin Coras537b17e2018-09-28 10:35:45 -0700231 svm_msg_q_add_and_unlock (app_mq, msg);
Florin Coras52207f12018-07-12 14:48:06 -0700232
233 return 0;
234}
235
Florin Coras72b04282019-01-14 17:23:11 -0800236static inline void
237mq_send_session_close_evt (app_worker_t * app_wrk, session_handle_t sh,
238 session_evt_type_t evt_type)
Florin Coras52207f12018-07-12 14:48:06 -0700239{
Florin Coras52207f12018-07-12 14:48:06 -0700240 svm_msg_q_msg_t _msg, *msg = &_msg;
241 session_disconnected_msg_t *mp;
242 svm_msg_q_t *app_mq;
243 session_event_t *evt;
244
Florin Coras15531972018-08-12 23:50:53 -0700245 app_mq = app_wrk->event_queue;
Florin Coras83ea6692018-10-12 16:55:14 -0700246 if (mq_try_lock_and_alloc_msg (app_mq, msg))
247 return;
Florin Coras52207f12018-07-12 14:48:06 -0700248 evt = svm_msg_q_msg_data (app_mq, msg);
Dave Barachb7b92992018-10-17 10:38:51 -0400249 clib_memset (evt, 0, sizeof (*evt));
Florin Coras72b04282019-01-14 17:23:11 -0800250 evt->event_type = evt_type;
Florin Coras52207f12018-07-12 14:48:06 -0700251 mp = (session_disconnected_msg_t *) evt->data;
Florin Coras72b04282019-01-14 17:23:11 -0800252 mp->handle = sh;
Florin Corasc1f5a432018-11-20 11:31:26 -0800253 mp->context = app_wrk->api_client_index;
Florin Coras537b17e2018-09-28 10:35:45 -0700254 svm_msg_q_add_and_unlock (app_mq, msg);
Florin Coras52207f12018-07-12 14:48:06 -0700255}
256
Florin Coras72b04282019-01-14 17:23:11 -0800257static inline void
258mq_notify_close_subscribers (u32 app_index, session_handle_t sh,
259 svm_fifo_t * f, session_evt_type_t evt_type)
260{
261 app_worker_t *app_wrk;
262 application_t *app;
263 int i;
264
265 app = application_get (app_index);
266 if (!app)
267 return;
268
269 for (i = 0; i < f->n_subscribers; i++)
270 {
271 if (!(app_wrk = application_get_worker (app, f->subscribers[i])))
272 continue;
273 mq_send_session_close_evt (app_wrk, sh, SESSION_CTRL_EVT_DISCONNECTED);
274 }
275}
276
277static void
Florin Coras288eaab2019-02-03 15:26:14 -0800278mq_send_session_disconnected_cb (session_t * s)
Florin Coras72b04282019-01-14 17:23:11 -0800279{
280 app_worker_t *app_wrk = app_worker_get (s->app_wrk_index);
281 session_handle_t sh = session_handle (s);
282
283 mq_send_session_close_evt (app_wrk, session_handle (s),
284 SESSION_CTRL_EVT_DISCONNECTED);
285
Florin Coras288eaab2019-02-03 15:26:14 -0800286 if (svm_fifo_n_subscribers (s->rx_fifo))
287 mq_notify_close_subscribers (app_wrk->app_index, sh, s->rx_fifo,
Florin Coras72b04282019-01-14 17:23:11 -0800288 SESSION_CTRL_EVT_DISCONNECTED);
289}
290
Florin Coras52207f12018-07-12 14:48:06 -0700291static void
Florin Coras288eaab2019-02-03 15:26:14 -0800292mq_send_session_reset_cb (session_t * s)
Florin Coras52207f12018-07-12 14:48:06 -0700293{
Florin Coras72b04282019-01-14 17:23:11 -0800294 app_worker_t *app_wrk = app_worker_get (s->app_wrk_index);
295 session_handle_t sh = session_handle (s);
Florin Coras52207f12018-07-12 14:48:06 -0700296
Florin Coras72b04282019-01-14 17:23:11 -0800297 mq_send_session_close_evt (app_wrk, sh, SESSION_CTRL_EVT_RESET);
298
Florin Coras288eaab2019-02-03 15:26:14 -0800299 if (svm_fifo_n_subscribers (s->rx_fifo))
300 mq_notify_close_subscribers (app_wrk->app_index, sh, s->rx_fifo,
Florin Coras72b04282019-01-14 17:23:11 -0800301 SESSION_CTRL_EVT_RESET);
Florin Coras52207f12018-07-12 14:48:06 -0700302}
303
Florin Coras458089b2019-08-21 16:20:44 -0700304int
Florin Coras15531972018-08-12 23:50:53 -0700305mq_send_session_connected_cb (u32 app_wrk_index, u32 api_context,
Florin Coras288eaab2019-02-03 15:26:14 -0800306 session_t * s, u8 is_fail)
Florin Coras52207f12018-07-12 14:48:06 -0700307{
308 svm_msg_q_msg_t _msg, *msg = &_msg;
309 session_connected_msg_t *mp;
310 svm_msg_q_t *vpp_mq, *app_mq;
311 transport_connection_t *tc;
Florin Coras15531972018-08-12 23:50:53 -0700312 app_worker_t *app_wrk;
Florin Coras52207f12018-07-12 14:48:06 -0700313 session_event_t *evt;
Florin Coras52207f12018-07-12 14:48:06 -0700314
Florin Coras15531972018-08-12 23:50:53 -0700315 app_wrk = app_worker_get (app_wrk_index);
Florin Coras15531972018-08-12 23:50:53 -0700316 app_mq = app_wrk->event_queue;
Florin Coras52207f12018-07-12 14:48:06 -0700317 if (!app_mq)
318 {
Florin Corasc1f5a432018-11-20 11:31:26 -0800319 clib_warning ("app %u with api index: %u not attached",
320 app_wrk->app_index, app_wrk->api_client_index);
Florin Coras52207f12018-07-12 14:48:06 -0700321 return -1;
322 }
323
Florin Coras83ea6692018-10-12 16:55:14 -0700324 if (mq_try_lock_and_alloc_msg (app_mq, msg))
325 return -1;
Florin Corasdc2e2512018-12-03 17:47:26 -0800326
Florin Coras52207f12018-07-12 14:48:06 -0700327 evt = svm_msg_q_msg_data (app_mq, msg);
Dave Barachb7b92992018-10-17 10:38:51 -0400328 clib_memset (evt, 0, sizeof (*evt));
Florin Coras52207f12018-07-12 14:48:06 -0700329 evt->event_type = SESSION_CTRL_EVT_CONNECTED;
330 mp = (session_connected_msg_t *) evt->data;
Florin Coras87c65702019-01-26 14:33:26 -0800331 clib_memset (mp, 0, sizeof (*mp));
Florin Coras52207f12018-07-12 14:48:06 -0700332 mp->context = api_context;
333
334 if (is_fail)
335 goto done;
336
337 if (session_has_transport (s))
338 {
339 tc = session_get_transport (s);
340 if (!tc)
341 {
342 is_fail = 1;
343 goto done;
344 }
345
Florin Coras31c99552019-03-01 13:00:58 -0800346 vpp_mq = session_main_get_vpp_event_queue (s->thread_index);
Florin Coras52207f12018-07-12 14:48:06 -0700347 mp->handle = session_handle (s);
348 mp->vpp_event_queue_address = pointer_to_uword (vpp_mq);
Aloys Augustincdb71702019-04-08 17:54:39 +0200349
Florin Coras09d18c22019-04-24 11:10:02 -0700350 session_get_endpoint (s, &mp->lcl, 1 /* is_lcl */ );
Aloys Augustincdb71702019-04-08 17:54:39 +0200351
Florin Coras288eaab2019-02-03 15:26:14 -0800352 mp->server_rx_fifo = pointer_to_uword (s->rx_fifo);
353 mp->server_tx_fifo = pointer_to_uword (s->tx_fifo);
Florin Coras2b81e3c2019-02-27 07:55:46 -0800354 mp->segment_handle = session_segment_handle (s);
Florin Coras52207f12018-07-12 14:48:06 -0700355 }
356 else
357 {
Florin Coras2b81e3c2019-02-27 07:55:46 -0800358 ct_connection_t *cct;
359 session_t *ss;
Florin Coras99368312018-08-02 10:45:44 -0700360
Florin Coras2b81e3c2019-02-27 07:55:46 -0800361 cct = (ct_connection_t *) session_get_transport (s);
Florin Coras2b81e3c2019-02-27 07:55:46 -0800362 mp->handle = session_handle (s);
Florin Coras09d18c22019-04-24 11:10:02 -0700363 mp->lcl.port = cct->c_lcl_port;
364 mp->lcl.is_ip4 = cct->c_is_ip4;
Florin Coras653e43f2019-03-04 10:56:23 -0800365 vpp_mq = session_main_get_vpp_event_queue (0);
Florin Coras54693d22018-07-17 10:46:29 -0700366 mp->vpp_event_queue_address = pointer_to_uword (vpp_mq);
Florin Coras653e43f2019-03-04 10:56:23 -0800367 mp->server_rx_fifo = pointer_to_uword (s->rx_fifo);
368 mp->server_tx_fifo = pointer_to_uword (s->tx_fifo);
369 mp->segment_handle = session_segment_handle (s);
Florin Coras2b81e3c2019-02-27 07:55:46 -0800370 ss = ct_session_get_peer (s);
Florin Coras653e43f2019-03-04 10:56:23 -0800371 mp->ct_rx_fifo = pointer_to_uword (ss->tx_fifo);
372 mp->ct_tx_fifo = pointer_to_uword (ss->rx_fifo);
373 mp->ct_segment_handle = session_segment_handle (ss);
Florin Coras52207f12018-07-12 14:48:06 -0700374 }
375
376done:
377 mp->retval = is_fail ?
378 clib_host_to_net_u32 (VNET_API_ERROR_SESSION_CONNECT) : 0;
379
Florin Coras537b17e2018-09-28 10:35:45 -0700380 svm_msg_q_add_and_unlock (app_mq, msg);
Florin Coras52207f12018-07-12 14:48:06 -0700381 return 0;
382}
383
Florin Coras458089b2019-08-21 16:20:44 -0700384int
Florin Coras60116992018-08-27 09:52:18 -0700385mq_send_session_bound_cb (u32 app_wrk_index, u32 api_context,
386 session_handle_t handle, int rv)
387{
388 svm_msg_q_msg_t _msg, *msg = &_msg;
389 svm_msg_q_t *app_mq, *vpp_evt_q;
Yu Ping0b819152019-05-07 02:24:30 +0800390 transport_endpoint_t tep;
Florin Coras60116992018-08-27 09:52:18 -0700391 session_bound_msg_t *mp;
392 app_worker_t *app_wrk;
393 session_event_t *evt;
Florin Corasc9940fc2019-02-05 20:55:11 -0800394 app_listener_t *al;
395 session_t *ls = 0;
Florin Coras60116992018-08-27 09:52:18 -0700396 app_wrk = app_worker_get (app_wrk_index);
Florin Coras60116992018-08-27 09:52:18 -0700397 app_mq = app_wrk->event_queue;
398 if (!app_mq)
399 {
Florin Corasc1f5a432018-11-20 11:31:26 -0800400 clib_warning ("app %u with api index: %u not attached",
401 app_wrk->app_index, app_wrk->api_client_index);
Florin Coras60116992018-08-27 09:52:18 -0700402 return -1;
403 }
404
Florin Coras83ea6692018-10-12 16:55:14 -0700405 if (mq_try_lock_and_alloc_msg (app_mq, msg))
406 return -1;
407
Florin Coras60116992018-08-27 09:52:18 -0700408 evt = svm_msg_q_msg_data (app_mq, msg);
Dave Barachb7b92992018-10-17 10:38:51 -0400409 clib_memset (evt, 0, sizeof (*evt));
Florin Coras60116992018-08-27 09:52:18 -0700410 evt->event_type = SESSION_CTRL_EVT_BOUND;
411 mp = (session_bound_msg_t *) evt->data;
412 mp->context = api_context;
413
414 if (rv)
415 goto done;
416
417 mp->handle = handle;
Florin Corasd4295e62019-02-22 13:11:38 -0800418 al = app_listener_get_w_handle (handle);
419 if (al->session_index != SESSION_INVALID_INDEX)
420 ls = app_listener_get_session (al);
Florin Coras60116992018-08-27 09:52:18 -0700421 else
Florin Corasd4295e62019-02-22 13:11:38 -0800422 ls = app_listener_get_local_session (al);
Yu Ping0b819152019-05-07 02:24:30 +0800423
424 session_get_endpoint (ls, &tep, 1 /* is_lcl */ );
425 mp->lcl_port = tep.port;
426 mp->lcl_is_ip4 = tep.is_ip4;
427 clib_memcpy_fast (mp->lcl_ip, &tep.ip, sizeof (tep.ip));
Florin Coras60116992018-08-27 09:52:18 -0700428
Florin Coras31c99552019-03-01 13:00:58 -0800429 vpp_evt_q = session_main_get_vpp_event_queue (0);
Florin Coras5f45e012019-01-23 09:21:30 -0800430 mp->vpp_evt_q = pointer_to_uword (vpp_evt_q);
431
Florin Coras2b81e3c2019-02-27 07:55:46 -0800432 if (session_transport_service_type (ls) == TRANSPORT_SERVICE_CL)
Florin Coras60116992018-08-27 09:52:18 -0700433 {
Florin Coras288eaab2019-02-03 15:26:14 -0800434 mp->rx_fifo = pointer_to_uword (ls->rx_fifo);
435 mp->tx_fifo = pointer_to_uword (ls->tx_fifo);
Florin Coras60116992018-08-27 09:52:18 -0700436 }
437
438done:
439 mp->retval = rv;
Florin Coras537b17e2018-09-28 10:35:45 -0700440 svm_msg_q_add_and_unlock (app_mq, msg);
Florin Coras60116992018-08-27 09:52:18 -0700441 return 0;
442}
443
Florin Coras458089b2019-08-21 16:20:44 -0700444void
445mq_send_unlisten_reply (app_worker_t * app_wrk, session_handle_t sh,
446 u32 context, int rv)
447{
448 svm_msg_q_msg_t _msg, *msg = &_msg;
449 session_unlisten_reply_msg_t *ump;
450 svm_msg_q_t *app_mq;
451 session_event_t *evt;
452
453 app_mq = app_wrk->event_queue;
454 if (mq_try_lock_and_alloc_msg (app_mq, msg))
455 return;
456
457 evt = svm_msg_q_msg_data (app_mq, msg);
458 clib_memset (evt, 0, sizeof (*evt));
459 evt->event_type = SESSION_CTRL_EVT_UNLISTEN_REPLY;
460 ump = (session_unlisten_reply_msg_t *) evt->data;
461 ump->context = context;
462 ump->handle = sh;
463 ump->retval = rv;
464 svm_msg_q_add_and_unlock (app_mq, msg);
465}
466
Florin Coras49568af2019-07-31 16:46:24 -0700467static void
468mq_send_session_migrate_cb (session_t * s, session_handle_t new_sh)
469{
470 clib_warning ("not supported");
471}
472
Florin Coras52207f12018-07-12 14:48:06 -0700473static session_cb_vft_t session_mq_cb_vft = {
474 .session_accept_callback = mq_send_session_accepted_cb,
475 .session_disconnect_callback = mq_send_session_disconnected_cb,
476 .session_connected_callback = mq_send_session_connected_cb,
477 .session_reset_callback = mq_send_session_reset_cb,
Florin Coras49568af2019-07-31 16:46:24 -0700478 .session_migrate_callback = mq_send_session_migrate_cb,
Florin Coras52207f12018-07-12 14:48:06 -0700479 .add_segment_callback = send_add_segment_callback,
480 .del_segment_callback = send_del_segment_callback,
481};
482
Dave Barach68b0fb02017-02-28 15:15:56 -0500483static void
Florin Corase04c2992017-03-01 08:17:34 -0800484vl_api_session_enable_disable_t_handler (vl_api_session_enable_disable_t * mp)
485{
486 vl_api_session_enable_disable_reply_t *rmp;
487 vlib_main_t *vm = vlib_get_main ();
488 int rv = 0;
489
490 vnet_session_enable_disable (vm, mp->is_enable);
491 REPLY_MACRO (VL_API_SESSION_ENABLE_DISABLE_REPLY);
492}
493
Florin Coras458089b2019-08-21 16:20:44 -0700494/* ### WILL BE DEPRECATED POST 20.01 ### */
Florin Corase04c2992017-03-01 08:17:34 -0800495static void
Florin Coras6cf30ad2017-04-04 23:08:23 -0700496vl_api_application_attach_t_handler (vl_api_application_attach_t * mp)
Dave Barach68b0fb02017-02-28 15:15:56 -0500497{
Florin Coras99368312018-08-02 10:45:44 -0700498 int rv = 0, fds[SESSION_N_FD_TYPE], n_fds = 0;
Florin Coras6cf30ad2017-04-04 23:08:23 -0700499 vl_api_application_attach_reply_t *rmp;
Florin Corasb384b542018-01-15 01:08:33 -0800500 ssvm_private_t *segp, *evt_q_segment;
Florin Coras6cf30ad2017-04-04 23:08:23 -0700501 vnet_app_attach_args_t _a, *a = &_a;
Florin Corasb384b542018-01-15 01:08:33 -0800502 vl_api_registration_t *reg;
Florin Coras99368312018-08-02 10:45:44 -0700503 u8 fd_flags = 0;
Dave Barach68b0fb02017-02-28 15:15:56 -0500504
Florin Corasfc804d92018-01-26 01:27:01 -0800505 reg = vl_api_client_index_to_registration (mp->client_index);
506 if (!reg)
507 return;
508
Florin Coras31c99552019-03-01 13:00:58 -0800509 if (session_main_is_enabled () == 0)
Florin Coras6cf30ad2017-04-04 23:08:23 -0700510 {
511 rv = VNET_API_ERROR_FEATURE_DISABLED;
512 goto done;
513 }
Dave Barach68b0fb02017-02-28 15:15:56 -0500514
Florin Corasff6e7692017-12-11 04:59:01 -0800515 STATIC_ASSERT (sizeof (u64) * APP_OPTIONS_N_OPTIONS <=
Florin Coras6cf30ad2017-04-04 23:08:23 -0700516 sizeof (mp->options),
517 "Out of options, fix api message definition");
Dave Barach68b0fb02017-02-28 15:15:56 -0500518
Dave Barachb7b92992018-10-17 10:38:51 -0400519 clib_memset (a, 0, sizeof (*a));
Dave Barach68b0fb02017-02-28 15:15:56 -0500520 a->api_client_index = mp->client_index;
521 a->options = mp->options;
Florin Coras64424012019-03-02 10:47:47 -0800522 a->session_cb_vft = &session_mq_cb_vft;
Florin Corascea194d2017-10-02 00:18:51 -0700523 if (mp->namespace_id_len > 64)
524 {
525 rv = VNET_API_ERROR_INVALID_VALUE;
526 goto done;
527 }
528
529 if (mp->namespace_id_len)
530 {
Dave Wallace8af20542017-10-26 03:29:30 -0400531 vec_validate (a->namespace_id, mp->namespace_id_len - 1);
Dave Barach178cf492018-11-13 16:34:13 -0500532 clib_memcpy_fast (a->namespace_id, mp->namespace_id,
533 mp->namespace_id_len);
Florin Corascea194d2017-10-02 00:18:51 -0700534 }
535
Florin Corasc1a42652019-02-08 18:27:29 -0800536 if ((rv = vnet_application_attach (a)))
Florin Corascea194d2017-10-02 00:18:51 -0700537 {
Florin Corasc1a42652019-02-08 18:27:29 -0800538 clib_warning ("attach returned: %d", rv);
Florin Coras99368312018-08-02 10:45:44 -0700539 vec_free (a->namespace_id);
540 goto done;
Florin Corascea194d2017-10-02 00:18:51 -0700541 }
542 vec_free (a->namespace_id);
Dave Barach68b0fb02017-02-28 15:15:56 -0500543
Florin Coras99368312018-08-02 10:45:44 -0700544 /* Send event queues segment */
Florin Coras31c99552019-03-01 13:00:58 -0800545 if ((evt_q_segment = session_main_get_evt_q_segment ()))
Florin Coras99368312018-08-02 10:45:44 -0700546 {
547 fd_flags |= SESSION_FD_F_VPP_MQ_SEGMENT;
548 fds[n_fds] = evt_q_segment->fd;
549 n_fds += 1;
550 }
551 /* Send fifo segment fd if needed */
552 if (ssvm_type (a->segment) == SSVM_SEGMENT_MEMFD)
553 {
554 fd_flags |= SESSION_FD_F_MEMFD_SEGMENT;
555 fds[n_fds] = a->segment->fd;
556 n_fds += 1;
557 }
558 if (a->options[APP_OPTIONS_FLAGS] & APP_OPTIONS_FLAGS_EVT_MQ_USE_EVENTFD)
559 {
560 fd_flags |= SESSION_FD_F_MQ_EVENTFD;
561 fds[n_fds] = svm_msg_q_get_producer_eventfd (a->app_evt_q);
562 n_fds += 1;
563 }
564
Florin Coras6cf30ad2017-04-04 23:08:23 -0700565done:
Florin Corasa5464812017-04-19 13:00:05 -0700566
Dave Barach68b0fb02017-02-28 15:15:56 -0500567 /* *INDENT-OFF* */
Florin Coras6cf30ad2017-04-04 23:08:23 -0700568 REPLY_MACRO2 (VL_API_APPLICATION_ATTACH_REPLY, ({
Dave Barach68b0fb02017-02-28 15:15:56 -0500569 if (!rv)
570 {
Florin Corasb384b542018-01-15 01:08:33 -0800571 segp = a->segment;
Florin Corasc1f5a432018-11-20 11:31:26 -0800572 rmp->app_index = clib_host_to_net_u32 (a->app_index);
Dave Barach68b0fb02017-02-28 15:15:56 -0500573 rmp->segment_name_length = 0;
Florin Corasb384b542018-01-15 01:08:33 -0800574 rmp->segment_size = segp->ssvm_size;
575 if (vec_len (segp->name))
Dave Barach68b0fb02017-02-28 15:15:56 -0500576 {
Florin Corasb384b542018-01-15 01:08:33 -0800577 memcpy (rmp->segment_name, segp->name, vec_len (segp->name));
578 rmp->segment_name_length = vec_len (segp->name);
Dave Barach68b0fb02017-02-28 15:15:56 -0500579 }
Florin Coras99368312018-08-02 10:45:44 -0700580 rmp->app_event_queue_address = pointer_to_uword (a->app_evt_q);
581 rmp->n_fds = n_fds;
582 rmp->fd_flags = fd_flags;
Florin Corasd85de682018-11-29 17:02:29 -0800583 rmp->segment_handle = clib_host_to_net_u64 (a->segment_handle);
Dave Barach68b0fb02017-02-28 15:15:56 -0500584 }
585 }));
586 /* *INDENT-ON* */
Florin Corasb384b542018-01-15 01:08:33 -0800587
Florin Coras99368312018-08-02 10:45:44 -0700588 if (n_fds)
589 session_send_fds (reg, fds, n_fds);
Dave Barach68b0fb02017-02-28 15:15:56 -0500590}
591
592static void
Florin Coras458089b2019-08-21 16:20:44 -0700593vl_api_app_attach_t_handler (vl_api_app_attach_t * mp)
594{
595 int rv = 0, fds[SESSION_N_FD_TYPE], n_fds = 0;
596 vl_api_app_attach_reply_t *rmp;
597 ssvm_private_t *segp, *evt_q_segment;
598 vnet_app_attach_args_t _a, *a = &_a;
599 u8 fd_flags = 0, ctrl_thread;
600 vl_api_registration_t *reg;
601 svm_msg_q_t *ctrl_mq;
602
603 reg = vl_api_client_index_to_registration (mp->client_index);
604 if (!reg)
605 return;
606
607 if (session_main_is_enabled () == 0)
608 {
609 rv = VNET_API_ERROR_FEATURE_DISABLED;
610 goto done;
611 }
612
613 STATIC_ASSERT (sizeof (u64) * APP_OPTIONS_N_OPTIONS <=
614 sizeof (mp->options),
615 "Out of options, fix api message definition");
616
617 clib_memset (a, 0, sizeof (*a));
618 a->api_client_index = mp->client_index;
619 a->options = mp->options;
620 a->session_cb_vft = &session_mq_cb_vft;
621 if (mp->namespace_id_len > 64)
622 {
623 rv = VNET_API_ERROR_INVALID_VALUE;
624 goto done;
625 }
626
627 if (mp->namespace_id_len)
628 {
629 vec_validate (a->namespace_id, mp->namespace_id_len - 1);
630 clib_memcpy_fast (a->namespace_id, mp->namespace_id,
631 mp->namespace_id_len);
632 }
633
634 if ((rv = vnet_application_attach (a)))
635 {
636 clib_warning ("attach returned: %d", rv);
637 vec_free (a->namespace_id);
638 goto done;
639 }
640 vec_free (a->namespace_id);
641
642 /* Send event queues segment */
643 if ((evt_q_segment = session_main_get_evt_q_segment ()))
644 {
645 fd_flags |= SESSION_FD_F_VPP_MQ_SEGMENT;
646 fds[n_fds] = evt_q_segment->fd;
647 n_fds += 1;
648 }
649 /* Send fifo segment fd if needed */
650 if (ssvm_type (a->segment) == SSVM_SEGMENT_MEMFD)
651 {
652 fd_flags |= SESSION_FD_F_MEMFD_SEGMENT;
653 fds[n_fds] = a->segment->fd;
654 n_fds += 1;
655 }
656 if (a->options[APP_OPTIONS_FLAGS] & APP_OPTIONS_FLAGS_EVT_MQ_USE_EVENTFD)
657 {
658 fd_flags |= SESSION_FD_F_MQ_EVENTFD;
659 fds[n_fds] = svm_msg_q_get_producer_eventfd (a->app_evt_q);
660 n_fds += 1;
661 }
662
663done:
664
665 ctrl_thread = vlib_num_workers ()? 1 : 0;
666 ctrl_mq = session_main_get_vpp_event_queue (ctrl_thread);
667 /* *INDENT-OFF* */
668 REPLY_MACRO2 (VL_API_APP_ATTACH_REPLY, ({
669 if (!rv)
670 {
671 segp = a->segment;
672 rmp->app_index = clib_host_to_net_u32 (a->app_index);
673 rmp->app_mq = pointer_to_uword (a->app_evt_q);
674 rmp->vpp_ctrl_mq = pointer_to_uword (ctrl_mq);
675 rmp->vpp_ctrl_mq_thread = ctrl_thread;
676 rmp->n_fds = n_fds;
677 rmp->fd_flags = fd_flags;
678 if (vec_len (segp->name))
679 {
680 memcpy (rmp->segment_name, segp->name, vec_len (segp->name));
681 rmp->segment_name_length = vec_len (segp->name);
682 }
683 rmp->segment_size = segp->ssvm_size;
684 rmp->segment_handle = clib_host_to_net_u64 (a->segment_handle);
685 }
686 }));
687 /* *INDENT-ON* */
688
689 if (n_fds)
690 session_send_fds (reg, fds, n_fds);
691}
692
693/* ### WILL BE DEPRECATED POST 20.01 ### */
694static void
Florin Coras6cf30ad2017-04-04 23:08:23 -0700695vl_api_application_detach_t_handler (vl_api_application_detach_t * mp)
696{
697 vl_api_application_detach_reply_t *rmp;
698 int rv = VNET_API_ERROR_INVALID_VALUE_2;
699 vnet_app_detach_args_t _a, *a = &_a;
700 application_t *app;
701
Florin Coras31c99552019-03-01 13:00:58 -0800702 if (session_main_is_enabled () == 0)
Florin Coras6cf30ad2017-04-04 23:08:23 -0700703 {
704 rv = VNET_API_ERROR_FEATURE_DISABLED;
705 goto done;
706 }
707
708 app = application_lookup (mp->client_index);
709 if (app)
710 {
Florin Coras15531972018-08-12 23:50:53 -0700711 a->app_index = app->app_index;
Florin Coras053a0e42018-11-13 15:52:38 -0800712 a->api_client_index = mp->client_index;
Florin Coras6cf30ad2017-04-04 23:08:23 -0700713 rv = vnet_application_detach (a);
714 }
715
716done:
717 REPLY_MACRO (VL_API_APPLICATION_DETACH_REPLY);
718}
719
Florin Coras458089b2019-08-21 16:20:44 -0700720/* ### WILL BE DEPRECATED POST 20.01 ### */
Florin Coras6cf30ad2017-04-04 23:08:23 -0700721static void
722vl_api_bind_uri_t_handler (vl_api_bind_uri_t * mp)
723{
Florin Coras7fb0fe12018-04-09 09:24:52 -0700724 vl_api_bind_uri_reply_t *rmp;
Florin Coras64424012019-03-02 10:47:47 -0800725 vnet_listen_args_t _a, *a = &_a;
Florin Coras7fb0fe12018-04-09 09:24:52 -0700726 application_t *app = 0;
Florin Coras60116992018-08-27 09:52:18 -0700727 app_worker_t *app_wrk;
Florin Coras6cf30ad2017-04-04 23:08:23 -0700728 int rv;
729
Florin Coras31c99552019-03-01 13:00:58 -0800730 if (session_main_is_enabled () == 0)
Florin Coras6cf30ad2017-04-04 23:08:23 -0700731 {
732 rv = VNET_API_ERROR_FEATURE_DISABLED;
733 goto done;
734 }
735
736 app = application_lookup (mp->client_index);
737 if (app)
738 {
Dave Barachb7b92992018-10-17 10:38:51 -0400739 clib_memset (a, 0, sizeof (*a));
Florin Coras6cf30ad2017-04-04 23:08:23 -0700740 a->uri = (char *) mp->uri;
Florin Coras15531972018-08-12 23:50:53 -0700741 a->app_index = app->app_index;
Florin Coras6cf30ad2017-04-04 23:08:23 -0700742 rv = vnet_bind_uri (a);
743 }
744 else
745 {
746 rv = VNET_API_ERROR_APPLICATION_NOT_ATTACHED;
747 }
748
749done:
Florin Coras7fb0fe12018-04-09 09:24:52 -0700750
Florin Coras64424012019-03-02 10:47:47 -0800751 REPLY_MACRO (VL_API_BIND_URI_REPLY);
Florin Coras60116992018-08-27 09:52:18 -0700752
Florin Coras64424012019-03-02 10:47:47 -0800753 if (app)
Florin Coras60116992018-08-27 09:52:18 -0700754 {
755 app_wrk = application_get_worker (app, 0);
756 mq_send_session_bound_cb (app_wrk->wrk_index, mp->context, a->handle,
757 rv);
758 }
Florin Coras6cf30ad2017-04-04 23:08:23 -0700759}
760
Florin Coras458089b2019-08-21 16:20:44 -0700761/* ### WILL BE DEPRECATED POST 20.01 ### */
Florin Coras6cf30ad2017-04-04 23:08:23 -0700762static void
Dave Barach68b0fb02017-02-28 15:15:56 -0500763vl_api_unbind_uri_t_handler (vl_api_unbind_uri_t * mp)
764{
765 vl_api_unbind_uri_reply_t *rmp;
Florin Coras6cf30ad2017-04-04 23:08:23 -0700766 application_t *app;
Florin Corasc1a42652019-02-08 18:27:29 -0800767 vnet_unlisten_args_t _a, *a = &_a;
Dave Barach68b0fb02017-02-28 15:15:56 -0500768 int rv;
769
Florin Coras31c99552019-03-01 13:00:58 -0800770 if (session_main_is_enabled () == 0)
Florin Coras6cf30ad2017-04-04 23:08:23 -0700771 {
772 rv = VNET_API_ERROR_FEATURE_DISABLED;
773 goto done;
774 }
Dave Barach68b0fb02017-02-28 15:15:56 -0500775
Florin Coras6cf30ad2017-04-04 23:08:23 -0700776 app = application_lookup (mp->client_index);
777 if (app)
778 {
779 a->uri = (char *) mp->uri;
Florin Coras15531972018-08-12 23:50:53 -0700780 a->app_index = app->app_index;
Nathan Skrzypczak2eed1a12019-07-04 14:26:21 +0200781 a->wrk_map_index = 0;
Florin Coras6cf30ad2017-04-04 23:08:23 -0700782 rv = vnet_unbind_uri (a);
783 }
784 else
785 {
786 rv = VNET_API_ERROR_APPLICATION_NOT_ATTACHED;
787 }
788
789done:
Dave Barach68b0fb02017-02-28 15:15:56 -0500790 REPLY_MACRO (VL_API_UNBIND_URI_REPLY);
791}
792
Florin Coras458089b2019-08-21 16:20:44 -0700793/* ### WILL BE DEPRECATED POST 20.01 ### */
Florin Corasf03a59a2017-06-09 21:07:32 -0700794static void
Dave Barach68b0fb02017-02-28 15:15:56 -0500795vl_api_connect_uri_t_handler (vl_api_connect_uri_t * mp)
796{
Florin Coras64424012019-03-02 10:47:47 -0800797 vl_api_connect_uri_reply_t *rmp;
Dave Barach68b0fb02017-02-28 15:15:56 -0500798 vnet_connect_args_t _a, *a = &_a;
Florin Coras6cf30ad2017-04-04 23:08:23 -0700799 application_t *app;
Florin Corascea194d2017-10-02 00:18:51 -0700800 int rv = 0;
Dave Barach68b0fb02017-02-28 15:15:56 -0500801
Florin Coras31c99552019-03-01 13:00:58 -0800802 if (session_main_is_enabled () == 0)
Florin Coras6cf30ad2017-04-04 23:08:23 -0700803 {
804 rv = VNET_API_ERROR_FEATURE_DISABLED;
805 goto done;
806 }
Florin Corase04c2992017-03-01 08:17:34 -0800807
Florin Coras6cf30ad2017-04-04 23:08:23 -0700808 app = application_lookup (mp->client_index);
809 if (app)
810 {
Dave Barachb7b92992018-10-17 10:38:51 -0400811 clib_memset (a, 0, sizeof (*a));
Florin Coras6cf30ad2017-04-04 23:08:23 -0700812 a->uri = (char *) mp->uri;
813 a->api_context = mp->context;
Florin Coras15531972018-08-12 23:50:53 -0700814 a->app_index = app->app_index;
Florin Corasc1a42652019-02-08 18:27:29 -0800815 if ((rv = vnet_connect_uri (a)))
816 clib_warning ("connect_uri returned: %d", rv);
Florin Coras6cf30ad2017-04-04 23:08:23 -0700817 }
818 else
819 {
820 rv = VNET_API_ERROR_APPLICATION_NOT_ATTACHED;
821 }
Florin Corase04c2992017-03-01 08:17:34 -0800822
Florin Coras3cbc04b2017-10-02 00:18:51 -0700823 /*
824 * Don't reply to stream (tcp) connects. The reply will come once
825 * the connection is established. In case of the redirects, the reply
826 * will come from the server app.
827 */
Florin Coras8f89dd02018-03-05 16:53:07 -0800828 if (rv == 0)
Florin Corase04c2992017-03-01 08:17:34 -0800829 return;
830
Florin Coras6cf30ad2017-04-04 23:08:23 -0700831done:
Florin Coras64424012019-03-02 10:47:47 -0800832 REPLY_MACRO (VL_API_CONNECT_URI_REPLY);
Dave Barach68b0fb02017-02-28 15:15:56 -0500833}
834
Florin Coras458089b2019-08-21 16:20:44 -0700835/* ### WILL BE DEPRECATED POST 20.01 ### */
Dave Barach68b0fb02017-02-28 15:15:56 -0500836static void
837vl_api_disconnect_session_t_handler (vl_api_disconnect_session_t * mp)
838{
839 vl_api_disconnect_session_reply_t *rmp;
Florin Coras6cf30ad2017-04-04 23:08:23 -0700840 vnet_disconnect_args_t _a, *a = &_a;
841 application_t *app;
842 int rv = 0;
Dave Barach68b0fb02017-02-28 15:15:56 -0500843
Florin Coras31c99552019-03-01 13:00:58 -0800844 if (session_main_is_enabled () == 0)
Florin Coras6cf30ad2017-04-04 23:08:23 -0700845 {
846 rv = VNET_API_ERROR_FEATURE_DISABLED;
847 goto done;
848 }
Dave Barach68b0fb02017-02-28 15:15:56 -0500849
Florin Coras6cf30ad2017-04-04 23:08:23 -0700850 app = application_lookup (mp->client_index);
851 if (app)
852 {
853 a->handle = mp->handle;
Florin Coras15531972018-08-12 23:50:53 -0700854 a->app_index = app->app_index;
Florin Coras6cf30ad2017-04-04 23:08:23 -0700855 rv = vnet_disconnect_session (a);
856 }
857 else
858 {
859 rv = VNET_API_ERROR_APPLICATION_NOT_ATTACHED;
860 }
861
862done:
Dave Wallacede5fec92017-11-11 22:41:34 -0500863 REPLY_MACRO2 (VL_API_DISCONNECT_SESSION_REPLY, rmp->handle = mp->handle);
Dave Barach68b0fb02017-02-28 15:15:56 -0500864}
865
Florin Coras458089b2019-08-21 16:20:44 -0700866/* ### WILL BE DEPRECATED POST 20.01 ### */
Dave Barach68b0fb02017-02-28 15:15:56 -0500867static void
868vl_api_disconnect_session_reply_t_handler (vl_api_disconnect_session_reply_t *
869 mp)
870{
Florin Coras6cf30ad2017-04-04 23:08:23 -0700871 vnet_disconnect_args_t _a, *a = &_a;
872 application_t *app;
Dave Barach68b0fb02017-02-28 15:15:56 -0500873
874 /* Client objected to disconnecting the session, log and continue */
875 if (mp->retval)
876 {
877 clib_warning ("client retval %d", mp->retval);
878 return;
879 }
880
881 /* Disconnect has been confirmed. Confirm close to transport */
Florin Corasf8f516a2018-02-08 15:10:09 -0800882 app = application_lookup (mp->context);
Florin Coras6cf30ad2017-04-04 23:08:23 -0700883 if (app)
884 {
885 a->handle = mp->handle;
Florin Coras15531972018-08-12 23:50:53 -0700886 a->app_index = app->app_index;
Florin Coras6cf30ad2017-04-04 23:08:23 -0700887 vnet_disconnect_session (a);
888 }
Dave Barach68b0fb02017-02-28 15:15:56 -0500889}
890
891static void
Dave Barach68b0fb02017-02-28 15:15:56 -0500892vl_api_map_another_segment_reply_t_handler (vl_api_map_another_segment_reply_t
893 * mp)
894{
895 clib_warning ("not implemented");
896}
897
Florin Coras458089b2019-08-21 16:20:44 -0700898/* ### WILL BE DEPRECATED POST 20.01 ### */
Dave Barach68b0fb02017-02-28 15:15:56 -0500899static void
900vl_api_bind_sock_t_handler (vl_api_bind_sock_t * mp)
901{
Florin Corasc9940fc2019-02-05 20:55:11 -0800902 vnet_listen_args_t _a, *a = &_a;
Dave Barach68b0fb02017-02-28 15:15:56 -0500903 vl_api_bind_sock_reply_t *rmp;
Florin Coraseb2945c2017-11-22 10:39:09 -0800904 application_t *app = 0;
Florin Coras60116992018-08-27 09:52:18 -0700905 app_worker_t *app_wrk;
Florin Corasdcf55ce2017-11-16 15:32:50 -0800906 ip46_address_t *ip46;
Florin Corasc9940fc2019-02-05 20:55:11 -0800907 int rv = 0;
Dave Barach68b0fb02017-02-28 15:15:56 -0500908
Florin Coras31c99552019-03-01 13:00:58 -0800909 if (session_main_is_enabled () == 0)
Florin Coras6cf30ad2017-04-04 23:08:23 -0700910 {
911 rv = VNET_API_ERROR_FEATURE_DISABLED;
912 goto done;
913 }
Dave Barach68b0fb02017-02-28 15:15:56 -0500914
Florin Coras6cf30ad2017-04-04 23:08:23 -0700915 app = application_lookup (mp->client_index);
Florin Corasdcf55ce2017-11-16 15:32:50 -0800916 if (!app)
Florin Coras6cf30ad2017-04-04 23:08:23 -0700917 {
Florin Corasdcf55ce2017-11-16 15:32:50 -0800918 rv = VNET_API_ERROR_APPLICATION_NOT_ATTACHED;
919 goto done;
Florin Coras6cf30ad2017-04-04 23:08:23 -0700920 }
Florin Corasdcf55ce2017-11-16 15:32:50 -0800921
922 ip46 = (ip46_address_t *) mp->ip;
Dave Barachb7b92992018-10-17 10:38:51 -0400923 clib_memset (a, 0, sizeof (*a));
Florin Corasdcf55ce2017-11-16 15:32:50 -0800924 a->sep.is_ip4 = mp->is_ip4;
925 a->sep.ip = *ip46;
926 a->sep.port = mp->port;
927 a->sep.fib_index = mp->vrf;
928 a->sep.sw_if_index = ENDPOINT_INVALID_INDEX;
929 a->sep.transport_proto = mp->proto;
Florin Coras15531972018-08-12 23:50:53 -0700930 a->app_index = app->app_index;
931 a->wrk_map_index = mp->wrk_index;
Florin Corasdcf55ce2017-11-16 15:32:50 -0800932
Florin Corasc1a42652019-02-08 18:27:29 -0800933 if ((rv = vnet_listen (a)))
934 clib_warning ("listen returned: %d", rv);
Florin Corasdcf55ce2017-11-16 15:32:50 -0800935
Florin Coras6cf30ad2017-04-04 23:08:23 -0700936done:
Florin Coras64424012019-03-02 10:47:47 -0800937 /* Actual reply sent only over mq */
938 REPLY_MACRO (VL_API_BIND_SOCK_REPLY);
Florin Coras60116992018-08-27 09:52:18 -0700939
Florin Coras64424012019-03-02 10:47:47 -0800940 if (app)
Florin Coras60116992018-08-27 09:52:18 -0700941 {
942 app_wrk = application_get_worker (app, mp->wrk_index);
943 mq_send_session_bound_cb (app_wrk->wrk_index, mp->context, a->handle,
944 rv);
945 }
Dave Barach68b0fb02017-02-28 15:15:56 -0500946}
947
Florin Coras458089b2019-08-21 16:20:44 -0700948/* ### WILL BE DEPRECATED POST 20.01 ### */
Dave Barach68b0fb02017-02-28 15:15:56 -0500949static void
950vl_api_unbind_sock_t_handler (vl_api_unbind_sock_t * mp)
951{
952 vl_api_unbind_sock_reply_t *rmp;
Florin Corasc1a42652019-02-08 18:27:29 -0800953 vnet_unlisten_args_t _a, *a = &_a;
Florin Corasdfae9f92019-02-20 19:48:31 -0800954 app_worker_t *app_wrk;
955 application_t *app = 0;
Florin Corascea194d2017-10-02 00:18:51 -0700956 int rv = 0;
Dave Barach68b0fb02017-02-28 15:15:56 -0500957
Florin Coras31c99552019-03-01 13:00:58 -0800958 if (session_main_is_enabled () == 0)
Florin Coras6cf30ad2017-04-04 23:08:23 -0700959 {
960 rv = VNET_API_ERROR_FEATURE_DISABLED;
961 goto done;
962 }
Dave Barach68b0fb02017-02-28 15:15:56 -0500963
Florin Coras6cf30ad2017-04-04 23:08:23 -0700964 app = application_lookup (mp->client_index);
965 if (app)
966 {
Florin Coras15531972018-08-12 23:50:53 -0700967 a->app_index = app->app_index;
Florin Coras6cf30ad2017-04-04 23:08:23 -0700968 a->handle = mp->handle;
Florin Corasab2f6db2018-08-31 14:31:41 -0700969 a->wrk_map_index = mp->wrk_index;
Florin Corasc1a42652019-02-08 18:27:29 -0800970 if ((rv = vnet_unlisten (a)))
971 clib_warning ("unlisten returned: %d", rv);
Florin Coras6cf30ad2017-04-04 23:08:23 -0700972 }
Florin Coraseef61bb2019-08-27 15:13:35 -0700973 else
974 {
975 rv = VNET_API_ERROR_APPLICATION_NOT_ATTACHED;
976 }
Dave Barach68b0fb02017-02-28 15:15:56 -0500977
Florin Coras6cf30ad2017-04-04 23:08:23 -0700978done:
Dave Barach68b0fb02017-02-28 15:15:56 -0500979 REPLY_MACRO (VL_API_UNBIND_SOCK_REPLY);
Florin Corasdfae9f92019-02-20 19:48:31 -0800980
Florin Coraseef61bb2019-08-27 15:13:35 -0700981 if (!app)
982 return;
983
Florin Corasdfae9f92019-02-20 19:48:31 -0800984 app_wrk = application_get_worker (app, a->wrk_map_index);
985 if (!app_wrk)
986 return;
987
Florin Coras458089b2019-08-21 16:20:44 -0700988 mq_send_unlisten_reply (app_wrk, mp->handle, mp->context, rv);
Dave Barach68b0fb02017-02-28 15:15:56 -0500989}
990
Florin Coras458089b2019-08-21 16:20:44 -0700991/* ### WILL BE DEPRECATED POST 20.01 ### */
Dave Barach68b0fb02017-02-28 15:15:56 -0500992static void
993vl_api_connect_sock_t_handler (vl_api_connect_sock_t * mp)
994{
Florin Coras64424012019-03-02 10:47:47 -0800995 vl_api_connect_sock_reply_t *rmp;
Dave Barach68b0fb02017-02-28 15:15:56 -0500996 vnet_connect_args_t _a, *a = &_a;
Florin Corasab2f6db2018-08-31 14:31:41 -0700997 application_t *app = 0;
Florin Corascea194d2017-10-02 00:18:51 -0700998 int rv = 0;
Dave Barach68b0fb02017-02-28 15:15:56 -0500999
Florin Coras31c99552019-03-01 13:00:58 -08001000 if (session_main_is_enabled () == 0)
Florin Coras6cf30ad2017-04-04 23:08:23 -07001001 {
1002 rv = VNET_API_ERROR_FEATURE_DISABLED;
1003 goto done;
1004 }
Dave Barach68b0fb02017-02-28 15:15:56 -05001005
Florin Coras6cf30ad2017-04-04 23:08:23 -07001006 app = application_lookup (mp->client_index);
1007 if (app)
1008 {
Florin Corase86a8ed2018-01-05 03:20:25 -08001009 svm_queue_t *client_q;
Dave Wallace33e002b2017-09-06 01:20:02 -04001010 ip46_address_t *ip46 = (ip46_address_t *) mp->ip;
Dave Wallaceb2d5ff32017-06-14 12:38:28 -04001011
Dave Barachb7b92992018-10-17 10:38:51 -04001012 clib_memset (a, 0, sizeof (*a));
Dave Wallaceb2d5ff32017-06-14 12:38:28 -04001013 client_q = vl_api_client_index_to_input_queue (mp->client_index);
1014 mp->client_queue_address = pointer_to_uword (client_q);
Florin Corascea194d2017-10-02 00:18:51 -07001015 a->sep.is_ip4 = mp->is_ip4;
1016 a->sep.ip = *ip46;
1017 a->sep.port = mp->port;
1018 a->sep.transport_proto = mp->proto;
Florin Coras5665ced2018-10-25 18:03:45 -07001019 a->sep.peer.fib_index = mp->vrf;
1020 a->sep.peer.sw_if_index = ENDPOINT_INVALID_INDEX;
Nathan Skrzypczak8ac1d6d2019-07-17 11:02:20 +02001021 a->sep_ext.parent_handle = mp->parent_handle;
Florin Coras8f89dd02018-03-05 16:53:07 -08001022 if (mp->hostname_len)
1023 {
Florin Coras15531972018-08-12 23:50:53 -07001024 vec_validate (a->sep_ext.hostname, mp->hostname_len - 1);
Dave Barach178cf492018-11-13 16:34:13 -05001025 clib_memcpy_fast (a->sep_ext.hostname, mp->hostname,
1026 mp->hostname_len);
Florin Coras8f89dd02018-03-05 16:53:07 -08001027 }
Florin Coras6cf30ad2017-04-04 23:08:23 -07001028 a->api_context = mp->context;
Florin Coras15531972018-08-12 23:50:53 -07001029 a->app_index = app->app_index;
1030 a->wrk_map_index = mp->wrk_index;
Florin Corasc1a42652019-02-08 18:27:29 -08001031 if ((rv = vnet_connect (a)))
Nathan Skrzypczakba65ca42019-05-16 16:35:40 +02001032 clib_warning ("connect returned: %U", format_vnet_api_errno, rv);
Florin Coras15531972018-08-12 23:50:53 -07001033 vec_free (a->sep_ext.hostname);
Florin Coras6cf30ad2017-04-04 23:08:23 -07001034 }
1035 else
1036 {
1037 rv = VNET_API_ERROR_APPLICATION_NOT_ATTACHED;
1038 }
Florin Corase04c2992017-03-01 08:17:34 -08001039
Florin Coras8f89dd02018-03-05 16:53:07 -08001040 if (rv == 0)
Florin Corase04c2992017-03-01 08:17:34 -08001041 return;
1042
1043 /* Got some error, relay it */
1044
Florin Coras6cf30ad2017-04-04 23:08:23 -07001045done:
Florin Coras64424012019-03-02 10:47:47 -08001046 REPLY_MACRO (VL_API_CONNECT_SOCK_REPLY);
Florin Corasab2f6db2018-08-31 14:31:41 -07001047
Florin Coras64424012019-03-02 10:47:47 -08001048 if (app)
Florin Corasab2f6db2018-08-31 14:31:41 -07001049 {
1050 app_worker_t *app_wrk = application_get_worker (app, mp->wrk_index);
1051 mq_send_session_connected_cb (app_wrk->wrk_index, mp->context, 0, 1);
1052 }
Dave Barach68b0fb02017-02-28 15:15:56 -05001053}
1054
Florin Corascea194d2017-10-02 00:18:51 -07001055static void
Florin Coras15531972018-08-12 23:50:53 -07001056vl_api_app_worker_add_del_t_handler (vl_api_app_worker_add_del_t * mp)
1057{
1058 int rv = 0, fds[SESSION_N_FD_TYPE], n_fds = 0;
1059 vl_api_app_worker_add_del_reply_t *rmp;
1060 vl_api_registration_t *reg;
Florin Coras15531972018-08-12 23:50:53 -07001061 application_t *app;
1062 u8 fd_flags = 0;
1063
Nathan Skrzypczak79f89532019-09-13 11:08:13 +02001064 if (session_main_is_enabled () == 0)
Florin Coras15531972018-08-12 23:50:53 -07001065 {
1066 rv = VNET_API_ERROR_FEATURE_DISABLED;
1067 goto done;
1068 }
1069
1070 reg = vl_api_client_index_to_registration (mp->client_index);
1071 if (!reg)
1072 return;
1073
Florin Corasc1f5a432018-11-20 11:31:26 -08001074 app = application_get_if_valid (clib_net_to_host_u32 (mp->app_index));
Florin Coras15531972018-08-12 23:50:53 -07001075 if (!app)
1076 {
1077 rv = VNET_API_ERROR_INVALID_VALUE;
1078 goto done;
1079 }
1080
1081 vnet_app_worker_add_del_args_t args = {
1082 .app_index = app->app_index,
Florin Coras349f8ca2018-11-20 16:52:49 -08001083 .wrk_map_index = clib_net_to_host_u32 (mp->wrk_index),
Florin Corasc1f5a432018-11-20 11:31:26 -08001084 .api_client_index = mp->client_index,
Florin Coras15531972018-08-12 23:50:53 -07001085 .is_add = mp->is_add
1086 };
Florin Corasc1a42652019-02-08 18:27:29 -08001087 rv = vnet_app_worker_add_del (&args);
1088 if (rv)
Florin Coras15531972018-08-12 23:50:53 -07001089 {
Florin Corasc1a42652019-02-08 18:27:29 -08001090 clib_warning ("app worker add/del returned: %d", rv);
Florin Coras15531972018-08-12 23:50:53 -07001091 goto done;
1092 }
1093
Florin Coras14598772018-09-04 19:47:52 -07001094 if (!mp->is_add)
1095 goto done;
Florin Corasc3638fe2018-08-24 13:58:49 -07001096
Florin Coras15531972018-08-12 23:50:53 -07001097 /* Send fifo segment fd if needed */
1098 if (ssvm_type (args.segment) == SSVM_SEGMENT_MEMFD)
1099 {
1100 fd_flags |= SESSION_FD_F_MEMFD_SEGMENT;
1101 fds[n_fds] = args.segment->fd;
1102 n_fds += 1;
1103 }
1104 if (application_segment_manager_properties (app)->use_mq_eventfd)
1105 {
1106 fd_flags |= SESSION_FD_F_MQ_EVENTFD;
1107 fds[n_fds] = svm_msg_q_get_producer_eventfd (args.evt_q);
1108 n_fds += 1;
1109 }
1110
1111 /* *INDENT-OFF* */
1112done:
1113 REPLY_MACRO2 (VL_API_APP_WORKER_ADD_DEL_REPLY, ({
1114 rmp->is_add = mp->is_add;
Florin Coras349f8ca2018-11-20 16:52:49 -08001115 rmp->wrk_index = clib_host_to_net_u32 (args.wrk_map_index);
Florin Corasfa76a762018-11-29 12:40:10 -08001116 rmp->segment_handle = clib_host_to_net_u64 (args.segment_handle);
Florin Coras14598772018-09-04 19:47:52 -07001117 if (!rv && mp->is_add)
Florin Coras15531972018-08-12 23:50:53 -07001118 {
Florin Coras15531972018-08-12 23:50:53 -07001119 if (vec_len (args.segment->name))
1120 {
1121 memcpy (rmp->segment_name, args.segment->name,
1122 vec_len (args.segment->name));
1123 rmp->segment_name_length = vec_len (args.segment->name);
1124 }
1125 rmp->app_event_queue_address = pointer_to_uword (args.evt_q);
1126 rmp->n_fds = n_fds;
1127 rmp->fd_flags = fd_flags;
1128 }
1129 }));
1130 /* *INDENT-ON* */
1131
1132 if (n_fds)
1133 session_send_fds (reg, fds, n_fds);
1134}
1135
1136static void
Florin Corascea194d2017-10-02 00:18:51 -07001137vl_api_app_namespace_add_del_t_handler (vl_api_app_namespace_add_del_t * mp)
1138{
1139 vl_api_app_namespace_add_del_reply_t *rmp;
Florin Coras6e8c6672017-11-10 09:03:54 -08001140 u32 appns_index = 0;
1141 u8 *ns_id = 0;
Florin Corascea194d2017-10-02 00:18:51 -07001142 int rv = 0;
Nathan Skrzypczak79f89532019-09-13 11:08:13 +02001143 if (session_main_is_enabled () == 0)
Florin Corascea194d2017-10-02 00:18:51 -07001144 {
1145 rv = VNET_API_ERROR_FEATURE_DISABLED;
1146 goto done;
1147 }
1148
1149 if (mp->namespace_id_len > ARRAY_LEN (mp->namespace_id))
1150 {
1151 rv = VNET_API_ERROR_INVALID_VALUE;
1152 goto done;
1153 }
1154
1155 vec_validate (ns_id, mp->namespace_id_len - 1);
Dave Barach178cf492018-11-13 16:34:13 -05001156 clib_memcpy_fast (ns_id, mp->namespace_id, mp->namespace_id_len);
Florin Corascea194d2017-10-02 00:18:51 -07001157 vnet_app_namespace_add_del_args_t args = {
1158 .ns_id = ns_id,
Florin Coras9a9adb22017-10-26 08:16:59 -07001159 .secret = clib_net_to_host_u64 (mp->secret),
Florin Corascea194d2017-10-02 00:18:51 -07001160 .sw_if_index = clib_net_to_host_u32 (mp->sw_if_index),
1161 .ip4_fib_id = clib_net_to_host_u32 (mp->ip4_fib_id),
1162 .ip6_fib_id = clib_net_to_host_u32 (mp->ip6_fib_id),
1163 .is_add = 1
1164 };
Florin Corasc1a42652019-02-08 18:27:29 -08001165 rv = vnet_app_namespace_add_del (&args);
1166 if (!rv)
Florin Coras6e8c6672017-11-10 09:03:54 -08001167 {
1168 appns_index = app_namespace_index_from_id (ns_id);
1169 if (appns_index == APP_NAMESPACE_INVALID_INDEX)
1170 {
1171 clib_warning ("app ns lookup failed");
1172 rv = VNET_API_ERROR_UNSPECIFIED;
1173 }
1174 }
Florin Corascea194d2017-10-02 00:18:51 -07001175 vec_free (ns_id);
Florin Coras6e8c6672017-11-10 09:03:54 -08001176
1177 /* *INDENT-OFF* */
Florin Corascea194d2017-10-02 00:18:51 -07001178done:
Florin Coras6e8c6672017-11-10 09:03:54 -08001179 REPLY_MACRO2 (VL_API_APP_NAMESPACE_ADD_DEL_REPLY, ({
1180 if (!rv)
1181 rmp->appns_index = clib_host_to_net_u32 (appns_index);
1182 }));
1183 /* *INDENT-ON* */
Florin Corascea194d2017-10-02 00:18:51 -07001184}
1185
Florin Coras1c710452017-10-17 00:03:13 -07001186static void
1187vl_api_session_rule_add_del_t_handler (vl_api_session_rule_add_del_t * mp)
1188{
1189 vl_api_session_rule_add_del_reply_t *rmp;
1190 session_rule_add_del_args_t args;
1191 session_rule_table_add_del_args_t *table_args = &args.table_args;
Florin Coras1c710452017-10-17 00:03:13 -07001192 u8 fib_proto;
1193 int rv = 0;
1194
Dave Barachb7b92992018-10-17 10:38:51 -04001195 clib_memset (&args, 0, sizeof (args));
Florin Coras1c710452017-10-17 00:03:13 -07001196 fib_proto = mp->is_ip4 ? FIB_PROTOCOL_IP4 : FIB_PROTOCOL_IP6;
1197
1198 table_args->lcl.fp_len = mp->lcl_plen;
1199 table_args->lcl.fp_proto = fib_proto;
1200 table_args->rmt.fp_len = mp->rmt_plen;
1201 table_args->rmt.fp_proto = fib_proto;
Milan Lenco8b9a5d12017-11-24 17:12:33 +01001202 table_args->lcl_port = mp->lcl_port;
1203 table_args->rmt_port = mp->rmt_port;
Florin Coras1c710452017-10-17 00:03:13 -07001204 table_args->action_index = clib_net_to_host_u32 (mp->action_index);
1205 table_args->is_add = mp->is_add;
Florin Corasc97a7392017-11-05 23:07:07 -08001206 mp->tag[sizeof (mp->tag) - 1] = 0;
1207 table_args->tag = format (0, "%s", mp->tag);
Florin Coras1c710452017-10-17 00:03:13 -07001208 args.appns_index = clib_net_to_host_u32 (mp->appns_index);
1209 args.scope = mp->scope;
Florin Coras42324ad2017-11-18 18:45:20 -08001210 args.transport_proto = mp->transport_proto;
Florin Coras1c710452017-10-17 00:03:13 -07001211
Dave Barachb7b92992018-10-17 10:38:51 -04001212 clib_memset (&table_args->lcl.fp_addr, 0, sizeof (table_args->lcl.fp_addr));
1213 clib_memset (&table_args->rmt.fp_addr, 0, sizeof (table_args->rmt.fp_addr));
Florin Coras1c710452017-10-17 00:03:13 -07001214 ip_set (&table_args->lcl.fp_addr, mp->lcl_ip, mp->is_ip4);
1215 ip_set (&table_args->rmt.fp_addr, mp->rmt_ip, mp->is_ip4);
Florin Corasc1a42652019-02-08 18:27:29 -08001216 rv = vnet_session_rule_add_del (&args);
1217 if (rv)
1218 clib_warning ("rule add del returned: %d", rv);
Florin Corasc97a7392017-11-05 23:07:07 -08001219 vec_free (table_args->tag);
Florin Coras1c710452017-10-17 00:03:13 -07001220 REPLY_MACRO (VL_API_SESSION_RULE_ADD_DEL_REPLY);
1221}
1222
Florin Coras6c36f532017-11-03 18:32:34 -07001223static void
1224send_session_rule_details4 (mma_rule_16_t * rule, u8 is_local,
Florin Corasc97a7392017-11-05 23:07:07 -08001225 u8 transport_proto, u32 appns_index, u8 * tag,
Florin Coras6c4dae22018-01-09 06:39:23 -08001226 vl_api_registration_t * reg, u32 context)
Florin Coras6c36f532017-11-03 18:32:34 -07001227{
1228 vl_api_session_rules_details_t *rmp = 0;
1229 session_mask_or_match_4_t *match =
1230 (session_mask_or_match_4_t *) & rule->match;
1231 session_mask_or_match_4_t *mask =
1232 (session_mask_or_match_4_t *) & rule->mask;
1233
1234 rmp = vl_msg_api_alloc (sizeof (*rmp));
Dave Barachb7b92992018-10-17 10:38:51 -04001235 clib_memset (rmp, 0, sizeof (*rmp));
Florin Coras6c36f532017-11-03 18:32:34 -07001236 rmp->_vl_msg_id = ntohs (VL_API_SESSION_RULES_DETAILS);
1237 rmp->context = context;
1238
1239 rmp->is_ip4 = 1;
Dave Barach178cf492018-11-13 16:34:13 -05001240 clib_memcpy_fast (rmp->lcl_ip, &match->lcl_ip, sizeof (match->lcl_ip));
1241 clib_memcpy_fast (rmp->rmt_ip, &match->rmt_ip, sizeof (match->rmt_ip));
Florin Coras6c36f532017-11-03 18:32:34 -07001242 rmp->lcl_plen = ip4_mask_to_preflen (&mask->lcl_ip);
1243 rmp->rmt_plen = ip4_mask_to_preflen (&mask->rmt_ip);
Milan Lenco8b9a5d12017-11-24 17:12:33 +01001244 rmp->lcl_port = match->lcl_port;
1245 rmp->rmt_port = match->rmt_port;
Florin Coras6c36f532017-11-03 18:32:34 -07001246 rmp->action_index = clib_host_to_net_u32 (rule->action_index);
1247 rmp->scope =
1248 is_local ? SESSION_RULE_SCOPE_LOCAL : SESSION_RULE_SCOPE_GLOBAL;
1249 rmp->transport_proto = transport_proto;
1250 rmp->appns_index = clib_host_to_net_u32 (appns_index);
Florin Corasc97a7392017-11-05 23:07:07 -08001251 if (tag)
1252 {
Dave Barach178cf492018-11-13 16:34:13 -05001253 clib_memcpy_fast (rmp->tag, tag, vec_len (tag));
Florin Corasc97a7392017-11-05 23:07:07 -08001254 rmp->tag[vec_len (tag)] = 0;
1255 }
Florin Coras6c36f532017-11-03 18:32:34 -07001256
Florin Coras6c4dae22018-01-09 06:39:23 -08001257 vl_api_send_msg (reg, (u8 *) rmp);
Florin Coras6c36f532017-11-03 18:32:34 -07001258}
1259
1260static void
Florin Corasc97a7392017-11-05 23:07:07 -08001261send_session_rule_details6 (mma_rule_40_t * rule, u8 is_local,
1262 u8 transport_proto, u32 appns_index, u8 * tag,
Florin Coras6c4dae22018-01-09 06:39:23 -08001263 vl_api_registration_t * reg, u32 context)
Florin Coras6c36f532017-11-03 18:32:34 -07001264{
1265 vl_api_session_rules_details_t *rmp = 0;
1266 session_mask_or_match_6_t *match =
1267 (session_mask_or_match_6_t *) & rule->match;
1268 session_mask_or_match_6_t *mask =
1269 (session_mask_or_match_6_t *) & rule->mask;
1270
1271 rmp = vl_msg_api_alloc (sizeof (*rmp));
Dave Barachb7b92992018-10-17 10:38:51 -04001272 clib_memset (rmp, 0, sizeof (*rmp));
Florin Coras6c36f532017-11-03 18:32:34 -07001273 rmp->_vl_msg_id = ntohs (VL_API_SESSION_RULES_DETAILS);
1274 rmp->context = context;
1275
1276 rmp->is_ip4 = 0;
Dave Barach178cf492018-11-13 16:34:13 -05001277 clib_memcpy_fast (rmp->lcl_ip, &match->lcl_ip, sizeof (match->lcl_ip));
1278 clib_memcpy_fast (rmp->rmt_ip, &match->rmt_ip, sizeof (match->rmt_ip));
Florin Coras6c36f532017-11-03 18:32:34 -07001279 rmp->lcl_plen = ip6_mask_to_preflen (&mask->lcl_ip);
1280 rmp->rmt_plen = ip6_mask_to_preflen (&mask->rmt_ip);
Milan Lenco8b9a5d12017-11-24 17:12:33 +01001281 rmp->lcl_port = match->lcl_port;
1282 rmp->rmt_port = match->rmt_port;
Florin Coras6c36f532017-11-03 18:32:34 -07001283 rmp->action_index = clib_host_to_net_u32 (rule->action_index);
Florin Corasc97a7392017-11-05 23:07:07 -08001284 rmp->scope =
1285 is_local ? SESSION_RULE_SCOPE_LOCAL : SESSION_RULE_SCOPE_GLOBAL;
Florin Coras6c36f532017-11-03 18:32:34 -07001286 rmp->transport_proto = transport_proto;
1287 rmp->appns_index = clib_host_to_net_u32 (appns_index);
Florin Corasc97a7392017-11-05 23:07:07 -08001288 if (tag)
1289 {
Dave Barach178cf492018-11-13 16:34:13 -05001290 clib_memcpy_fast (rmp->tag, tag, vec_len (tag));
Florin Corasc97a7392017-11-05 23:07:07 -08001291 rmp->tag[vec_len (tag)] = 0;
1292 }
Florin Coras6c36f532017-11-03 18:32:34 -07001293
Florin Coras6c4dae22018-01-09 06:39:23 -08001294 vl_api_send_msg (reg, (u8 *) rmp);
Florin Coras6c36f532017-11-03 18:32:34 -07001295}
1296
1297static void
1298send_session_rules_table_details (session_rules_table_t * srt, u8 fib_proto,
Florin Corasc97a7392017-11-05 23:07:07 -08001299 u8 tp, u8 is_local, u32 appns_index,
Florin Coras6c4dae22018-01-09 06:39:23 -08001300 vl_api_registration_t * reg, u32 context)
Florin Coras6c36f532017-11-03 18:32:34 -07001301{
1302 mma_rule_16_t *rule16;
1303 mma_rule_40_t *rule40;
1304 mma_rules_table_16_t *srt16;
1305 mma_rules_table_40_t *srt40;
Florin Corasc97a7392017-11-05 23:07:07 -08001306 u32 ri;
Florin Coras6c36f532017-11-03 18:32:34 -07001307
Florin Corasc97a7392017-11-05 23:07:07 -08001308 if (is_local || fib_proto == FIB_PROTOCOL_IP4)
Florin Coras6c36f532017-11-03 18:32:34 -07001309 {
Florin Corasc97a7392017-11-05 23:07:07 -08001310 u8 *tag = 0;
1311 /* *INDENT-OFF* */
1312 srt16 = &srt->session_rules_tables_16;
1313 pool_foreach (rule16, srt16->rules, ({
1314 ri = mma_rules_table_rule_index_16 (srt16, rule16);
1315 tag = session_rules_table_rule_tag (srt, ri, 1);
1316 send_session_rule_details4 (rule16, is_local, tp, appns_index, tag,
Florin Coras6c4dae22018-01-09 06:39:23 -08001317 reg, context);
Florin Corasc97a7392017-11-05 23:07:07 -08001318 }));
1319 /* *INDENT-ON* */
1320 }
1321 if (is_local || fib_proto == FIB_PROTOCOL_IP6)
1322 {
1323 u8 *tag = 0;
1324 /* *INDENT-OFF* */
1325 srt40 = &srt->session_rules_tables_40;
1326 pool_foreach (rule40, srt40->rules, ({
1327 ri = mma_rules_table_rule_index_40 (srt40, rule40);
1328 tag = session_rules_table_rule_tag (srt, ri, 1);
1329 send_session_rule_details6 (rule40, is_local, tp, appns_index, tag,
Florin Coras6c4dae22018-01-09 06:39:23 -08001330 reg, context);
Florin Corasc97a7392017-11-05 23:07:07 -08001331 }));
1332 /* *INDENT-ON* */
Florin Coras6c36f532017-11-03 18:32:34 -07001333 }
1334}
1335
1336static void
1337vl_api_session_rules_dump_t_handler (vl_api_one_map_server_dump_t * mp)
1338{
Florin Coras6c4dae22018-01-09 06:39:23 -08001339 vl_api_registration_t *reg;
Florin Coras6c36f532017-11-03 18:32:34 -07001340 session_table_t *st;
Florin Corasc97a7392017-11-05 23:07:07 -08001341 u8 tp;
Florin Coras6c36f532017-11-03 18:32:34 -07001342
Florin Coras6c4dae22018-01-09 06:39:23 -08001343 reg = vl_api_client_index_to_registration (mp->client_index);
1344 if (!reg)
Florin Coras6c36f532017-11-03 18:32:34 -07001345 return;
1346
1347 /* *INDENT-OFF* */
1348 session_table_foreach (st, ({
Florin Corasc97a7392017-11-05 23:07:07 -08001349 for (tp = 0; tp < TRANSPORT_N_PROTO; tp++)
1350 {
1351 send_session_rules_table_details (&st->session_rules[tp],
1352 st->active_fib_proto, tp,
Florin Coras6c4dae22018-01-09 06:39:23 -08001353 st->is_local, st->appns_index, reg,
Florin Corasc97a7392017-11-05 23:07:07 -08001354 mp->context);
1355 }
Florin Coras6c36f532017-11-03 18:32:34 -07001356 }));
1357 /* *INDENT-ON* */
1358}
1359
Florin Coras371ca502018-02-21 12:07:41 -08001360static void
Nathan Skrzypczak79f89532019-09-13 11:08:13 +02001361vl_api_app_add_cert_key_pair_t_handler (vl_api_app_add_cert_key_pair_t * mp)
Florin Coras371ca502018-02-21 12:07:41 -08001362{
Nathan Skrzypczak79f89532019-09-13 11:08:13 +02001363 vl_api_app_add_cert_key_pair_reply_t *rmp;
1364 vnet_app_add_cert_key_pair_args_t _a, *a = &_a;
1365 u32 certkey_len, key_len, cert_len;
Florin Coras371ca502018-02-21 12:07:41 -08001366 int rv = 0;
Nathan Skrzypczak79f89532019-09-13 11:08:13 +02001367 if (session_main_is_enabled () == 0)
Florin Coras371ca502018-02-21 12:07:41 -08001368 {
1369 rv = VNET_API_ERROR_FEATURE_DISABLED;
1370 goto done;
1371 }
Nathan Skrzypczak79f89532019-09-13 11:08:13 +02001372
Florin Coras371ca502018-02-21 12:07:41 -08001373 cert_len = clib_net_to_host_u16 (mp->cert_len);
Florin Coras5090c572018-03-18 08:22:17 -07001374 if (cert_len > 10000)
1375 {
1376 rv = VNET_API_ERROR_INVALID_VALUE;
1377 goto done;
1378 }
Nathan Skrzypczak79f89532019-09-13 11:08:13 +02001379
1380 certkey_len = clib_net_to_host_u16 (mp->certkey_len);
1381 if (certkey_len < cert_len)
Florin Coras371ca502018-02-21 12:07:41 -08001382 {
Nathan Skrzypczak79f89532019-09-13 11:08:13 +02001383 rv = VNET_API_ERROR_INVALID_VALUE;
1384 goto done;
Florin Coras371ca502018-02-21 12:07:41 -08001385 }
Nathan Skrzypczak79f89532019-09-13 11:08:13 +02001386
1387 key_len = certkey_len - cert_len;
1388 if (key_len > 10000)
1389 {
1390 rv = VNET_API_ERROR_INVALID_VALUE;
1391 goto done;
1392 }
1393
1394 clib_memset (a, 0, sizeof (*a));
1395 vec_validate (a->cert, cert_len);
1396 vec_validate (a->key, key_len);
1397 clib_memcpy_fast (a->cert, mp->certkey, cert_len);
1398 clib_memcpy_fast (a->key, mp->certkey + cert_len, key_len);
1399 rv = vnet_app_add_cert_key_pair (a);
Florin Coras371ca502018-02-21 12:07:41 -08001400 vec_free (a->cert);
Nathan Skrzypczak79f89532019-09-13 11:08:13 +02001401 vec_free (a->key);
1402
Florin Coras371ca502018-02-21 12:07:41 -08001403done:
Nathan Skrzypczak79f89532019-09-13 11:08:13 +02001404 /* *INDENT-OFF* */
1405 REPLY_MACRO2 (VL_API_APP_ADD_CERT_KEY_PAIR_REPLY, ({
1406 if (!rv)
1407 rmp->index = a->index;
1408 }));
1409 /* *INDENT-ON* */
Florin Coras371ca502018-02-21 12:07:41 -08001410}
1411
1412static void
Nathan Skrzypczak79f89532019-09-13 11:08:13 +02001413vl_api_app_del_cert_key_pair_t_handler (vl_api_app_del_cert_key_pair_t * mp)
Florin Coras371ca502018-02-21 12:07:41 -08001414{
Nathan Skrzypczak79f89532019-09-13 11:08:13 +02001415 vl_api_app_del_cert_key_pair_reply_t *rmp;
Florin Coras371ca502018-02-21 12:07:41 -08001416 int rv = 0;
Nathan Skrzypczak79f89532019-09-13 11:08:13 +02001417 if (session_main_is_enabled () == 0)
1418 {
1419 rv = VNET_API_ERROR_FEATURE_DISABLED;
1420 goto done;
1421 }
1422 rv = vnet_app_del_cert_key_pair (mp->index);
1423
1424done:
1425 REPLY_MACRO (VL_API_APP_ADD_CERT_KEY_PAIR_REPLY);
1426}
1427
1428/* ### WILL BE DEPRECATED POST 20.01 ### */
1429static void
1430vl_api_application_tls_cert_add_t_handler (vl_api_application_tls_cert_add_t *
1431 mp)
1432{
1433 vl_api_application_tls_cert_add_reply_t *rmp;
1434 app_cert_key_pair_t *ckpair;
1435 application_t *app;
1436 u32 cert_len;
1437 int rv = 0;
1438 if (session_main_is_enabled () == 0)
Florin Coras371ca502018-02-21 12:07:41 -08001439 {
1440 rv = VNET_API_ERROR_FEATURE_DISABLED;
1441 goto done;
1442 }
Florin Corase3e2f072018-03-04 07:24:30 -08001443 if (!(app = application_lookup (mp->client_index)))
1444 {
1445 rv = VNET_API_ERROR_APPLICATION_NOT_ATTACHED;
1446 goto done;
1447 }
Nathan Skrzypczak79f89532019-09-13 11:08:13 +02001448 cert_len = clib_net_to_host_u16 (mp->cert_len);
1449 if (cert_len > 10000)
1450 {
1451 rv = VNET_API_ERROR_INVALID_VALUE;
1452 goto done;
1453 }
1454 ckpair = app_cert_key_pair_get_default ();
1455 vec_validate (ckpair->cert, cert_len);
1456 clib_memcpy_fast (ckpair->cert, mp->cert, cert_len);
1457
1458done:
1459 REPLY_MACRO (VL_API_APPLICATION_TLS_CERT_ADD_REPLY);
1460}
1461
1462/* ### WILL BE DEPRECATED POST 20.01 ### */
1463static void
1464vl_api_application_tls_key_add_t_handler (vl_api_application_tls_key_add_t *
1465 mp)
1466{
1467 vl_api_application_tls_key_add_reply_t *rmp;
1468 app_cert_key_pair_t *ckpair;
1469 application_t *app;
1470 u32 key_len;
1471 int rv = 0;
1472 if (session_main_is_enabled () == 0)
1473 {
1474 rv = VNET_API_ERROR_FEATURE_DISABLED;
1475 goto done;
1476 }
1477 if (!(app = application_lookup (mp->client_index)))
1478 {
1479 rv = VNET_API_ERROR_APPLICATION_NOT_ATTACHED;
1480 goto done;
1481 }
Florin Coras371ca502018-02-21 12:07:41 -08001482 key_len = clib_net_to_host_u16 (mp->key_len);
Florin Coras5090c572018-03-18 08:22:17 -07001483 if (key_len > 10000)
1484 {
1485 rv = VNET_API_ERROR_INVALID_VALUE;
1486 goto done;
1487 }
Nathan Skrzypczak79f89532019-09-13 11:08:13 +02001488 ckpair = app_cert_key_pair_get_default ();
1489 vec_validate (ckpair->key, key_len);
1490 clib_memcpy_fast (ckpair->key, mp->key, key_len);
Florin Coras371ca502018-02-21 12:07:41 -08001491done:
1492 REPLY_MACRO (VL_API_APPLICATION_TLS_KEY_ADD_REPLY);
1493}
1494
Florin Coras6cf30ad2017-04-04 23:08:23 -07001495static clib_error_t *
1496application_reaper_cb (u32 client_index)
Dave Barach68b0fb02017-02-28 15:15:56 -05001497{
Florin Coras6cf30ad2017-04-04 23:08:23 -07001498 application_t *app = application_lookup (client_index);
1499 vnet_app_detach_args_t _a, *a = &_a;
1500 if (app)
1501 {
Florin Coras15531972018-08-12 23:50:53 -07001502 a->app_index = app->app_index;
Florin Coras053a0e42018-11-13 15:52:38 -08001503 a->api_client_index = client_index;
Florin Coras6cf30ad2017-04-04 23:08:23 -07001504 vnet_application_detach (a);
1505 }
1506 return 0;
Dave Barach68b0fb02017-02-28 15:15:56 -05001507}
1508
Florin Coras6cf30ad2017-04-04 23:08:23 -07001509VL_MSG_API_REAPER_FUNCTION (application_reaper_cb);
Dave Barach68b0fb02017-02-28 15:15:56 -05001510
1511#define vl_msg_name_crc_list
1512#include <vnet/vnet_all_api_h.h>
1513#undef vl_msg_name_crc_list
1514
1515static void
1516setup_message_id_table (api_main_t * am)
1517{
1518#define _(id,n,crc) vl_msg_api_add_msg_name_crc (am, #n "_" #crc, id);
1519 foreach_vl_msg_name_crc_session;
1520#undef _
1521}
1522
1523/*
1524 * session_api_hookup
1525 * Add uri's API message handlers to the table.
Jim Thompsonf324dec2019-04-08 03:22:21 -05001526 * vlib has already mapped shared memory and
Dave Barach68b0fb02017-02-28 15:15:56 -05001527 * added the client registration handlers.
1528 * See .../open-repo/vlib/memclnt_vlib.c:memclnt_process()
1529 */
1530static clib_error_t *
1531session_api_hookup (vlib_main_t * vm)
1532{
1533 api_main_t *am = &api_main;
1534
1535#define _(N,n) \
1536 vl_msg_api_set_handlers(VL_API_##N, #n, \
1537 vl_api_##n##_t_handler, \
1538 vl_noop_handler, \
1539 vl_api_##n##_t_endian, \
1540 vl_api_##n##_t_print, \
1541 sizeof(vl_api_##n##_t), 1);
1542 foreach_session_api_msg;
1543#undef _
1544
1545 /*
1546 * Messages which bounce off the data-plane to
1547 * an API client. Simply tells the message handling infra not
1548 * to free the message.
1549 *
1550 * Bounced message handlers MUST NOT block the data plane
1551 */
1552 am->message_bounce[VL_API_CONNECT_URI] = 1;
1553 am->message_bounce[VL_API_CONNECT_SOCK] = 1;
1554
1555 /*
1556 * Set up the (msg_name, crc, message-id) table
1557 */
1558 setup_message_id_table (am);
1559
1560 return 0;
1561}
1562
1563VLIB_API_INIT_FUNCTION (session_api_hookup);
Florin Coras6cf30ad2017-04-04 23:08:23 -07001564
Dave Barach68b0fb02017-02-28 15:15:56 -05001565/*
1566 * fd.io coding-style-patch-verification: ON
1567 *
1568 * Local Variables:
1569 * eval: (c-set-style "gnu")
1570 * End:
1571 */