blob: c55aab33541d9ad5fd4d6504485b9af035df17f7 [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) \
Florin Coras15531972018-08-12 23:50:53 -070062_(APP_WORKER_ADD_DEL, app_worker_add_del) \
Florin Corase04c2992017-03-01 08:17:34 -080063
Dave Barach68b0fb02017-02-28 15:15:56 -050064static int
Florin Coras99368312018-08-02 10:45:44 -070065session_send_fds (vl_api_registration_t * reg, int fds[], int n_fds)
Florin Corasb384b542018-01-15 01:08:33 -080066{
67 clib_error_t *error;
68 if (vl_api_registration_file_index (reg) == VL_API_INVALID_FI)
69 {
70 clib_warning ("can't send memfd fd");
71 return -1;
72 }
Florin Coras99368312018-08-02 10:45:44 -070073 error = vl_api_send_fd_msg (reg, fds, n_fds);
Florin Corasb384b542018-01-15 01:08:33 -080074 if (error)
75 {
76 clib_error_report (error);
77 return -1;
78 }
79 return 0;
80}
81
82static int
Florin Corasfa76a762018-11-29 12:40:10 -080083send_add_segment_callback (u32 api_client_index, u64 segment_handle)
Dave Barach68b0fb02017-02-28 15:15:56 -050084{
Florin Coras99368312018-08-02 10:45:44 -070085 int fds[SESSION_N_FD_TYPE], n_fds = 0;
Dave Barach68b0fb02017-02-28 15:15:56 -050086 vl_api_map_another_segment_t *mp;
Florin Corasb384b542018-01-15 01:08:33 -080087 vl_api_registration_t *reg;
Florin Coras88001c62019-04-24 14:44:46 -070088 fifo_segment_t *fs;
Florin Corasfa76a762018-11-29 12:40:10 -080089 ssvm_private_t *sp;
Florin Coras99368312018-08-02 10:45:44 -070090 u8 fd_flags = 0;
Dave Barach68b0fb02017-02-28 15:15:56 -050091
Florin Corasb384b542018-01-15 01:08:33 -080092 reg = vl_mem_api_client_index_to_registration (api_client_index);
93 if (!reg)
94 {
Florin Corasfa76a762018-11-29 12:40:10 -080095 clib_warning ("no api registration for client: %u", api_client_index);
Florin Corasb384b542018-01-15 01:08:33 -080096 return -1;
97 }
Dave Barach68b0fb02017-02-28 15:15:56 -050098
Florin Corasfa76a762018-11-29 12:40:10 -080099 fs = segment_manager_get_segment_w_handle (segment_handle);
100 sp = &fs->ssvm;
Florin Coras99368312018-08-02 10:45:44 -0700101 if (ssvm_type (sp) == SSVM_SEGMENT_MEMFD)
Florin Corasb384b542018-01-15 01:08:33 -0800102 {
Florin Coras99368312018-08-02 10:45:44 -0700103 if (vl_api_registration_file_index (reg) == VL_API_INVALID_FI)
104 {
105 clib_warning ("can't send memfd fd");
106 return -1;
107 }
108
109 fd_flags |= SESSION_FD_F_MEMFD_SEGMENT;
110 fds[n_fds] = sp->fd;
111 n_fds += 1;
Florin Corasb384b542018-01-15 01:08:33 -0800112 }
Dave Barach68b0fb02017-02-28 15:15:56 -0500113
Florin Coras99368312018-08-02 10:45:44 -0700114 mp = vl_mem_api_alloc_as_if_client_w_reg (reg, sizeof (*mp));
Dave Barachb7b92992018-10-17 10:38:51 -0400115 clib_memset (mp, 0, sizeof (*mp));
Dave Barach68b0fb02017-02-28 15:15:56 -0500116 mp->_vl_msg_id = clib_host_to_net_u16 (VL_API_MAP_ANOTHER_SEGMENT);
Florin Corasb384b542018-01-15 01:08:33 -0800117 mp->segment_size = sp->ssvm_size;
Florin Coras99368312018-08-02 10:45:44 -0700118 mp->fd_flags = fd_flags;
Florin Corasfa76a762018-11-29 12:40:10 -0800119 mp->segment_handle = clib_host_to_net_u64 (segment_handle);
Florin Corasb384b542018-01-15 01:08:33 -0800120 strncpy ((char *) mp->segment_name, (char *) sp->name,
Dave Barach68b0fb02017-02-28 15:15:56 -0500121 sizeof (mp->segment_name) - 1);
122
Florin Corasb384b542018-01-15 01:08:33 -0800123 vl_msg_api_send_shmem (reg->vl_input_queue, (u8 *) & mp);
124
Florin Coras99368312018-08-02 10:45:44 -0700125 if (n_fds)
126 return session_send_fds (reg, fds, n_fds);
Dave Barach68b0fb02017-02-28 15:15:56 -0500127
128 return 0;
129}
130
131static int
Florin Corasfa76a762018-11-29 12:40:10 -0800132send_del_segment_callback (u32 api_client_index, u64 segment_handle)
Florin Corasf8f516a2018-02-08 15:10:09 -0800133{
134 vl_api_unmap_segment_t *mp;
135 vl_api_registration_t *reg;
136
137 reg = vl_mem_api_client_index_to_registration (api_client_index);
138 if (!reg)
139 {
140 clib_warning ("no registration: %u", api_client_index);
141 return -1;
142 }
143
Florin Coras99368312018-08-02 10:45:44 -0700144 mp = vl_mem_api_alloc_as_if_client_w_reg (reg, sizeof (*mp));
Dave Barachb7b92992018-10-17 10:38:51 -0400145 clib_memset (mp, 0, sizeof (*mp));
Florin Corasf8f516a2018-02-08 15:10:09 -0800146 mp->_vl_msg_id = clib_host_to_net_u16 (VL_API_UNMAP_SEGMENT);
Florin Corasfa76a762018-11-29 12:40:10 -0800147 mp->segment_handle = clib_host_to_net_u64 (segment_handle);
Florin Corasf8f516a2018-02-08 15:10:09 -0800148 vl_msg_api_send_shmem (reg->vl_input_queue, (u8 *) & mp);
149
Florin Coras99368312018-08-02 10:45:44 -0700150 return 0;
151}
152
153static int
Florin Coras83ea6692018-10-12 16:55:14 -0700154mq_try_lock_and_alloc_msg (svm_msg_q_t * app_mq, svm_msg_q_msg_t * msg)
155{
156 int rv;
157 u8 try = 0;
158 while (try < 100)
159 {
160 rv = svm_msg_q_lock_and_alloc_msg_w_ring (app_mq,
161 SESSION_MQ_CTRL_EVT_RING,
162 SVM_Q_NOWAIT, msg);
163 if (!rv)
164 return 0;
165 try++;
Florin Corase2ea1932018-12-17 23:08:14 -0800166 usleep (1);
Florin Coras83ea6692018-10-12 16:55:14 -0700167 }
Florin Corasdc2e2512018-12-03 17:47:26 -0800168 clib_warning ("failed to alloc msg");
Florin Coras83ea6692018-10-12 16:55:14 -0700169 return -1;
170}
171
172static int
Florin Coras288eaab2019-02-03 15:26:14 -0800173mq_send_session_accepted_cb (session_t * s)
Florin Coras52207f12018-07-12 14:48:06 -0700174{
Florin Coras15531972018-08-12 23:50:53 -0700175 app_worker_t *app_wrk = app_worker_get (s->app_wrk_index);
Florin Coras52207f12018-07-12 14:48:06 -0700176 svm_msg_q_msg_t _msg, *msg = &_msg;
177 svm_msg_q_t *vpp_queue, *app_mq;
Florin Coras288eaab2019-02-03 15:26:14 -0800178 session_t *listener;
Florin Coras52207f12018-07-12 14:48:06 -0700179 session_accepted_msg_t *mp;
180 session_event_t *evt;
Florin Coras15531972018-08-12 23:50:53 -0700181 application_t *app;
Florin Coras52207f12018-07-12 14:48:06 -0700182
Florin Coras15531972018-08-12 23:50:53 -0700183 app = application_get (app_wrk->app_index);
184 app_mq = app_wrk->event_queue;
Florin Coras83ea6692018-10-12 16:55:14 -0700185 if (mq_try_lock_and_alloc_msg (app_mq, msg))
186 return -1;
Florin Coras52207f12018-07-12 14:48:06 -0700187
188 evt = svm_msg_q_msg_data (app_mq, msg);
Dave Barachb7b92992018-10-17 10:38:51 -0400189 clib_memset (evt, 0, sizeof (*evt));
Florin Coras52207f12018-07-12 14:48:06 -0700190 evt->event_type = SESSION_CTRL_EVT_ACCEPTED;
191 mp = (session_accepted_msg_t *) evt->data;
Florin Coras87c65702019-01-26 14:33:26 -0800192 clib_memset (mp, 0, sizeof (*mp));
Florin Corasab2f6db2018-08-31 14:31:41 -0700193 mp->context = app->app_index;
Florin Coras288eaab2019-02-03 15:26:14 -0800194 mp->server_rx_fifo = pointer_to_uword (s->rx_fifo);
195 mp->server_tx_fifo = pointer_to_uword (s->tx_fifo);
Florin Corasfa76a762018-11-29 12:40:10 -0800196 mp->segment_handle = session_segment_handle (s);
Florin Coras52207f12018-07-12 14:48:06 -0700197
198 if (session_has_transport (s))
199 {
Nathan Skrzypczak2f0f96b2019-06-13 10:14:28 +0200200 listener = listen_session_get_from_handle (s->listener_handle);
Florin Coras87d66332019-06-11 12:31:31 -0700201 mp->listener_handle = app_listen_session_handle (listener);
Florin Coras52207f12018-07-12 14:48:06 -0700202 if (application_is_proxy (app))
203 {
204 listener =
Florin Coras15531972018-08-12 23:50:53 -0700205 app_worker_first_listener (app_wrk, session_get_fib_proto (s),
206 session_get_transport_proto (s));
Florin Coras52207f12018-07-12 14:48:06 -0700207 if (listener)
208 mp->listener_handle = listen_session_get_handle (listener);
209 }
Florin Coras31c99552019-03-01 13:00:58 -0800210 vpp_queue = session_main_get_vpp_event_queue (s->thread_index);
Florin Coras52207f12018-07-12 14:48:06 -0700211 mp->vpp_event_queue_address = pointer_to_uword (vpp_queue);
212 mp->handle = session_handle (s);
Aloys Augustincdb71702019-04-08 17:54:39 +0200213
Florin Coras09d18c22019-04-24 11:10:02 -0700214 session_get_endpoint (s, &mp->rmt, 0 /* is_lcl */ );
Florin Coras52207f12018-07-12 14:48:06 -0700215 }
216 else
217 {
Florin Coras2b81e3c2019-02-27 07:55:46 -0800218 ct_connection_t *ct;
Florin Coras99368312018-08-02 10:45:44 -0700219
Florin Coras2b81e3c2019-02-27 07:55:46 -0800220 ct = (ct_connection_t *) session_get_transport (s);
Nathan Skrzypczak2f0f96b2019-06-13 10:14:28 +0200221 listener = listen_session_get_from_handle (s->listener_handle);
Florin Coras87d66332019-06-11 12:31:31 -0700222 mp->listener_handle = app_listen_session_handle (listener);
Florin Coras09d18c22019-04-24 11:10:02 -0700223 mp->rmt.is_ip4 = session_type_is_ip4 (listener->session_type);
224 mp->rmt.port = ct->c_rmt_port;
Florin Coras2b81e3c2019-02-27 07:55:46 -0800225 mp->handle = session_handle (s);
Florin Coras653e43f2019-03-04 10:56:23 -0800226 vpp_queue = session_main_get_vpp_event_queue (0);
Florin Coras54693d22018-07-17 10:46:29 -0700227 mp->vpp_event_queue_address = pointer_to_uword (vpp_queue);
Florin Coras52207f12018-07-12 14:48:06 -0700228 }
Florin Coras537b17e2018-09-28 10:35:45 -0700229 svm_msg_q_add_and_unlock (app_mq, msg);
Florin Coras52207f12018-07-12 14:48:06 -0700230
231 return 0;
232}
233
Florin Coras72b04282019-01-14 17:23:11 -0800234static inline void
235mq_send_session_close_evt (app_worker_t * app_wrk, session_handle_t sh,
236 session_evt_type_t evt_type)
Florin Coras52207f12018-07-12 14:48:06 -0700237{
Florin Coras52207f12018-07-12 14:48:06 -0700238 svm_msg_q_msg_t _msg, *msg = &_msg;
239 session_disconnected_msg_t *mp;
240 svm_msg_q_t *app_mq;
241 session_event_t *evt;
242
Florin Coras15531972018-08-12 23:50:53 -0700243 app_mq = app_wrk->event_queue;
Florin Coras83ea6692018-10-12 16:55:14 -0700244 if (mq_try_lock_and_alloc_msg (app_mq, msg))
245 return;
Florin Coras52207f12018-07-12 14:48:06 -0700246 evt = svm_msg_q_msg_data (app_mq, msg);
Dave Barachb7b92992018-10-17 10:38:51 -0400247 clib_memset (evt, 0, sizeof (*evt));
Florin Coras72b04282019-01-14 17:23:11 -0800248 evt->event_type = evt_type;
Florin Coras52207f12018-07-12 14:48:06 -0700249 mp = (session_disconnected_msg_t *) evt->data;
Florin Coras72b04282019-01-14 17:23:11 -0800250 mp->handle = sh;
Florin Corasc1f5a432018-11-20 11:31:26 -0800251 mp->context = app_wrk->api_client_index;
Florin Coras537b17e2018-09-28 10:35:45 -0700252 svm_msg_q_add_and_unlock (app_mq, msg);
Florin Coras52207f12018-07-12 14:48:06 -0700253}
254
Florin Coras72b04282019-01-14 17:23:11 -0800255static inline void
256mq_notify_close_subscribers (u32 app_index, session_handle_t sh,
257 svm_fifo_t * f, session_evt_type_t evt_type)
258{
259 app_worker_t *app_wrk;
260 application_t *app;
261 int i;
262
263 app = application_get (app_index);
264 if (!app)
265 return;
266
267 for (i = 0; i < f->n_subscribers; i++)
268 {
269 if (!(app_wrk = application_get_worker (app, f->subscribers[i])))
270 continue;
271 mq_send_session_close_evt (app_wrk, sh, SESSION_CTRL_EVT_DISCONNECTED);
272 }
273}
274
275static void
Florin Coras288eaab2019-02-03 15:26:14 -0800276mq_send_session_disconnected_cb (session_t * s)
Florin Coras72b04282019-01-14 17:23:11 -0800277{
278 app_worker_t *app_wrk = app_worker_get (s->app_wrk_index);
279 session_handle_t sh = session_handle (s);
280
281 mq_send_session_close_evt (app_wrk, session_handle (s),
282 SESSION_CTRL_EVT_DISCONNECTED);
283
Florin Coras288eaab2019-02-03 15:26:14 -0800284 if (svm_fifo_n_subscribers (s->rx_fifo))
285 mq_notify_close_subscribers (app_wrk->app_index, sh, s->rx_fifo,
Florin Coras72b04282019-01-14 17:23:11 -0800286 SESSION_CTRL_EVT_DISCONNECTED);
287}
288
Florin Coras52207f12018-07-12 14:48:06 -0700289static void
Florin Coras288eaab2019-02-03 15:26:14 -0800290mq_send_session_reset_cb (session_t * s)
Florin Coras52207f12018-07-12 14:48:06 -0700291{
Florin Coras72b04282019-01-14 17:23:11 -0800292 app_worker_t *app_wrk = app_worker_get (s->app_wrk_index);
293 session_handle_t sh = session_handle (s);
Florin Coras52207f12018-07-12 14:48:06 -0700294
Florin Coras72b04282019-01-14 17:23:11 -0800295 mq_send_session_close_evt (app_wrk, sh, SESSION_CTRL_EVT_RESET);
296
Florin Coras288eaab2019-02-03 15:26:14 -0800297 if (svm_fifo_n_subscribers (s->rx_fifo))
298 mq_notify_close_subscribers (app_wrk->app_index, sh, s->rx_fifo,
Florin Coras72b04282019-01-14 17:23:11 -0800299 SESSION_CTRL_EVT_RESET);
Florin Coras52207f12018-07-12 14:48:06 -0700300}
301
Florin Coras458089b2019-08-21 16:20:44 -0700302int
Florin Coras15531972018-08-12 23:50:53 -0700303mq_send_session_connected_cb (u32 app_wrk_index, u32 api_context,
Florin Coras288eaab2019-02-03 15:26:14 -0800304 session_t * s, u8 is_fail)
Florin Coras52207f12018-07-12 14:48:06 -0700305{
306 svm_msg_q_msg_t _msg, *msg = &_msg;
307 session_connected_msg_t *mp;
308 svm_msg_q_t *vpp_mq, *app_mq;
309 transport_connection_t *tc;
Florin Coras15531972018-08-12 23:50:53 -0700310 app_worker_t *app_wrk;
Florin Coras52207f12018-07-12 14:48:06 -0700311 session_event_t *evt;
Florin Coras52207f12018-07-12 14:48:06 -0700312
Florin Coras15531972018-08-12 23:50:53 -0700313 app_wrk = app_worker_get (app_wrk_index);
Florin Coras15531972018-08-12 23:50:53 -0700314 app_mq = app_wrk->event_queue;
Florin Coras52207f12018-07-12 14:48:06 -0700315 if (!app_mq)
316 {
Florin Corasc1f5a432018-11-20 11:31:26 -0800317 clib_warning ("app %u with api index: %u not attached",
318 app_wrk->app_index, app_wrk->api_client_index);
Florin Coras52207f12018-07-12 14:48:06 -0700319 return -1;
320 }
321
Florin Coras83ea6692018-10-12 16:55:14 -0700322 if (mq_try_lock_and_alloc_msg (app_mq, msg))
323 return -1;
Florin Corasdc2e2512018-12-03 17:47:26 -0800324
Florin Coras52207f12018-07-12 14:48:06 -0700325 evt = svm_msg_q_msg_data (app_mq, msg);
Dave Barachb7b92992018-10-17 10:38:51 -0400326 clib_memset (evt, 0, sizeof (*evt));
Florin Coras52207f12018-07-12 14:48:06 -0700327 evt->event_type = SESSION_CTRL_EVT_CONNECTED;
328 mp = (session_connected_msg_t *) evt->data;
Florin Coras87c65702019-01-26 14:33:26 -0800329 clib_memset (mp, 0, sizeof (*mp));
Florin Coras52207f12018-07-12 14:48:06 -0700330 mp->context = api_context;
331
332 if (is_fail)
333 goto done;
334
335 if (session_has_transport (s))
336 {
337 tc = session_get_transport (s);
338 if (!tc)
339 {
340 is_fail = 1;
341 goto done;
342 }
343
Florin Coras31c99552019-03-01 13:00:58 -0800344 vpp_mq = session_main_get_vpp_event_queue (s->thread_index);
Florin Coras52207f12018-07-12 14:48:06 -0700345 mp->handle = session_handle (s);
346 mp->vpp_event_queue_address = pointer_to_uword (vpp_mq);
Aloys Augustincdb71702019-04-08 17:54:39 +0200347
Florin Coras09d18c22019-04-24 11:10:02 -0700348 session_get_endpoint (s, &mp->lcl, 1 /* is_lcl */ );
Aloys Augustincdb71702019-04-08 17:54:39 +0200349
Florin Coras288eaab2019-02-03 15:26:14 -0800350 mp->server_rx_fifo = pointer_to_uword (s->rx_fifo);
351 mp->server_tx_fifo = pointer_to_uword (s->tx_fifo);
Florin Coras2b81e3c2019-02-27 07:55:46 -0800352 mp->segment_handle = session_segment_handle (s);
Florin Coras52207f12018-07-12 14:48:06 -0700353 }
354 else
355 {
Florin Coras2b81e3c2019-02-27 07:55:46 -0800356 ct_connection_t *cct;
357 session_t *ss;
Florin Coras99368312018-08-02 10:45:44 -0700358
Florin Coras2b81e3c2019-02-27 07:55:46 -0800359 cct = (ct_connection_t *) session_get_transport (s);
Florin Coras2b81e3c2019-02-27 07:55:46 -0800360 mp->handle = session_handle (s);
Florin Coras09d18c22019-04-24 11:10:02 -0700361 mp->lcl.port = cct->c_lcl_port;
362 mp->lcl.is_ip4 = cct->c_is_ip4;
Florin Coras653e43f2019-03-04 10:56:23 -0800363 vpp_mq = session_main_get_vpp_event_queue (0);
Florin Coras54693d22018-07-17 10:46:29 -0700364 mp->vpp_event_queue_address = pointer_to_uword (vpp_mq);
Florin Coras653e43f2019-03-04 10:56:23 -0800365 mp->server_rx_fifo = pointer_to_uword (s->rx_fifo);
366 mp->server_tx_fifo = pointer_to_uword (s->tx_fifo);
367 mp->segment_handle = session_segment_handle (s);
Florin Coras2b81e3c2019-02-27 07:55:46 -0800368 ss = ct_session_get_peer (s);
Florin Coras653e43f2019-03-04 10:56:23 -0800369 mp->ct_rx_fifo = pointer_to_uword (ss->tx_fifo);
370 mp->ct_tx_fifo = pointer_to_uword (ss->rx_fifo);
371 mp->ct_segment_handle = session_segment_handle (ss);
Florin Coras52207f12018-07-12 14:48:06 -0700372 }
373
374done:
375 mp->retval = is_fail ?
376 clib_host_to_net_u32 (VNET_API_ERROR_SESSION_CONNECT) : 0;
377
Florin Coras537b17e2018-09-28 10:35:45 -0700378 svm_msg_q_add_and_unlock (app_mq, msg);
Florin Coras52207f12018-07-12 14:48:06 -0700379 return 0;
380}
381
Florin Coras458089b2019-08-21 16:20:44 -0700382int
Florin Coras60116992018-08-27 09:52:18 -0700383mq_send_session_bound_cb (u32 app_wrk_index, u32 api_context,
384 session_handle_t handle, int rv)
385{
386 svm_msg_q_msg_t _msg, *msg = &_msg;
387 svm_msg_q_t *app_mq, *vpp_evt_q;
Yu Ping0b819152019-05-07 02:24:30 +0800388 transport_endpoint_t tep;
Florin Coras60116992018-08-27 09:52:18 -0700389 session_bound_msg_t *mp;
390 app_worker_t *app_wrk;
391 session_event_t *evt;
Florin Corasc9940fc2019-02-05 20:55:11 -0800392 app_listener_t *al;
393 session_t *ls = 0;
Florin Coras60116992018-08-27 09:52:18 -0700394 app_wrk = app_worker_get (app_wrk_index);
Florin Coras60116992018-08-27 09:52:18 -0700395 app_mq = app_wrk->event_queue;
396 if (!app_mq)
397 {
Florin Corasc1f5a432018-11-20 11:31:26 -0800398 clib_warning ("app %u with api index: %u not attached",
399 app_wrk->app_index, app_wrk->api_client_index);
Florin Coras60116992018-08-27 09:52:18 -0700400 return -1;
401 }
402
Florin Coras83ea6692018-10-12 16:55:14 -0700403 if (mq_try_lock_and_alloc_msg (app_mq, msg))
404 return -1;
405
Florin Coras60116992018-08-27 09:52:18 -0700406 evt = svm_msg_q_msg_data (app_mq, msg);
Dave Barachb7b92992018-10-17 10:38:51 -0400407 clib_memset (evt, 0, sizeof (*evt));
Florin Coras60116992018-08-27 09:52:18 -0700408 evt->event_type = SESSION_CTRL_EVT_BOUND;
409 mp = (session_bound_msg_t *) evt->data;
410 mp->context = api_context;
411
412 if (rv)
413 goto done;
414
415 mp->handle = handle;
Florin Corasd4295e62019-02-22 13:11:38 -0800416 al = app_listener_get_w_handle (handle);
417 if (al->session_index != SESSION_INVALID_INDEX)
418 ls = app_listener_get_session (al);
Florin Coras60116992018-08-27 09:52:18 -0700419 else
Florin Corasd4295e62019-02-22 13:11:38 -0800420 ls = app_listener_get_local_session (al);
Yu Ping0b819152019-05-07 02:24:30 +0800421
422 session_get_endpoint (ls, &tep, 1 /* is_lcl */ );
423 mp->lcl_port = tep.port;
424 mp->lcl_is_ip4 = tep.is_ip4;
425 clib_memcpy_fast (mp->lcl_ip, &tep.ip, sizeof (tep.ip));
Florin Coras60116992018-08-27 09:52:18 -0700426
Florin Coras31c99552019-03-01 13:00:58 -0800427 vpp_evt_q = session_main_get_vpp_event_queue (0);
Florin Coras5f45e012019-01-23 09:21:30 -0800428 mp->vpp_evt_q = pointer_to_uword (vpp_evt_q);
429
Florin Coras2b81e3c2019-02-27 07:55:46 -0800430 if (session_transport_service_type (ls) == TRANSPORT_SERVICE_CL)
Florin Coras60116992018-08-27 09:52:18 -0700431 {
Florin Coras288eaab2019-02-03 15:26:14 -0800432 mp->rx_fifo = pointer_to_uword (ls->rx_fifo);
433 mp->tx_fifo = pointer_to_uword (ls->tx_fifo);
Florin Coras60116992018-08-27 09:52:18 -0700434 }
435
436done:
437 mp->retval = rv;
Florin Coras537b17e2018-09-28 10:35:45 -0700438 svm_msg_q_add_and_unlock (app_mq, msg);
Florin Coras60116992018-08-27 09:52:18 -0700439 return 0;
440}
441
Florin Coras458089b2019-08-21 16:20:44 -0700442void
443mq_send_unlisten_reply (app_worker_t * app_wrk, session_handle_t sh,
444 u32 context, int rv)
445{
446 svm_msg_q_msg_t _msg, *msg = &_msg;
447 session_unlisten_reply_msg_t *ump;
448 svm_msg_q_t *app_mq;
449 session_event_t *evt;
450
451 app_mq = app_wrk->event_queue;
452 if (mq_try_lock_and_alloc_msg (app_mq, msg))
453 return;
454
455 evt = svm_msg_q_msg_data (app_mq, msg);
456 clib_memset (evt, 0, sizeof (*evt));
457 evt->event_type = SESSION_CTRL_EVT_UNLISTEN_REPLY;
458 ump = (session_unlisten_reply_msg_t *) evt->data;
459 ump->context = context;
460 ump->handle = sh;
461 ump->retval = rv;
462 svm_msg_q_add_and_unlock (app_mq, msg);
463}
464
Florin Coras49568af2019-07-31 16:46:24 -0700465static void
466mq_send_session_migrate_cb (session_t * s, session_handle_t new_sh)
467{
468 clib_warning ("not supported");
469}
470
Florin Coras52207f12018-07-12 14:48:06 -0700471static session_cb_vft_t session_mq_cb_vft = {
472 .session_accept_callback = mq_send_session_accepted_cb,
473 .session_disconnect_callback = mq_send_session_disconnected_cb,
474 .session_connected_callback = mq_send_session_connected_cb,
475 .session_reset_callback = mq_send_session_reset_cb,
Florin Coras49568af2019-07-31 16:46:24 -0700476 .session_migrate_callback = mq_send_session_migrate_cb,
Florin Coras52207f12018-07-12 14:48:06 -0700477 .add_segment_callback = send_add_segment_callback,
478 .del_segment_callback = send_del_segment_callback,
479};
480
Dave Barach68b0fb02017-02-28 15:15:56 -0500481static void
Florin Corase04c2992017-03-01 08:17:34 -0800482vl_api_session_enable_disable_t_handler (vl_api_session_enable_disable_t * mp)
483{
484 vl_api_session_enable_disable_reply_t *rmp;
485 vlib_main_t *vm = vlib_get_main ();
486 int rv = 0;
487
488 vnet_session_enable_disable (vm, mp->is_enable);
489 REPLY_MACRO (VL_API_SESSION_ENABLE_DISABLE_REPLY);
490}
491
Florin Coras458089b2019-08-21 16:20:44 -0700492/* ### WILL BE DEPRECATED POST 20.01 ### */
Florin Corase04c2992017-03-01 08:17:34 -0800493static void
Florin Coras6cf30ad2017-04-04 23:08:23 -0700494vl_api_application_attach_t_handler (vl_api_application_attach_t * mp)
Dave Barach68b0fb02017-02-28 15:15:56 -0500495{
Florin Coras99368312018-08-02 10:45:44 -0700496 int rv = 0, fds[SESSION_N_FD_TYPE], n_fds = 0;
Florin Coras6cf30ad2017-04-04 23:08:23 -0700497 vl_api_application_attach_reply_t *rmp;
Florin Corasb384b542018-01-15 01:08:33 -0800498 ssvm_private_t *segp, *evt_q_segment;
Florin Coras6cf30ad2017-04-04 23:08:23 -0700499 vnet_app_attach_args_t _a, *a = &_a;
Florin Corasb384b542018-01-15 01:08:33 -0800500 vl_api_registration_t *reg;
Florin Coras99368312018-08-02 10:45:44 -0700501 u8 fd_flags = 0;
Dave Barach68b0fb02017-02-28 15:15:56 -0500502
Florin Corasfc804d92018-01-26 01:27:01 -0800503 reg = vl_api_client_index_to_registration (mp->client_index);
504 if (!reg)
505 return;
506
Florin Coras31c99552019-03-01 13:00:58 -0800507 if (session_main_is_enabled () == 0)
Florin Coras6cf30ad2017-04-04 23:08:23 -0700508 {
509 rv = VNET_API_ERROR_FEATURE_DISABLED;
510 goto done;
511 }
Dave Barach68b0fb02017-02-28 15:15:56 -0500512
Florin Corasff6e7692017-12-11 04:59:01 -0800513 STATIC_ASSERT (sizeof (u64) * APP_OPTIONS_N_OPTIONS <=
Florin Coras6cf30ad2017-04-04 23:08:23 -0700514 sizeof (mp->options),
515 "Out of options, fix api message definition");
Dave Barach68b0fb02017-02-28 15:15:56 -0500516
Dave Barachb7b92992018-10-17 10:38:51 -0400517 clib_memset (a, 0, sizeof (*a));
Dave Barach68b0fb02017-02-28 15:15:56 -0500518 a->api_client_index = mp->client_index;
519 a->options = mp->options;
Florin Coras64424012019-03-02 10:47:47 -0800520 a->session_cb_vft = &session_mq_cb_vft;
Florin Corascea194d2017-10-02 00:18:51 -0700521 if (mp->namespace_id_len > 64)
522 {
523 rv = VNET_API_ERROR_INVALID_VALUE;
524 goto done;
525 }
526
527 if (mp->namespace_id_len)
528 {
Dave Wallace8af20542017-10-26 03:29:30 -0400529 vec_validate (a->namespace_id, mp->namespace_id_len - 1);
Dave Barach178cf492018-11-13 16:34:13 -0500530 clib_memcpy_fast (a->namespace_id, mp->namespace_id,
531 mp->namespace_id_len);
Florin Corascea194d2017-10-02 00:18:51 -0700532 }
533
Florin Corasc1a42652019-02-08 18:27:29 -0800534 if ((rv = vnet_application_attach (a)))
Florin Corascea194d2017-10-02 00:18:51 -0700535 {
Florin Corasc1a42652019-02-08 18:27:29 -0800536 clib_warning ("attach returned: %d", rv);
Florin Coras99368312018-08-02 10:45:44 -0700537 vec_free (a->namespace_id);
538 goto done;
Florin Corascea194d2017-10-02 00:18:51 -0700539 }
540 vec_free (a->namespace_id);
Dave Barach68b0fb02017-02-28 15:15:56 -0500541
Florin Coras99368312018-08-02 10:45:44 -0700542 /* Send event queues segment */
Florin Coras31c99552019-03-01 13:00:58 -0800543 if ((evt_q_segment = session_main_get_evt_q_segment ()))
Florin Coras99368312018-08-02 10:45:44 -0700544 {
545 fd_flags |= SESSION_FD_F_VPP_MQ_SEGMENT;
546 fds[n_fds] = evt_q_segment->fd;
547 n_fds += 1;
548 }
549 /* Send fifo segment fd if needed */
550 if (ssvm_type (a->segment) == SSVM_SEGMENT_MEMFD)
551 {
552 fd_flags |= SESSION_FD_F_MEMFD_SEGMENT;
553 fds[n_fds] = a->segment->fd;
554 n_fds += 1;
555 }
556 if (a->options[APP_OPTIONS_FLAGS] & APP_OPTIONS_FLAGS_EVT_MQ_USE_EVENTFD)
557 {
558 fd_flags |= SESSION_FD_F_MQ_EVENTFD;
559 fds[n_fds] = svm_msg_q_get_producer_eventfd (a->app_evt_q);
560 n_fds += 1;
561 }
562
Florin Coras6cf30ad2017-04-04 23:08:23 -0700563done:
Florin Corasa5464812017-04-19 13:00:05 -0700564
Dave Barach68b0fb02017-02-28 15:15:56 -0500565 /* *INDENT-OFF* */
Florin Coras6cf30ad2017-04-04 23:08:23 -0700566 REPLY_MACRO2 (VL_API_APPLICATION_ATTACH_REPLY, ({
Dave Barach68b0fb02017-02-28 15:15:56 -0500567 if (!rv)
568 {
Florin Corasb384b542018-01-15 01:08:33 -0800569 segp = a->segment;
Florin Corasc1f5a432018-11-20 11:31:26 -0800570 rmp->app_index = clib_host_to_net_u32 (a->app_index);
Dave Barach68b0fb02017-02-28 15:15:56 -0500571 rmp->segment_name_length = 0;
Florin Corasb384b542018-01-15 01:08:33 -0800572 rmp->segment_size = segp->ssvm_size;
573 if (vec_len (segp->name))
Dave Barach68b0fb02017-02-28 15:15:56 -0500574 {
Florin Corasb384b542018-01-15 01:08:33 -0800575 memcpy (rmp->segment_name, segp->name, vec_len (segp->name));
576 rmp->segment_name_length = vec_len (segp->name);
Dave Barach68b0fb02017-02-28 15:15:56 -0500577 }
Florin Coras99368312018-08-02 10:45:44 -0700578 rmp->app_event_queue_address = pointer_to_uword (a->app_evt_q);
579 rmp->n_fds = n_fds;
580 rmp->fd_flags = fd_flags;
Florin Corasd85de682018-11-29 17:02:29 -0800581 rmp->segment_handle = clib_host_to_net_u64 (a->segment_handle);
Dave Barach68b0fb02017-02-28 15:15:56 -0500582 }
583 }));
584 /* *INDENT-ON* */
Florin Corasb384b542018-01-15 01:08:33 -0800585
Florin Coras99368312018-08-02 10:45:44 -0700586 if (n_fds)
587 session_send_fds (reg, fds, n_fds);
Dave Barach68b0fb02017-02-28 15:15:56 -0500588}
589
590static void
Florin Coras458089b2019-08-21 16:20:44 -0700591vl_api_app_attach_t_handler (vl_api_app_attach_t * mp)
592{
593 int rv = 0, fds[SESSION_N_FD_TYPE], n_fds = 0;
594 vl_api_app_attach_reply_t *rmp;
595 ssvm_private_t *segp, *evt_q_segment;
596 vnet_app_attach_args_t _a, *a = &_a;
597 u8 fd_flags = 0, ctrl_thread;
598 vl_api_registration_t *reg;
599 svm_msg_q_t *ctrl_mq;
600
601 reg = vl_api_client_index_to_registration (mp->client_index);
602 if (!reg)
603 return;
604
605 if (session_main_is_enabled () == 0)
606 {
607 rv = VNET_API_ERROR_FEATURE_DISABLED;
608 goto done;
609 }
610
611 STATIC_ASSERT (sizeof (u64) * APP_OPTIONS_N_OPTIONS <=
612 sizeof (mp->options),
613 "Out of options, fix api message definition");
614
615 clib_memset (a, 0, sizeof (*a));
616 a->api_client_index = mp->client_index;
617 a->options = mp->options;
618 a->session_cb_vft = &session_mq_cb_vft;
619 if (mp->namespace_id_len > 64)
620 {
621 rv = VNET_API_ERROR_INVALID_VALUE;
622 goto done;
623 }
624
625 if (mp->namespace_id_len)
626 {
627 vec_validate (a->namespace_id, mp->namespace_id_len - 1);
628 clib_memcpy_fast (a->namespace_id, mp->namespace_id,
629 mp->namespace_id_len);
630 }
631
632 if ((rv = vnet_application_attach (a)))
633 {
634 clib_warning ("attach returned: %d", rv);
635 vec_free (a->namespace_id);
636 goto done;
637 }
638 vec_free (a->namespace_id);
639
640 /* Send event queues segment */
641 if ((evt_q_segment = session_main_get_evt_q_segment ()))
642 {
643 fd_flags |= SESSION_FD_F_VPP_MQ_SEGMENT;
644 fds[n_fds] = evt_q_segment->fd;
645 n_fds += 1;
646 }
647 /* Send fifo segment fd if needed */
648 if (ssvm_type (a->segment) == SSVM_SEGMENT_MEMFD)
649 {
650 fd_flags |= SESSION_FD_F_MEMFD_SEGMENT;
651 fds[n_fds] = a->segment->fd;
652 n_fds += 1;
653 }
654 if (a->options[APP_OPTIONS_FLAGS] & APP_OPTIONS_FLAGS_EVT_MQ_USE_EVENTFD)
655 {
656 fd_flags |= SESSION_FD_F_MQ_EVENTFD;
657 fds[n_fds] = svm_msg_q_get_producer_eventfd (a->app_evt_q);
658 n_fds += 1;
659 }
660
661done:
662
663 ctrl_thread = vlib_num_workers ()? 1 : 0;
664 ctrl_mq = session_main_get_vpp_event_queue (ctrl_thread);
665 /* *INDENT-OFF* */
666 REPLY_MACRO2 (VL_API_APP_ATTACH_REPLY, ({
667 if (!rv)
668 {
669 segp = a->segment;
670 rmp->app_index = clib_host_to_net_u32 (a->app_index);
671 rmp->app_mq = pointer_to_uword (a->app_evt_q);
672 rmp->vpp_ctrl_mq = pointer_to_uword (ctrl_mq);
673 rmp->vpp_ctrl_mq_thread = ctrl_thread;
674 rmp->n_fds = n_fds;
675 rmp->fd_flags = fd_flags;
676 if (vec_len (segp->name))
677 {
678 memcpy (rmp->segment_name, segp->name, vec_len (segp->name));
679 rmp->segment_name_length = vec_len (segp->name);
680 }
681 rmp->segment_size = segp->ssvm_size;
682 rmp->segment_handle = clib_host_to_net_u64 (a->segment_handle);
683 }
684 }));
685 /* *INDENT-ON* */
686
687 if (n_fds)
688 session_send_fds (reg, fds, n_fds);
689}
690
691/* ### WILL BE DEPRECATED POST 20.01 ### */
692static void
Florin Coras6cf30ad2017-04-04 23:08:23 -0700693vl_api_application_detach_t_handler (vl_api_application_detach_t * mp)
694{
695 vl_api_application_detach_reply_t *rmp;
696 int rv = VNET_API_ERROR_INVALID_VALUE_2;
697 vnet_app_detach_args_t _a, *a = &_a;
698 application_t *app;
699
Florin Coras31c99552019-03-01 13:00:58 -0800700 if (session_main_is_enabled () == 0)
Florin Coras6cf30ad2017-04-04 23:08:23 -0700701 {
702 rv = VNET_API_ERROR_FEATURE_DISABLED;
703 goto done;
704 }
705
706 app = application_lookup (mp->client_index);
707 if (app)
708 {
Florin Coras15531972018-08-12 23:50:53 -0700709 a->app_index = app->app_index;
Florin Coras053a0e42018-11-13 15:52:38 -0800710 a->api_client_index = mp->client_index;
Florin Coras6cf30ad2017-04-04 23:08:23 -0700711 rv = vnet_application_detach (a);
712 }
713
714done:
715 REPLY_MACRO (VL_API_APPLICATION_DETACH_REPLY);
716}
717
Florin Coras458089b2019-08-21 16:20:44 -0700718/* ### WILL BE DEPRECATED POST 20.01 ### */
Florin Coras6cf30ad2017-04-04 23:08:23 -0700719static void
720vl_api_bind_uri_t_handler (vl_api_bind_uri_t * mp)
721{
Florin Coras7fb0fe12018-04-09 09:24:52 -0700722 vl_api_bind_uri_reply_t *rmp;
Florin Coras64424012019-03-02 10:47:47 -0800723 vnet_listen_args_t _a, *a = &_a;
Florin Coras7fb0fe12018-04-09 09:24:52 -0700724 application_t *app = 0;
Florin Coras60116992018-08-27 09:52:18 -0700725 app_worker_t *app_wrk;
Florin Coras6cf30ad2017-04-04 23:08:23 -0700726 int rv;
727
Florin Coras31c99552019-03-01 13:00:58 -0800728 if (session_main_is_enabled () == 0)
Florin Coras6cf30ad2017-04-04 23:08:23 -0700729 {
730 rv = VNET_API_ERROR_FEATURE_DISABLED;
731 goto done;
732 }
733
734 app = application_lookup (mp->client_index);
735 if (app)
736 {
Dave Barachb7b92992018-10-17 10:38:51 -0400737 clib_memset (a, 0, sizeof (*a));
Florin Coras6cf30ad2017-04-04 23:08:23 -0700738 a->uri = (char *) mp->uri;
Florin Coras15531972018-08-12 23:50:53 -0700739 a->app_index = app->app_index;
Florin Coras6cf30ad2017-04-04 23:08:23 -0700740 rv = vnet_bind_uri (a);
741 }
742 else
743 {
744 rv = VNET_API_ERROR_APPLICATION_NOT_ATTACHED;
745 }
746
747done:
Florin Coras7fb0fe12018-04-09 09:24:52 -0700748
Florin Coras64424012019-03-02 10:47:47 -0800749 REPLY_MACRO (VL_API_BIND_URI_REPLY);
Florin Coras60116992018-08-27 09:52:18 -0700750
Florin Coras64424012019-03-02 10:47:47 -0800751 if (app)
Florin Coras60116992018-08-27 09:52:18 -0700752 {
753 app_wrk = application_get_worker (app, 0);
754 mq_send_session_bound_cb (app_wrk->wrk_index, mp->context, a->handle,
755 rv);
756 }
Florin Coras6cf30ad2017-04-04 23:08:23 -0700757}
758
Florin Coras458089b2019-08-21 16:20:44 -0700759/* ### WILL BE DEPRECATED POST 20.01 ### */
Florin Coras6cf30ad2017-04-04 23:08:23 -0700760static void
Dave Barach68b0fb02017-02-28 15:15:56 -0500761vl_api_unbind_uri_t_handler (vl_api_unbind_uri_t * mp)
762{
763 vl_api_unbind_uri_reply_t *rmp;
Florin Coras6cf30ad2017-04-04 23:08:23 -0700764 application_t *app;
Florin Corasc1a42652019-02-08 18:27:29 -0800765 vnet_unlisten_args_t _a, *a = &_a;
Dave Barach68b0fb02017-02-28 15:15:56 -0500766 int rv;
767
Florin Coras31c99552019-03-01 13:00:58 -0800768 if (session_main_is_enabled () == 0)
Florin Coras6cf30ad2017-04-04 23:08:23 -0700769 {
770 rv = VNET_API_ERROR_FEATURE_DISABLED;
771 goto done;
772 }
Dave Barach68b0fb02017-02-28 15:15:56 -0500773
Florin Coras6cf30ad2017-04-04 23:08:23 -0700774 app = application_lookup (mp->client_index);
775 if (app)
776 {
777 a->uri = (char *) mp->uri;
Florin Coras15531972018-08-12 23:50:53 -0700778 a->app_index = app->app_index;
Nathan Skrzypczak2eed1a12019-07-04 14:26:21 +0200779 a->wrk_map_index = 0;
Florin Coras6cf30ad2017-04-04 23:08:23 -0700780 rv = vnet_unbind_uri (a);
781 }
782 else
783 {
784 rv = VNET_API_ERROR_APPLICATION_NOT_ATTACHED;
785 }
786
787done:
Dave Barach68b0fb02017-02-28 15:15:56 -0500788 REPLY_MACRO (VL_API_UNBIND_URI_REPLY);
789}
790
Florin Coras458089b2019-08-21 16:20:44 -0700791/* ### WILL BE DEPRECATED POST 20.01 ### */
Florin Corasf03a59a2017-06-09 21:07:32 -0700792static void
Dave Barach68b0fb02017-02-28 15:15:56 -0500793vl_api_connect_uri_t_handler (vl_api_connect_uri_t * mp)
794{
Florin Coras64424012019-03-02 10:47:47 -0800795 vl_api_connect_uri_reply_t *rmp;
Dave Barach68b0fb02017-02-28 15:15:56 -0500796 vnet_connect_args_t _a, *a = &_a;
Florin Coras6cf30ad2017-04-04 23:08:23 -0700797 application_t *app;
Florin Corascea194d2017-10-02 00:18:51 -0700798 int rv = 0;
Dave Barach68b0fb02017-02-28 15:15:56 -0500799
Florin Coras31c99552019-03-01 13:00:58 -0800800 if (session_main_is_enabled () == 0)
Florin Coras6cf30ad2017-04-04 23:08:23 -0700801 {
802 rv = VNET_API_ERROR_FEATURE_DISABLED;
803 goto done;
804 }
Florin Corase04c2992017-03-01 08:17:34 -0800805
Florin Coras6cf30ad2017-04-04 23:08:23 -0700806 app = application_lookup (mp->client_index);
807 if (app)
808 {
Dave Barachb7b92992018-10-17 10:38:51 -0400809 clib_memset (a, 0, sizeof (*a));
Florin Coras6cf30ad2017-04-04 23:08:23 -0700810 a->uri = (char *) mp->uri;
811 a->api_context = mp->context;
Florin Coras15531972018-08-12 23:50:53 -0700812 a->app_index = app->app_index;
Florin Corasc1a42652019-02-08 18:27:29 -0800813 if ((rv = vnet_connect_uri (a)))
814 clib_warning ("connect_uri returned: %d", rv);
Florin Coras6cf30ad2017-04-04 23:08:23 -0700815 }
816 else
817 {
818 rv = VNET_API_ERROR_APPLICATION_NOT_ATTACHED;
819 }
Florin Corase04c2992017-03-01 08:17:34 -0800820
Florin Coras3cbc04b2017-10-02 00:18:51 -0700821 /*
822 * Don't reply to stream (tcp) connects. The reply will come once
823 * the connection is established. In case of the redirects, the reply
824 * will come from the server app.
825 */
Florin Coras8f89dd02018-03-05 16:53:07 -0800826 if (rv == 0)
Florin Corase04c2992017-03-01 08:17:34 -0800827 return;
828
Florin Coras6cf30ad2017-04-04 23:08:23 -0700829done:
Florin Coras64424012019-03-02 10:47:47 -0800830 REPLY_MACRO (VL_API_CONNECT_URI_REPLY);
Dave Barach68b0fb02017-02-28 15:15:56 -0500831}
832
Florin Coras458089b2019-08-21 16:20:44 -0700833/* ### WILL BE DEPRECATED POST 20.01 ### */
Dave Barach68b0fb02017-02-28 15:15:56 -0500834static void
835vl_api_disconnect_session_t_handler (vl_api_disconnect_session_t * mp)
836{
837 vl_api_disconnect_session_reply_t *rmp;
Florin Coras6cf30ad2017-04-04 23:08:23 -0700838 vnet_disconnect_args_t _a, *a = &_a;
839 application_t *app;
840 int rv = 0;
Dave Barach68b0fb02017-02-28 15:15:56 -0500841
Florin Coras31c99552019-03-01 13:00:58 -0800842 if (session_main_is_enabled () == 0)
Florin Coras6cf30ad2017-04-04 23:08:23 -0700843 {
844 rv = VNET_API_ERROR_FEATURE_DISABLED;
845 goto done;
846 }
Dave Barach68b0fb02017-02-28 15:15:56 -0500847
Florin Coras6cf30ad2017-04-04 23:08:23 -0700848 app = application_lookup (mp->client_index);
849 if (app)
850 {
851 a->handle = mp->handle;
Florin Coras15531972018-08-12 23:50:53 -0700852 a->app_index = app->app_index;
Florin Coras6cf30ad2017-04-04 23:08:23 -0700853 rv = vnet_disconnect_session (a);
854 }
855 else
856 {
857 rv = VNET_API_ERROR_APPLICATION_NOT_ATTACHED;
858 }
859
860done:
Dave Wallacede5fec92017-11-11 22:41:34 -0500861 REPLY_MACRO2 (VL_API_DISCONNECT_SESSION_REPLY, rmp->handle = mp->handle);
Dave Barach68b0fb02017-02-28 15:15:56 -0500862}
863
Florin Coras458089b2019-08-21 16:20:44 -0700864/* ### WILL BE DEPRECATED POST 20.01 ### */
Dave Barach68b0fb02017-02-28 15:15:56 -0500865static void
866vl_api_disconnect_session_reply_t_handler (vl_api_disconnect_session_reply_t *
867 mp)
868{
Florin Coras6cf30ad2017-04-04 23:08:23 -0700869 vnet_disconnect_args_t _a, *a = &_a;
870 application_t *app;
Dave Barach68b0fb02017-02-28 15:15:56 -0500871
872 /* Client objected to disconnecting the session, log and continue */
873 if (mp->retval)
874 {
875 clib_warning ("client retval %d", mp->retval);
876 return;
877 }
878
879 /* Disconnect has been confirmed. Confirm close to transport */
Florin Corasf8f516a2018-02-08 15:10:09 -0800880 app = application_lookup (mp->context);
Florin Coras6cf30ad2017-04-04 23:08:23 -0700881 if (app)
882 {
883 a->handle = mp->handle;
Florin Coras15531972018-08-12 23:50:53 -0700884 a->app_index = app->app_index;
Florin Coras6cf30ad2017-04-04 23:08:23 -0700885 vnet_disconnect_session (a);
886 }
Dave Barach68b0fb02017-02-28 15:15:56 -0500887}
888
889static void
Dave Barach68b0fb02017-02-28 15:15:56 -0500890vl_api_map_another_segment_reply_t_handler (vl_api_map_another_segment_reply_t
891 * mp)
892{
893 clib_warning ("not implemented");
894}
895
Florin Coras458089b2019-08-21 16:20:44 -0700896/* ### WILL BE DEPRECATED POST 20.01 ### */
Dave Barach68b0fb02017-02-28 15:15:56 -0500897static void
898vl_api_bind_sock_t_handler (vl_api_bind_sock_t * mp)
899{
Florin Corasc9940fc2019-02-05 20:55:11 -0800900 vnet_listen_args_t _a, *a = &_a;
Dave Barach68b0fb02017-02-28 15:15:56 -0500901 vl_api_bind_sock_reply_t *rmp;
Florin Coraseb2945c2017-11-22 10:39:09 -0800902 application_t *app = 0;
Florin Coras60116992018-08-27 09:52:18 -0700903 app_worker_t *app_wrk;
Florin Corasdcf55ce2017-11-16 15:32:50 -0800904 ip46_address_t *ip46;
Florin Corasc9940fc2019-02-05 20:55:11 -0800905 int rv = 0;
Dave Barach68b0fb02017-02-28 15:15:56 -0500906
Florin Coras31c99552019-03-01 13:00:58 -0800907 if (session_main_is_enabled () == 0)
Florin Coras6cf30ad2017-04-04 23:08:23 -0700908 {
909 rv = VNET_API_ERROR_FEATURE_DISABLED;
910 goto done;
911 }
Dave Barach68b0fb02017-02-28 15:15:56 -0500912
Florin Coras6cf30ad2017-04-04 23:08:23 -0700913 app = application_lookup (mp->client_index);
Florin Corasdcf55ce2017-11-16 15:32:50 -0800914 if (!app)
Florin Coras6cf30ad2017-04-04 23:08:23 -0700915 {
Florin Corasdcf55ce2017-11-16 15:32:50 -0800916 rv = VNET_API_ERROR_APPLICATION_NOT_ATTACHED;
917 goto done;
Florin Coras6cf30ad2017-04-04 23:08:23 -0700918 }
Florin Corasdcf55ce2017-11-16 15:32:50 -0800919
920 ip46 = (ip46_address_t *) mp->ip;
Dave Barachb7b92992018-10-17 10:38:51 -0400921 clib_memset (a, 0, sizeof (*a));
Florin Corasdcf55ce2017-11-16 15:32:50 -0800922 a->sep.is_ip4 = mp->is_ip4;
923 a->sep.ip = *ip46;
924 a->sep.port = mp->port;
925 a->sep.fib_index = mp->vrf;
926 a->sep.sw_if_index = ENDPOINT_INVALID_INDEX;
927 a->sep.transport_proto = mp->proto;
Florin Coras15531972018-08-12 23:50:53 -0700928 a->app_index = app->app_index;
929 a->wrk_map_index = mp->wrk_index;
Florin Corasdcf55ce2017-11-16 15:32:50 -0800930
Florin Corasc1a42652019-02-08 18:27:29 -0800931 if ((rv = vnet_listen (a)))
932 clib_warning ("listen returned: %d", rv);
Florin Corasdcf55ce2017-11-16 15:32:50 -0800933
Florin Coras6cf30ad2017-04-04 23:08:23 -0700934done:
Florin Coras64424012019-03-02 10:47:47 -0800935 /* Actual reply sent only over mq */
936 REPLY_MACRO (VL_API_BIND_SOCK_REPLY);
Florin Coras60116992018-08-27 09:52:18 -0700937
Florin Coras64424012019-03-02 10:47:47 -0800938 if (app)
Florin Coras60116992018-08-27 09:52:18 -0700939 {
940 app_wrk = application_get_worker (app, mp->wrk_index);
941 mq_send_session_bound_cb (app_wrk->wrk_index, mp->context, a->handle,
942 rv);
943 }
Dave Barach68b0fb02017-02-28 15:15:56 -0500944}
945
Florin Coras458089b2019-08-21 16:20:44 -0700946/* ### WILL BE DEPRECATED POST 20.01 ### */
Dave Barach68b0fb02017-02-28 15:15:56 -0500947static void
948vl_api_unbind_sock_t_handler (vl_api_unbind_sock_t * mp)
949{
950 vl_api_unbind_sock_reply_t *rmp;
Florin Corasc1a42652019-02-08 18:27:29 -0800951 vnet_unlisten_args_t _a, *a = &_a;
Florin Corasdfae9f92019-02-20 19:48:31 -0800952 app_worker_t *app_wrk;
953 application_t *app = 0;
Florin Corascea194d2017-10-02 00:18:51 -0700954 int rv = 0;
Dave Barach68b0fb02017-02-28 15:15:56 -0500955
Florin Coras31c99552019-03-01 13:00:58 -0800956 if (session_main_is_enabled () == 0)
Florin Coras6cf30ad2017-04-04 23:08:23 -0700957 {
958 rv = VNET_API_ERROR_FEATURE_DISABLED;
959 goto done;
960 }
Dave Barach68b0fb02017-02-28 15:15:56 -0500961
Florin Coras6cf30ad2017-04-04 23:08:23 -0700962 app = application_lookup (mp->client_index);
963 if (app)
964 {
Florin Coras15531972018-08-12 23:50:53 -0700965 a->app_index = app->app_index;
Florin Coras6cf30ad2017-04-04 23:08:23 -0700966 a->handle = mp->handle;
Florin Corasab2f6db2018-08-31 14:31:41 -0700967 a->wrk_map_index = mp->wrk_index;
Florin Corasc1a42652019-02-08 18:27:29 -0800968 if ((rv = vnet_unlisten (a)))
969 clib_warning ("unlisten returned: %d", rv);
Florin Coras6cf30ad2017-04-04 23:08:23 -0700970 }
Florin Coraseef61bb2019-08-27 15:13:35 -0700971 else
972 {
973 rv = VNET_API_ERROR_APPLICATION_NOT_ATTACHED;
974 }
Dave Barach68b0fb02017-02-28 15:15:56 -0500975
Florin Coras6cf30ad2017-04-04 23:08:23 -0700976done:
Dave Barach68b0fb02017-02-28 15:15:56 -0500977 REPLY_MACRO (VL_API_UNBIND_SOCK_REPLY);
Florin Corasdfae9f92019-02-20 19:48:31 -0800978
Florin Coraseef61bb2019-08-27 15:13:35 -0700979 if (!app)
980 return;
981
Florin Corasdfae9f92019-02-20 19:48:31 -0800982 app_wrk = application_get_worker (app, a->wrk_map_index);
983 if (!app_wrk)
984 return;
985
Florin Coras458089b2019-08-21 16:20:44 -0700986 mq_send_unlisten_reply (app_wrk, mp->handle, mp->context, rv);
Dave Barach68b0fb02017-02-28 15:15:56 -0500987}
988
Florin Coras458089b2019-08-21 16:20:44 -0700989/* ### WILL BE DEPRECATED POST 20.01 ### */
Dave Barach68b0fb02017-02-28 15:15:56 -0500990static void
991vl_api_connect_sock_t_handler (vl_api_connect_sock_t * mp)
992{
Florin Coras64424012019-03-02 10:47:47 -0800993 vl_api_connect_sock_reply_t *rmp;
Dave Barach68b0fb02017-02-28 15:15:56 -0500994 vnet_connect_args_t _a, *a = &_a;
Florin Corasab2f6db2018-08-31 14:31:41 -0700995 application_t *app = 0;
Florin Corascea194d2017-10-02 00:18:51 -0700996 int rv = 0;
Dave Barach68b0fb02017-02-28 15:15:56 -0500997
Florin Coras31c99552019-03-01 13:00:58 -0800998 if (session_main_is_enabled () == 0)
Florin Coras6cf30ad2017-04-04 23:08:23 -0700999 {
1000 rv = VNET_API_ERROR_FEATURE_DISABLED;
1001 goto done;
1002 }
Dave Barach68b0fb02017-02-28 15:15:56 -05001003
Florin Coras6cf30ad2017-04-04 23:08:23 -07001004 app = application_lookup (mp->client_index);
1005 if (app)
1006 {
Florin Corase86a8ed2018-01-05 03:20:25 -08001007 svm_queue_t *client_q;
Dave Wallace33e002b2017-09-06 01:20:02 -04001008 ip46_address_t *ip46 = (ip46_address_t *) mp->ip;
Dave Wallaceb2d5ff32017-06-14 12:38:28 -04001009
Dave Barachb7b92992018-10-17 10:38:51 -04001010 clib_memset (a, 0, sizeof (*a));
Dave Wallaceb2d5ff32017-06-14 12:38:28 -04001011 client_q = vl_api_client_index_to_input_queue (mp->client_index);
1012 mp->client_queue_address = pointer_to_uword (client_q);
Florin Corascea194d2017-10-02 00:18:51 -07001013 a->sep.is_ip4 = mp->is_ip4;
1014 a->sep.ip = *ip46;
1015 a->sep.port = mp->port;
1016 a->sep.transport_proto = mp->proto;
Florin Coras5665ced2018-10-25 18:03:45 -07001017 a->sep.peer.fib_index = mp->vrf;
1018 a->sep.peer.sw_if_index = ENDPOINT_INVALID_INDEX;
Nathan Skrzypczak8ac1d6d2019-07-17 11:02:20 +02001019 a->sep_ext.parent_handle = mp->parent_handle;
Florin Coras8f89dd02018-03-05 16:53:07 -08001020 if (mp->hostname_len)
1021 {
Florin Coras15531972018-08-12 23:50:53 -07001022 vec_validate (a->sep_ext.hostname, mp->hostname_len - 1);
Dave Barach178cf492018-11-13 16:34:13 -05001023 clib_memcpy_fast (a->sep_ext.hostname, mp->hostname,
1024 mp->hostname_len);
Florin Coras8f89dd02018-03-05 16:53:07 -08001025 }
Florin Coras6cf30ad2017-04-04 23:08:23 -07001026 a->api_context = mp->context;
Florin Coras15531972018-08-12 23:50:53 -07001027 a->app_index = app->app_index;
1028 a->wrk_map_index = mp->wrk_index;
Florin Corasc1a42652019-02-08 18:27:29 -08001029 if ((rv = vnet_connect (a)))
Nathan Skrzypczakba65ca42019-05-16 16:35:40 +02001030 clib_warning ("connect returned: %U", format_vnet_api_errno, rv);
Florin Coras15531972018-08-12 23:50:53 -07001031 vec_free (a->sep_ext.hostname);
Florin Coras6cf30ad2017-04-04 23:08:23 -07001032 }
1033 else
1034 {
1035 rv = VNET_API_ERROR_APPLICATION_NOT_ATTACHED;
1036 }
Florin Corase04c2992017-03-01 08:17:34 -08001037
Florin Coras8f89dd02018-03-05 16:53:07 -08001038 if (rv == 0)
Florin Corase04c2992017-03-01 08:17:34 -08001039 return;
1040
1041 /* Got some error, relay it */
1042
Florin Coras6cf30ad2017-04-04 23:08:23 -07001043done:
Florin Coras64424012019-03-02 10:47:47 -08001044 REPLY_MACRO (VL_API_CONNECT_SOCK_REPLY);
Florin Corasab2f6db2018-08-31 14:31:41 -07001045
Florin Coras64424012019-03-02 10:47:47 -08001046 if (app)
Florin Corasab2f6db2018-08-31 14:31:41 -07001047 {
1048 app_worker_t *app_wrk = application_get_worker (app, mp->wrk_index);
1049 mq_send_session_connected_cb (app_wrk->wrk_index, mp->context, 0, 1);
1050 }
Dave Barach68b0fb02017-02-28 15:15:56 -05001051}
1052
Florin Corascea194d2017-10-02 00:18:51 -07001053static void
Florin Coras15531972018-08-12 23:50:53 -07001054vl_api_app_worker_add_del_t_handler (vl_api_app_worker_add_del_t * mp)
1055{
1056 int rv = 0, fds[SESSION_N_FD_TYPE], n_fds = 0;
1057 vl_api_app_worker_add_del_reply_t *rmp;
1058 vl_api_registration_t *reg;
Florin Coras15531972018-08-12 23:50:53 -07001059 application_t *app;
1060 u8 fd_flags = 0;
1061
Florin Coras31c99552019-03-01 13:00:58 -08001062 if (!session_main_is_enabled ())
Florin Coras15531972018-08-12 23:50:53 -07001063 {
1064 rv = VNET_API_ERROR_FEATURE_DISABLED;
1065 goto done;
1066 }
1067
1068 reg = vl_api_client_index_to_registration (mp->client_index);
1069 if (!reg)
1070 return;
1071
Florin Corasc1f5a432018-11-20 11:31:26 -08001072 app = application_get_if_valid (clib_net_to_host_u32 (mp->app_index));
Florin Coras15531972018-08-12 23:50:53 -07001073 if (!app)
1074 {
1075 rv = VNET_API_ERROR_INVALID_VALUE;
1076 goto done;
1077 }
1078
1079 vnet_app_worker_add_del_args_t args = {
1080 .app_index = app->app_index,
Florin Coras349f8ca2018-11-20 16:52:49 -08001081 .wrk_map_index = clib_net_to_host_u32 (mp->wrk_index),
Florin Corasc1f5a432018-11-20 11:31:26 -08001082 .api_client_index = mp->client_index,
Florin Coras15531972018-08-12 23:50:53 -07001083 .is_add = mp->is_add
1084 };
Florin Corasc1a42652019-02-08 18:27:29 -08001085 rv = vnet_app_worker_add_del (&args);
1086 if (rv)
Florin Coras15531972018-08-12 23:50:53 -07001087 {
Florin Corasc1a42652019-02-08 18:27:29 -08001088 clib_warning ("app worker add/del returned: %d", rv);
Florin Coras15531972018-08-12 23:50:53 -07001089 goto done;
1090 }
1091
Florin Coras14598772018-09-04 19:47:52 -07001092 if (!mp->is_add)
1093 goto done;
Florin Corasc3638fe2018-08-24 13:58:49 -07001094
Florin Coras15531972018-08-12 23:50:53 -07001095 /* Send fifo segment fd if needed */
1096 if (ssvm_type (args.segment) == SSVM_SEGMENT_MEMFD)
1097 {
1098 fd_flags |= SESSION_FD_F_MEMFD_SEGMENT;
1099 fds[n_fds] = args.segment->fd;
1100 n_fds += 1;
1101 }
1102 if (application_segment_manager_properties (app)->use_mq_eventfd)
1103 {
1104 fd_flags |= SESSION_FD_F_MQ_EVENTFD;
1105 fds[n_fds] = svm_msg_q_get_producer_eventfd (args.evt_q);
1106 n_fds += 1;
1107 }
1108
1109 /* *INDENT-OFF* */
1110done:
1111 REPLY_MACRO2 (VL_API_APP_WORKER_ADD_DEL_REPLY, ({
1112 rmp->is_add = mp->is_add;
Florin Coras349f8ca2018-11-20 16:52:49 -08001113 rmp->wrk_index = clib_host_to_net_u32 (args.wrk_map_index);
Florin Corasfa76a762018-11-29 12:40:10 -08001114 rmp->segment_handle = clib_host_to_net_u64 (args.segment_handle);
Florin Coras14598772018-09-04 19:47:52 -07001115 if (!rv && mp->is_add)
Florin Coras15531972018-08-12 23:50:53 -07001116 {
Florin Coras15531972018-08-12 23:50:53 -07001117 if (vec_len (args.segment->name))
1118 {
1119 memcpy (rmp->segment_name, args.segment->name,
1120 vec_len (args.segment->name));
1121 rmp->segment_name_length = vec_len (args.segment->name);
1122 }
1123 rmp->app_event_queue_address = pointer_to_uword (args.evt_q);
1124 rmp->n_fds = n_fds;
1125 rmp->fd_flags = fd_flags;
1126 }
1127 }));
1128 /* *INDENT-ON* */
1129
1130 if (n_fds)
1131 session_send_fds (reg, fds, n_fds);
1132}
1133
1134static void
Florin Corascea194d2017-10-02 00:18:51 -07001135vl_api_app_namespace_add_del_t_handler (vl_api_app_namespace_add_del_t * mp)
1136{
1137 vl_api_app_namespace_add_del_reply_t *rmp;
Florin Coras6e8c6672017-11-10 09:03:54 -08001138 u32 appns_index = 0;
1139 u8 *ns_id = 0;
Florin Corascea194d2017-10-02 00:18:51 -07001140 int rv = 0;
Florin Coras31c99552019-03-01 13:00:58 -08001141 if (!session_main_is_enabled ())
Florin Corascea194d2017-10-02 00:18:51 -07001142 {
1143 rv = VNET_API_ERROR_FEATURE_DISABLED;
1144 goto done;
1145 }
1146
1147 if (mp->namespace_id_len > ARRAY_LEN (mp->namespace_id))
1148 {
1149 rv = VNET_API_ERROR_INVALID_VALUE;
1150 goto done;
1151 }
1152
1153 vec_validate (ns_id, mp->namespace_id_len - 1);
Dave Barach178cf492018-11-13 16:34:13 -05001154 clib_memcpy_fast (ns_id, mp->namespace_id, mp->namespace_id_len);
Florin Corascea194d2017-10-02 00:18:51 -07001155 vnet_app_namespace_add_del_args_t args = {
1156 .ns_id = ns_id,
Florin Coras9a9adb22017-10-26 08:16:59 -07001157 .secret = clib_net_to_host_u64 (mp->secret),
Florin Corascea194d2017-10-02 00:18:51 -07001158 .sw_if_index = clib_net_to_host_u32 (mp->sw_if_index),
1159 .ip4_fib_id = clib_net_to_host_u32 (mp->ip4_fib_id),
1160 .ip6_fib_id = clib_net_to_host_u32 (mp->ip6_fib_id),
1161 .is_add = 1
1162 };
Florin Corasc1a42652019-02-08 18:27:29 -08001163 rv = vnet_app_namespace_add_del (&args);
1164 if (!rv)
Florin Coras6e8c6672017-11-10 09:03:54 -08001165 {
1166 appns_index = app_namespace_index_from_id (ns_id);
1167 if (appns_index == APP_NAMESPACE_INVALID_INDEX)
1168 {
1169 clib_warning ("app ns lookup failed");
1170 rv = VNET_API_ERROR_UNSPECIFIED;
1171 }
1172 }
Florin Corascea194d2017-10-02 00:18:51 -07001173 vec_free (ns_id);
Florin Coras6e8c6672017-11-10 09:03:54 -08001174
1175 /* *INDENT-OFF* */
Florin Corascea194d2017-10-02 00:18:51 -07001176done:
Florin Coras6e8c6672017-11-10 09:03:54 -08001177 REPLY_MACRO2 (VL_API_APP_NAMESPACE_ADD_DEL_REPLY, ({
1178 if (!rv)
1179 rmp->appns_index = clib_host_to_net_u32 (appns_index);
1180 }));
1181 /* *INDENT-ON* */
Florin Corascea194d2017-10-02 00:18:51 -07001182}
1183
Florin Coras1c710452017-10-17 00:03:13 -07001184static void
1185vl_api_session_rule_add_del_t_handler (vl_api_session_rule_add_del_t * mp)
1186{
1187 vl_api_session_rule_add_del_reply_t *rmp;
1188 session_rule_add_del_args_t args;
1189 session_rule_table_add_del_args_t *table_args = &args.table_args;
Florin Coras1c710452017-10-17 00:03:13 -07001190 u8 fib_proto;
1191 int rv = 0;
1192
Dave Barachb7b92992018-10-17 10:38:51 -04001193 clib_memset (&args, 0, sizeof (args));
Florin Coras1c710452017-10-17 00:03:13 -07001194 fib_proto = mp->is_ip4 ? FIB_PROTOCOL_IP4 : FIB_PROTOCOL_IP6;
1195
1196 table_args->lcl.fp_len = mp->lcl_plen;
1197 table_args->lcl.fp_proto = fib_proto;
1198 table_args->rmt.fp_len = mp->rmt_plen;
1199 table_args->rmt.fp_proto = fib_proto;
Milan Lenco8b9a5d12017-11-24 17:12:33 +01001200 table_args->lcl_port = mp->lcl_port;
1201 table_args->rmt_port = mp->rmt_port;
Florin Coras1c710452017-10-17 00:03:13 -07001202 table_args->action_index = clib_net_to_host_u32 (mp->action_index);
1203 table_args->is_add = mp->is_add;
Florin Corasc97a7392017-11-05 23:07:07 -08001204 mp->tag[sizeof (mp->tag) - 1] = 0;
1205 table_args->tag = format (0, "%s", mp->tag);
Florin Coras1c710452017-10-17 00:03:13 -07001206 args.appns_index = clib_net_to_host_u32 (mp->appns_index);
1207 args.scope = mp->scope;
Florin Coras42324ad2017-11-18 18:45:20 -08001208 args.transport_proto = mp->transport_proto;
Florin Coras1c710452017-10-17 00:03:13 -07001209
Dave Barachb7b92992018-10-17 10:38:51 -04001210 clib_memset (&table_args->lcl.fp_addr, 0, sizeof (table_args->lcl.fp_addr));
1211 clib_memset (&table_args->rmt.fp_addr, 0, sizeof (table_args->rmt.fp_addr));
Florin Coras1c710452017-10-17 00:03:13 -07001212 ip_set (&table_args->lcl.fp_addr, mp->lcl_ip, mp->is_ip4);
1213 ip_set (&table_args->rmt.fp_addr, mp->rmt_ip, mp->is_ip4);
Florin Corasc1a42652019-02-08 18:27:29 -08001214 rv = vnet_session_rule_add_del (&args);
1215 if (rv)
1216 clib_warning ("rule add del returned: %d", rv);
Florin Corasc97a7392017-11-05 23:07:07 -08001217 vec_free (table_args->tag);
Florin Coras1c710452017-10-17 00:03:13 -07001218 REPLY_MACRO (VL_API_SESSION_RULE_ADD_DEL_REPLY);
1219}
1220
Florin Coras6c36f532017-11-03 18:32:34 -07001221static void
1222send_session_rule_details4 (mma_rule_16_t * rule, u8 is_local,
Florin Corasc97a7392017-11-05 23:07:07 -08001223 u8 transport_proto, u32 appns_index, u8 * tag,
Florin Coras6c4dae22018-01-09 06:39:23 -08001224 vl_api_registration_t * reg, u32 context)
Florin Coras6c36f532017-11-03 18:32:34 -07001225{
1226 vl_api_session_rules_details_t *rmp = 0;
1227 session_mask_or_match_4_t *match =
1228 (session_mask_or_match_4_t *) & rule->match;
1229 session_mask_or_match_4_t *mask =
1230 (session_mask_or_match_4_t *) & rule->mask;
1231
1232 rmp = vl_msg_api_alloc (sizeof (*rmp));
Dave Barachb7b92992018-10-17 10:38:51 -04001233 clib_memset (rmp, 0, sizeof (*rmp));
Florin Coras6c36f532017-11-03 18:32:34 -07001234 rmp->_vl_msg_id = ntohs (VL_API_SESSION_RULES_DETAILS);
1235 rmp->context = context;
1236
1237 rmp->is_ip4 = 1;
Dave Barach178cf492018-11-13 16:34:13 -05001238 clib_memcpy_fast (rmp->lcl_ip, &match->lcl_ip, sizeof (match->lcl_ip));
1239 clib_memcpy_fast (rmp->rmt_ip, &match->rmt_ip, sizeof (match->rmt_ip));
Florin Coras6c36f532017-11-03 18:32:34 -07001240 rmp->lcl_plen = ip4_mask_to_preflen (&mask->lcl_ip);
1241 rmp->rmt_plen = ip4_mask_to_preflen (&mask->rmt_ip);
Milan Lenco8b9a5d12017-11-24 17:12:33 +01001242 rmp->lcl_port = match->lcl_port;
1243 rmp->rmt_port = match->rmt_port;
Florin Coras6c36f532017-11-03 18:32:34 -07001244 rmp->action_index = clib_host_to_net_u32 (rule->action_index);
1245 rmp->scope =
1246 is_local ? SESSION_RULE_SCOPE_LOCAL : SESSION_RULE_SCOPE_GLOBAL;
1247 rmp->transport_proto = transport_proto;
1248 rmp->appns_index = clib_host_to_net_u32 (appns_index);
Florin Corasc97a7392017-11-05 23:07:07 -08001249 if (tag)
1250 {
Dave Barach178cf492018-11-13 16:34:13 -05001251 clib_memcpy_fast (rmp->tag, tag, vec_len (tag));
Florin Corasc97a7392017-11-05 23:07:07 -08001252 rmp->tag[vec_len (tag)] = 0;
1253 }
Florin Coras6c36f532017-11-03 18:32:34 -07001254
Florin Coras6c4dae22018-01-09 06:39:23 -08001255 vl_api_send_msg (reg, (u8 *) rmp);
Florin Coras6c36f532017-11-03 18:32:34 -07001256}
1257
1258static void
Florin Corasc97a7392017-11-05 23:07:07 -08001259send_session_rule_details6 (mma_rule_40_t * rule, u8 is_local,
1260 u8 transport_proto, u32 appns_index, u8 * tag,
Florin Coras6c4dae22018-01-09 06:39:23 -08001261 vl_api_registration_t * reg, u32 context)
Florin Coras6c36f532017-11-03 18:32:34 -07001262{
1263 vl_api_session_rules_details_t *rmp = 0;
1264 session_mask_or_match_6_t *match =
1265 (session_mask_or_match_6_t *) & rule->match;
1266 session_mask_or_match_6_t *mask =
1267 (session_mask_or_match_6_t *) & rule->mask;
1268
1269 rmp = vl_msg_api_alloc (sizeof (*rmp));
Dave Barachb7b92992018-10-17 10:38:51 -04001270 clib_memset (rmp, 0, sizeof (*rmp));
Florin Coras6c36f532017-11-03 18:32:34 -07001271 rmp->_vl_msg_id = ntohs (VL_API_SESSION_RULES_DETAILS);
1272 rmp->context = context;
1273
1274 rmp->is_ip4 = 0;
Dave Barach178cf492018-11-13 16:34:13 -05001275 clib_memcpy_fast (rmp->lcl_ip, &match->lcl_ip, sizeof (match->lcl_ip));
1276 clib_memcpy_fast (rmp->rmt_ip, &match->rmt_ip, sizeof (match->rmt_ip));
Florin Coras6c36f532017-11-03 18:32:34 -07001277 rmp->lcl_plen = ip6_mask_to_preflen (&mask->lcl_ip);
1278 rmp->rmt_plen = ip6_mask_to_preflen (&mask->rmt_ip);
Milan Lenco8b9a5d12017-11-24 17:12:33 +01001279 rmp->lcl_port = match->lcl_port;
1280 rmp->rmt_port = match->rmt_port;
Florin Coras6c36f532017-11-03 18:32:34 -07001281 rmp->action_index = clib_host_to_net_u32 (rule->action_index);
Florin Corasc97a7392017-11-05 23:07:07 -08001282 rmp->scope =
1283 is_local ? SESSION_RULE_SCOPE_LOCAL : SESSION_RULE_SCOPE_GLOBAL;
Florin Coras6c36f532017-11-03 18:32:34 -07001284 rmp->transport_proto = transport_proto;
1285 rmp->appns_index = clib_host_to_net_u32 (appns_index);
Florin Corasc97a7392017-11-05 23:07:07 -08001286 if (tag)
1287 {
Dave Barach178cf492018-11-13 16:34:13 -05001288 clib_memcpy_fast (rmp->tag, tag, vec_len (tag));
Florin Corasc97a7392017-11-05 23:07:07 -08001289 rmp->tag[vec_len (tag)] = 0;
1290 }
Florin Coras6c36f532017-11-03 18:32:34 -07001291
Florin Coras6c4dae22018-01-09 06:39:23 -08001292 vl_api_send_msg (reg, (u8 *) rmp);
Florin Coras6c36f532017-11-03 18:32:34 -07001293}
1294
1295static void
1296send_session_rules_table_details (session_rules_table_t * srt, u8 fib_proto,
Florin Corasc97a7392017-11-05 23:07:07 -08001297 u8 tp, u8 is_local, u32 appns_index,
Florin Coras6c4dae22018-01-09 06:39:23 -08001298 vl_api_registration_t * reg, u32 context)
Florin Coras6c36f532017-11-03 18:32:34 -07001299{
1300 mma_rule_16_t *rule16;
1301 mma_rule_40_t *rule40;
1302 mma_rules_table_16_t *srt16;
1303 mma_rules_table_40_t *srt40;
Florin Corasc97a7392017-11-05 23:07:07 -08001304 u32 ri;
Florin Coras6c36f532017-11-03 18:32:34 -07001305
Florin Corasc97a7392017-11-05 23:07:07 -08001306 if (is_local || fib_proto == FIB_PROTOCOL_IP4)
Florin Coras6c36f532017-11-03 18:32:34 -07001307 {
Florin Corasc97a7392017-11-05 23:07:07 -08001308 u8 *tag = 0;
1309 /* *INDENT-OFF* */
1310 srt16 = &srt->session_rules_tables_16;
1311 pool_foreach (rule16, srt16->rules, ({
1312 ri = mma_rules_table_rule_index_16 (srt16, rule16);
1313 tag = session_rules_table_rule_tag (srt, ri, 1);
1314 send_session_rule_details4 (rule16, is_local, tp, appns_index, tag,
Florin Coras6c4dae22018-01-09 06:39:23 -08001315 reg, context);
Florin Corasc97a7392017-11-05 23:07:07 -08001316 }));
1317 /* *INDENT-ON* */
1318 }
1319 if (is_local || fib_proto == FIB_PROTOCOL_IP6)
1320 {
1321 u8 *tag = 0;
1322 /* *INDENT-OFF* */
1323 srt40 = &srt->session_rules_tables_40;
1324 pool_foreach (rule40, srt40->rules, ({
1325 ri = mma_rules_table_rule_index_40 (srt40, rule40);
1326 tag = session_rules_table_rule_tag (srt, ri, 1);
1327 send_session_rule_details6 (rule40, is_local, tp, appns_index, tag,
Florin Coras6c4dae22018-01-09 06:39:23 -08001328 reg, context);
Florin Corasc97a7392017-11-05 23:07:07 -08001329 }));
1330 /* *INDENT-ON* */
Florin Coras6c36f532017-11-03 18:32:34 -07001331 }
1332}
1333
1334static void
1335vl_api_session_rules_dump_t_handler (vl_api_one_map_server_dump_t * mp)
1336{
Florin Coras6c4dae22018-01-09 06:39:23 -08001337 vl_api_registration_t *reg;
Florin Coras6c36f532017-11-03 18:32:34 -07001338 session_table_t *st;
Florin Corasc97a7392017-11-05 23:07:07 -08001339 u8 tp;
Florin Coras6c36f532017-11-03 18:32:34 -07001340
Florin Coras6c4dae22018-01-09 06:39:23 -08001341 reg = vl_api_client_index_to_registration (mp->client_index);
1342 if (!reg)
Florin Coras6c36f532017-11-03 18:32:34 -07001343 return;
1344
1345 /* *INDENT-OFF* */
1346 session_table_foreach (st, ({
Florin Corasc97a7392017-11-05 23:07:07 -08001347 for (tp = 0; tp < TRANSPORT_N_PROTO; tp++)
1348 {
1349 send_session_rules_table_details (&st->session_rules[tp],
1350 st->active_fib_proto, tp,
Florin Coras6c4dae22018-01-09 06:39:23 -08001351 st->is_local, st->appns_index, reg,
Florin Corasc97a7392017-11-05 23:07:07 -08001352 mp->context);
1353 }
Florin Coras6c36f532017-11-03 18:32:34 -07001354 }));
1355 /* *INDENT-ON* */
1356}
1357
Florin Coras371ca502018-02-21 12:07:41 -08001358static void
1359vl_api_application_tls_cert_add_t_handler (vl_api_application_tls_cert_add_t *
1360 mp)
1361{
1362 vl_api_app_namespace_add_del_reply_t *rmp;
1363 vnet_app_add_tls_cert_args_t _a, *a = &_a;
1364 clib_error_t *error;
Florin Corase3e2f072018-03-04 07:24:30 -08001365 application_t *app;
Florin Coras371ca502018-02-21 12:07:41 -08001366 u32 cert_len;
1367 int rv = 0;
Florin Coras31c99552019-03-01 13:00:58 -08001368 if (!session_main_is_enabled ())
Florin Coras371ca502018-02-21 12:07:41 -08001369 {
1370 rv = VNET_API_ERROR_FEATURE_DISABLED;
1371 goto done;
1372 }
Florin Corase3e2f072018-03-04 07:24:30 -08001373 if (!(app = application_lookup (mp->client_index)))
1374 {
1375 rv = VNET_API_ERROR_APPLICATION_NOT_ATTACHED;
1376 goto done;
1377 }
Dave Barachb7b92992018-10-17 10:38:51 -04001378 clib_memset (a, 0, sizeof (*a));
Florin Coras15531972018-08-12 23:50:53 -07001379 a->app_index = app->app_index;
Florin Coras371ca502018-02-21 12:07:41 -08001380 cert_len = clib_net_to_host_u16 (mp->cert_len);
Florin Coras5090c572018-03-18 08:22:17 -07001381 if (cert_len > 10000)
1382 {
1383 rv = VNET_API_ERROR_INVALID_VALUE;
1384 goto done;
1385 }
Florin Coras371ca502018-02-21 12:07:41 -08001386 vec_validate (a->cert, cert_len);
Dave Barach178cf492018-11-13 16:34:13 -05001387 clib_memcpy_fast (a->cert, mp->cert, cert_len);
Florin Coras371ca502018-02-21 12:07:41 -08001388 if ((error = vnet_app_add_tls_cert (a)))
1389 {
1390 rv = clib_error_get_code (error);
1391 clib_error_report (error);
1392 }
1393 vec_free (a->cert);
1394done:
1395 REPLY_MACRO (VL_API_APPLICATION_TLS_CERT_ADD_REPLY);
1396}
1397
1398static void
1399vl_api_application_tls_key_add_t_handler (vl_api_application_tls_key_add_t *
1400 mp)
1401{
1402 vl_api_app_namespace_add_del_reply_t *rmp;
1403 vnet_app_add_tls_key_args_t _a, *a = &_a;
1404 clib_error_t *error;
Florin Corase3e2f072018-03-04 07:24:30 -08001405 application_t *app;
Florin Coras371ca502018-02-21 12:07:41 -08001406 u32 key_len;
1407 int rv = 0;
Florin Coras31c99552019-03-01 13:00:58 -08001408 if (!session_main_is_enabled ())
Florin Coras371ca502018-02-21 12:07:41 -08001409 {
1410 rv = VNET_API_ERROR_FEATURE_DISABLED;
1411 goto done;
1412 }
Florin Corase3e2f072018-03-04 07:24:30 -08001413 if (!(app = application_lookup (mp->client_index)))
1414 {
1415 rv = VNET_API_ERROR_APPLICATION_NOT_ATTACHED;
1416 goto done;
1417 }
Dave Barachb7b92992018-10-17 10:38:51 -04001418 clib_memset (a, 0, sizeof (*a));
Florin Coras15531972018-08-12 23:50:53 -07001419 a->app_index = app->app_index;
Florin Coras371ca502018-02-21 12:07:41 -08001420 key_len = clib_net_to_host_u16 (mp->key_len);
Florin Coras5090c572018-03-18 08:22:17 -07001421 if (key_len > 10000)
1422 {
1423 rv = VNET_API_ERROR_INVALID_VALUE;
1424 goto done;
1425 }
Florin Coras371ca502018-02-21 12:07:41 -08001426 vec_validate (a->key, key_len);
Dave Barach178cf492018-11-13 16:34:13 -05001427 clib_memcpy_fast (a->key, mp->key, key_len);
Florin Coras371ca502018-02-21 12:07:41 -08001428 if ((error = vnet_app_add_tls_key (a)))
1429 {
1430 rv = clib_error_get_code (error);
1431 clib_error_report (error);
1432 }
1433 vec_free (a->key);
1434done:
1435 REPLY_MACRO (VL_API_APPLICATION_TLS_KEY_ADD_REPLY);
1436}
1437
Florin Coras6cf30ad2017-04-04 23:08:23 -07001438static clib_error_t *
1439application_reaper_cb (u32 client_index)
Dave Barach68b0fb02017-02-28 15:15:56 -05001440{
Florin Coras6cf30ad2017-04-04 23:08:23 -07001441 application_t *app = application_lookup (client_index);
1442 vnet_app_detach_args_t _a, *a = &_a;
1443 if (app)
1444 {
Florin Coras15531972018-08-12 23:50:53 -07001445 a->app_index = app->app_index;
Florin Coras053a0e42018-11-13 15:52:38 -08001446 a->api_client_index = client_index;
Florin Coras6cf30ad2017-04-04 23:08:23 -07001447 vnet_application_detach (a);
1448 }
1449 return 0;
Dave Barach68b0fb02017-02-28 15:15:56 -05001450}
1451
Florin Coras6cf30ad2017-04-04 23:08:23 -07001452VL_MSG_API_REAPER_FUNCTION (application_reaper_cb);
Dave Barach68b0fb02017-02-28 15:15:56 -05001453
1454#define vl_msg_name_crc_list
1455#include <vnet/vnet_all_api_h.h>
1456#undef vl_msg_name_crc_list
1457
1458static void
1459setup_message_id_table (api_main_t * am)
1460{
1461#define _(id,n,crc) vl_msg_api_add_msg_name_crc (am, #n "_" #crc, id);
1462 foreach_vl_msg_name_crc_session;
1463#undef _
1464}
1465
1466/*
1467 * session_api_hookup
1468 * Add uri's API message handlers to the table.
Jim Thompsonf324dec2019-04-08 03:22:21 -05001469 * vlib has already mapped shared memory and
Dave Barach68b0fb02017-02-28 15:15:56 -05001470 * added the client registration handlers.
1471 * See .../open-repo/vlib/memclnt_vlib.c:memclnt_process()
1472 */
1473static clib_error_t *
1474session_api_hookup (vlib_main_t * vm)
1475{
1476 api_main_t *am = &api_main;
1477
1478#define _(N,n) \
1479 vl_msg_api_set_handlers(VL_API_##N, #n, \
1480 vl_api_##n##_t_handler, \
1481 vl_noop_handler, \
1482 vl_api_##n##_t_endian, \
1483 vl_api_##n##_t_print, \
1484 sizeof(vl_api_##n##_t), 1);
1485 foreach_session_api_msg;
1486#undef _
1487
1488 /*
1489 * Messages which bounce off the data-plane to
1490 * an API client. Simply tells the message handling infra not
1491 * to free the message.
1492 *
1493 * Bounced message handlers MUST NOT block the data plane
1494 */
1495 am->message_bounce[VL_API_CONNECT_URI] = 1;
1496 am->message_bounce[VL_API_CONNECT_SOCK] = 1;
1497
1498 /*
1499 * Set up the (msg_name, crc, message-id) table
1500 */
1501 setup_message_id_table (am);
1502
1503 return 0;
1504}
1505
1506VLIB_API_INIT_FUNCTION (session_api_hookup);
Florin Coras6cf30ad2017-04-04 23:08:23 -07001507
Dave Barach68b0fb02017-02-28 15:15:56 -05001508/*
1509 * fd.io coding-style-patch-verification: ON
1510 *
1511 * Local Variables:
1512 * eval: (c-set-style "gnu")
1513 * End:
1514 */