blob: c6eeacfea18845bb9324a4fbda06902ca39943ef [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
Florin Corasc4c4cf52019-08-24 18:17:34 -070084/* ### WILL BE DEPRECATED POST 20.01 ### */
Florin Corasb384b542018-01-15 01:08:33 -080085static int
Florin Corasfa76a762018-11-29 12:40:10 -080086send_add_segment_callback (u32 api_client_index, u64 segment_handle)
Dave Barach68b0fb02017-02-28 15:15:56 -050087{
Florin Coras99368312018-08-02 10:45:44 -070088 int fds[SESSION_N_FD_TYPE], n_fds = 0;
Dave Barach68b0fb02017-02-28 15:15:56 -050089 vl_api_map_another_segment_t *mp;
Florin Corasb384b542018-01-15 01:08:33 -080090 vl_api_registration_t *reg;
Florin Coras88001c62019-04-24 14:44:46 -070091 fifo_segment_t *fs;
Florin Corasfa76a762018-11-29 12:40:10 -080092 ssvm_private_t *sp;
Florin Coras99368312018-08-02 10:45:44 -070093 u8 fd_flags = 0;
Dave Barach68b0fb02017-02-28 15:15:56 -050094
Florin Corasb384b542018-01-15 01:08:33 -080095 reg = vl_mem_api_client_index_to_registration (api_client_index);
96 if (!reg)
97 {
Florin Corasfa76a762018-11-29 12:40:10 -080098 clib_warning ("no api registration for client: %u", api_client_index);
Florin Corasb384b542018-01-15 01:08:33 -080099 return -1;
100 }
Dave Barach68b0fb02017-02-28 15:15:56 -0500101
Florin Corasfa76a762018-11-29 12:40:10 -0800102 fs = segment_manager_get_segment_w_handle (segment_handle);
103 sp = &fs->ssvm;
Florin Coras99368312018-08-02 10:45:44 -0700104 if (ssvm_type (sp) == SSVM_SEGMENT_MEMFD)
Florin Corasb384b542018-01-15 01:08:33 -0800105 {
Florin Coras99368312018-08-02 10:45:44 -0700106 if (vl_api_registration_file_index (reg) == VL_API_INVALID_FI)
107 {
108 clib_warning ("can't send memfd fd");
109 return -1;
110 }
111
112 fd_flags |= SESSION_FD_F_MEMFD_SEGMENT;
113 fds[n_fds] = sp->fd;
114 n_fds += 1;
Florin Corasb384b542018-01-15 01:08:33 -0800115 }
Dave Barach68b0fb02017-02-28 15:15:56 -0500116
Florin Coras99368312018-08-02 10:45:44 -0700117 mp = vl_mem_api_alloc_as_if_client_w_reg (reg, sizeof (*mp));
Dave Barachb7b92992018-10-17 10:38:51 -0400118 clib_memset (mp, 0, sizeof (*mp));
Dave Barach68b0fb02017-02-28 15:15:56 -0500119 mp->_vl_msg_id = clib_host_to_net_u16 (VL_API_MAP_ANOTHER_SEGMENT);
Florin Corasb384b542018-01-15 01:08:33 -0800120 mp->segment_size = sp->ssvm_size;
Florin Coras99368312018-08-02 10:45:44 -0700121 mp->fd_flags = fd_flags;
Florin Corasfa76a762018-11-29 12:40:10 -0800122 mp->segment_handle = clib_host_to_net_u64 (segment_handle);
Florin Corasb384b542018-01-15 01:08:33 -0800123 strncpy ((char *) mp->segment_name, (char *) sp->name,
Dave Barach68b0fb02017-02-28 15:15:56 -0500124 sizeof (mp->segment_name) - 1);
125
Florin Corasb384b542018-01-15 01:08:33 -0800126 vl_msg_api_send_shmem (reg->vl_input_queue, (u8 *) & mp);
127
Florin Coras99368312018-08-02 10:45:44 -0700128 if (n_fds)
129 return session_send_fds (reg, fds, n_fds);
Dave Barach68b0fb02017-02-28 15:15:56 -0500130
131 return 0;
132}
133
Florin Corasc4c4cf52019-08-24 18:17:34 -0700134/* ### WILL BE DEPRECATED POST 20.01 ### */
Dave Barach68b0fb02017-02-28 15:15:56 -0500135static int
Florin Corasfa76a762018-11-29 12:40:10 -0800136send_del_segment_callback (u32 api_client_index, u64 segment_handle)
Florin Corasf8f516a2018-02-08 15:10:09 -0800137{
138 vl_api_unmap_segment_t *mp;
139 vl_api_registration_t *reg;
140
141 reg = vl_mem_api_client_index_to_registration (api_client_index);
142 if (!reg)
143 {
144 clib_warning ("no registration: %u", api_client_index);
145 return -1;
146 }
147
Florin Coras99368312018-08-02 10:45:44 -0700148 mp = vl_mem_api_alloc_as_if_client_w_reg (reg, sizeof (*mp));
Dave Barachb7b92992018-10-17 10:38:51 -0400149 clib_memset (mp, 0, sizeof (*mp));
Florin Corasf8f516a2018-02-08 15:10:09 -0800150 mp->_vl_msg_id = clib_host_to_net_u16 (VL_API_UNMAP_SEGMENT);
Florin Corasfa76a762018-11-29 12:40:10 -0800151 mp->segment_handle = clib_host_to_net_u64 (segment_handle);
Florin Corasf8f516a2018-02-08 15:10:09 -0800152 vl_msg_api_send_shmem (reg->vl_input_queue, (u8 *) & mp);
153
Florin Coras99368312018-08-02 10:45:44 -0700154 return 0;
155}
156
157static int
Florin Coras83ea6692018-10-12 16:55:14 -0700158mq_try_lock_and_alloc_msg (svm_msg_q_t * app_mq, svm_msg_q_msg_t * msg)
159{
160 int rv;
161 u8 try = 0;
162 while (try < 100)
163 {
164 rv = svm_msg_q_lock_and_alloc_msg_w_ring (app_mq,
165 SESSION_MQ_CTRL_EVT_RING,
166 SVM_Q_NOWAIT, msg);
167 if (!rv)
168 return 0;
169 try++;
Florin Corase2ea1932018-12-17 23:08:14 -0800170 usleep (1);
Florin Coras83ea6692018-10-12 16:55:14 -0700171 }
Florin Corasdc2e2512018-12-03 17:47:26 -0800172 clib_warning ("failed to alloc msg");
Florin Coras83ea6692018-10-12 16:55:14 -0700173 return -1;
174}
175
176static int
Florin Coras288eaab2019-02-03 15:26:14 -0800177mq_send_session_accepted_cb (session_t * s)
Florin Coras52207f12018-07-12 14:48:06 -0700178{
Florin Coras15531972018-08-12 23:50:53 -0700179 app_worker_t *app_wrk = app_worker_get (s->app_wrk_index);
Florin Coras52207f12018-07-12 14:48:06 -0700180 svm_msg_q_msg_t _msg, *msg = &_msg;
181 svm_msg_q_t *vpp_queue, *app_mq;
Florin Coras288eaab2019-02-03 15:26:14 -0800182 session_t *listener;
Florin Coras52207f12018-07-12 14:48:06 -0700183 session_accepted_msg_t *mp;
184 session_event_t *evt;
Florin Coras15531972018-08-12 23:50:53 -0700185 application_t *app;
Florin Coras52207f12018-07-12 14:48:06 -0700186
Florin Coras15531972018-08-12 23:50:53 -0700187 app = application_get (app_wrk->app_index);
188 app_mq = app_wrk->event_queue;
Florin Coras83ea6692018-10-12 16:55:14 -0700189 if (mq_try_lock_and_alloc_msg (app_mq, msg))
190 return -1;
Florin Coras52207f12018-07-12 14:48:06 -0700191
192 evt = svm_msg_q_msg_data (app_mq, msg);
Dave Barachb7b92992018-10-17 10:38:51 -0400193 clib_memset (evt, 0, sizeof (*evt));
Florin Coras52207f12018-07-12 14:48:06 -0700194 evt->event_type = SESSION_CTRL_EVT_ACCEPTED;
195 mp = (session_accepted_msg_t *) evt->data;
Florin Coras87c65702019-01-26 14:33:26 -0800196 clib_memset (mp, 0, sizeof (*mp));
Florin Corasab2f6db2018-08-31 14:31:41 -0700197 mp->context = app->app_index;
Florin Coras288eaab2019-02-03 15:26:14 -0800198 mp->server_rx_fifo = pointer_to_uword (s->rx_fifo);
199 mp->server_tx_fifo = pointer_to_uword (s->tx_fifo);
Florin Corasfa76a762018-11-29 12:40:10 -0800200 mp->segment_handle = session_segment_handle (s);
Nathan Skrzypczakc00f4802019-12-03 16:25:11 +0100201 mp->flags = s->flags;
Florin Coras52207f12018-07-12 14:48:06 -0700202
203 if (session_has_transport (s))
204 {
Nathan Skrzypczak2f0f96b2019-06-13 10:14:28 +0200205 listener = listen_session_get_from_handle (s->listener_handle);
Florin Coras87d66332019-06-11 12:31:31 -0700206 mp->listener_handle = app_listen_session_handle (listener);
Florin Coras52207f12018-07-12 14:48:06 -0700207 if (application_is_proxy (app))
208 {
209 listener =
Florin Coras15531972018-08-12 23:50:53 -0700210 app_worker_first_listener (app_wrk, session_get_fib_proto (s),
211 session_get_transport_proto (s));
Florin Coras52207f12018-07-12 14:48:06 -0700212 if (listener)
213 mp->listener_handle = listen_session_get_handle (listener);
214 }
Florin Coras31c99552019-03-01 13:00:58 -0800215 vpp_queue = session_main_get_vpp_event_queue (s->thread_index);
Florin Coras52207f12018-07-12 14:48:06 -0700216 mp->vpp_event_queue_address = pointer_to_uword (vpp_queue);
217 mp->handle = session_handle (s);
Aloys Augustincdb71702019-04-08 17:54:39 +0200218
Florin Coras09d18c22019-04-24 11:10:02 -0700219 session_get_endpoint (s, &mp->rmt, 0 /* is_lcl */ );
Florin Coras52207f12018-07-12 14:48:06 -0700220 }
221 else
222 {
Florin Coras2b81e3c2019-02-27 07:55:46 -0800223 ct_connection_t *ct;
Florin Coras99368312018-08-02 10:45:44 -0700224
Florin Coras2b81e3c2019-02-27 07:55:46 -0800225 ct = (ct_connection_t *) session_get_transport (s);
Nathan Skrzypczak2f0f96b2019-06-13 10:14:28 +0200226 listener = listen_session_get_from_handle (s->listener_handle);
Florin Coras87d66332019-06-11 12:31:31 -0700227 mp->listener_handle = app_listen_session_handle (listener);
Florin Coras09d18c22019-04-24 11:10:02 -0700228 mp->rmt.is_ip4 = session_type_is_ip4 (listener->session_type);
229 mp->rmt.port = ct->c_rmt_port;
Florin Coras2b81e3c2019-02-27 07:55:46 -0800230 mp->handle = session_handle (s);
Florin Coras653e43f2019-03-04 10:56:23 -0800231 vpp_queue = session_main_get_vpp_event_queue (0);
Florin Coras54693d22018-07-17 10:46:29 -0700232 mp->vpp_event_queue_address = pointer_to_uword (vpp_queue);
Florin Coras52207f12018-07-12 14:48:06 -0700233 }
Florin Coras537b17e2018-09-28 10:35:45 -0700234 svm_msg_q_add_and_unlock (app_mq, msg);
Florin Coras52207f12018-07-12 14:48:06 -0700235
236 return 0;
237}
238
Florin Coras72b04282019-01-14 17:23:11 -0800239static inline void
240mq_send_session_close_evt (app_worker_t * app_wrk, session_handle_t sh,
241 session_evt_type_t evt_type)
Florin Coras52207f12018-07-12 14:48:06 -0700242{
Florin Coras52207f12018-07-12 14:48:06 -0700243 svm_msg_q_msg_t _msg, *msg = &_msg;
244 session_disconnected_msg_t *mp;
245 svm_msg_q_t *app_mq;
246 session_event_t *evt;
247
Florin Coras15531972018-08-12 23:50:53 -0700248 app_mq = app_wrk->event_queue;
Florin Coras83ea6692018-10-12 16:55:14 -0700249 if (mq_try_lock_and_alloc_msg (app_mq, msg))
250 return;
Florin Coras52207f12018-07-12 14:48:06 -0700251 evt = svm_msg_q_msg_data (app_mq, msg);
Dave Barachb7b92992018-10-17 10:38:51 -0400252 clib_memset (evt, 0, sizeof (*evt));
Florin Coras72b04282019-01-14 17:23:11 -0800253 evt->event_type = evt_type;
Florin Coras52207f12018-07-12 14:48:06 -0700254 mp = (session_disconnected_msg_t *) evt->data;
Florin Coras72b04282019-01-14 17:23:11 -0800255 mp->handle = sh;
Florin Corasc1f5a432018-11-20 11:31:26 -0800256 mp->context = app_wrk->api_client_index;
Florin Coras537b17e2018-09-28 10:35:45 -0700257 svm_msg_q_add_and_unlock (app_mq, msg);
Florin Coras52207f12018-07-12 14:48:06 -0700258}
259
Florin Coras72b04282019-01-14 17:23:11 -0800260static inline void
261mq_notify_close_subscribers (u32 app_index, session_handle_t sh,
262 svm_fifo_t * f, session_evt_type_t evt_type)
263{
264 app_worker_t *app_wrk;
265 application_t *app;
266 int i;
267
268 app = application_get (app_index);
269 if (!app)
270 return;
271
272 for (i = 0; i < f->n_subscribers; i++)
273 {
274 if (!(app_wrk = application_get_worker (app, f->subscribers[i])))
275 continue;
276 mq_send_session_close_evt (app_wrk, sh, SESSION_CTRL_EVT_DISCONNECTED);
277 }
278}
279
280static void
Florin Coras288eaab2019-02-03 15:26:14 -0800281mq_send_session_disconnected_cb (session_t * s)
Florin Coras72b04282019-01-14 17:23:11 -0800282{
283 app_worker_t *app_wrk = app_worker_get (s->app_wrk_index);
284 session_handle_t sh = session_handle (s);
285
286 mq_send_session_close_evt (app_wrk, session_handle (s),
287 SESSION_CTRL_EVT_DISCONNECTED);
288
Florin Coras288eaab2019-02-03 15:26:14 -0800289 if (svm_fifo_n_subscribers (s->rx_fifo))
290 mq_notify_close_subscribers (app_wrk->app_index, sh, s->rx_fifo,
Florin Coras72b04282019-01-14 17:23:11 -0800291 SESSION_CTRL_EVT_DISCONNECTED);
292}
293
Florin Coras52207f12018-07-12 14:48:06 -0700294static void
Florin Coras288eaab2019-02-03 15:26:14 -0800295mq_send_session_reset_cb (session_t * s)
Florin Coras52207f12018-07-12 14:48:06 -0700296{
Florin Coras72b04282019-01-14 17:23:11 -0800297 app_worker_t *app_wrk = app_worker_get (s->app_wrk_index);
298 session_handle_t sh = session_handle (s);
Florin Coras52207f12018-07-12 14:48:06 -0700299
Florin Coras72b04282019-01-14 17:23:11 -0800300 mq_send_session_close_evt (app_wrk, sh, SESSION_CTRL_EVT_RESET);
301
Florin Coras288eaab2019-02-03 15:26:14 -0800302 if (svm_fifo_n_subscribers (s->rx_fifo))
303 mq_notify_close_subscribers (app_wrk->app_index, sh, s->rx_fifo,
Florin Coras72b04282019-01-14 17:23:11 -0800304 SESSION_CTRL_EVT_RESET);
Florin Coras52207f12018-07-12 14:48:06 -0700305}
306
Florin Coras458089b2019-08-21 16:20:44 -0700307int
Florin Coras15531972018-08-12 23:50:53 -0700308mq_send_session_connected_cb (u32 app_wrk_index, u32 api_context,
Florin Coras288eaab2019-02-03 15:26:14 -0800309 session_t * s, u8 is_fail)
Florin Coras52207f12018-07-12 14:48:06 -0700310{
311 svm_msg_q_msg_t _msg, *msg = &_msg;
312 session_connected_msg_t *mp;
313 svm_msg_q_t *vpp_mq, *app_mq;
314 transport_connection_t *tc;
Florin Coras15531972018-08-12 23:50:53 -0700315 app_worker_t *app_wrk;
Florin Coras52207f12018-07-12 14:48:06 -0700316 session_event_t *evt;
Florin Coras52207f12018-07-12 14:48:06 -0700317
Florin Coras15531972018-08-12 23:50:53 -0700318 app_wrk = app_worker_get (app_wrk_index);
Florin Coras15531972018-08-12 23:50:53 -0700319 app_mq = app_wrk->event_queue;
Florin Coras52207f12018-07-12 14:48:06 -0700320 if (!app_mq)
321 {
Florin Corasc1f5a432018-11-20 11:31:26 -0800322 clib_warning ("app %u with api index: %u not attached",
323 app_wrk->app_index, app_wrk->api_client_index);
Florin Coras52207f12018-07-12 14:48:06 -0700324 return -1;
325 }
326
Florin Coras83ea6692018-10-12 16:55:14 -0700327 if (mq_try_lock_and_alloc_msg (app_mq, msg))
328 return -1;
Florin Corasdc2e2512018-12-03 17:47:26 -0800329
Florin Coras52207f12018-07-12 14:48:06 -0700330 evt = svm_msg_q_msg_data (app_mq, msg);
Dave Barachb7b92992018-10-17 10:38:51 -0400331 clib_memset (evt, 0, sizeof (*evt));
Florin Coras52207f12018-07-12 14:48:06 -0700332 evt->event_type = SESSION_CTRL_EVT_CONNECTED;
333 mp = (session_connected_msg_t *) evt->data;
Florin Coras87c65702019-01-26 14:33:26 -0800334 clib_memset (mp, 0, sizeof (*mp));
Florin Coras52207f12018-07-12 14:48:06 -0700335 mp->context = api_context;
336
337 if (is_fail)
338 goto done;
339
340 if (session_has_transport (s))
341 {
342 tc = session_get_transport (s);
343 if (!tc)
344 {
345 is_fail = 1;
346 goto done;
347 }
348
Florin Coras31c99552019-03-01 13:00:58 -0800349 vpp_mq = session_main_get_vpp_event_queue (s->thread_index);
Florin Coras52207f12018-07-12 14:48:06 -0700350 mp->handle = session_handle (s);
351 mp->vpp_event_queue_address = pointer_to_uword (vpp_mq);
Aloys Augustincdb71702019-04-08 17:54:39 +0200352
Florin Coras09d18c22019-04-24 11:10:02 -0700353 session_get_endpoint (s, &mp->lcl, 1 /* is_lcl */ );
Aloys Augustincdb71702019-04-08 17:54:39 +0200354
Florin Coras288eaab2019-02-03 15:26:14 -0800355 mp->server_rx_fifo = pointer_to_uword (s->rx_fifo);
356 mp->server_tx_fifo = pointer_to_uword (s->tx_fifo);
Florin Coras2b81e3c2019-02-27 07:55:46 -0800357 mp->segment_handle = session_segment_handle (s);
Florin Coras52207f12018-07-12 14:48:06 -0700358 }
359 else
360 {
Florin Coras2b81e3c2019-02-27 07:55:46 -0800361 ct_connection_t *cct;
362 session_t *ss;
Florin Coras99368312018-08-02 10:45:44 -0700363
Florin Coras2b81e3c2019-02-27 07:55:46 -0800364 cct = (ct_connection_t *) session_get_transport (s);
Florin Coras2b81e3c2019-02-27 07:55:46 -0800365 mp->handle = session_handle (s);
Florin Coras09d18c22019-04-24 11:10:02 -0700366 mp->lcl.port = cct->c_lcl_port;
367 mp->lcl.is_ip4 = cct->c_is_ip4;
Florin Coras653e43f2019-03-04 10:56:23 -0800368 vpp_mq = session_main_get_vpp_event_queue (0);
Florin Coras54693d22018-07-17 10:46:29 -0700369 mp->vpp_event_queue_address = pointer_to_uword (vpp_mq);
Florin Coras653e43f2019-03-04 10:56:23 -0800370 mp->server_rx_fifo = pointer_to_uword (s->rx_fifo);
371 mp->server_tx_fifo = pointer_to_uword (s->tx_fifo);
372 mp->segment_handle = session_segment_handle (s);
Florin Coras2b81e3c2019-02-27 07:55:46 -0800373 ss = ct_session_get_peer (s);
Florin Coras653e43f2019-03-04 10:56:23 -0800374 mp->ct_rx_fifo = pointer_to_uword (ss->tx_fifo);
375 mp->ct_tx_fifo = pointer_to_uword (ss->rx_fifo);
376 mp->ct_segment_handle = session_segment_handle (ss);
Florin Coras52207f12018-07-12 14:48:06 -0700377 }
378
379done:
380 mp->retval = is_fail ?
381 clib_host_to_net_u32 (VNET_API_ERROR_SESSION_CONNECT) : 0;
382
Florin Coras537b17e2018-09-28 10:35:45 -0700383 svm_msg_q_add_and_unlock (app_mq, msg);
Florin Coras52207f12018-07-12 14:48:06 -0700384 return 0;
385}
386
Florin Coras458089b2019-08-21 16:20:44 -0700387int
Florin Coras60116992018-08-27 09:52:18 -0700388mq_send_session_bound_cb (u32 app_wrk_index, u32 api_context,
389 session_handle_t handle, int rv)
390{
391 svm_msg_q_msg_t _msg, *msg = &_msg;
392 svm_msg_q_t *app_mq, *vpp_evt_q;
Yu Ping0b819152019-05-07 02:24:30 +0800393 transport_endpoint_t tep;
Florin Coras60116992018-08-27 09:52:18 -0700394 session_bound_msg_t *mp;
395 app_worker_t *app_wrk;
396 session_event_t *evt;
Florin Corasc9940fc2019-02-05 20:55:11 -0800397 app_listener_t *al;
398 session_t *ls = 0;
Florin Coras60116992018-08-27 09:52:18 -0700399 app_wrk = app_worker_get (app_wrk_index);
Florin Coras60116992018-08-27 09:52:18 -0700400 app_mq = app_wrk->event_queue;
401 if (!app_mq)
402 {
Florin Corasc1f5a432018-11-20 11:31:26 -0800403 clib_warning ("app %u with api index: %u not attached",
404 app_wrk->app_index, app_wrk->api_client_index);
Florin Coras60116992018-08-27 09:52:18 -0700405 return -1;
406 }
407
Florin Coras83ea6692018-10-12 16:55:14 -0700408 if (mq_try_lock_and_alloc_msg (app_mq, msg))
409 return -1;
410
Florin Coras60116992018-08-27 09:52:18 -0700411 evt = svm_msg_q_msg_data (app_mq, msg);
Dave Barachb7b92992018-10-17 10:38:51 -0400412 clib_memset (evt, 0, sizeof (*evt));
Florin Coras60116992018-08-27 09:52:18 -0700413 evt->event_type = SESSION_CTRL_EVT_BOUND;
414 mp = (session_bound_msg_t *) evt->data;
415 mp->context = api_context;
416
417 if (rv)
418 goto done;
419
420 mp->handle = handle;
Florin Corasd4295e62019-02-22 13:11:38 -0800421 al = app_listener_get_w_handle (handle);
422 if (al->session_index != SESSION_INVALID_INDEX)
423 ls = app_listener_get_session (al);
Florin Coras60116992018-08-27 09:52:18 -0700424 else
Florin Corasd4295e62019-02-22 13:11:38 -0800425 ls = app_listener_get_local_session (al);
Yu Ping0b819152019-05-07 02:24:30 +0800426
427 session_get_endpoint (ls, &tep, 1 /* is_lcl */ );
428 mp->lcl_port = tep.port;
429 mp->lcl_is_ip4 = tep.is_ip4;
430 clib_memcpy_fast (mp->lcl_ip, &tep.ip, sizeof (tep.ip));
Florin Coras60116992018-08-27 09:52:18 -0700431
Florin Coras31c99552019-03-01 13:00:58 -0800432 vpp_evt_q = session_main_get_vpp_event_queue (0);
Florin Coras5f45e012019-01-23 09:21:30 -0800433 mp->vpp_evt_q = pointer_to_uword (vpp_evt_q);
434
Florin Coras2b81e3c2019-02-27 07:55:46 -0800435 if (session_transport_service_type (ls) == TRANSPORT_SERVICE_CL)
Florin Coras60116992018-08-27 09:52:18 -0700436 {
Florin Coras288eaab2019-02-03 15:26:14 -0800437 mp->rx_fifo = pointer_to_uword (ls->rx_fifo);
438 mp->tx_fifo = pointer_to_uword (ls->tx_fifo);
Florin Coras60116992018-08-27 09:52:18 -0700439 }
440
441done:
442 mp->retval = rv;
Florin Coras537b17e2018-09-28 10:35:45 -0700443 svm_msg_q_add_and_unlock (app_mq, msg);
Florin Coras60116992018-08-27 09:52:18 -0700444 return 0;
445}
446
Florin Coras458089b2019-08-21 16:20:44 -0700447void
448mq_send_unlisten_reply (app_worker_t * app_wrk, session_handle_t sh,
449 u32 context, int rv)
450{
451 svm_msg_q_msg_t _msg, *msg = &_msg;
452 session_unlisten_reply_msg_t *ump;
453 svm_msg_q_t *app_mq;
454 session_event_t *evt;
455
456 app_mq = app_wrk->event_queue;
457 if (mq_try_lock_and_alloc_msg (app_mq, msg))
458 return;
459
460 evt = svm_msg_q_msg_data (app_mq, msg);
461 clib_memset (evt, 0, sizeof (*evt));
462 evt->event_type = SESSION_CTRL_EVT_UNLISTEN_REPLY;
463 ump = (session_unlisten_reply_msg_t *) evt->data;
464 ump->context = context;
465 ump->handle = sh;
466 ump->retval = rv;
467 svm_msg_q_add_and_unlock (app_mq, msg);
468}
469
Florin Coras49568af2019-07-31 16:46:24 -0700470static void
471mq_send_session_migrate_cb (session_t * s, session_handle_t new_sh)
472{
Florin Coras68b7e582020-01-21 18:33:23 -0800473 svm_msg_q_msg_t _msg, *msg = &_msg;
474 session_migrated_msg_t *mp;
475 svm_msg_q_t *vpp_evt_q;
476 app_worker_t *app_wrk;
477 session_event_t *evt;
478 svm_msg_q_t *app_mq;
479
480 app_wrk = app_worker_get (s->app_wrk_index);
481 app_mq = app_wrk->event_queue;
482 if (mq_try_lock_and_alloc_msg (app_mq, msg))
483 return;
484
485 evt = svm_msg_q_msg_data (app_mq, msg);
486 clib_memset (evt, 0, sizeof (*evt));
487 evt->event_type = SESSION_CTRL_EVT_MIGRATED;
488 mp = (session_migrated_msg_t *) evt->data;
489 mp->handle = session_handle (s);
490 mp->new_handle = new_sh;
491 mp->vpp_thread_index = session_thread_from_handle (new_sh);
492 vpp_evt_q = session_main_get_vpp_event_queue (mp->vpp_thread_index);
493 mp->vpp_evt_q = pointer_to_uword (vpp_evt_q);
494 svm_msg_q_add_and_unlock (app_mq, msg);
Florin Coras49568af2019-07-31 16:46:24 -0700495}
496
Florin Corasc4c4cf52019-08-24 18:17:34 -0700497static int
498mq_send_add_segment_cb (u32 app_wrk_index, u64 segment_handle)
499{
500 int fds[SESSION_N_FD_TYPE], n_fds = 0;
501 svm_msg_q_msg_t _msg, *msg = &_msg;
502 session_app_add_segment_msg_t *mp;
503 vl_api_registration_t *reg;
504 app_worker_t *app_wrk;
505 session_event_t *evt;
506 svm_msg_q_t *app_mq;
507 fifo_segment_t *fs;
508 ssvm_private_t *sp;
509 u8 fd_flags = 0;
510
511 app_wrk = app_worker_get (app_wrk_index);
512
513 reg = vl_mem_api_client_index_to_registration (app_wrk->api_client_index);
514 if (!reg)
515 {
516 clib_warning ("no api registration for client: %u",
517 app_wrk->api_client_index);
518 return -1;
519 }
520
521 fs = segment_manager_get_segment_w_handle (segment_handle);
522 sp = &fs->ssvm;
523 if (ssvm_type (sp) == SSVM_SEGMENT_MEMFD)
524 {
525 if (vl_api_registration_file_index (reg) == VL_API_INVALID_FI)
526 {
527 clib_warning ("can't send memfd fd");
528 return -1;
529 }
530
531 fd_flags |= SESSION_FD_F_MEMFD_SEGMENT;
532 fds[n_fds] = sp->fd;
533 n_fds += 1;
534 }
535
536 app_mq = app_wrk->event_queue;
537 if (mq_try_lock_and_alloc_msg (app_mq, msg))
538 return -1;
539
540 if (n_fds)
541 session_send_fds (reg, fds, n_fds);
542
543 evt = svm_msg_q_msg_data (app_mq, msg);
544 clib_memset (evt, 0, sizeof (*evt));
545 evt->event_type = SESSION_CTRL_EVT_APP_ADD_SEGMENT;
546 mp = (session_app_add_segment_msg_t *) evt->data;
547 clib_memset (mp, 0, sizeof (*mp));
548 mp->segment_size = sp->ssvm_size;
549 mp->fd_flags = fd_flags;
550 mp->segment_handle = segment_handle;
551 strncpy ((char *) mp->segment_name, (char *) sp->name,
552 sizeof (mp->segment_name) - 1);
553
554 svm_msg_q_add_and_unlock (app_mq, msg);
555
556 return 0;
557}
558
559static int
560mq_send_del_segment_cb (u32 app_wrk_index, u64 segment_handle)
561{
562 svm_msg_q_msg_t _msg, *msg = &_msg;
563 session_app_del_segment_msg_t *mp;
564 vl_api_registration_t *reg;
565 app_worker_t *app_wrk;
566 session_event_t *evt;
567 svm_msg_q_t *app_mq;
568
569 app_wrk = app_worker_get (app_wrk_index);
570 reg = vl_mem_api_client_index_to_registration (app_wrk->api_client_index);
571 if (!reg)
572 {
573 clib_warning ("no registration: %u", app_wrk->api_client_index);
574 return -1;
575 }
576
577 app_mq = app_wrk->event_queue;
578 if (mq_try_lock_and_alloc_msg (app_mq, msg))
579 return -1;
580
581 evt = svm_msg_q_msg_data (app_mq, msg);
582 clib_memset (evt, 0, sizeof (*evt));
583 evt->event_type = SESSION_CTRL_EVT_APP_DEL_SEGMENT;
584 mp = (session_app_del_segment_msg_t *) evt->data;
585 clib_memset (mp, 0, sizeof (*mp));
586 mp->segment_handle = segment_handle;
587 svm_msg_q_add_and_unlock (app_mq, msg);
588
589 return 0;
590}
591
592/* ### WILL BE DEPRECATED POST 20.01 ### */
593static session_cb_vft_t session_mq_cb_vft_old = {
Florin Coras52207f12018-07-12 14:48:06 -0700594 .session_accept_callback = mq_send_session_accepted_cb,
595 .session_disconnect_callback = mq_send_session_disconnected_cb,
596 .session_connected_callback = mq_send_session_connected_cb,
597 .session_reset_callback = mq_send_session_reset_cb,
Florin Coras49568af2019-07-31 16:46:24 -0700598 .session_migrate_callback = mq_send_session_migrate_cb,
Florin Coras52207f12018-07-12 14:48:06 -0700599 .add_segment_callback = send_add_segment_callback,
600 .del_segment_callback = send_del_segment_callback,
601};
602
Florin Corasc4c4cf52019-08-24 18:17:34 -0700603static session_cb_vft_t session_mq_cb_vft = {
604 .session_accept_callback = mq_send_session_accepted_cb,
605 .session_disconnect_callback = mq_send_session_disconnected_cb,
606 .session_connected_callback = mq_send_session_connected_cb,
607 .session_reset_callback = mq_send_session_reset_cb,
608 .session_migrate_callback = mq_send_session_migrate_cb,
609 .add_segment_callback = mq_send_add_segment_cb,
610 .del_segment_callback = mq_send_del_segment_cb,
611};
612
Dave Barach68b0fb02017-02-28 15:15:56 -0500613static void
Florin Corase04c2992017-03-01 08:17:34 -0800614vl_api_session_enable_disable_t_handler (vl_api_session_enable_disable_t * mp)
615{
616 vl_api_session_enable_disable_reply_t *rmp;
617 vlib_main_t *vm = vlib_get_main ();
618 int rv = 0;
619
620 vnet_session_enable_disable (vm, mp->is_enable);
621 REPLY_MACRO (VL_API_SESSION_ENABLE_DISABLE_REPLY);
622}
623
Florin Coras458089b2019-08-21 16:20:44 -0700624/* ### WILL BE DEPRECATED POST 20.01 ### */
Florin Corase04c2992017-03-01 08:17:34 -0800625static void
Florin Coras6cf30ad2017-04-04 23:08:23 -0700626vl_api_application_attach_t_handler (vl_api_application_attach_t * mp)
Dave Barach68b0fb02017-02-28 15:15:56 -0500627{
Florin Coras99368312018-08-02 10:45:44 -0700628 int rv = 0, fds[SESSION_N_FD_TYPE], n_fds = 0;
Florin Coras6cf30ad2017-04-04 23:08:23 -0700629 vl_api_application_attach_reply_t *rmp;
Florin Corasb384b542018-01-15 01:08:33 -0800630 ssvm_private_t *segp, *evt_q_segment;
Florin Coras6cf30ad2017-04-04 23:08:23 -0700631 vnet_app_attach_args_t _a, *a = &_a;
Florin Corasb384b542018-01-15 01:08:33 -0800632 vl_api_registration_t *reg;
Florin Coras99368312018-08-02 10:45:44 -0700633 u8 fd_flags = 0;
Dave Barach68b0fb02017-02-28 15:15:56 -0500634
Florin Corasfc804d92018-01-26 01:27:01 -0800635 reg = vl_api_client_index_to_registration (mp->client_index);
636 if (!reg)
637 return;
638
Florin Coras31c99552019-03-01 13:00:58 -0800639 if (session_main_is_enabled () == 0)
Florin Coras6cf30ad2017-04-04 23:08:23 -0700640 {
641 rv = VNET_API_ERROR_FEATURE_DISABLED;
642 goto done;
643 }
Dave Barach68b0fb02017-02-28 15:15:56 -0500644
Florin Corasff6e7692017-12-11 04:59:01 -0800645 STATIC_ASSERT (sizeof (u64) * APP_OPTIONS_N_OPTIONS <=
Florin Coras6cf30ad2017-04-04 23:08:23 -0700646 sizeof (mp->options),
647 "Out of options, fix api message definition");
Dave Barach68b0fb02017-02-28 15:15:56 -0500648
Dave Barachb7b92992018-10-17 10:38:51 -0400649 clib_memset (a, 0, sizeof (*a));
Dave Barach68b0fb02017-02-28 15:15:56 -0500650 a->api_client_index = mp->client_index;
651 a->options = mp->options;
Florin Corasc4c4cf52019-08-24 18:17:34 -0700652 a->session_cb_vft = &session_mq_cb_vft_old;
Florin Corascea194d2017-10-02 00:18:51 -0700653 if (mp->namespace_id_len > 64)
654 {
655 rv = VNET_API_ERROR_INVALID_VALUE;
656 goto done;
657 }
658
659 if (mp->namespace_id_len)
660 {
Dave Wallace8af20542017-10-26 03:29:30 -0400661 vec_validate (a->namespace_id, mp->namespace_id_len - 1);
Dave Barach178cf492018-11-13 16:34:13 -0500662 clib_memcpy_fast (a->namespace_id, mp->namespace_id,
663 mp->namespace_id_len);
Florin Corascea194d2017-10-02 00:18:51 -0700664 }
665
Florin Corasc1a42652019-02-08 18:27:29 -0800666 if ((rv = vnet_application_attach (a)))
Florin Corascea194d2017-10-02 00:18:51 -0700667 {
Florin Corasc1a42652019-02-08 18:27:29 -0800668 clib_warning ("attach returned: %d", rv);
Florin Coras99368312018-08-02 10:45:44 -0700669 vec_free (a->namespace_id);
670 goto done;
Florin Corascea194d2017-10-02 00:18:51 -0700671 }
672 vec_free (a->namespace_id);
Dave Barach68b0fb02017-02-28 15:15:56 -0500673
Florin Coras99368312018-08-02 10:45:44 -0700674 /* Send event queues segment */
Florin Coras31c99552019-03-01 13:00:58 -0800675 if ((evt_q_segment = session_main_get_evt_q_segment ()))
Florin Coras99368312018-08-02 10:45:44 -0700676 {
677 fd_flags |= SESSION_FD_F_VPP_MQ_SEGMENT;
678 fds[n_fds] = evt_q_segment->fd;
679 n_fds += 1;
680 }
681 /* Send fifo segment fd if needed */
682 if (ssvm_type (a->segment) == SSVM_SEGMENT_MEMFD)
683 {
684 fd_flags |= SESSION_FD_F_MEMFD_SEGMENT;
685 fds[n_fds] = a->segment->fd;
686 n_fds += 1;
687 }
688 if (a->options[APP_OPTIONS_FLAGS] & APP_OPTIONS_FLAGS_EVT_MQ_USE_EVENTFD)
689 {
690 fd_flags |= SESSION_FD_F_MQ_EVENTFD;
691 fds[n_fds] = svm_msg_q_get_producer_eventfd (a->app_evt_q);
692 n_fds += 1;
693 }
694
Florin Coras6cf30ad2017-04-04 23:08:23 -0700695done:
Florin Corasa5464812017-04-19 13:00:05 -0700696
Dave Barach68b0fb02017-02-28 15:15:56 -0500697 /* *INDENT-OFF* */
Florin Coras6cf30ad2017-04-04 23:08:23 -0700698 REPLY_MACRO2 (VL_API_APPLICATION_ATTACH_REPLY, ({
Dave Barach68b0fb02017-02-28 15:15:56 -0500699 if (!rv)
700 {
Florin Corasb384b542018-01-15 01:08:33 -0800701 segp = a->segment;
Florin Corasc1f5a432018-11-20 11:31:26 -0800702 rmp->app_index = clib_host_to_net_u32 (a->app_index);
Dave Barach68b0fb02017-02-28 15:15:56 -0500703 rmp->segment_name_length = 0;
Florin Corasb384b542018-01-15 01:08:33 -0800704 rmp->segment_size = segp->ssvm_size;
705 if (vec_len (segp->name))
Dave Barach68b0fb02017-02-28 15:15:56 -0500706 {
Florin Corasb384b542018-01-15 01:08:33 -0800707 memcpy (rmp->segment_name, segp->name, vec_len (segp->name));
708 rmp->segment_name_length = vec_len (segp->name);
Dave Barach68b0fb02017-02-28 15:15:56 -0500709 }
Florin Coras99368312018-08-02 10:45:44 -0700710 rmp->app_event_queue_address = pointer_to_uword (a->app_evt_q);
711 rmp->n_fds = n_fds;
712 rmp->fd_flags = fd_flags;
Florin Corasd85de682018-11-29 17:02:29 -0800713 rmp->segment_handle = clib_host_to_net_u64 (a->segment_handle);
Dave Barach68b0fb02017-02-28 15:15:56 -0500714 }
715 }));
716 /* *INDENT-ON* */
Florin Corasb384b542018-01-15 01:08:33 -0800717
Florin Coras99368312018-08-02 10:45:44 -0700718 if (n_fds)
719 session_send_fds (reg, fds, n_fds);
Dave Barach68b0fb02017-02-28 15:15:56 -0500720}
721
722static void
Florin Coras458089b2019-08-21 16:20:44 -0700723vl_api_app_attach_t_handler (vl_api_app_attach_t * mp)
724{
725 int rv = 0, fds[SESSION_N_FD_TYPE], n_fds = 0;
726 vl_api_app_attach_reply_t *rmp;
727 ssvm_private_t *segp, *evt_q_segment;
728 vnet_app_attach_args_t _a, *a = &_a;
729 u8 fd_flags = 0, ctrl_thread;
730 vl_api_registration_t *reg;
731 svm_msg_q_t *ctrl_mq;
732
733 reg = vl_api_client_index_to_registration (mp->client_index);
734 if (!reg)
735 return;
736
737 if (session_main_is_enabled () == 0)
738 {
739 rv = VNET_API_ERROR_FEATURE_DISABLED;
740 goto done;
741 }
742
743 STATIC_ASSERT (sizeof (u64) * APP_OPTIONS_N_OPTIONS <=
744 sizeof (mp->options),
745 "Out of options, fix api message definition");
746
747 clib_memset (a, 0, sizeof (*a));
748 a->api_client_index = mp->client_index;
749 a->options = mp->options;
750 a->session_cb_vft = &session_mq_cb_vft;
751 if (mp->namespace_id_len > 64)
752 {
753 rv = VNET_API_ERROR_INVALID_VALUE;
754 goto done;
755 }
756
757 if (mp->namespace_id_len)
758 {
759 vec_validate (a->namespace_id, mp->namespace_id_len - 1);
760 clib_memcpy_fast (a->namespace_id, mp->namespace_id,
761 mp->namespace_id_len);
762 }
763
764 if ((rv = vnet_application_attach (a)))
765 {
766 clib_warning ("attach returned: %d", rv);
767 vec_free (a->namespace_id);
768 goto done;
769 }
770 vec_free (a->namespace_id);
771
772 /* Send event queues segment */
773 if ((evt_q_segment = session_main_get_evt_q_segment ()))
774 {
775 fd_flags |= SESSION_FD_F_VPP_MQ_SEGMENT;
776 fds[n_fds] = evt_q_segment->fd;
777 n_fds += 1;
778 }
779 /* Send fifo segment fd if needed */
780 if (ssvm_type (a->segment) == SSVM_SEGMENT_MEMFD)
781 {
782 fd_flags |= SESSION_FD_F_MEMFD_SEGMENT;
783 fds[n_fds] = a->segment->fd;
784 n_fds += 1;
785 }
786 if (a->options[APP_OPTIONS_FLAGS] & APP_OPTIONS_FLAGS_EVT_MQ_USE_EVENTFD)
787 {
788 fd_flags |= SESSION_FD_F_MQ_EVENTFD;
789 fds[n_fds] = svm_msg_q_get_producer_eventfd (a->app_evt_q);
790 n_fds += 1;
791 }
792
793done:
Florin Coras458089b2019-08-21 16:20:44 -0700794 /* *INDENT-OFF* */
795 REPLY_MACRO2 (VL_API_APP_ATTACH_REPLY, ({
796 if (!rv)
797 {
Vratko Polak4f599852019-11-08 10:32:39 +0100798 ctrl_thread = vlib_num_workers () ? 1 : 0;
Nathan Skrzypczak9d3e1b42019-11-07 10:29:24 +0100799 ctrl_mq = session_main_get_vpp_event_queue (ctrl_thread);
Florin Coras458089b2019-08-21 16:20:44 -0700800 segp = a->segment;
801 rmp->app_index = clib_host_to_net_u32 (a->app_index);
802 rmp->app_mq = pointer_to_uword (a->app_evt_q);
803 rmp->vpp_ctrl_mq = pointer_to_uword (ctrl_mq);
804 rmp->vpp_ctrl_mq_thread = ctrl_thread;
805 rmp->n_fds = n_fds;
806 rmp->fd_flags = fd_flags;
807 if (vec_len (segp->name))
808 {
809 memcpy (rmp->segment_name, segp->name, vec_len (segp->name));
810 rmp->segment_name_length = vec_len (segp->name);
811 }
812 rmp->segment_size = segp->ssvm_size;
813 rmp->segment_handle = clib_host_to_net_u64 (a->segment_handle);
814 }
815 }));
816 /* *INDENT-ON* */
817
818 if (n_fds)
819 session_send_fds (reg, fds, n_fds);
820}
821
822/* ### WILL BE DEPRECATED POST 20.01 ### */
823static void
Florin Coras6cf30ad2017-04-04 23:08:23 -0700824vl_api_application_detach_t_handler (vl_api_application_detach_t * mp)
825{
826 vl_api_application_detach_reply_t *rmp;
827 int rv = VNET_API_ERROR_INVALID_VALUE_2;
828 vnet_app_detach_args_t _a, *a = &_a;
829 application_t *app;
830
Florin Coras31c99552019-03-01 13:00:58 -0800831 if (session_main_is_enabled () == 0)
Florin Coras6cf30ad2017-04-04 23:08:23 -0700832 {
833 rv = VNET_API_ERROR_FEATURE_DISABLED;
834 goto done;
835 }
836
837 app = application_lookup (mp->client_index);
838 if (app)
839 {
Florin Coras15531972018-08-12 23:50:53 -0700840 a->app_index = app->app_index;
Florin Coras053a0e42018-11-13 15:52:38 -0800841 a->api_client_index = mp->client_index;
Florin Coras6cf30ad2017-04-04 23:08:23 -0700842 rv = vnet_application_detach (a);
843 }
844
845done:
846 REPLY_MACRO (VL_API_APPLICATION_DETACH_REPLY);
847}
848
Florin Coras458089b2019-08-21 16:20:44 -0700849/* ### WILL BE DEPRECATED POST 20.01 ### */
Florin Coras6cf30ad2017-04-04 23:08:23 -0700850static void
851vl_api_bind_uri_t_handler (vl_api_bind_uri_t * mp)
852{
Florin Coras7fb0fe12018-04-09 09:24:52 -0700853 vl_api_bind_uri_reply_t *rmp;
Florin Coras64424012019-03-02 10:47:47 -0800854 vnet_listen_args_t _a, *a = &_a;
Florin Coras7fb0fe12018-04-09 09:24:52 -0700855 application_t *app = 0;
Florin Coras60116992018-08-27 09:52:18 -0700856 app_worker_t *app_wrk;
Florin Coras6cf30ad2017-04-04 23:08:23 -0700857 int rv;
858
Florin Coras31c99552019-03-01 13:00:58 -0800859 if (session_main_is_enabled () == 0)
Florin Coras6cf30ad2017-04-04 23:08:23 -0700860 {
861 rv = VNET_API_ERROR_FEATURE_DISABLED;
862 goto done;
863 }
864
865 app = application_lookup (mp->client_index);
866 if (app)
867 {
Dave Barachb7b92992018-10-17 10:38:51 -0400868 clib_memset (a, 0, sizeof (*a));
Florin Coras6cf30ad2017-04-04 23:08:23 -0700869 a->uri = (char *) mp->uri;
Florin Coras15531972018-08-12 23:50:53 -0700870 a->app_index = app->app_index;
Florin Coras6cf30ad2017-04-04 23:08:23 -0700871 rv = vnet_bind_uri (a);
872 }
873 else
874 {
875 rv = VNET_API_ERROR_APPLICATION_NOT_ATTACHED;
876 }
877
878done:
Florin Coras7fb0fe12018-04-09 09:24:52 -0700879
Florin Coras64424012019-03-02 10:47:47 -0800880 REPLY_MACRO (VL_API_BIND_URI_REPLY);
Florin Coras60116992018-08-27 09:52:18 -0700881
Florin Coras64424012019-03-02 10:47:47 -0800882 if (app)
Florin Coras60116992018-08-27 09:52:18 -0700883 {
884 app_wrk = application_get_worker (app, 0);
885 mq_send_session_bound_cb (app_wrk->wrk_index, mp->context, a->handle,
886 rv);
887 }
Florin Coras6cf30ad2017-04-04 23:08:23 -0700888}
889
Florin Coras458089b2019-08-21 16:20:44 -0700890/* ### WILL BE DEPRECATED POST 20.01 ### */
Florin Coras6cf30ad2017-04-04 23:08:23 -0700891static void
Dave Barach68b0fb02017-02-28 15:15:56 -0500892vl_api_unbind_uri_t_handler (vl_api_unbind_uri_t * mp)
893{
894 vl_api_unbind_uri_reply_t *rmp;
Florin Coras6cf30ad2017-04-04 23:08:23 -0700895 application_t *app;
Florin Corasc1a42652019-02-08 18:27:29 -0800896 vnet_unlisten_args_t _a, *a = &_a;
Dave Barach68b0fb02017-02-28 15:15:56 -0500897 int rv;
898
Florin Coras31c99552019-03-01 13:00:58 -0800899 if (session_main_is_enabled () == 0)
Florin Coras6cf30ad2017-04-04 23:08:23 -0700900 {
901 rv = VNET_API_ERROR_FEATURE_DISABLED;
902 goto done;
903 }
Dave Barach68b0fb02017-02-28 15:15:56 -0500904
Florin Coras6cf30ad2017-04-04 23:08:23 -0700905 app = application_lookup (mp->client_index);
906 if (app)
907 {
908 a->uri = (char *) mp->uri;
Florin Coras15531972018-08-12 23:50:53 -0700909 a->app_index = app->app_index;
Nathan Skrzypczak2eed1a12019-07-04 14:26:21 +0200910 a->wrk_map_index = 0;
Florin Coras6cf30ad2017-04-04 23:08:23 -0700911 rv = vnet_unbind_uri (a);
912 }
913 else
914 {
915 rv = VNET_API_ERROR_APPLICATION_NOT_ATTACHED;
916 }
917
918done:
Dave Barach68b0fb02017-02-28 15:15:56 -0500919 REPLY_MACRO (VL_API_UNBIND_URI_REPLY);
920}
921
Florin Coras458089b2019-08-21 16:20:44 -0700922/* ### WILL BE DEPRECATED POST 20.01 ### */
Florin Corasf03a59a2017-06-09 21:07:32 -0700923static void
Dave Barach68b0fb02017-02-28 15:15:56 -0500924vl_api_connect_uri_t_handler (vl_api_connect_uri_t * mp)
925{
Florin Coras64424012019-03-02 10:47:47 -0800926 vl_api_connect_uri_reply_t *rmp;
Dave Barach68b0fb02017-02-28 15:15:56 -0500927 vnet_connect_args_t _a, *a = &_a;
Florin Coras6cf30ad2017-04-04 23:08:23 -0700928 application_t *app;
Florin Corascea194d2017-10-02 00:18:51 -0700929 int rv = 0;
Dave Barach68b0fb02017-02-28 15:15:56 -0500930
Florin Coras31c99552019-03-01 13:00:58 -0800931 if (session_main_is_enabled () == 0)
Florin Coras6cf30ad2017-04-04 23:08:23 -0700932 {
933 rv = VNET_API_ERROR_FEATURE_DISABLED;
934 goto done;
935 }
Florin Corase04c2992017-03-01 08:17:34 -0800936
Florin Coras6cf30ad2017-04-04 23:08:23 -0700937 app = application_lookup (mp->client_index);
938 if (app)
939 {
Dave Barachb7b92992018-10-17 10:38:51 -0400940 clib_memset (a, 0, sizeof (*a));
Florin Coras6cf30ad2017-04-04 23:08:23 -0700941 a->uri = (char *) mp->uri;
942 a->api_context = mp->context;
Florin Coras15531972018-08-12 23:50:53 -0700943 a->app_index = app->app_index;
Florin Corasc1a42652019-02-08 18:27:29 -0800944 if ((rv = vnet_connect_uri (a)))
945 clib_warning ("connect_uri returned: %d", rv);
Florin Coras6cf30ad2017-04-04 23:08:23 -0700946 }
947 else
948 {
949 rv = VNET_API_ERROR_APPLICATION_NOT_ATTACHED;
950 }
Florin Corase04c2992017-03-01 08:17:34 -0800951
Florin Coras3cbc04b2017-10-02 00:18:51 -0700952 /*
953 * Don't reply to stream (tcp) connects. The reply will come once
954 * the connection is established. In case of the redirects, the reply
955 * will come from the server app.
956 */
Florin Coras8f89dd02018-03-05 16:53:07 -0800957 if (rv == 0)
Florin Corase04c2992017-03-01 08:17:34 -0800958 return;
959
Florin Coras6cf30ad2017-04-04 23:08:23 -0700960done:
Florin Coras64424012019-03-02 10:47:47 -0800961 REPLY_MACRO (VL_API_CONNECT_URI_REPLY);
Dave Barach68b0fb02017-02-28 15:15:56 -0500962}
963
Florin Coras458089b2019-08-21 16:20:44 -0700964/* ### WILL BE DEPRECATED POST 20.01 ### */
Dave Barach68b0fb02017-02-28 15:15:56 -0500965static void
966vl_api_disconnect_session_t_handler (vl_api_disconnect_session_t * mp)
967{
968 vl_api_disconnect_session_reply_t *rmp;
Florin Coras6cf30ad2017-04-04 23:08:23 -0700969 vnet_disconnect_args_t _a, *a = &_a;
970 application_t *app;
971 int rv = 0;
Dave Barach68b0fb02017-02-28 15:15:56 -0500972
Florin Coras31c99552019-03-01 13:00:58 -0800973 if (session_main_is_enabled () == 0)
Florin Coras6cf30ad2017-04-04 23:08:23 -0700974 {
975 rv = VNET_API_ERROR_FEATURE_DISABLED;
976 goto done;
977 }
Dave Barach68b0fb02017-02-28 15:15:56 -0500978
Florin Coras6cf30ad2017-04-04 23:08:23 -0700979 app = application_lookup (mp->client_index);
980 if (app)
981 {
982 a->handle = mp->handle;
Florin Coras15531972018-08-12 23:50:53 -0700983 a->app_index = app->app_index;
Florin Coras6cf30ad2017-04-04 23:08:23 -0700984 rv = vnet_disconnect_session (a);
985 }
986 else
987 {
988 rv = VNET_API_ERROR_APPLICATION_NOT_ATTACHED;
989 }
990
991done:
Dave Wallacede5fec92017-11-11 22:41:34 -0500992 REPLY_MACRO2 (VL_API_DISCONNECT_SESSION_REPLY, rmp->handle = mp->handle);
Dave Barach68b0fb02017-02-28 15:15:56 -0500993}
994
Florin Coras458089b2019-08-21 16:20:44 -0700995/* ### WILL BE DEPRECATED POST 20.01 ### */
Dave Barach68b0fb02017-02-28 15:15:56 -0500996static void
997vl_api_disconnect_session_reply_t_handler (vl_api_disconnect_session_reply_t *
998 mp)
999{
Florin Coras6cf30ad2017-04-04 23:08:23 -07001000 vnet_disconnect_args_t _a, *a = &_a;
1001 application_t *app;
Dave Barach68b0fb02017-02-28 15:15:56 -05001002
1003 /* Client objected to disconnecting the session, log and continue */
1004 if (mp->retval)
1005 {
1006 clib_warning ("client retval %d", mp->retval);
1007 return;
1008 }
1009
1010 /* Disconnect has been confirmed. Confirm close to transport */
Florin Corasf8f516a2018-02-08 15:10:09 -08001011 app = application_lookup (mp->context);
Florin Coras6cf30ad2017-04-04 23:08:23 -07001012 if (app)
1013 {
1014 a->handle = mp->handle;
Florin Coras15531972018-08-12 23:50:53 -07001015 a->app_index = app->app_index;
Florin Coras6cf30ad2017-04-04 23:08:23 -07001016 vnet_disconnect_session (a);
1017 }
Dave Barach68b0fb02017-02-28 15:15:56 -05001018}
1019
Florin Corasc4c4cf52019-08-24 18:17:34 -07001020/* ### WILL BE DEPRECATED POST 20.01 ### */
Dave Barach68b0fb02017-02-28 15:15:56 -05001021static void
Dave Barach68b0fb02017-02-28 15:15:56 -05001022vl_api_map_another_segment_reply_t_handler (vl_api_map_another_segment_reply_t
1023 * mp)
1024{
1025 clib_warning ("not implemented");
1026}
1027
Florin Coras458089b2019-08-21 16:20:44 -07001028/* ### WILL BE DEPRECATED POST 20.01 ### */
Dave Barach68b0fb02017-02-28 15:15:56 -05001029static void
1030vl_api_bind_sock_t_handler (vl_api_bind_sock_t * mp)
1031{
Florin Corasc9940fc2019-02-05 20:55:11 -08001032 vnet_listen_args_t _a, *a = &_a;
Dave Barach68b0fb02017-02-28 15:15:56 -05001033 vl_api_bind_sock_reply_t *rmp;
Florin Coraseb2945c2017-11-22 10:39:09 -08001034 application_t *app = 0;
Florin Coras60116992018-08-27 09:52:18 -07001035 app_worker_t *app_wrk;
Florin Corasdcf55ce2017-11-16 15:32:50 -08001036 ip46_address_t *ip46;
Florin Corasc9940fc2019-02-05 20:55:11 -08001037 int rv = 0;
Dave Barach68b0fb02017-02-28 15:15:56 -05001038
Florin Coras31c99552019-03-01 13:00:58 -08001039 if (session_main_is_enabled () == 0)
Florin Coras6cf30ad2017-04-04 23:08:23 -07001040 {
1041 rv = VNET_API_ERROR_FEATURE_DISABLED;
1042 goto done;
1043 }
Dave Barach68b0fb02017-02-28 15:15:56 -05001044
Florin Coras6cf30ad2017-04-04 23:08:23 -07001045 app = application_lookup (mp->client_index);
Florin Corasdcf55ce2017-11-16 15:32:50 -08001046 if (!app)
Florin Coras6cf30ad2017-04-04 23:08:23 -07001047 {
Florin Corasdcf55ce2017-11-16 15:32:50 -08001048 rv = VNET_API_ERROR_APPLICATION_NOT_ATTACHED;
1049 goto done;
Florin Coras6cf30ad2017-04-04 23:08:23 -07001050 }
Florin Corasdcf55ce2017-11-16 15:32:50 -08001051
1052 ip46 = (ip46_address_t *) mp->ip;
Dave Barachb7b92992018-10-17 10:38:51 -04001053 clib_memset (a, 0, sizeof (*a));
Florin Corasdcf55ce2017-11-16 15:32:50 -08001054 a->sep.is_ip4 = mp->is_ip4;
1055 a->sep.ip = *ip46;
1056 a->sep.port = mp->port;
1057 a->sep.fib_index = mp->vrf;
1058 a->sep.sw_if_index = ENDPOINT_INVALID_INDEX;
1059 a->sep.transport_proto = mp->proto;
Florin Coras15531972018-08-12 23:50:53 -07001060 a->app_index = app->app_index;
1061 a->wrk_map_index = mp->wrk_index;
Florin Corasdcf55ce2017-11-16 15:32:50 -08001062
Florin Corasc1a42652019-02-08 18:27:29 -08001063 if ((rv = vnet_listen (a)))
1064 clib_warning ("listen returned: %d", rv);
Florin Corasdcf55ce2017-11-16 15:32:50 -08001065
Florin Coras6cf30ad2017-04-04 23:08:23 -07001066done:
Florin Coras64424012019-03-02 10:47:47 -08001067 /* Actual reply sent only over mq */
1068 REPLY_MACRO (VL_API_BIND_SOCK_REPLY);
Florin Coras60116992018-08-27 09:52:18 -07001069
Florin Coras64424012019-03-02 10:47:47 -08001070 if (app)
Florin Coras60116992018-08-27 09:52:18 -07001071 {
1072 app_wrk = application_get_worker (app, mp->wrk_index);
1073 mq_send_session_bound_cb (app_wrk->wrk_index, mp->context, a->handle,
1074 rv);
1075 }
Dave Barach68b0fb02017-02-28 15:15:56 -05001076}
1077
Florin Coras458089b2019-08-21 16:20:44 -07001078/* ### WILL BE DEPRECATED POST 20.01 ### */
Dave Barach68b0fb02017-02-28 15:15:56 -05001079static void
1080vl_api_unbind_sock_t_handler (vl_api_unbind_sock_t * mp)
1081{
1082 vl_api_unbind_sock_reply_t *rmp;
Florin Corasc1a42652019-02-08 18:27:29 -08001083 vnet_unlisten_args_t _a, *a = &_a;
Florin Corasdfae9f92019-02-20 19:48:31 -08001084 app_worker_t *app_wrk;
1085 application_t *app = 0;
Florin Corascea194d2017-10-02 00:18:51 -07001086 int rv = 0;
Dave Barach68b0fb02017-02-28 15:15:56 -05001087
Florin Coras31c99552019-03-01 13:00:58 -08001088 if (session_main_is_enabled () == 0)
Florin Coras6cf30ad2017-04-04 23:08:23 -07001089 {
1090 rv = VNET_API_ERROR_FEATURE_DISABLED;
1091 goto done;
1092 }
Dave Barach68b0fb02017-02-28 15:15:56 -05001093
Florin Coras6cf30ad2017-04-04 23:08:23 -07001094 app = application_lookup (mp->client_index);
1095 if (app)
1096 {
Florin Coras15531972018-08-12 23:50:53 -07001097 a->app_index = app->app_index;
Florin Coras6cf30ad2017-04-04 23:08:23 -07001098 a->handle = mp->handle;
Florin Corasab2f6db2018-08-31 14:31:41 -07001099 a->wrk_map_index = mp->wrk_index;
Florin Corasc1a42652019-02-08 18:27:29 -08001100 if ((rv = vnet_unlisten (a)))
1101 clib_warning ("unlisten returned: %d", rv);
Florin Coras6cf30ad2017-04-04 23:08:23 -07001102 }
Florin Coraseef61bb2019-08-27 15:13:35 -07001103 else
1104 {
1105 rv = VNET_API_ERROR_APPLICATION_NOT_ATTACHED;
1106 }
Dave Barach68b0fb02017-02-28 15:15:56 -05001107
Florin Coras6cf30ad2017-04-04 23:08:23 -07001108done:
Dave Barach68b0fb02017-02-28 15:15:56 -05001109 REPLY_MACRO (VL_API_UNBIND_SOCK_REPLY);
Florin Corasdfae9f92019-02-20 19:48:31 -08001110
Florin Coraseef61bb2019-08-27 15:13:35 -07001111 if (!app)
1112 return;
1113
Florin Corasdfae9f92019-02-20 19:48:31 -08001114 app_wrk = application_get_worker (app, a->wrk_map_index);
1115 if (!app_wrk)
1116 return;
1117
Florin Coras458089b2019-08-21 16:20:44 -07001118 mq_send_unlisten_reply (app_wrk, mp->handle, mp->context, rv);
Dave Barach68b0fb02017-02-28 15:15:56 -05001119}
1120
Florin Coras458089b2019-08-21 16:20:44 -07001121/* ### WILL BE DEPRECATED POST 20.01 ### */
Dave Barach68b0fb02017-02-28 15:15:56 -05001122static void
1123vl_api_connect_sock_t_handler (vl_api_connect_sock_t * mp)
1124{
Florin Coras64424012019-03-02 10:47:47 -08001125 vl_api_connect_sock_reply_t *rmp;
Dave Barach68b0fb02017-02-28 15:15:56 -05001126 vnet_connect_args_t _a, *a = &_a;
Florin Corasab2f6db2018-08-31 14:31:41 -07001127 application_t *app = 0;
Florin Corascea194d2017-10-02 00:18:51 -07001128 int rv = 0;
Dave Barach68b0fb02017-02-28 15:15:56 -05001129
Florin Coras31c99552019-03-01 13:00:58 -08001130 if (session_main_is_enabled () == 0)
Florin Coras6cf30ad2017-04-04 23:08:23 -07001131 {
1132 rv = VNET_API_ERROR_FEATURE_DISABLED;
1133 goto done;
1134 }
Dave Barach68b0fb02017-02-28 15:15:56 -05001135
Florin Coras6cf30ad2017-04-04 23:08:23 -07001136 app = application_lookup (mp->client_index);
1137 if (app)
1138 {
Florin Corase86a8ed2018-01-05 03:20:25 -08001139 svm_queue_t *client_q;
Dave Wallace33e002b2017-09-06 01:20:02 -04001140 ip46_address_t *ip46 = (ip46_address_t *) mp->ip;
Dave Wallaceb2d5ff32017-06-14 12:38:28 -04001141
Dave Barachb7b92992018-10-17 10:38:51 -04001142 clib_memset (a, 0, sizeof (*a));
Dave Wallaceb2d5ff32017-06-14 12:38:28 -04001143 client_q = vl_api_client_index_to_input_queue (mp->client_index);
1144 mp->client_queue_address = pointer_to_uword (client_q);
Florin Corascea194d2017-10-02 00:18:51 -07001145 a->sep.is_ip4 = mp->is_ip4;
1146 a->sep.ip = *ip46;
1147 a->sep.port = mp->port;
1148 a->sep.transport_proto = mp->proto;
Florin Coras5665ced2018-10-25 18:03:45 -07001149 a->sep.peer.fib_index = mp->vrf;
1150 a->sep.peer.sw_if_index = ENDPOINT_INVALID_INDEX;
Nathan Skrzypczak8ac1d6d2019-07-17 11:02:20 +02001151 a->sep_ext.parent_handle = mp->parent_handle;
Florin Coras8f89dd02018-03-05 16:53:07 -08001152 if (mp->hostname_len)
1153 {
Florin Coras15531972018-08-12 23:50:53 -07001154 vec_validate (a->sep_ext.hostname, mp->hostname_len - 1);
Dave Barach178cf492018-11-13 16:34:13 -05001155 clib_memcpy_fast (a->sep_ext.hostname, mp->hostname,
1156 mp->hostname_len);
Florin Coras8f89dd02018-03-05 16:53:07 -08001157 }
Florin Coras6cf30ad2017-04-04 23:08:23 -07001158 a->api_context = mp->context;
Florin Coras15531972018-08-12 23:50:53 -07001159 a->app_index = app->app_index;
1160 a->wrk_map_index = mp->wrk_index;
Florin Corasc1a42652019-02-08 18:27:29 -08001161 if ((rv = vnet_connect (a)))
Nathan Skrzypczakba65ca42019-05-16 16:35:40 +02001162 clib_warning ("connect returned: %U", format_vnet_api_errno, rv);
Florin Coras15531972018-08-12 23:50:53 -07001163 vec_free (a->sep_ext.hostname);
Florin Coras6cf30ad2017-04-04 23:08:23 -07001164 }
1165 else
1166 {
1167 rv = VNET_API_ERROR_APPLICATION_NOT_ATTACHED;
1168 }
Florin Corase04c2992017-03-01 08:17:34 -08001169
Florin Coras8f89dd02018-03-05 16:53:07 -08001170 if (rv == 0)
Florin Corase04c2992017-03-01 08:17:34 -08001171 return;
1172
1173 /* Got some error, relay it */
1174
Florin Coras6cf30ad2017-04-04 23:08:23 -07001175done:
Florin Coras64424012019-03-02 10:47:47 -08001176 REPLY_MACRO (VL_API_CONNECT_SOCK_REPLY);
Florin Corasab2f6db2018-08-31 14:31:41 -07001177
Florin Coras64424012019-03-02 10:47:47 -08001178 if (app)
Florin Corasab2f6db2018-08-31 14:31:41 -07001179 {
1180 app_worker_t *app_wrk = application_get_worker (app, mp->wrk_index);
1181 mq_send_session_connected_cb (app_wrk->wrk_index, mp->context, 0, 1);
1182 }
Dave Barach68b0fb02017-02-28 15:15:56 -05001183}
1184
Florin Corascea194d2017-10-02 00:18:51 -07001185static void
Florin Coras15531972018-08-12 23:50:53 -07001186vl_api_app_worker_add_del_t_handler (vl_api_app_worker_add_del_t * mp)
1187{
1188 int rv = 0, fds[SESSION_N_FD_TYPE], n_fds = 0;
1189 vl_api_app_worker_add_del_reply_t *rmp;
1190 vl_api_registration_t *reg;
Florin Coras15531972018-08-12 23:50:53 -07001191 application_t *app;
1192 u8 fd_flags = 0;
1193
Nathan Skrzypczak79f89532019-09-13 11:08:13 +02001194 if (session_main_is_enabled () == 0)
Florin Coras15531972018-08-12 23:50:53 -07001195 {
1196 rv = VNET_API_ERROR_FEATURE_DISABLED;
1197 goto done;
1198 }
1199
1200 reg = vl_api_client_index_to_registration (mp->client_index);
1201 if (!reg)
1202 return;
1203
Florin Corasc1f5a432018-11-20 11:31:26 -08001204 app = application_get_if_valid (clib_net_to_host_u32 (mp->app_index));
Florin Coras15531972018-08-12 23:50:53 -07001205 if (!app)
1206 {
1207 rv = VNET_API_ERROR_INVALID_VALUE;
1208 goto done;
1209 }
1210
1211 vnet_app_worker_add_del_args_t args = {
1212 .app_index = app->app_index,
Florin Coras349f8ca2018-11-20 16:52:49 -08001213 .wrk_map_index = clib_net_to_host_u32 (mp->wrk_index),
Florin Corasc1f5a432018-11-20 11:31:26 -08001214 .api_client_index = mp->client_index,
Florin Coras15531972018-08-12 23:50:53 -07001215 .is_add = mp->is_add
1216 };
Florin Corasc1a42652019-02-08 18:27:29 -08001217 rv = vnet_app_worker_add_del (&args);
1218 if (rv)
Florin Coras15531972018-08-12 23:50:53 -07001219 {
Florin Corasc1a42652019-02-08 18:27:29 -08001220 clib_warning ("app worker add/del returned: %d", rv);
Florin Coras15531972018-08-12 23:50:53 -07001221 goto done;
1222 }
1223
Florin Coras14598772018-09-04 19:47:52 -07001224 if (!mp->is_add)
1225 goto done;
Florin Corasc3638fe2018-08-24 13:58:49 -07001226
Florin Coras15531972018-08-12 23:50:53 -07001227 /* Send fifo segment fd if needed */
1228 if (ssvm_type (args.segment) == SSVM_SEGMENT_MEMFD)
1229 {
1230 fd_flags |= SESSION_FD_F_MEMFD_SEGMENT;
1231 fds[n_fds] = args.segment->fd;
1232 n_fds += 1;
1233 }
1234 if (application_segment_manager_properties (app)->use_mq_eventfd)
1235 {
1236 fd_flags |= SESSION_FD_F_MQ_EVENTFD;
1237 fds[n_fds] = svm_msg_q_get_producer_eventfd (args.evt_q);
1238 n_fds += 1;
1239 }
1240
1241 /* *INDENT-OFF* */
1242done:
1243 REPLY_MACRO2 (VL_API_APP_WORKER_ADD_DEL_REPLY, ({
1244 rmp->is_add = mp->is_add;
Florin Coras349f8ca2018-11-20 16:52:49 -08001245 rmp->wrk_index = clib_host_to_net_u32 (args.wrk_map_index);
Florin Corasfa76a762018-11-29 12:40:10 -08001246 rmp->segment_handle = clib_host_to_net_u64 (args.segment_handle);
Florin Coras14598772018-09-04 19:47:52 -07001247 if (!rv && mp->is_add)
Florin Coras15531972018-08-12 23:50:53 -07001248 {
Florin Coras15531972018-08-12 23:50:53 -07001249 if (vec_len (args.segment->name))
1250 {
1251 memcpy (rmp->segment_name, args.segment->name,
1252 vec_len (args.segment->name));
1253 rmp->segment_name_length = vec_len (args.segment->name);
1254 }
1255 rmp->app_event_queue_address = pointer_to_uword (args.evt_q);
1256 rmp->n_fds = n_fds;
1257 rmp->fd_flags = fd_flags;
1258 }
1259 }));
1260 /* *INDENT-ON* */
1261
1262 if (n_fds)
1263 session_send_fds (reg, fds, n_fds);
1264}
1265
1266static void
Florin Corascea194d2017-10-02 00:18:51 -07001267vl_api_app_namespace_add_del_t_handler (vl_api_app_namespace_add_del_t * mp)
1268{
1269 vl_api_app_namespace_add_del_reply_t *rmp;
Florin Coras6e8c6672017-11-10 09:03:54 -08001270 u32 appns_index = 0;
1271 u8 *ns_id = 0;
Florin Corascea194d2017-10-02 00:18:51 -07001272 int rv = 0;
Nathan Skrzypczak79f89532019-09-13 11:08:13 +02001273 if (session_main_is_enabled () == 0)
Florin Corascea194d2017-10-02 00:18:51 -07001274 {
1275 rv = VNET_API_ERROR_FEATURE_DISABLED;
1276 goto done;
1277 }
1278
1279 if (mp->namespace_id_len > ARRAY_LEN (mp->namespace_id))
1280 {
1281 rv = VNET_API_ERROR_INVALID_VALUE;
1282 goto done;
1283 }
1284
1285 vec_validate (ns_id, mp->namespace_id_len - 1);
Dave Barach178cf492018-11-13 16:34:13 -05001286 clib_memcpy_fast (ns_id, mp->namespace_id, mp->namespace_id_len);
Florin Corascea194d2017-10-02 00:18:51 -07001287 vnet_app_namespace_add_del_args_t args = {
1288 .ns_id = ns_id,
Florin Coras9a9adb22017-10-26 08:16:59 -07001289 .secret = clib_net_to_host_u64 (mp->secret),
Florin Corascea194d2017-10-02 00:18:51 -07001290 .sw_if_index = clib_net_to_host_u32 (mp->sw_if_index),
1291 .ip4_fib_id = clib_net_to_host_u32 (mp->ip4_fib_id),
1292 .ip6_fib_id = clib_net_to_host_u32 (mp->ip6_fib_id),
1293 .is_add = 1
1294 };
Florin Corasc1a42652019-02-08 18:27:29 -08001295 rv = vnet_app_namespace_add_del (&args);
1296 if (!rv)
Florin Coras6e8c6672017-11-10 09:03:54 -08001297 {
1298 appns_index = app_namespace_index_from_id (ns_id);
1299 if (appns_index == APP_NAMESPACE_INVALID_INDEX)
1300 {
1301 clib_warning ("app ns lookup failed");
1302 rv = VNET_API_ERROR_UNSPECIFIED;
1303 }
1304 }
Florin Corascea194d2017-10-02 00:18:51 -07001305 vec_free (ns_id);
Florin Coras6e8c6672017-11-10 09:03:54 -08001306
1307 /* *INDENT-OFF* */
Florin Corascea194d2017-10-02 00:18:51 -07001308done:
Florin Coras6e8c6672017-11-10 09:03:54 -08001309 REPLY_MACRO2 (VL_API_APP_NAMESPACE_ADD_DEL_REPLY, ({
1310 if (!rv)
1311 rmp->appns_index = clib_host_to_net_u32 (appns_index);
1312 }));
1313 /* *INDENT-ON* */
Florin Corascea194d2017-10-02 00:18:51 -07001314}
1315
Florin Coras1c710452017-10-17 00:03:13 -07001316static void
1317vl_api_session_rule_add_del_t_handler (vl_api_session_rule_add_del_t * mp)
1318{
1319 vl_api_session_rule_add_del_reply_t *rmp;
1320 session_rule_add_del_args_t args;
1321 session_rule_table_add_del_args_t *table_args = &args.table_args;
Florin Coras1c710452017-10-17 00:03:13 -07001322 u8 fib_proto;
1323 int rv = 0;
1324
Dave Barachb7b92992018-10-17 10:38:51 -04001325 clib_memset (&args, 0, sizeof (args));
Florin Coras1c710452017-10-17 00:03:13 -07001326 fib_proto = mp->is_ip4 ? FIB_PROTOCOL_IP4 : FIB_PROTOCOL_IP6;
1327
1328 table_args->lcl.fp_len = mp->lcl_plen;
1329 table_args->lcl.fp_proto = fib_proto;
1330 table_args->rmt.fp_len = mp->rmt_plen;
1331 table_args->rmt.fp_proto = fib_proto;
Milan Lenco8b9a5d12017-11-24 17:12:33 +01001332 table_args->lcl_port = mp->lcl_port;
1333 table_args->rmt_port = mp->rmt_port;
Florin Coras1c710452017-10-17 00:03:13 -07001334 table_args->action_index = clib_net_to_host_u32 (mp->action_index);
1335 table_args->is_add = mp->is_add;
Florin Corasc97a7392017-11-05 23:07:07 -08001336 mp->tag[sizeof (mp->tag) - 1] = 0;
1337 table_args->tag = format (0, "%s", mp->tag);
Florin Coras1c710452017-10-17 00:03:13 -07001338 args.appns_index = clib_net_to_host_u32 (mp->appns_index);
1339 args.scope = mp->scope;
Florin Coras42324ad2017-11-18 18:45:20 -08001340 args.transport_proto = mp->transport_proto;
Florin Coras1c710452017-10-17 00:03:13 -07001341
Dave Barachb7b92992018-10-17 10:38:51 -04001342 clib_memset (&table_args->lcl.fp_addr, 0, sizeof (table_args->lcl.fp_addr));
1343 clib_memset (&table_args->rmt.fp_addr, 0, sizeof (table_args->rmt.fp_addr));
Florin Coras1c710452017-10-17 00:03:13 -07001344 ip_set (&table_args->lcl.fp_addr, mp->lcl_ip, mp->is_ip4);
1345 ip_set (&table_args->rmt.fp_addr, mp->rmt_ip, mp->is_ip4);
Florin Corasc1a42652019-02-08 18:27:29 -08001346 rv = vnet_session_rule_add_del (&args);
1347 if (rv)
1348 clib_warning ("rule add del returned: %d", rv);
Florin Corasc97a7392017-11-05 23:07:07 -08001349 vec_free (table_args->tag);
Florin Coras1c710452017-10-17 00:03:13 -07001350 REPLY_MACRO (VL_API_SESSION_RULE_ADD_DEL_REPLY);
1351}
1352
Florin Coras6c36f532017-11-03 18:32:34 -07001353static void
1354send_session_rule_details4 (mma_rule_16_t * rule, u8 is_local,
Florin Corasc97a7392017-11-05 23:07:07 -08001355 u8 transport_proto, u32 appns_index, u8 * tag,
Florin Coras6c4dae22018-01-09 06:39:23 -08001356 vl_api_registration_t * reg, u32 context)
Florin Coras6c36f532017-11-03 18:32:34 -07001357{
1358 vl_api_session_rules_details_t *rmp = 0;
1359 session_mask_or_match_4_t *match =
1360 (session_mask_or_match_4_t *) & rule->match;
1361 session_mask_or_match_4_t *mask =
1362 (session_mask_or_match_4_t *) & rule->mask;
1363
1364 rmp = vl_msg_api_alloc (sizeof (*rmp));
Dave Barachb7b92992018-10-17 10:38:51 -04001365 clib_memset (rmp, 0, sizeof (*rmp));
Florin Coras6c36f532017-11-03 18:32:34 -07001366 rmp->_vl_msg_id = ntohs (VL_API_SESSION_RULES_DETAILS);
1367 rmp->context = context;
1368
1369 rmp->is_ip4 = 1;
Dave Barach178cf492018-11-13 16:34:13 -05001370 clib_memcpy_fast (rmp->lcl_ip, &match->lcl_ip, sizeof (match->lcl_ip));
1371 clib_memcpy_fast (rmp->rmt_ip, &match->rmt_ip, sizeof (match->rmt_ip));
Florin Coras6c36f532017-11-03 18:32:34 -07001372 rmp->lcl_plen = ip4_mask_to_preflen (&mask->lcl_ip);
1373 rmp->rmt_plen = ip4_mask_to_preflen (&mask->rmt_ip);
Milan Lenco8b9a5d12017-11-24 17:12:33 +01001374 rmp->lcl_port = match->lcl_port;
1375 rmp->rmt_port = match->rmt_port;
Florin Coras6c36f532017-11-03 18:32:34 -07001376 rmp->action_index = clib_host_to_net_u32 (rule->action_index);
1377 rmp->scope =
1378 is_local ? SESSION_RULE_SCOPE_LOCAL : SESSION_RULE_SCOPE_GLOBAL;
1379 rmp->transport_proto = transport_proto;
1380 rmp->appns_index = clib_host_to_net_u32 (appns_index);
Florin Corasc97a7392017-11-05 23:07:07 -08001381 if (tag)
1382 {
Dave Barach178cf492018-11-13 16:34:13 -05001383 clib_memcpy_fast (rmp->tag, tag, vec_len (tag));
Florin Corasc97a7392017-11-05 23:07:07 -08001384 rmp->tag[vec_len (tag)] = 0;
1385 }
Florin Coras6c36f532017-11-03 18:32:34 -07001386
Florin Coras6c4dae22018-01-09 06:39:23 -08001387 vl_api_send_msg (reg, (u8 *) rmp);
Florin Coras6c36f532017-11-03 18:32:34 -07001388}
1389
1390static void
Florin Corasc97a7392017-11-05 23:07:07 -08001391send_session_rule_details6 (mma_rule_40_t * rule, u8 is_local,
1392 u8 transport_proto, u32 appns_index, u8 * tag,
Florin Coras6c4dae22018-01-09 06:39:23 -08001393 vl_api_registration_t * reg, u32 context)
Florin Coras6c36f532017-11-03 18:32:34 -07001394{
1395 vl_api_session_rules_details_t *rmp = 0;
1396 session_mask_or_match_6_t *match =
1397 (session_mask_or_match_6_t *) & rule->match;
1398 session_mask_or_match_6_t *mask =
1399 (session_mask_or_match_6_t *) & rule->mask;
1400
1401 rmp = vl_msg_api_alloc (sizeof (*rmp));
Dave Barachb7b92992018-10-17 10:38:51 -04001402 clib_memset (rmp, 0, sizeof (*rmp));
Florin Coras6c36f532017-11-03 18:32:34 -07001403 rmp->_vl_msg_id = ntohs (VL_API_SESSION_RULES_DETAILS);
1404 rmp->context = context;
1405
1406 rmp->is_ip4 = 0;
Dave Barach178cf492018-11-13 16:34:13 -05001407 clib_memcpy_fast (rmp->lcl_ip, &match->lcl_ip, sizeof (match->lcl_ip));
1408 clib_memcpy_fast (rmp->rmt_ip, &match->rmt_ip, sizeof (match->rmt_ip));
Florin Coras6c36f532017-11-03 18:32:34 -07001409 rmp->lcl_plen = ip6_mask_to_preflen (&mask->lcl_ip);
1410 rmp->rmt_plen = ip6_mask_to_preflen (&mask->rmt_ip);
Milan Lenco8b9a5d12017-11-24 17:12:33 +01001411 rmp->lcl_port = match->lcl_port;
1412 rmp->rmt_port = match->rmt_port;
Florin Coras6c36f532017-11-03 18:32:34 -07001413 rmp->action_index = clib_host_to_net_u32 (rule->action_index);
Florin Corasc97a7392017-11-05 23:07:07 -08001414 rmp->scope =
1415 is_local ? SESSION_RULE_SCOPE_LOCAL : SESSION_RULE_SCOPE_GLOBAL;
Florin Coras6c36f532017-11-03 18:32:34 -07001416 rmp->transport_proto = transport_proto;
1417 rmp->appns_index = clib_host_to_net_u32 (appns_index);
Florin Corasc97a7392017-11-05 23:07:07 -08001418 if (tag)
1419 {
Dave Barach178cf492018-11-13 16:34:13 -05001420 clib_memcpy_fast (rmp->tag, tag, vec_len (tag));
Florin Corasc97a7392017-11-05 23:07:07 -08001421 rmp->tag[vec_len (tag)] = 0;
1422 }
Florin Coras6c36f532017-11-03 18:32:34 -07001423
Florin Coras6c4dae22018-01-09 06:39:23 -08001424 vl_api_send_msg (reg, (u8 *) rmp);
Florin Coras6c36f532017-11-03 18:32:34 -07001425}
1426
1427static void
1428send_session_rules_table_details (session_rules_table_t * srt, u8 fib_proto,
Florin Corasc97a7392017-11-05 23:07:07 -08001429 u8 tp, u8 is_local, u32 appns_index,
Florin Coras6c4dae22018-01-09 06:39:23 -08001430 vl_api_registration_t * reg, u32 context)
Florin Coras6c36f532017-11-03 18:32:34 -07001431{
1432 mma_rule_16_t *rule16;
1433 mma_rule_40_t *rule40;
1434 mma_rules_table_16_t *srt16;
1435 mma_rules_table_40_t *srt40;
Florin Corasc97a7392017-11-05 23:07:07 -08001436 u32 ri;
Florin Coras6c36f532017-11-03 18:32:34 -07001437
Florin Corasc97a7392017-11-05 23:07:07 -08001438 if (is_local || fib_proto == FIB_PROTOCOL_IP4)
Florin Coras6c36f532017-11-03 18:32:34 -07001439 {
Florin Corasc97a7392017-11-05 23:07:07 -08001440 u8 *tag = 0;
1441 /* *INDENT-OFF* */
1442 srt16 = &srt->session_rules_tables_16;
1443 pool_foreach (rule16, srt16->rules, ({
1444 ri = mma_rules_table_rule_index_16 (srt16, rule16);
1445 tag = session_rules_table_rule_tag (srt, ri, 1);
1446 send_session_rule_details4 (rule16, is_local, tp, appns_index, tag,
Florin Coras6c4dae22018-01-09 06:39:23 -08001447 reg, context);
Florin Corasc97a7392017-11-05 23:07:07 -08001448 }));
1449 /* *INDENT-ON* */
1450 }
1451 if (is_local || fib_proto == FIB_PROTOCOL_IP6)
1452 {
1453 u8 *tag = 0;
1454 /* *INDENT-OFF* */
1455 srt40 = &srt->session_rules_tables_40;
1456 pool_foreach (rule40, srt40->rules, ({
1457 ri = mma_rules_table_rule_index_40 (srt40, rule40);
1458 tag = session_rules_table_rule_tag (srt, ri, 1);
1459 send_session_rule_details6 (rule40, is_local, tp, appns_index, tag,
Florin Coras6c4dae22018-01-09 06:39:23 -08001460 reg, context);
Florin Corasc97a7392017-11-05 23:07:07 -08001461 }));
1462 /* *INDENT-ON* */
Florin Coras6c36f532017-11-03 18:32:34 -07001463 }
1464}
1465
1466static void
1467vl_api_session_rules_dump_t_handler (vl_api_one_map_server_dump_t * mp)
1468{
Florin Coras6c4dae22018-01-09 06:39:23 -08001469 vl_api_registration_t *reg;
Florin Coras6c36f532017-11-03 18:32:34 -07001470 session_table_t *st;
Florin Corasc97a7392017-11-05 23:07:07 -08001471 u8 tp;
Florin Coras6c36f532017-11-03 18:32:34 -07001472
Florin Coras6c4dae22018-01-09 06:39:23 -08001473 reg = vl_api_client_index_to_registration (mp->client_index);
1474 if (!reg)
Florin Coras6c36f532017-11-03 18:32:34 -07001475 return;
1476
1477 /* *INDENT-OFF* */
1478 session_table_foreach (st, ({
Florin Corasc97a7392017-11-05 23:07:07 -08001479 for (tp = 0; tp < TRANSPORT_N_PROTO; tp++)
1480 {
1481 send_session_rules_table_details (&st->session_rules[tp],
1482 st->active_fib_proto, tp,
Florin Coras6c4dae22018-01-09 06:39:23 -08001483 st->is_local, st->appns_index, reg,
Florin Corasc97a7392017-11-05 23:07:07 -08001484 mp->context);
1485 }
Florin Coras6c36f532017-11-03 18:32:34 -07001486 }));
1487 /* *INDENT-ON* */
1488}
1489
Florin Coras371ca502018-02-21 12:07:41 -08001490static void
Nathan Skrzypczak79f89532019-09-13 11:08:13 +02001491vl_api_app_add_cert_key_pair_t_handler (vl_api_app_add_cert_key_pair_t * mp)
Florin Coras371ca502018-02-21 12:07:41 -08001492{
Nathan Skrzypczak79f89532019-09-13 11:08:13 +02001493 vl_api_app_add_cert_key_pair_reply_t *rmp;
1494 vnet_app_add_cert_key_pair_args_t _a, *a = &_a;
1495 u32 certkey_len, key_len, cert_len;
Florin Coras371ca502018-02-21 12:07:41 -08001496 int rv = 0;
Nathan Skrzypczak79f89532019-09-13 11:08:13 +02001497 if (session_main_is_enabled () == 0)
Florin Coras371ca502018-02-21 12:07:41 -08001498 {
1499 rv = VNET_API_ERROR_FEATURE_DISABLED;
1500 goto done;
1501 }
Nathan Skrzypczak79f89532019-09-13 11:08:13 +02001502
Florin Coras371ca502018-02-21 12:07:41 -08001503 cert_len = clib_net_to_host_u16 (mp->cert_len);
Florin Coras5090c572018-03-18 08:22:17 -07001504 if (cert_len > 10000)
1505 {
1506 rv = VNET_API_ERROR_INVALID_VALUE;
1507 goto done;
1508 }
Nathan Skrzypczak79f89532019-09-13 11:08:13 +02001509
1510 certkey_len = clib_net_to_host_u16 (mp->certkey_len);
1511 if (certkey_len < cert_len)
Florin Coras371ca502018-02-21 12:07:41 -08001512 {
Nathan Skrzypczak79f89532019-09-13 11:08:13 +02001513 rv = VNET_API_ERROR_INVALID_VALUE;
1514 goto done;
Florin Coras371ca502018-02-21 12:07:41 -08001515 }
Nathan Skrzypczak79f89532019-09-13 11:08:13 +02001516
1517 key_len = certkey_len - cert_len;
1518 if (key_len > 10000)
1519 {
1520 rv = VNET_API_ERROR_INVALID_VALUE;
1521 goto done;
1522 }
1523
1524 clib_memset (a, 0, sizeof (*a));
1525 vec_validate (a->cert, cert_len);
1526 vec_validate (a->key, key_len);
1527 clib_memcpy_fast (a->cert, mp->certkey, cert_len);
1528 clib_memcpy_fast (a->key, mp->certkey + cert_len, key_len);
1529 rv = vnet_app_add_cert_key_pair (a);
Florin Coras371ca502018-02-21 12:07:41 -08001530 vec_free (a->cert);
Nathan Skrzypczak79f89532019-09-13 11:08:13 +02001531 vec_free (a->key);
1532
Florin Coras371ca502018-02-21 12:07:41 -08001533done:
Nathan Skrzypczak79f89532019-09-13 11:08:13 +02001534 /* *INDENT-OFF* */
1535 REPLY_MACRO2 (VL_API_APP_ADD_CERT_KEY_PAIR_REPLY, ({
1536 if (!rv)
Nathan Skrzypczak45ec9f42019-11-06 14:47:40 +01001537 rmp->index = clib_host_to_net_u32 (a->index);
Nathan Skrzypczak79f89532019-09-13 11:08:13 +02001538 }));
1539 /* *INDENT-ON* */
Florin Coras371ca502018-02-21 12:07:41 -08001540}
1541
1542static void
Nathan Skrzypczak79f89532019-09-13 11:08:13 +02001543vl_api_app_del_cert_key_pair_t_handler (vl_api_app_del_cert_key_pair_t * mp)
Florin Coras371ca502018-02-21 12:07:41 -08001544{
Nathan Skrzypczak79f89532019-09-13 11:08:13 +02001545 vl_api_app_del_cert_key_pair_reply_t *rmp;
Nathan Skrzypczak45ec9f42019-11-06 14:47:40 +01001546 u32 ckpair_index;
Florin Coras371ca502018-02-21 12:07:41 -08001547 int rv = 0;
Nathan Skrzypczak79f89532019-09-13 11:08:13 +02001548 if (session_main_is_enabled () == 0)
1549 {
1550 rv = VNET_API_ERROR_FEATURE_DISABLED;
1551 goto done;
1552 }
Nathan Skrzypczak45ec9f42019-11-06 14:47:40 +01001553 ckpair_index = clib_net_to_host_u32 (mp->index);
1554 rv = vnet_app_del_cert_key_pair (ckpair_index);
Nathan Skrzypczak79f89532019-09-13 11:08:13 +02001555
1556done:
Nathan Skrzypczak45ec9f42019-11-06 14:47:40 +01001557 REPLY_MACRO (VL_API_APP_DEL_CERT_KEY_PAIR_REPLY);
Nathan Skrzypczak79f89532019-09-13 11:08:13 +02001558}
1559
1560/* ### WILL BE DEPRECATED POST 20.01 ### */
1561static void
1562vl_api_application_tls_cert_add_t_handler (vl_api_application_tls_cert_add_t *
1563 mp)
1564{
1565 vl_api_application_tls_cert_add_reply_t *rmp;
1566 app_cert_key_pair_t *ckpair;
1567 application_t *app;
1568 u32 cert_len;
1569 int rv = 0;
1570 if (session_main_is_enabled () == 0)
Florin Coras371ca502018-02-21 12:07:41 -08001571 {
1572 rv = VNET_API_ERROR_FEATURE_DISABLED;
1573 goto done;
1574 }
Florin Corase3e2f072018-03-04 07:24:30 -08001575 if (!(app = application_lookup (mp->client_index)))
1576 {
1577 rv = VNET_API_ERROR_APPLICATION_NOT_ATTACHED;
1578 goto done;
1579 }
Nathan Skrzypczak79f89532019-09-13 11:08:13 +02001580 cert_len = clib_net_to_host_u16 (mp->cert_len);
1581 if (cert_len > 10000)
1582 {
1583 rv = VNET_API_ERROR_INVALID_VALUE;
1584 goto done;
1585 }
1586 ckpair = app_cert_key_pair_get_default ();
1587 vec_validate (ckpair->cert, cert_len);
1588 clib_memcpy_fast (ckpair->cert, mp->cert, cert_len);
1589
1590done:
1591 REPLY_MACRO (VL_API_APPLICATION_TLS_CERT_ADD_REPLY);
1592}
1593
1594/* ### WILL BE DEPRECATED POST 20.01 ### */
1595static void
1596vl_api_application_tls_key_add_t_handler (vl_api_application_tls_key_add_t *
1597 mp)
1598{
1599 vl_api_application_tls_key_add_reply_t *rmp;
1600 app_cert_key_pair_t *ckpair;
1601 application_t *app;
1602 u32 key_len;
1603 int rv = 0;
1604 if (session_main_is_enabled () == 0)
1605 {
1606 rv = VNET_API_ERROR_FEATURE_DISABLED;
1607 goto done;
1608 }
1609 if (!(app = application_lookup (mp->client_index)))
1610 {
1611 rv = VNET_API_ERROR_APPLICATION_NOT_ATTACHED;
1612 goto done;
1613 }
Florin Coras371ca502018-02-21 12:07:41 -08001614 key_len = clib_net_to_host_u16 (mp->key_len);
Florin Coras5090c572018-03-18 08:22:17 -07001615 if (key_len > 10000)
1616 {
1617 rv = VNET_API_ERROR_INVALID_VALUE;
1618 goto done;
1619 }
Nathan Skrzypczak79f89532019-09-13 11:08:13 +02001620 ckpair = app_cert_key_pair_get_default ();
1621 vec_validate (ckpair->key, key_len);
1622 clib_memcpy_fast (ckpair->key, mp->key, key_len);
Florin Coras371ca502018-02-21 12:07:41 -08001623done:
1624 REPLY_MACRO (VL_API_APPLICATION_TLS_KEY_ADD_REPLY);
1625}
1626
Florin Coras6cf30ad2017-04-04 23:08:23 -07001627static clib_error_t *
1628application_reaper_cb (u32 client_index)
Dave Barach68b0fb02017-02-28 15:15:56 -05001629{
Florin Coras6cf30ad2017-04-04 23:08:23 -07001630 application_t *app = application_lookup (client_index);
1631 vnet_app_detach_args_t _a, *a = &_a;
1632 if (app)
1633 {
Florin Coras15531972018-08-12 23:50:53 -07001634 a->app_index = app->app_index;
Florin Coras053a0e42018-11-13 15:52:38 -08001635 a->api_client_index = client_index;
Florin Coras6cf30ad2017-04-04 23:08:23 -07001636 vnet_application_detach (a);
1637 }
1638 return 0;
Dave Barach68b0fb02017-02-28 15:15:56 -05001639}
1640
Florin Coras6cf30ad2017-04-04 23:08:23 -07001641VL_MSG_API_REAPER_FUNCTION (application_reaper_cb);
Dave Barach68b0fb02017-02-28 15:15:56 -05001642
1643#define vl_msg_name_crc_list
1644#include <vnet/vnet_all_api_h.h>
1645#undef vl_msg_name_crc_list
1646
1647static void
1648setup_message_id_table (api_main_t * am)
1649{
1650#define _(id,n,crc) vl_msg_api_add_msg_name_crc (am, #n "_" #crc, id);
1651 foreach_vl_msg_name_crc_session;
1652#undef _
1653}
1654
1655/*
1656 * session_api_hookup
1657 * Add uri's API message handlers to the table.
Jim Thompsonf324dec2019-04-08 03:22:21 -05001658 * vlib has already mapped shared memory and
Dave Barach68b0fb02017-02-28 15:15:56 -05001659 * added the client registration handlers.
1660 * See .../open-repo/vlib/memclnt_vlib.c:memclnt_process()
1661 */
1662static clib_error_t *
1663session_api_hookup (vlib_main_t * vm)
1664{
Dave Barach39d69112019-11-27 11:42:13 -05001665 api_main_t *am = vlibapi_get_main ();
Dave Barach68b0fb02017-02-28 15:15:56 -05001666
1667#define _(N,n) \
1668 vl_msg_api_set_handlers(VL_API_##N, #n, \
1669 vl_api_##n##_t_handler, \
1670 vl_noop_handler, \
1671 vl_api_##n##_t_endian, \
1672 vl_api_##n##_t_print, \
1673 sizeof(vl_api_##n##_t), 1);
1674 foreach_session_api_msg;
1675#undef _
1676
1677 /*
1678 * Messages which bounce off the data-plane to
1679 * an API client. Simply tells the message handling infra not
1680 * to free the message.
1681 *
1682 * Bounced message handlers MUST NOT block the data plane
1683 */
1684 am->message_bounce[VL_API_CONNECT_URI] = 1;
1685 am->message_bounce[VL_API_CONNECT_SOCK] = 1;
1686
1687 /*
1688 * Set up the (msg_name, crc, message-id) table
1689 */
1690 setup_message_id_table (am);
1691
1692 return 0;
1693}
1694
1695VLIB_API_INIT_FUNCTION (session_api_hookup);
Florin Coras6cf30ad2017-04-04 23:08:23 -07001696
Dave Barach68b0fb02017-02-28 15:15:56 -05001697/*
1698 * fd.io coding-style-patch-verification: ON
1699 *
1700 * Local Variables:
1701 * eval: (c-set-style "gnu")
1702 * End:
1703 */