blob: 4ec09089cd8ec85bf5d9938364001bbd6a5853aa [file] [log] [blame]
Florin Coras697faea2018-06-27 17:10:49 -07001/*
Florin Coras5e062572019-03-14 19:07:51 -07002 * Copyright (c) 2018-2019 Cisco and/or its affiliates.
Florin Coras697faea2018-06-27 17:10:49 -07003 * Licensed under the Apache License, Version 2.0 (the "License");
4 * you may not use this
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 <vcl/vcl_private.h>
17#include <vlibmemory/api.h>
18#include <vpp/api/vpe_msg_enum.h>
19
20#define vl_typedefs /* define message structures */
21#include <vpp/api/vpe_all_api_h.h>
22#undef vl_typedefs
23
24/* declare message handlers for each api */
25
26#define vl_endianfun /* define message structures */
27#include <vpp/api/vpe_all_api_h.h>
28#undef vl_endianfun
29
30/* instantiate all the print functions we know about */
31#define vl_print(handle, ...)
32#define vl_printfun
33#include <vpp/api/vpe_all_api_h.h>
34#undef vl_printfun
35
Florin Coras00e01d32019-10-21 16:07:46 -070036static u8 *
Florin Coras697faea2018-06-27 17:10:49 -070037format_api_error (u8 * s, va_list * args)
38{
39 i32 error = va_arg (*args, u32);
40 uword *p;
41
42 p = hash_get (vcm->error_string_by_error_number, -error);
43
44 if (p)
45 s = format (s, "%s (%d)", p[0], error);
46 else
47 s = format (s, "%d", error);
48 return s;
49}
50
51static void
52 vl_api_session_enable_disable_reply_t_handler
53 (vl_api_session_enable_disable_reply_t * mp)
54{
55 if (mp->retval)
56 {
57 clib_warning ("VCL<%d>: session_enable_disable failed: %U", getpid (),
58 format_api_error, ntohl (mp->retval));
59 }
60 else
61 vcm->app_state = STATE_APP_ENABLED;
62}
63
Florin Corasd85de682018-11-29 17:02:29 -080064static u64
65vcl_vpp_worker_segment_handle (u32 wrk_index)
66{
67 return (VCL_INVALID_SEGMENT_HANDLE - wrk_index - 1);
68}
69
70static void
Florin Coras458089b2019-08-21 16:20:44 -070071vl_api_app_attach_reply_t_handler (vl_api_app_attach_reply_t * mp)
Florin Coras697faea2018-06-27 17:10:49 -070072{
Florin Coras134a9962018-08-28 11:32:04 -070073 vcl_worker_t *wrk = vcl_worker_get (0);
Florin Coras458089b2019-08-21 16:20:44 -070074 svm_msg_q_t *ctrl_mq;
Florin Corasd85de682018-11-29 17:02:29 -080075 u64 segment_handle;
Jakub Grajciarb4e5e502020-01-31 09:35:29 +010076 int *fds = 0, i, rv;
Florin Coras99368312018-08-02 10:45:44 -070077 u32 n_fds = 0;
Jakub Grajciarb4e5e502020-01-31 09:35:29 +010078 char *segment_name = 0;
Florin Coras697faea2018-06-27 17:10:49 -070079
Florin Coras697faea2018-06-27 17:10:49 -070080 if (mp->retval)
81 {
Florin Corasa5efca32019-03-20 08:33:10 -070082 VERR ("attach failed: %U", format_api_error, ntohl (mp->retval));
83 goto failed;
Florin Coras697faea2018-06-27 17:10:49 -070084 }
85
Florin Coras458089b2019-08-21 16:20:44 -070086 wrk->app_event_queue = uword_to_pointer (mp->app_mq, svm_msg_q_t *);
87 ctrl_mq = uword_to_pointer (mp->vpp_ctrl_mq, svm_msg_q_t *);
88 vec_validate (wrk->vpp_event_queues, mp->vpp_ctrl_mq_thread);
89 wrk->vpp_event_queues[mp->vpp_ctrl_mq_thread] = ctrl_mq;
Florin Coras22ba3302019-08-29 22:45:04 -070090 vcm->ctrl_mq = wrk->ctrl_mq = ctrl_mq;
Florin Corasd85de682018-11-29 17:02:29 -080091 segment_handle = clib_net_to_host_u64 (mp->segment_handle);
92 if (segment_handle == VCL_INVALID_SEGMENT_HANDLE)
93 {
Florin Corasa5efca32019-03-20 08:33:10 -070094 VERR ("invalid segment handle");
95 goto failed;
Florin Corasd85de682018-11-29 17:02:29 -080096 }
97
Florin Coras99368312018-08-02 10:45:44 -070098 if (mp->n_fds)
Florin Coras697faea2018-06-27 17:10:49 -070099 {
Florin Coras99368312018-08-02 10:45:44 -0700100 vec_validate (fds, mp->n_fds);
Florin Corasd4c70922019-11-28 14:21:21 -0800101 if (vl_socket_client_recv_fd_msg2 (&wrk->bapi_sock_ctx, fds, mp->n_fds,
102 5))
Florin Coras617574d2019-07-01 07:32:31 -0700103 goto failed;
Florin Coras99368312018-08-02 10:45:44 -0700104
105 if (mp->fd_flags & SESSION_FD_F_VPP_MQ_SEGMENT)
Florin Corasd85de682018-11-29 17:02:29 -0800106 if (vcl_segment_attach (vcl_vpp_worker_segment_handle (0),
107 "vpp-mq-seg", SSVM_SEGMENT_MEMFD,
108 fds[n_fds++]))
Florin Corasa5efca32019-03-20 08:33:10 -0700109 goto failed;
Florin Coras99368312018-08-02 10:45:44 -0700110
111 if (mp->fd_flags & SESSION_FD_F_MEMFD_SEGMENT)
Jakub Grajciarb4e5e502020-01-31 09:35:29 +0100112 {
113 segment_name = vl_api_from_api_to_new_c_string (&mp->segment_name);
114 rv =
115 vcl_segment_attach (segment_handle, segment_name,
116 SSVM_SEGMENT_MEMFD, fds[n_fds++]);
117 vec_free (segment_name);
118 if (rv != 0)
119 goto failed;
120 }
121
Florin Coras99368312018-08-02 10:45:44 -0700122
123 if (mp->fd_flags & SESSION_FD_F_MQ_EVENTFD)
124 {
Florin Coras134a9962018-08-28 11:32:04 -0700125 svm_msg_q_set_consumer_eventfd (wrk->app_event_queue, fds[n_fds]);
126 vcl_mq_epoll_add_evfd (wrk, wrk->app_event_queue);
Florin Coras99368312018-08-02 10:45:44 -0700127 n_fds++;
128 }
129
130 vec_free (fds);
Florin Coras697faea2018-06-27 17:10:49 -0700131 }
Florin Coras99368312018-08-02 10:45:44 -0700132 else
Florin Coras697faea2018-06-27 17:10:49 -0700133 {
Jakub Grajciarb4e5e502020-01-31 09:35:29 +0100134 segment_name = vl_api_from_api_to_new_c_string (&mp->segment_name);
135 rv =
136 vcl_segment_attach (segment_handle, segment_name, SSVM_SEGMENT_SHM,
137 -1);
138 vec_free (segment_name);
139 if (rv != 0)
Florin Corasa5efca32019-03-20 08:33:10 -0700140 goto failed;
Florin Coras697faea2018-06-27 17:10:49 -0700141 }
142
Florin Corasc1f5a432018-11-20 11:31:26 -0800143 vcm->app_index = clib_net_to_host_u32 (mp->app_index);
Florin Coras697faea2018-06-27 17:10:49 -0700144 vcm->app_state = STATE_APP_ATTACHED;
Florin Corasa5efca32019-03-20 08:33:10 -0700145 return;
146
147failed:
148 vcm->app_state = STATE_APP_FAILED;
Florin Coras617574d2019-07-01 07:32:31 -0700149 for (i = clib_max (n_fds - 1, 0); i < vec_len (fds); i++)
150 close (fds[i]);
151 vec_free (fds);
Florin Coras697faea2018-06-27 17:10:49 -0700152}
153
154static void
Florin Coras134a9962018-08-28 11:32:04 -0700155vl_api_app_worker_add_del_reply_t_handler (vl_api_app_worker_add_del_reply_t *
156 mp)
157{
Jakub Grajciarb4e5e502020-01-31 09:35:29 +0100158 int n_fds = 0, *fds = 0, i, rv;
Florin Corasd85de682018-11-29 17:02:29 -0800159 u64 segment_handle;
Florin Coras134a9962018-08-28 11:32:04 -0700160 vcl_worker_t *wrk;
Florin Corasab2f6db2018-08-31 14:31:41 -0700161 u32 wrk_index;
Jakub Grajciarb4e5e502020-01-31 09:35:29 +0100162 char *segment_name = 0;
Florin Coras134a9962018-08-28 11:32:04 -0700163
164 if (mp->retval)
165 {
166 clib_warning ("VCL<%d>: add/del worker failed: %U", getpid (),
167 format_api_error, ntohl (mp->retval));
168 goto failed;
169 }
Florin Coras053a0e42018-11-13 15:52:38 -0800170
Florin Coras3348a4c2018-09-07 17:09:35 -0700171 if (!mp->is_add)
172 return;
173
Florin Corasdc2e2512018-12-03 17:47:26 -0800174 wrk_index = mp->context;
Florin Coras01f3f892018-12-02 12:45:53 -0800175 wrk = vcl_worker_get_if_valid (wrk_index);
176 if (!wrk)
177 return;
178
Florin Corasdc2e2512018-12-03 17:47:26 -0800179 wrk->vpp_wrk_index = clib_net_to_host_u32 (mp->wrk_index);
Florin Coras134a9962018-08-28 11:32:04 -0700180 wrk->app_event_queue = uword_to_pointer (mp->app_event_queue_address,
181 svm_msg_q_t *);
Florin Coras22ba3302019-08-29 22:45:04 -0700182 wrk->ctrl_mq = vcm->ctrl_mq;
Florin Coras134a9962018-08-28 11:32:04 -0700183
Florin Corasd85de682018-11-29 17:02:29 -0800184 segment_handle = clib_net_to_host_u64 (mp->segment_handle);
185 if (segment_handle == VCL_INVALID_SEGMENT_HANDLE)
186 {
187 clib_warning ("invalid segment handle");
Florin Coras01f3f892018-12-02 12:45:53 -0800188 goto failed;
Florin Corasd85de682018-11-29 17:02:29 -0800189 }
190
Florin Coras134a9962018-08-28 11:32:04 -0700191 if (mp->n_fds)
192 {
193 vec_validate (fds, mp->n_fds);
Florin Corasd4c70922019-11-28 14:21:21 -0800194 if (vl_socket_client_recv_fd_msg2 (&wrk->bapi_sock_ctx, fds, mp->n_fds,
195 5))
Florin Coras617574d2019-07-01 07:32:31 -0700196 goto failed;
Florin Coras134a9962018-08-28 11:32:04 -0700197
198 if (mp->fd_flags & SESSION_FD_F_VPP_MQ_SEGMENT)
Florin Coras01f3f892018-12-02 12:45:53 -0800199 if (vcl_segment_attach (vcl_vpp_worker_segment_handle (wrk_index),
200 "vpp-worker-seg", SSVM_SEGMENT_MEMFD,
201 fds[n_fds++]))
Florin Coras134a9962018-08-28 11:32:04 -0700202 goto failed;
203
204 if (mp->fd_flags & SESSION_FD_F_MEMFD_SEGMENT)
Jakub Grajciarb4e5e502020-01-31 09:35:29 +0100205 {
206 segment_name = vl_api_from_api_to_new_c_string (&mp->segment_name);
207 rv =
208 vcl_segment_attach (segment_handle, segment_name,
209 SSVM_SEGMENT_MEMFD, fds[n_fds++]);
210 vec_free (segment_name);
211 if (rv != 0)
212 goto failed;
213 }
Florin Coras134a9962018-08-28 11:32:04 -0700214
215 if (mp->fd_flags & SESSION_FD_F_MQ_EVENTFD)
216 {
217 svm_msg_q_set_consumer_eventfd (wrk->app_event_queue, fds[n_fds]);
218 vcl_mq_epoll_add_evfd (wrk, wrk->app_event_queue);
219 n_fds++;
220 }
221
222 vec_free (fds);
223 }
224 else
225 {
Jakub Grajciarb4e5e502020-01-31 09:35:29 +0100226 segment_name = vl_api_from_api_to_new_c_string (&mp->segment_name);
227 rv =
228 vcl_segment_attach (segment_handle, segment_name, SSVM_SEGMENT_SHM,
229 -1);
230 vec_free (segment_name);
231 if (rv != 0)
Florin Coras134a9962018-08-28 11:32:04 -0700232 goto failed;
233 }
234 vcm->app_state = STATE_APP_READY;
Florin Coras053a0e42018-11-13 15:52:38 -0800235 VDBG (0, "worker %u vpp-worker %u added", wrk_index, wrk->vpp_wrk_index);
Florin Coras134a9962018-08-28 11:32:04 -0700236 return;
237
238failed:
239 vcm->app_state = STATE_APP_FAILED;
Florin Coras617574d2019-07-01 07:32:31 -0700240 for (i = clib_max (n_fds - 1, 0); i < vec_len (fds); i++)
241 close (fds[i]);
242 vec_free (fds);
Florin Coras134a9962018-08-28 11:32:04 -0700243}
244
245static void
Ping Yu34a3a082018-11-30 19:16:17 -0500246 vl_api_application_tls_cert_add_reply_t_handler
247 (vl_api_application_tls_cert_add_reply_t * mp)
248{
249 if (mp->retval)
Florin Coras458089b2019-08-21 16:20:44 -0700250 VDBG (0, "add cert failed: %U", format_api_error, ntohl (mp->retval));
251 vcm->app_state = STATE_APP_READY;
Ping Yu34a3a082018-11-30 19:16:17 -0500252}
253
254static void
255 vl_api_application_tls_key_add_reply_t_handler
256 (vl_api_application_tls_key_add_reply_t * mp)
257{
258 if (mp->retval)
Florin Coras458089b2019-08-21 16:20:44 -0700259 VDBG (0, "add key failed: %U", format_api_error, ntohl (mp->retval));
260 vcm->app_state = STATE_APP_READY;
Ping Yu34a3a082018-11-30 19:16:17 -0500261}
262
Florin Coras99368312018-08-02 10:45:44 -0700263#define foreach_sock_msg \
264_(SESSION_ENABLE_DISABLE_REPLY, session_enable_disable_reply) \
Florin Coras458089b2019-08-21 16:20:44 -0700265_(APP_ATTACH_REPLY, app_attach_reply) \
Ping Yu34a3a082018-11-30 19:16:17 -0500266_(APPLICATION_TLS_CERT_ADD_REPLY, application_tls_cert_add_reply) \
267_(APPLICATION_TLS_KEY_ADD_REPLY, application_tls_key_add_reply) \
Florin Coras134a9962018-08-28 11:32:04 -0700268_(APP_WORKER_ADD_DEL_REPLY, app_worker_add_del_reply) \
Florin Coras697faea2018-06-27 17:10:49 -0700269
270void
271vppcom_api_hookup (void)
272{
Florin Coras60116992018-08-27 09:52:18 -0700273#define _(N, n) \
274 vl_msg_api_set_handlers(VL_API_##N, #n, \
Florin Coras697faea2018-06-27 17:10:49 -0700275 vl_api_##n##_t_handler, \
276 vl_noop_handler, \
277 vl_api_##n##_t_endian, \
278 vl_api_##n##_t_print, \
279 sizeof(vl_api_##n##_t), 1);
280 foreach_sock_msg;
281#undef _
282}
283
284/*
285 * VPP-API message functions
286 */
287void
288vppcom_send_session_enable_disable (u8 is_enable)
289{
Florin Coras47c40e22018-11-26 17:01:36 -0800290 vcl_worker_t *wrk = vcl_worker_get_current ();
Florin Coras697faea2018-06-27 17:10:49 -0700291 vl_api_session_enable_disable_t *bmp;
292 bmp = vl_msg_api_alloc (sizeof (*bmp));
293 memset (bmp, 0, sizeof (*bmp));
294
295 bmp->_vl_msg_id = ntohs (VL_API_SESSION_ENABLE_DISABLE);
Florin Coras47c40e22018-11-26 17:01:36 -0800296 bmp->client_index = wrk->my_client_index;
Florin Coras697faea2018-06-27 17:10:49 -0700297 bmp->context = htonl (0xfeedface);
298 bmp->is_enable = is_enable;
Florin Coras47c40e22018-11-26 17:01:36 -0800299 vl_msg_api_send_shmem (wrk->vl_input_queue, (u8 *) & bmp);
Florin Coras697faea2018-06-27 17:10:49 -0700300}
301
302void
303vppcom_app_send_attach (void)
304{
Florin Coras47c40e22018-11-26 17:01:36 -0800305 vcl_worker_t *wrk = vcl_worker_get_current ();
Florin Corasd747c3c2019-10-20 19:55:56 -0700306 u8 tls_engine = CRYPTO_ENGINE_OPENSSL;
Florin Coras458089b2019-08-21 16:20:44 -0700307 vl_api_app_attach_t *bmp;
Florin Coras697faea2018-06-27 17:10:49 -0700308 u8 nsid_len = vec_len (vcm->cfg.namespace_id);
309 u8 app_is_proxy = (vcm->cfg.app_proxy_transport_tcp ||
310 vcm->cfg.app_proxy_transport_udp);
311
Florin Corasd747c3c2019-10-20 19:55:56 -0700312 tls_engine = vcm->cfg.tls_engine ? vcm->cfg.tls_engine : tls_engine;
313
Florin Coras697faea2018-06-27 17:10:49 -0700314 bmp = vl_msg_api_alloc (sizeof (*bmp));
315 memset (bmp, 0, sizeof (*bmp));
316
Florin Coras458089b2019-08-21 16:20:44 -0700317 bmp->_vl_msg_id = ntohs (VL_API_APP_ATTACH);
Florin Coras47c40e22018-11-26 17:01:36 -0800318 bmp->client_index = wrk->my_client_index;
Florin Coras697faea2018-06-27 17:10:49 -0700319 bmp->context = htonl (0xfeedface);
320 bmp->options[APP_OPTIONS_FLAGS] =
321 APP_OPTIONS_FLAGS_ACCEPT_REDIRECT | APP_OPTIONS_FLAGS_ADD_SEGMENT |
322 (vcm->cfg.app_scope_local ? APP_OPTIONS_FLAGS_USE_LOCAL_SCOPE : 0) |
323 (vcm->cfg.app_scope_global ? APP_OPTIONS_FLAGS_USE_GLOBAL_SCOPE : 0) |
Florin Coras54693d22018-07-17 10:46:29 -0700324 (app_is_proxy ? APP_OPTIONS_FLAGS_IS_PROXY : 0) |
Florin Coras99368312018-08-02 10:45:44 -0700325 (vcm->cfg.use_mq_eventfd ? APP_OPTIONS_FLAGS_EVT_MQ_USE_EVENTFD : 0);
Florin Coras697faea2018-06-27 17:10:49 -0700326 bmp->options[APP_OPTIONS_PROXY_TRANSPORT] =
327 (u64) ((vcm->cfg.app_proxy_transport_tcp ? 1 << TRANSPORT_PROTO_TCP : 0) |
328 (vcm->cfg.app_proxy_transport_udp ? 1 << TRANSPORT_PROTO_UDP : 0));
329 bmp->options[APP_OPTIONS_SEGMENT_SIZE] = vcm->cfg.segment_size;
330 bmp->options[APP_OPTIONS_ADD_SEGMENT_SIZE] = vcm->cfg.add_segment_size;
331 bmp->options[APP_OPTIONS_RX_FIFO_SIZE] = vcm->cfg.rx_fifo_size;
332 bmp->options[APP_OPTIONS_TX_FIFO_SIZE] = vcm->cfg.tx_fifo_size;
333 bmp->options[APP_OPTIONS_PREALLOC_FIFO_PAIRS] =
334 vcm->cfg.preallocated_fifo_pairs;
335 bmp->options[APP_OPTIONS_EVT_QUEUE_SIZE] = vcm->cfg.event_queue_size;
Florin Corasd747c3c2019-10-20 19:55:56 -0700336 bmp->options[APP_OPTIONS_TLS_ENGINE] = tls_engine;
Florin Coras697faea2018-06-27 17:10:49 -0700337 if (nsid_len)
338 {
Jakub Grajciarb4e5e502020-01-31 09:35:29 +0100339 vl_api_vec_to_api_string (vcm->cfg.namespace_id, &bmp->namespace_id);
Florin Coras697faea2018-06-27 17:10:49 -0700340 bmp->options[APP_OPTIONS_NAMESPACE_SECRET] = vcm->cfg.namespace_secret;
341 }
Florin Coras47c40e22018-11-26 17:01:36 -0800342 vl_msg_api_send_shmem (wrk->vl_input_queue, (u8 *) & bmp);
Florin Coras697faea2018-06-27 17:10:49 -0700343}
344
345void
346vppcom_app_send_detach (void)
347{
Florin Coras47c40e22018-11-26 17:01:36 -0800348 vcl_worker_t *wrk = vcl_worker_get_current ();
Florin Coras697faea2018-06-27 17:10:49 -0700349 vl_api_application_detach_t *bmp;
350 bmp = vl_msg_api_alloc (sizeof (*bmp));
351 memset (bmp, 0, sizeof (*bmp));
352
353 bmp->_vl_msg_id = ntohs (VL_API_APPLICATION_DETACH);
Florin Coras47c40e22018-11-26 17:01:36 -0800354 bmp->client_index = wrk->my_client_index;
Florin Coras697faea2018-06-27 17:10:49 -0700355 bmp->context = htonl (0xfeedface);
Florin Coras47c40e22018-11-26 17:01:36 -0800356 vl_msg_api_send_shmem (wrk->vl_input_queue, (u8 *) & bmp);
Florin Coras697faea2018-06-27 17:10:49 -0700357}
358
359void
Florin Coras134a9962018-08-28 11:32:04 -0700360vcl_send_app_worker_add_del (u8 is_add)
361{
362 vcl_worker_t *wrk = vcl_worker_get_current ();
363 vl_api_app_worker_add_del_t *mp;
Florin Coras134a9962018-08-28 11:32:04 -0700364
365 mp = vl_msg_api_alloc (sizeof (*mp));
366 memset (mp, 0, sizeof (*mp));
367
368 mp->_vl_msg_id = ntohs (VL_API_APP_WORKER_ADD_DEL);
Florin Coras47c40e22018-11-26 17:01:36 -0800369 mp->client_index = wrk->my_client_index;
Florin Corasc1f5a432018-11-20 11:31:26 -0800370 mp->app_index = clib_host_to_net_u32 (vcm->app_index);
Florin Coras01f3f892018-12-02 12:45:53 -0800371 mp->context = wrk->wrk_index;
Florin Coras134a9962018-08-28 11:32:04 -0700372 mp->is_add = is_add;
373 if (!is_add)
Florin Coras01f3f892018-12-02 12:45:53 -0800374 mp->wrk_index = clib_host_to_net_u32 (wrk->vpp_wrk_index);
375
376 vl_msg_api_send_shmem (wrk->vl_input_queue, (u8 *) & mp);
377}
378
379void
380vcl_send_child_worker_del (vcl_worker_t * child_wrk)
381{
382 vcl_worker_t *wrk = vcl_worker_get_current ();
383 vl_api_app_worker_add_del_t *mp;
384
385 mp = vl_msg_api_alloc (sizeof (*mp));
386 memset (mp, 0, sizeof (*mp));
387
388 mp->_vl_msg_id = ntohs (VL_API_APP_WORKER_ADD_DEL);
389 mp->client_index = wrk->my_client_index;
390 mp->app_index = clib_host_to_net_u32 (vcm->app_index);
391 mp->context = wrk->wrk_index;
392 mp->is_add = 0;
393 mp->wrk_index = clib_host_to_net_u32 (child_wrk->vpp_wrk_index);
Florin Coras134a9962018-08-28 11:32:04 -0700394
Florin Coras47c40e22018-11-26 17:01:36 -0800395 vl_msg_api_send_shmem (wrk->vl_input_queue, (u8 *) & mp);
Florin Coras134a9962018-08-28 11:32:04 -0700396}
397
398void
Ping Yu34a3a082018-11-30 19:16:17 -0500399vppcom_send_application_tls_cert_add (vcl_session_t * session, char *cert,
400 u32 cert_len)
401{
402 vcl_worker_t *wrk = vcl_worker_get_current ();
403 vl_api_application_tls_cert_add_t *cert_mp;
404
405 cert_mp = vl_msg_api_alloc (sizeof (*cert_mp) + cert_len);
406 clib_memset (cert_mp, 0, sizeof (*cert_mp));
407 cert_mp->_vl_msg_id = ntohs (VL_API_APPLICATION_TLS_CERT_ADD);
408 cert_mp->client_index = wrk->my_client_index;
409 cert_mp->context = session->session_index;
410 cert_mp->cert_len = clib_host_to_net_u16 (cert_len);
411 clib_memcpy_fast (cert_mp->cert, cert, cert_len);
412 vl_msg_api_send_shmem (wrk->vl_input_queue, (u8 *) & cert_mp);
Ping Yu34a3a082018-11-30 19:16:17 -0500413}
414
415void
416vppcom_send_application_tls_key_add (vcl_session_t * session, char *key,
417 u32 key_len)
418{
419 vcl_worker_t *wrk = vcl_worker_get_current ();
420 vl_api_application_tls_key_add_t *key_mp;
421
422 key_mp = vl_msg_api_alloc (sizeof (*key_mp) + key_len);
423 clib_memset (key_mp, 0, sizeof (*key_mp));
424 key_mp->_vl_msg_id = ntohs (VL_API_APPLICATION_TLS_KEY_ADD);
425 key_mp->client_index = wrk->my_client_index;
426 key_mp->context = session->session_index;
427 key_mp->key_len = clib_host_to_net_u16 (key_len);
428 clib_memcpy_fast (key_mp->key, key, key_len);
429 vl_msg_api_send_shmem (wrk->vl_input_queue, (u8 *) & key_mp);
Ping Yu34a3a082018-11-30 19:16:17 -0500430}
431
Florin Coras697faea2018-06-27 17:10:49 -0700432u32
433vcl_max_nsid_len (void)
434{
Florin Coras888d9f02020-04-02 23:00:13 +0000435 vl_api_app_attach_t *mp;
Florin Coras697faea2018-06-27 17:10:49 -0700436 return (sizeof (mp->namespace_id) - 1);
437}
438
439void
440vppcom_init_error_string_table (void)
441{
442 vcm->error_string_by_error_number = hash_create (0, sizeof (uword));
443
444#define _(n, v, s) hash_set (vcm->error_string_by_error_number, -v, s);
445 foreach_vnet_api_error;
446#undef _
447
448 hash_set (vcm->error_string_by_error_number, 99, "Misc");
449}
450
451int
452vppcom_connect_to_vpp (char *app_name)
453{
Florin Coras47c40e22018-11-26 17:01:36 -0800454 vcl_worker_t *wrk = vcl_worker_get_current ();
Florin Coras697faea2018-06-27 17:10:49 -0700455 vppcom_cfg_t *vcl_cfg = &vcm->cfg;
Florin Corasd4c70922019-11-28 14:21:21 -0800456 api_main_t *am;
457
458 vlibapi_set_main (&wrk->bapi_api_ctx);
459 vlibapi_set_memory_client_main (&wrk->bapi_shm_ctx);
460 vppcom_api_hookup ();
Florin Coras697faea2018-06-27 17:10:49 -0700461
Florin Coras99368312018-08-02 10:45:44 -0700462 if (vcl_cfg->vpp_api_socket_name)
Florin Coras697faea2018-06-27 17:10:49 -0700463 {
Florin Corasd4c70922019-11-28 14:21:21 -0800464 if (vl_socket_client_connect2 (&wrk->bapi_sock_ctx,
465 (char *) vcl_cfg->vpp_api_socket_name,
466 app_name, 0 /* default rx/tx buffer */ ))
Florin Coras99368312018-08-02 10:45:44 -0700467 {
Florin Coras053a0e42018-11-13 15:52:38 -0800468 VERR ("app (%s) socket connect failed!", app_name);
Florin Coras99368312018-08-02 10:45:44 -0700469 return VPPCOM_ECONNREFUSED;
470 }
471
Florin Corasd4c70922019-11-28 14:21:21 -0800472 if (vl_socket_client_init_shm2 (&wrk->bapi_sock_ctx, 0,
473 1 /* want_pthread */ ))
Florin Coras99368312018-08-02 10:45:44 -0700474 {
Florin Coras053a0e42018-11-13 15:52:38 -0800475 VERR ("app (%s) init shm failed!", app_name);
Florin Coras99368312018-08-02 10:45:44 -0700476 return VPPCOM_ECONNREFUSED;
477 }
Florin Coras697faea2018-06-27 17:10:49 -0700478 }
479 else
480 {
Florin Coras99368312018-08-02 10:45:44 -0700481 if (!vcl_cfg->vpp_api_filename)
482 vcl_cfg->vpp_api_filename = format (0, "/vpe-api%c", 0);
Florin Coras697faea2018-06-27 17:10:49 -0700483
Florin Corasd4c70922019-11-28 14:21:21 -0800484 vl_set_memory_root_path ((char *) vcl_cfg->vpp_api_chroot);
485
Florin Coras053a0e42018-11-13 15:52:38 -0800486 VDBG (0, "app (%s) connecting to VPP api (%s)...",
Florin Coras99368312018-08-02 10:45:44 -0700487 app_name, vcl_cfg->vpp_api_filename);
488
489 if (vl_client_connect_to_vlib ((char *) vcl_cfg->vpp_api_filename,
490 app_name, vcm->cfg.vpp_api_q_length) < 0)
491 {
Florin Coras053a0e42018-11-13 15:52:38 -0800492 VERR ("app (%s) connect failed!", app_name);
Florin Coras99368312018-08-02 10:45:44 -0700493 return VPPCOM_ECONNREFUSED;
494 }
Florin Coras697faea2018-06-27 17:10:49 -0700495 }
496
Florin Corasd4c70922019-11-28 14:21:21 -0800497 am = vlibapi_get_main ();
Florin Coras47c40e22018-11-26 17:01:36 -0800498 wrk->vl_input_queue = am->shmem_hdr->vl_input_queue;
499 wrk->my_client_index = (u32) am->my_client_index;
500 wrk->wrk_state = STATE_APP_CONN_VPP;
Florin Coras99368312018-08-02 10:45:44 -0700501
Florin Coras053a0e42018-11-13 15:52:38 -0800502 VDBG (0, "app (%s) is connected to VPP!", app_name);
Florin Coras697faea2018-06-27 17:10:49 -0700503 vcl_evt (VCL_EVT_INIT, vcm);
Florin Coras99368312018-08-02 10:45:44 -0700504 return VPPCOM_OK;
Florin Coras697faea2018-06-27 17:10:49 -0700505}
506
Florin Coras470b2a62019-08-03 18:53:48 -0700507void
508vppcom_disconnect_from_vpp (void)
509{
Florin Coras64cf4592019-12-12 12:01:24 -0800510 vcl_worker_t *wrk = vcl_worker_get_current ();
Florin Coras470b2a62019-08-03 18:53:48 -0700511 vppcom_cfg_t *vcl_cfg = &vcm->cfg;
512
513 if (vcl_cfg->vpp_api_socket_name)
Florin Coras64cf4592019-12-12 12:01:24 -0800514 vl_socket_client_disconnect2 (&wrk->bapi_sock_ctx);
Florin Coras470b2a62019-08-03 18:53:48 -0700515 else
516 vl_client_disconnect_from_vlib ();
517}
518
Florin Coras697faea2018-06-27 17:10:49 -0700519/*
520 * fd.io coding-style-patch-verification: ON
521 *
522 * Local Variables:
523 * eval: (c-set-style "gnu")
524 * End:
525 */