blob: 618a46d0a7e46e87e27c2e147aa9d4115607e407 [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{
Florin Coras3b6c84c2021-01-05 20:45:44 -080055 vcl_worker_t *wrk = vcl_worker_get (0);
56
Florin Coras697faea2018-06-27 17:10:49 -070057 if (mp->retval)
58 {
59 clib_warning ("VCL<%d>: session_enable_disable failed: %U", getpid (),
60 format_api_error, ntohl (mp->retval));
61 }
62 else
Florin Coras3b6c84c2021-01-05 20:45:44 -080063 wrk->bapi_app_state = STATE_APP_ENABLED;
Florin Coras697faea2018-06-27 17:10:49 -070064}
65
Florin Corasd85de682018-11-29 17:02:29 -080066static void
Florin Coras458089b2019-08-21 16:20:44 -070067vl_api_app_attach_reply_t_handler (vl_api_app_attach_reply_t * mp)
Florin Coras697faea2018-06-27 17:10:49 -070068{
Florin Coras134a9962018-08-28 11:32:04 -070069 vcl_worker_t *wrk = vcl_worker_get (0);
Florin Corasd85de682018-11-29 17:02:29 -080070 u64 segment_handle;
Jakub Grajciarb4e5e502020-01-31 09:35:29 +010071 int *fds = 0, i, rv;
Florin Coras99368312018-08-02 10:45:44 -070072 u32 n_fds = 0;
Jakub Grajciarb4e5e502020-01-31 09:35:29 +010073 char *segment_name = 0;
Florin Coras697faea2018-06-27 17:10:49 -070074
Florin Coras697faea2018-06-27 17:10:49 -070075 if (mp->retval)
76 {
Florin Corasa5efca32019-03-20 08:33:10 -070077 VERR ("attach failed: %U", format_api_error, ntohl (mp->retval));
78 goto failed;
Florin Coras697faea2018-06-27 17:10:49 -070079 }
80
Florin Coras3b6c84c2021-01-05 20:45:44 -080081 vcl_set_worker_index (0);
82
Florin Corasd85de682018-11-29 17:02:29 -080083 segment_handle = clib_net_to_host_u64 (mp->segment_handle);
84 if (segment_handle == VCL_INVALID_SEGMENT_HANDLE)
85 {
Florin Corasa5efca32019-03-20 08:33:10 -070086 VERR ("invalid segment handle");
87 goto failed;
Florin Corasd85de682018-11-29 17:02:29 -080088 }
89
Florin Coras99368312018-08-02 10:45:44 -070090 if (mp->n_fds)
Florin Coras697faea2018-06-27 17:10:49 -070091 {
Florin Coras99368312018-08-02 10:45:44 -070092 vec_validate (fds, mp->n_fds);
Florin Corasd4c70922019-11-28 14:21:21 -080093 if (vl_socket_client_recv_fd_msg2 (&wrk->bapi_sock_ctx, fds, mp->n_fds,
94 5))
Florin Coras617574d2019-07-01 07:32:31 -070095 goto failed;
Florin Coras99368312018-08-02 10:45:44 -070096
97 if (mp->fd_flags & SESSION_FD_F_VPP_MQ_SEGMENT)
Florin Corasd85de682018-11-29 17:02:29 -080098 if (vcl_segment_attach (vcl_vpp_worker_segment_handle (0),
99 "vpp-mq-seg", SSVM_SEGMENT_MEMFD,
100 fds[n_fds++]))
Florin Corasa5efca32019-03-20 08:33:10 -0700101 goto failed;
Florin Coras99368312018-08-02 10:45:44 -0700102
103 if (mp->fd_flags & SESSION_FD_F_MEMFD_SEGMENT)
Jakub Grajciarb4e5e502020-01-31 09:35:29 +0100104 {
105 segment_name = vl_api_from_api_to_new_c_string (&mp->segment_name);
106 rv =
107 vcl_segment_attach (segment_handle, segment_name,
108 SSVM_SEGMENT_MEMFD, fds[n_fds++]);
109 vec_free (segment_name);
110 if (rv != 0)
111 goto failed;
112 }
113
Florin Corasb4624182020-12-11 13:58:12 -0800114 vcl_segment_attach_mq (segment_handle, mp->app_mq, 0,
115 &wrk->app_event_queue);
Florin Coras99368312018-08-02 10:45:44 -0700116
117 if (mp->fd_flags & SESSION_FD_F_MQ_EVENTFD)
118 {
Florin Coras86f12322021-01-22 15:05:14 -0800119 svm_msg_q_set_eventfd (wrk->app_event_queue, fds[n_fds]);
Florin Coras134a9962018-08-28 11:32:04 -0700120 vcl_mq_epoll_add_evfd (wrk, wrk->app_event_queue);
Florin Coras99368312018-08-02 10:45:44 -0700121 n_fds++;
122 }
123
Florin Coras80b74252021-01-27 18:08:25 -0800124 vcl_segment_discover_mqs (vcl_vpp_worker_segment_handle (0), fds + n_fds,
125 mp->n_fds - n_fds);
126 vcl_segment_attach_mq (vcl_vpp_worker_segment_handle (0),
127 mp->vpp_ctrl_mq, mp->vpp_ctrl_mq_thread,
128 &wrk->ctrl_mq);
129 vcm->ctrl_mq = wrk->ctrl_mq;
130
Florin Coras99368312018-08-02 10:45:44 -0700131 vec_free (fds);
Florin Coras697faea2018-06-27 17:10:49 -0700132 }
Florin Coras99368312018-08-02 10:45:44 -0700133 else
Florin Coras697faea2018-06-27 17:10:49 -0700134 {
Jakub Grajciarb4e5e502020-01-31 09:35:29 +0100135 segment_name = vl_api_from_api_to_new_c_string (&mp->segment_name);
136 rv =
137 vcl_segment_attach (segment_handle, segment_name, SSVM_SEGMENT_SHM,
138 -1);
139 vec_free (segment_name);
140 if (rv != 0)
Florin Corasa5efca32019-03-20 08:33:10 -0700141 goto failed;
Florin Coras697faea2018-06-27 17:10:49 -0700142 }
143
Florin Corasc1f5a432018-11-20 11:31:26 -0800144 vcm->app_index = clib_net_to_host_u32 (mp->app_index);
Florin Coras3b6c84c2021-01-05 20:45:44 -0800145 wrk->bapi_app_state = STATE_APP_ATTACHED;
Florin Corasa5efca32019-03-20 08:33:10 -0700146 return;
147
148failed:
Florin Coras3b6c84c2021-01-05 20:45:44 -0800149 wrk->bapi_app_state = STATE_APP_FAILED;
Florin Coras617574d2019-07-01 07:32:31 -0700150 for (i = clib_max (n_fds - 1, 0); i < vec_len (fds); i++)
151 close (fds[i]);
152 vec_free (fds);
Florin Coras697faea2018-06-27 17:10:49 -0700153}
154
155static void
Florin Coras134a9962018-08-28 11:32:04 -0700156vl_api_app_worker_add_del_reply_t_handler (vl_api_app_worker_add_del_reply_t *
157 mp)
158{
Jakub Grajciarb4e5e502020-01-31 09:35:29 +0100159 int n_fds = 0, *fds = 0, i, rv;
Florin Corasd85de682018-11-29 17:02:29 -0800160 u64 segment_handle;
Florin Coras134a9962018-08-28 11:32:04 -0700161 vcl_worker_t *wrk;
Florin Corasab2f6db2018-08-31 14:31:41 -0700162 u32 wrk_index;
Jakub Grajciarb4e5e502020-01-31 09:35:29 +0100163 char *segment_name = 0;
Florin Coras134a9962018-08-28 11:32:04 -0700164
Florin Coras3348a4c2018-09-07 17:09:35 -0700165 if (!mp->is_add)
166 return;
167
Florin Corasdc2e2512018-12-03 17:47:26 -0800168 wrk_index = mp->context;
Florin Coras01f3f892018-12-02 12:45:53 -0800169 wrk = vcl_worker_get_if_valid (wrk_index);
170 if (!wrk)
171 return;
172
Florin Coras3b6c84c2021-01-05 20:45:44 -0800173 if (mp->retval)
174 {
175 clib_warning ("VCL<%d>: add/del worker failed: %U", getpid (),
176 format_api_error, ntohl (mp->retval));
177 goto failed;
178 }
179
180 vcl_set_worker_index (wrk_index);
Florin Corasdc2e2512018-12-03 17:47:26 -0800181 wrk->vpp_wrk_index = clib_net_to_host_u32 (mp->wrk_index);
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
Florin Corasb4624182020-12-11 13:58:12 -0800215 vcl_segment_attach_mq (segment_handle, mp->app_event_queue_address, 0,
216 &wrk->app_event_queue);
217
Florin Coras134a9962018-08-28 11:32:04 -0700218 if (mp->fd_flags & SESSION_FD_F_MQ_EVENTFD)
219 {
Florin Coras86f12322021-01-22 15:05:14 -0800220 svm_msg_q_set_eventfd (wrk->app_event_queue, fds[n_fds]);
Florin Coras134a9962018-08-28 11:32:04 -0700221 vcl_mq_epoll_add_evfd (wrk, wrk->app_event_queue);
222 n_fds++;
223 }
224
225 vec_free (fds);
226 }
227 else
228 {
Jakub Grajciarb4e5e502020-01-31 09:35:29 +0100229 segment_name = vl_api_from_api_to_new_c_string (&mp->segment_name);
230 rv =
231 vcl_segment_attach (segment_handle, segment_name, SSVM_SEGMENT_SHM,
232 -1);
233 vec_free (segment_name);
234 if (rv != 0)
Florin Coras134a9962018-08-28 11:32:04 -0700235 goto failed;
236 }
Florin Coras3b6c84c2021-01-05 20:45:44 -0800237 wrk->bapi_app_state = STATE_APP_READY;
Florin Coras053a0e42018-11-13 15:52:38 -0800238 VDBG (0, "worker %u vpp-worker %u added", wrk_index, wrk->vpp_wrk_index);
Florin Coras134a9962018-08-28 11:32:04 -0700239 return;
240
241failed:
Florin Coras3b6c84c2021-01-05 20:45:44 -0800242 wrk->bapi_app_state = STATE_APP_FAILED;
Florin Coras617574d2019-07-01 07:32:31 -0700243 for (i = clib_max (n_fds - 1, 0); i < vec_len (fds); i++)
244 close (fds[i]);
245 vec_free (fds);
Florin Coras134a9962018-08-28 11:32:04 -0700246}
247
248static void
Florin Corasa5a9efd2021-01-05 17:03:29 -0800249vl_api_app_add_cert_key_pair_reply_t_handler (
250 vl_api_app_add_cert_key_pair_reply_t *mp)
Ping Yu34a3a082018-11-30 19:16:17 -0500251{
Florin Coras3b6c84c2021-01-05 20:45:44 -0800252 vcl_worker_t *wrk = vcl_worker_get_current ();
253
Ping Yu34a3a082018-11-30 19:16:17 -0500254 if (mp->retval)
Florin Coras3b6c84c2021-01-05 20:45:44 -0800255 {
Florin Corasa5a9efd2021-01-05 17:03:29 -0800256 VDBG (0, "Adding cert and key failed: %U", format_api_error,
257 ntohl (mp->retval));
Florin Coras3b6c84c2021-01-05 20:45:44 -0800258 return;
259 }
Florin Corasa5a9efd2021-01-05 17:03:29 -0800260 wrk->bapi_return = clib_net_to_host_u32 (mp->index);
Florin Coras3b6c84c2021-01-05 20:45:44 -0800261 wrk->bapi_app_state = STATE_APP_READY;
Ping Yu34a3a082018-11-30 19:16:17 -0500262}
263
264static void
Florin Corasa5a9efd2021-01-05 17:03:29 -0800265vl_api_app_del_cert_key_pair_reply_t_handler (
266 vl_api_app_del_cert_key_pair_reply_t *mp)
Ping Yu34a3a082018-11-30 19:16:17 -0500267{
268 if (mp->retval)
Florin Coras3b6c84c2021-01-05 20:45:44 -0800269 {
Florin Corasa5a9efd2021-01-05 17:03:29 -0800270 VDBG (0, "Deleting cert and key failed: %U", format_api_error,
271 ntohl (mp->retval));
Florin Coras3b6c84c2021-01-05 20:45:44 -0800272 return;
273 }
Ping Yu34a3a082018-11-30 19:16:17 -0500274}
275
Florin Corasa5a9efd2021-01-05 17:03:29 -0800276#define foreach_sock_msg \
277 _ (SESSION_ENABLE_DISABLE_REPLY, session_enable_disable_reply) \
278 _ (APP_ATTACH_REPLY, app_attach_reply) \
279 _ (APP_ADD_CERT_KEY_PAIR_REPLY, app_add_cert_key_pair_reply) \
280 _ (APP_DEL_CERT_KEY_PAIR_REPLY, app_del_cert_key_pair_reply) \
281 _ (APP_WORKER_ADD_DEL_REPLY, app_worker_add_del_reply)
Florin Coras697faea2018-06-27 17:10:49 -0700282
Florin Corasb88de902020-09-08 16:47:57 -0700283static void
284vcl_bapi_hookup (void)
Florin Coras697faea2018-06-27 17:10:49 -0700285{
Florin Coras60116992018-08-27 09:52:18 -0700286#define _(N, n) \
287 vl_msg_api_set_handlers(VL_API_##N, #n, \
Florin Coras697faea2018-06-27 17:10:49 -0700288 vl_api_##n##_t_handler, \
289 vl_noop_handler, \
290 vl_api_##n##_t_endian, \
291 vl_api_##n##_t_print, \
292 sizeof(vl_api_##n##_t), 1);
293 foreach_sock_msg;
294#undef _
295}
296
297/*
298 * VPP-API message functions
299 */
Florin Corasb88de902020-09-08 16:47:57 -0700300static void
301vcl_bapi_send_session_enable_disable (u8 is_enable)
Florin Coras697faea2018-06-27 17:10:49 -0700302{
Florin Coras47c40e22018-11-26 17:01:36 -0800303 vcl_worker_t *wrk = vcl_worker_get_current ();
Florin Coras697faea2018-06-27 17:10:49 -0700304 vl_api_session_enable_disable_t *bmp;
305 bmp = vl_msg_api_alloc (sizeof (*bmp));
306 memset (bmp, 0, sizeof (*bmp));
307
308 bmp->_vl_msg_id = ntohs (VL_API_SESSION_ENABLE_DISABLE);
Florin Corascc7c88e2020-09-15 15:56:51 -0700309 bmp->client_index = wrk->api_client_handle;
Florin Coras697faea2018-06-27 17:10:49 -0700310 bmp->context = htonl (0xfeedface);
311 bmp->is_enable = is_enable;
Florin Coras47c40e22018-11-26 17:01:36 -0800312 vl_msg_api_send_shmem (wrk->vl_input_queue, (u8 *) & bmp);
Florin Coras697faea2018-06-27 17:10:49 -0700313}
314
315void
Florin Corasb88de902020-09-08 16:47:57 -0700316vcl_bapi_send_attach (void)
Florin Coras697faea2018-06-27 17:10:49 -0700317{
Florin Coras47c40e22018-11-26 17:01:36 -0800318 vcl_worker_t *wrk = vcl_worker_get_current ();
Florin Corasd747c3c2019-10-20 19:55:56 -0700319 u8 tls_engine = CRYPTO_ENGINE_OPENSSL;
Florin Coras458089b2019-08-21 16:20:44 -0700320 vl_api_app_attach_t *bmp;
Florin Coras697faea2018-06-27 17:10:49 -0700321 u8 nsid_len = vec_len (vcm->cfg.namespace_id);
322 u8 app_is_proxy = (vcm->cfg.app_proxy_transport_tcp ||
323 vcm->cfg.app_proxy_transport_udp);
324
Florin Corasd747c3c2019-10-20 19:55:56 -0700325 tls_engine = vcm->cfg.tls_engine ? vcm->cfg.tls_engine : tls_engine;
326
Florin Coras697faea2018-06-27 17:10:49 -0700327 bmp = vl_msg_api_alloc (sizeof (*bmp));
328 memset (bmp, 0, sizeof (*bmp));
329
Florin Coras458089b2019-08-21 16:20:44 -0700330 bmp->_vl_msg_id = ntohs (VL_API_APP_ATTACH);
Florin Corascc7c88e2020-09-15 15:56:51 -0700331 bmp->client_index = wrk->api_client_handle;
Florin Coras697faea2018-06-27 17:10:49 -0700332 bmp->context = htonl (0xfeedface);
333 bmp->options[APP_OPTIONS_FLAGS] =
334 APP_OPTIONS_FLAGS_ACCEPT_REDIRECT | APP_OPTIONS_FLAGS_ADD_SEGMENT |
335 (vcm->cfg.app_scope_local ? APP_OPTIONS_FLAGS_USE_LOCAL_SCOPE : 0) |
336 (vcm->cfg.app_scope_global ? APP_OPTIONS_FLAGS_USE_GLOBAL_SCOPE : 0) |
Florin Coras54693d22018-07-17 10:46:29 -0700337 (app_is_proxy ? APP_OPTIONS_FLAGS_IS_PROXY : 0) |
Florin Coras99368312018-08-02 10:45:44 -0700338 (vcm->cfg.use_mq_eventfd ? APP_OPTIONS_FLAGS_EVT_MQ_USE_EVENTFD : 0);
Florin Coras697faea2018-06-27 17:10:49 -0700339 bmp->options[APP_OPTIONS_PROXY_TRANSPORT] =
340 (u64) ((vcm->cfg.app_proxy_transport_tcp ? 1 << TRANSPORT_PROTO_TCP : 0) |
341 (vcm->cfg.app_proxy_transport_udp ? 1 << TRANSPORT_PROTO_UDP : 0));
342 bmp->options[APP_OPTIONS_SEGMENT_SIZE] = vcm->cfg.segment_size;
343 bmp->options[APP_OPTIONS_ADD_SEGMENT_SIZE] = vcm->cfg.add_segment_size;
344 bmp->options[APP_OPTIONS_RX_FIFO_SIZE] = vcm->cfg.rx_fifo_size;
345 bmp->options[APP_OPTIONS_TX_FIFO_SIZE] = vcm->cfg.tx_fifo_size;
346 bmp->options[APP_OPTIONS_PREALLOC_FIFO_PAIRS] =
347 vcm->cfg.preallocated_fifo_pairs;
348 bmp->options[APP_OPTIONS_EVT_QUEUE_SIZE] = vcm->cfg.event_queue_size;
Florin Corasd747c3c2019-10-20 19:55:56 -0700349 bmp->options[APP_OPTIONS_TLS_ENGINE] = tls_engine;
Florin Coras697faea2018-06-27 17:10:49 -0700350 if (nsid_len)
351 {
Jakub Grajciarb4e5e502020-01-31 09:35:29 +0100352 vl_api_vec_to_api_string (vcm->cfg.namespace_id, &bmp->namespace_id);
Florin Coras697faea2018-06-27 17:10:49 -0700353 bmp->options[APP_OPTIONS_NAMESPACE_SECRET] = vcm->cfg.namespace_secret;
354 }
Florin Coras47c40e22018-11-26 17:01:36 -0800355 vl_msg_api_send_shmem (wrk->vl_input_queue, (u8 *) & bmp);
Florin Coras697faea2018-06-27 17:10:49 -0700356}
357
358void
Florin Corasb88de902020-09-08 16:47:57 -0700359vcl_bapi_send_detach (void)
Florin Coras697faea2018-06-27 17:10:49 -0700360{
Florin Coras47c40e22018-11-26 17:01:36 -0800361 vcl_worker_t *wrk = vcl_worker_get_current ();
Florin Coras697faea2018-06-27 17:10:49 -0700362 vl_api_application_detach_t *bmp;
363 bmp = vl_msg_api_alloc (sizeof (*bmp));
364 memset (bmp, 0, sizeof (*bmp));
365
366 bmp->_vl_msg_id = ntohs (VL_API_APPLICATION_DETACH);
Florin Corascc7c88e2020-09-15 15:56:51 -0700367 bmp->client_index = wrk->api_client_handle;
Florin Coras697faea2018-06-27 17:10:49 -0700368 bmp->context = htonl (0xfeedface);
Florin Coras47c40e22018-11-26 17:01:36 -0800369 vl_msg_api_send_shmem (wrk->vl_input_queue, (u8 *) & bmp);
Florin Coras697faea2018-06-27 17:10:49 -0700370}
371
Florin Corasb88de902020-09-08 16:47:57 -0700372static void
373vcl_bapi_send_app_worker_add_del (u8 is_add)
Florin Coras134a9962018-08-28 11:32:04 -0700374{
375 vcl_worker_t *wrk = vcl_worker_get_current ();
376 vl_api_app_worker_add_del_t *mp;
Florin Coras134a9962018-08-28 11:32:04 -0700377
378 mp = vl_msg_api_alloc (sizeof (*mp));
379 memset (mp, 0, sizeof (*mp));
380
381 mp->_vl_msg_id = ntohs (VL_API_APP_WORKER_ADD_DEL);
Florin Corascc7c88e2020-09-15 15:56:51 -0700382 mp->client_index = wrk->api_client_handle;
Florin Corasc1f5a432018-11-20 11:31:26 -0800383 mp->app_index = clib_host_to_net_u32 (vcm->app_index);
Florin Coras01f3f892018-12-02 12:45:53 -0800384 mp->context = wrk->wrk_index;
Florin Coras134a9962018-08-28 11:32:04 -0700385 mp->is_add = is_add;
386 if (!is_add)
Florin Coras01f3f892018-12-02 12:45:53 -0800387 mp->wrk_index = clib_host_to_net_u32 (wrk->vpp_wrk_index);
388
389 vl_msg_api_send_shmem (wrk->vl_input_queue, (u8 *) & mp);
390}
391
Florin Corasb88de902020-09-08 16:47:57 -0700392static void
393vcl_bapi_send_child_worker_del (vcl_worker_t * child_wrk)
Florin Coras01f3f892018-12-02 12:45:53 -0800394{
395 vcl_worker_t *wrk = vcl_worker_get_current ();
396 vl_api_app_worker_add_del_t *mp;
397
398 mp = vl_msg_api_alloc (sizeof (*mp));
399 memset (mp, 0, sizeof (*mp));
400
401 mp->_vl_msg_id = ntohs (VL_API_APP_WORKER_ADD_DEL);
Florin Corascc7c88e2020-09-15 15:56:51 -0700402 mp->client_index = wrk->api_client_handle;
Florin Coras01f3f892018-12-02 12:45:53 -0800403 mp->app_index = clib_host_to_net_u32 (vcm->app_index);
404 mp->context = wrk->wrk_index;
405 mp->is_add = 0;
406 mp->wrk_index = clib_host_to_net_u32 (child_wrk->vpp_wrk_index);
Florin Coras134a9962018-08-28 11:32:04 -0700407
Florin Coras47c40e22018-11-26 17:01:36 -0800408 vl_msg_api_send_shmem (wrk->vl_input_queue, (u8 *) & mp);
Florin Coras134a9962018-08-28 11:32:04 -0700409}
410
Florin Corasa5a9efd2021-01-05 17:03:29 -0800411static void
412vcl_bapi_send_app_add_cert_key_pair (vppcom_cert_key_pair_t *ckpair)
Ping Yu34a3a082018-11-30 19:16:17 -0500413{
414 vcl_worker_t *wrk = vcl_worker_get_current ();
Florin Corasa5a9efd2021-01-05 17:03:29 -0800415 u32 cert_len = test_srv_crt_rsa_len;
416 u32 key_len = test_srv_key_rsa_len;
417 vl_api_app_add_cert_key_pair_t *bmp;
Ping Yu34a3a082018-11-30 19:16:17 -0500418
Florin Corasa5a9efd2021-01-05 17:03:29 -0800419 bmp = vl_msg_api_alloc (sizeof (*bmp) + cert_len + key_len);
420 clib_memset (bmp, 0, sizeof (*bmp) + cert_len + key_len);
421
422 bmp->_vl_msg_id = ntohs (VL_API_APP_ADD_CERT_KEY_PAIR);
423 bmp->client_index = wrk->api_client_handle;
424 bmp->context = wrk->wrk_index;
425 bmp->cert_len = clib_host_to_net_u16 (cert_len);
426 bmp->certkey_len = clib_host_to_net_u16 (key_len + cert_len);
427 clib_memcpy_fast (bmp->certkey, test_srv_crt_rsa, cert_len);
428 clib_memcpy_fast (bmp->certkey + cert_len, test_srv_key_rsa, key_len);
429
430 vl_msg_api_send_shmem (wrk->vl_input_queue, (u8 *) &bmp);
Ping Yu34a3a082018-11-30 19:16:17 -0500431}
432
Florin Corasa5a9efd2021-01-05 17:03:29 -0800433static void
434vcl_bapi_send_app_del_cert_key_pair (u32 ckpair_index)
Ping Yu34a3a082018-11-30 19:16:17 -0500435{
436 vcl_worker_t *wrk = vcl_worker_get_current ();
Florin Corasa5a9efd2021-01-05 17:03:29 -0800437 vl_api_app_del_cert_key_pair_t *bmp;
438 bmp = vl_msg_api_alloc (sizeof (*bmp));
439 clib_memset (bmp, 0, sizeof (*bmp));
Ping Yu34a3a082018-11-30 19:16:17 -0500440
Florin Corasa5a9efd2021-01-05 17:03:29 -0800441 bmp->_vl_msg_id = ntohs (VL_API_APP_DEL_CERT_KEY_PAIR);
442 bmp->client_index = wrk->api_client_handle;
443 bmp->context = wrk->wrk_index;
444 bmp->index = clib_host_to_net_u32 (ckpair_index);
445 vl_msg_api_send_shmem (wrk->vl_input_queue, (u8 *) &bmp);
Ping Yu34a3a082018-11-30 19:16:17 -0500446}
447
Florin Coras697faea2018-06-27 17:10:49 -0700448u32
Florin Corasb88de902020-09-08 16:47:57 -0700449vcl_bapi_max_nsid_len (void)
Florin Coras697faea2018-06-27 17:10:49 -0700450{
Florin Coras888d9f02020-04-02 23:00:13 +0000451 vl_api_app_attach_t *mp;
Florin Coras697faea2018-06-27 17:10:49 -0700452 return (sizeof (mp->namespace_id) - 1);
453}
454
Florin Corasb88de902020-09-08 16:47:57 -0700455static void
456vcl_bapi_init_error_string_table (void)
Florin Coras697faea2018-06-27 17:10:49 -0700457{
458 vcm->error_string_by_error_number = hash_create (0, sizeof (uword));
459
460#define _(n, v, s) hash_set (vcm->error_string_by_error_number, -v, s);
461 foreach_vnet_api_error;
462#undef _
463
464 hash_set (vcm->error_string_by_error_number, 99, "Misc");
465}
466
Florin Corasb88de902020-09-08 16:47:57 -0700467static void
468vcl_bapi_cleanup (void)
469{
470 socket_client_main_t *scm = &socket_client_main;
471 api_main_t *am = vlibapi_get_main ();
472
473 am->my_client_index = ~0;
474 am->my_registration = 0;
475 am->vl_input_queue = 0;
476 am->msg_index_by_name_and_crc = 0;
477 scm->socket_fd = 0;
478
479 vl_client_api_unmap ();
480}
481
482static int
483vcl_bapi_connect_to_vpp (void)
Florin Coras697faea2018-06-27 17:10:49 -0700484{
Florin Coras47c40e22018-11-26 17:01:36 -0800485 vcl_worker_t *wrk = vcl_worker_get_current ();
Florin Coras697faea2018-06-27 17:10:49 -0700486 vppcom_cfg_t *vcl_cfg = &vcm->cfg;
Florin Corasb88de902020-09-08 16:47:57 -0700487 int rv = VPPCOM_OK;
Florin Corasd4c70922019-11-28 14:21:21 -0800488 api_main_t *am;
Florin Corasb88de902020-09-08 16:47:57 -0700489 u8 *wrk_name;
490
jiangxiaomingb438c762020-10-13 14:23:29 +0800491 wrk_name = format (0, "%v-wrk-%u%c", vcm->app_name, wrk->wrk_index, 0);
Florin Corasb88de902020-09-08 16:47:57 -0700492
493 /* Make sure api is cleaned up in case this is a connect from a
494 * forked worker */
495 vcl_bapi_cleanup ();
Florin Corasd4c70922019-11-28 14:21:21 -0800496
497 vlibapi_set_main (&wrk->bapi_api_ctx);
Florin Corasb88de902020-09-08 16:47:57 -0700498 vcl_bapi_hookup ();
Florin Coras697faea2018-06-27 17:10:49 -0700499
Florin Coras165f3ae2020-11-08 18:04:33 -0800500 if (!vcl_cfg->vpp_bapi_socket_name)
Florin Coras697faea2018-06-27 17:10:49 -0700501 {
Florin Coras165f3ae2020-11-08 18:04:33 -0800502 rv = VPPCOM_EINVAL;
503 goto error;
Florin Coras697faea2018-06-27 17:10:49 -0700504 }
Florin Coras165f3ae2020-11-08 18:04:33 -0800505
506 if (vl_socket_client_connect2 (&wrk->bapi_sock_ctx,
507 (char *) vcl_cfg->vpp_bapi_socket_name,
508 (char *) wrk_name,
509 0 /* default rx/tx buffer */ ))
Florin Coras697faea2018-06-27 17:10:49 -0700510 {
Florin Coras165f3ae2020-11-08 18:04:33 -0800511 VERR ("app (%s) socket connect failed!", wrk_name);
512 rv = VPPCOM_ECONNREFUSED;
513 goto error;
514 }
Florin Coras697faea2018-06-27 17:10:49 -0700515
Florin Coras165f3ae2020-11-08 18:04:33 -0800516 if (vl_socket_client_init_shm2 (&wrk->bapi_sock_ctx, 0,
517 1 /* want_pthread */ ))
518 {
519 VERR ("app (%s) init shm failed!", wrk_name);
520 rv = VPPCOM_ECONNREFUSED;
521 goto error;
Florin Coras697faea2018-06-27 17:10:49 -0700522 }
523
Florin Corasd4c70922019-11-28 14:21:21 -0800524 am = vlibapi_get_main ();
Florin Coras47c40e22018-11-26 17:01:36 -0800525 wrk->vl_input_queue = am->shmem_hdr->vl_input_queue;
Florin Corascc7c88e2020-09-15 15:56:51 -0700526 wrk->api_client_handle = (u32) am->my_client_index;
Florin Coras99368312018-08-02 10:45:44 -0700527
Florin Corasb88de902020-09-08 16:47:57 -0700528 VDBG (0, "app (%s) is connected to VPP!", wrk_name);
Florin Coras697faea2018-06-27 17:10:49 -0700529 vcl_evt (VCL_EVT_INIT, vcm);
Florin Corasb88de902020-09-08 16:47:57 -0700530
531error:
532 vec_free (wrk_name);
533 return rv;
Florin Coras697faea2018-06-27 17:10:49 -0700534}
535
Florin Coras470b2a62019-08-03 18:53:48 -0700536void
Florin Corasb88de902020-09-08 16:47:57 -0700537vcl_bapi_disconnect_from_vpp (void)
Florin Coras470b2a62019-08-03 18:53:48 -0700538{
Florin Coras64cf4592019-12-12 12:01:24 -0800539 vcl_worker_t *wrk = vcl_worker_get_current ();
Florin Coras470b2a62019-08-03 18:53:48 -0700540 vppcom_cfg_t *vcl_cfg = &vcm->cfg;
541
Florin Corasb88de902020-09-08 16:47:57 -0700542 if (vcl_cfg->vpp_bapi_socket_name)
Florin Coras64cf4592019-12-12 12:01:24 -0800543 vl_socket_client_disconnect2 (&wrk->bapi_sock_ctx);
Florin Coras470b2a62019-08-03 18:53:48 -0700544 else
545 vl_client_disconnect_from_vlib ();
546}
547
Florin Corasb88de902020-09-08 16:47:57 -0700548static const char *
549vcl_bapi_app_state_str (vcl_bapi_app_state_t state)
550{
551 char *st;
552
553 switch (state)
554 {
555 case STATE_APP_START:
556 st = "STATE_APP_START";
557 break;
558
559 case STATE_APP_CONN_VPP:
560 st = "STATE_APP_CONN_VPP";
561 break;
562
563 case STATE_APP_ENABLED:
564 st = "STATE_APP_ENABLED";
565 break;
566
567 case STATE_APP_ATTACHED:
568 st = "STATE_APP_ATTACHED";
569 break;
570
571 default:
572 st = "UNKNOWN_APP_STATE";
573 break;
574 }
575
576 return st;
577}
578
579static int
Florin Coras3b6c84c2021-01-05 20:45:44 -0800580vcl_bapi_wait_for_wrk_state_change (vcl_bapi_app_state_t app_state)
Florin Corasb88de902020-09-08 16:47:57 -0700581{
582 vcl_worker_t *wrk = vcl_worker_get_current ();
583 f64 timeout = clib_time_now (&wrk->clib_time) + vcm->cfg.app_timeout;
584
585 while (clib_time_now (&wrk->clib_time) < timeout)
586 {
Florin Coras3b6c84c2021-01-05 20:45:44 -0800587 if (wrk->bapi_app_state == app_state)
Florin Corasb88de902020-09-08 16:47:57 -0700588 return VPPCOM_OK;
Florin Coras3b6c84c2021-01-05 20:45:44 -0800589 if (wrk->bapi_app_state == STATE_APP_FAILED)
Florin Corasb88de902020-09-08 16:47:57 -0700590 return VPPCOM_ECONNABORTED;
591 }
592 VDBG (0, "timeout waiting for state %s (%d)",
593 vcl_bapi_app_state_str (app_state), app_state);
594 vcl_evt (VCL_EVT_SESSION_TIMEOUT, vcm, bapi_app_state);
595
596 return VPPCOM_ETIMEDOUT;
597}
598
599static int
600vcl_bapi_session_enable (void)
601{
Florin Coras3b6c84c2021-01-05 20:45:44 -0800602 vcl_worker_t *wrk = vcl_worker_get_current ();
Florin Corasb88de902020-09-08 16:47:57 -0700603 int rv;
604
Florin Coras3b6c84c2021-01-05 20:45:44 -0800605 if (wrk->bapi_app_state != STATE_APP_ENABLED)
Florin Corasb88de902020-09-08 16:47:57 -0700606 {
607 vcl_bapi_send_session_enable_disable (1 /* is_enabled == TRUE */ );
Florin Coras3b6c84c2021-01-05 20:45:44 -0800608 rv = vcl_bapi_wait_for_wrk_state_change (STATE_APP_ENABLED);
Florin Corasb88de902020-09-08 16:47:57 -0700609 if (PREDICT_FALSE (rv))
610 {
611 VDBG (0, "application session enable timed out! returning %d (%s)",
612 rv, vppcom_retval_str (rv));
613 return rv;
614 }
615 }
616 return VPPCOM_OK;
617}
618
619static int
620vcl_bapi_init (void)
621{
Florin Coras3b6c84c2021-01-05 20:45:44 -0800622 vcl_worker_t *wrk = vcl_worker_get_current ();
Florin Corasb88de902020-09-08 16:47:57 -0700623 int rv;
624
Florin Coras3b6c84c2021-01-05 20:45:44 -0800625 wrk->bapi_app_state = STATE_APP_START;
Florin Corasb88de902020-09-08 16:47:57 -0700626 vcl_bapi_init_error_string_table ();
627 rv = vcl_bapi_connect_to_vpp ();
628 if (rv)
629 {
630 VERR ("couldn't connect to VPP!");
631 return rv;
632 }
633 VDBG (0, "sending session enable");
634 rv = vcl_bapi_session_enable ();
635 if (rv)
636 {
637 VERR ("vppcom_app_session_enable() failed!");
638 return rv;
639 }
640
641 return 0;
642}
643
644int
645vcl_bapi_attach (void)
646{
647 int rv;
648
649 /* API hookup and connect to VPP */
650 if ((rv = vcl_bapi_init ()))
651 return rv;
652
653 vcl_bapi_send_attach ();
Florin Coras3b6c84c2021-01-05 20:45:44 -0800654 rv = vcl_bapi_wait_for_wrk_state_change (STATE_APP_ATTACHED);
Florin Corasb88de902020-09-08 16:47:57 -0700655 if (PREDICT_FALSE (rv))
656 {
657 VDBG (0, "application attach timed out! returning %d (%s)", rv,
658 vppcom_retval_str (rv));
659 return rv;
660 }
661
662 return 0;
663}
664
665int
666vcl_bapi_app_worker_add (void)
667{
Florin Coras3b6c84c2021-01-05 20:45:44 -0800668 vcl_worker_t *wrk = vcl_worker_get_current ();
669
Florin Corasb88de902020-09-08 16:47:57 -0700670 if (vcl_bapi_connect_to_vpp ())
671 return -1;
672
Florin Coras3b6c84c2021-01-05 20:45:44 -0800673 wrk->bapi_app_state = STATE_APP_ADDING_WORKER;
Florin Corasb88de902020-09-08 16:47:57 -0700674 vcl_bapi_send_app_worker_add_del (1 /* is_add */ );
Florin Coras3b6c84c2021-01-05 20:45:44 -0800675 if (vcl_bapi_wait_for_wrk_state_change (STATE_APP_READY))
Florin Corasb88de902020-09-08 16:47:57 -0700676 return -1;
677 return 0;
678}
679
680void
681vcl_bapi_app_worker_del (vcl_worker_t * wrk)
682{
683 /* Notify vpp that the worker is going away */
684 if (wrk->wrk_index == vcl_get_worker_index ())
685 vcl_bapi_send_app_worker_add_del (0 /* is_add */ );
686 else
687 vcl_bapi_send_child_worker_del (wrk);
688
689 /* Disconnect the binary api */
690 if (vec_len (vcm->workers) == 1)
691 vcl_bapi_disconnect_from_vpp ();
692 else
693 vl_client_send_disconnect (1 /* vpp should cleanup */ );
694}
695
696int
Florin Coras935ce752020-09-08 22:43:47 -0700697vcl_bapi_recv_fds (vcl_worker_t * wrk, int *fds, int n_fds)
698{
699 clib_error_t *err;
700
701 if ((err = vl_socket_client_recv_fd_msg2 (&wrk->bapi_sock_ctx, fds, n_fds,
702 5)))
703 {
704 clib_error_report (err);
705 return -1;
706 }
707
708 return 0;
709}
710
711int
Florin Corasa5a9efd2021-01-05 17:03:29 -0800712vcl_bapi_add_cert_key_pair (vppcom_cert_key_pair_t *ckpair)
Florin Corasb88de902020-09-08 16:47:57 -0700713{
Florin Corasb88de902020-09-08 16:47:57 -0700714 vcl_worker_t *wrk = vcl_worker_get_current ();
Florin Corasb88de902020-09-08 16:47:57 -0700715
Florin Corasa5a9efd2021-01-05 17:03:29 -0800716 if (ckpair->key_len == 0 || ckpair->key_len == ~0)
717 return VPPCOM_EINVAL;
Florin Corasb88de902020-09-08 16:47:57 -0700718
Florin Corasa5a9efd2021-01-05 17:03:29 -0800719 vcl_bapi_send_app_add_cert_key_pair (ckpair);
Florin Coras3b6c84c2021-01-05 20:45:44 -0800720 wrk->bapi_app_state = STATE_APP_ADDING_TLS_DATA;
721 vcl_bapi_wait_for_wrk_state_change (STATE_APP_READY);
Florin Corasa5a9efd2021-01-05 17:03:29 -0800722 if (wrk->bapi_app_state == STATE_APP_READY)
723 return wrk->bapi_return;
724 return VPPCOM_EFAULT;
Florin Corasb88de902020-09-08 16:47:57 -0700725}
726
727int
Florin Corasa5a9efd2021-01-05 17:03:29 -0800728vcl_bapi_del_cert_key_pair (u32 ckpair_index)
Florin Corasb88de902020-09-08 16:47:57 -0700729{
Florin Corasa5a9efd2021-01-05 17:03:29 -0800730 /* Don't wait for reply */
731 vcl_bapi_send_app_del_cert_key_pair (ckpair_index);
732 return 0;
Florin Corasb88de902020-09-08 16:47:57 -0700733}
734
735int
736vcl_bapi_worker_set (void)
737{
738 vcl_worker_t *wrk = vcl_worker_get_current ();
739 int i;
740
741 /* Find the first worker with the same pid */
742 for (i = 0; i < vec_len (vcm->workers); i++)
743 {
744 if (i == wrk->wrk_index)
745 continue;
746 if (vcm->workers[i].current_pid == wrk->current_pid)
747 {
748 wrk->vl_input_queue = vcm->workers[i].vl_input_queue;
Florin Corascc7c88e2020-09-15 15:56:51 -0700749 wrk->api_client_handle = vcm->workers[i].api_client_handle;
Florin Corasb88de902020-09-08 16:47:57 -0700750 return 0;
751 }
752 }
753 return -1;
754}
755
Florin Coras697faea2018-06-27 17:10:49 -0700756/*
757 * fd.io coding-style-patch-verification: ON
758 *
759 * Local Variables:
760 * eval: (c-set-style "gnu")
761 * End:
762 */