blob: 6071f646da4cc1cfc4e2d7fc546c00a8cb074b9d [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>
Florin Coras697faea2018-06-27 17:10:49 -070018
Filip Tehlar0046e972021-06-26 22:12:08 +000019#include <vnet/format_fns.h>
20#include <vnet/session/session.api_enum.h>
21#include <vnet/session/session.api_types.h>
Florin Coras697faea2018-06-27 17:10:49 -070022
Filip Tehlar0046e972021-06-26 22:12:08 +000023#define REPLY_MSG_ID_BASE msg_id_base
Florin Coras697faea2018-06-27 17:10:49 -070024
Filip Tehlar0046e972021-06-26 22:12:08 +000025static u16 msg_id_base;
Florin Coras697faea2018-06-27 17:10:49 -070026
Florin Coras00e01d32019-10-21 16:07:46 -070027static u8 *
Florin Coras697faea2018-06-27 17:10:49 -070028format_api_error (u8 * s, va_list * args)
29{
30 i32 error = va_arg (*args, u32);
31 uword *p;
32
33 p = hash_get (vcm->error_string_by_error_number, -error);
34
35 if (p)
36 s = format (s, "%s (%d)", p[0], error);
37 else
38 s = format (s, "%d", error);
39 return s;
40}
41
42static void
43 vl_api_session_enable_disable_reply_t_handler
44 (vl_api_session_enable_disable_reply_t * mp)
45{
Florin Coras3b6c84c2021-01-05 20:45:44 -080046 vcl_worker_t *wrk = vcl_worker_get (0);
47
Florin Coras697faea2018-06-27 17:10:49 -070048 if (mp->retval)
49 {
50 clib_warning ("VCL<%d>: session_enable_disable failed: %U", getpid (),
51 format_api_error, ntohl (mp->retval));
52 }
53 else
Florin Coras3b6c84c2021-01-05 20:45:44 -080054 wrk->bapi_app_state = STATE_APP_ENABLED;
Florin Coras697faea2018-06-27 17:10:49 -070055}
56
Florin Corasd85de682018-11-29 17:02:29 -080057static void
Florin Coras458089b2019-08-21 16:20:44 -070058vl_api_app_attach_reply_t_handler (vl_api_app_attach_reply_t * mp)
Florin Coras697faea2018-06-27 17:10:49 -070059{
Florin Coras134a9962018-08-28 11:32:04 -070060 vcl_worker_t *wrk = vcl_worker_get (0);
Florin Corasd85de682018-11-29 17:02:29 -080061 u64 segment_handle;
Jakub Grajciarb4e5e502020-01-31 09:35:29 +010062 int *fds = 0, i, rv;
Florin Coras99368312018-08-02 10:45:44 -070063 u32 n_fds = 0;
Jakub Grajciarb4e5e502020-01-31 09:35:29 +010064 char *segment_name = 0;
Florin Coras697faea2018-06-27 17:10:49 -070065
Florin Coras697faea2018-06-27 17:10:49 -070066 if (mp->retval)
67 {
Florin Corasa5efca32019-03-20 08:33:10 -070068 VERR ("attach failed: %U", format_api_error, ntohl (mp->retval));
69 goto failed;
Florin Coras697faea2018-06-27 17:10:49 -070070 }
71
Florin Coras3b6c84c2021-01-05 20:45:44 -080072 vcl_set_worker_index (0);
73
Florin Corasd85de682018-11-29 17:02:29 -080074 segment_handle = clib_net_to_host_u64 (mp->segment_handle);
75 if (segment_handle == VCL_INVALID_SEGMENT_HANDLE)
76 {
Florin Corasa5efca32019-03-20 08:33:10 -070077 VERR ("invalid segment handle");
78 goto failed;
Florin Corasd85de682018-11-29 17:02:29 -080079 }
80
Florin Coras99368312018-08-02 10:45:44 -070081 if (mp->n_fds)
Florin Coras697faea2018-06-27 17:10:49 -070082 {
Florin Coras99368312018-08-02 10:45:44 -070083 vec_validate (fds, mp->n_fds);
Florin Corasd4c70922019-11-28 14:21:21 -080084 if (vl_socket_client_recv_fd_msg2 (&wrk->bapi_sock_ctx, fds, mp->n_fds,
85 5))
Florin Coras617574d2019-07-01 07:32:31 -070086 goto failed;
Florin Coras99368312018-08-02 10:45:44 -070087
88 if (mp->fd_flags & SESSION_FD_F_VPP_MQ_SEGMENT)
Florin Corasd85de682018-11-29 17:02:29 -080089 if (vcl_segment_attach (vcl_vpp_worker_segment_handle (0),
90 "vpp-mq-seg", SSVM_SEGMENT_MEMFD,
91 fds[n_fds++]))
Florin Corasa5efca32019-03-20 08:33:10 -070092 goto failed;
Florin Coras99368312018-08-02 10:45:44 -070093
94 if (mp->fd_flags & SESSION_FD_F_MEMFD_SEGMENT)
Jakub Grajciarb4e5e502020-01-31 09:35:29 +010095 {
96 segment_name = vl_api_from_api_to_new_c_string (&mp->segment_name);
97 rv =
98 vcl_segment_attach (segment_handle, segment_name,
99 SSVM_SEGMENT_MEMFD, fds[n_fds++]);
100 vec_free (segment_name);
101 if (rv != 0)
102 goto failed;
103 }
104
Florin Corasb4624182020-12-11 13:58:12 -0800105 vcl_segment_attach_mq (segment_handle, mp->app_mq, 0,
106 &wrk->app_event_queue);
Florin Coras99368312018-08-02 10:45:44 -0700107
108 if (mp->fd_flags & SESSION_FD_F_MQ_EVENTFD)
109 {
Florin Coras86f12322021-01-22 15:05:14 -0800110 svm_msg_q_set_eventfd (wrk->app_event_queue, fds[n_fds]);
Florin Coras134a9962018-08-28 11:32:04 -0700111 vcl_mq_epoll_add_evfd (wrk, wrk->app_event_queue);
Florin Coras99368312018-08-02 10:45:44 -0700112 n_fds++;
113 }
114
Florin Coras80b74252021-01-27 18:08:25 -0800115 vcl_segment_discover_mqs (vcl_vpp_worker_segment_handle (0), fds + n_fds,
116 mp->n_fds - n_fds);
117 vcl_segment_attach_mq (vcl_vpp_worker_segment_handle (0),
118 mp->vpp_ctrl_mq, mp->vpp_ctrl_mq_thread,
119 &wrk->ctrl_mq);
120 vcm->ctrl_mq = wrk->ctrl_mq;
121
Florin Coras99368312018-08-02 10:45:44 -0700122 vec_free (fds);
Florin Coras697faea2018-06-27 17:10:49 -0700123 }
Florin Coras99368312018-08-02 10:45:44 -0700124 else
Florin Coras697faea2018-06-27 17:10:49 -0700125 {
Jakub Grajciarb4e5e502020-01-31 09:35:29 +0100126 segment_name = vl_api_from_api_to_new_c_string (&mp->segment_name);
127 rv =
128 vcl_segment_attach (segment_handle, segment_name, SSVM_SEGMENT_SHM,
129 -1);
130 vec_free (segment_name);
131 if (rv != 0)
Florin Corasa5efca32019-03-20 08:33:10 -0700132 goto failed;
Florin Coras697faea2018-06-27 17:10:49 -0700133 }
134
Florin Corasc1f5a432018-11-20 11:31:26 -0800135 vcm->app_index = clib_net_to_host_u32 (mp->app_index);
Florin Coras3b6c84c2021-01-05 20:45:44 -0800136 wrk->bapi_app_state = STATE_APP_ATTACHED;
Florin Corasa5efca32019-03-20 08:33:10 -0700137 return;
138
139failed:
Florin Coras3b6c84c2021-01-05 20:45:44 -0800140 wrk->bapi_app_state = STATE_APP_FAILED;
Florin Coras617574d2019-07-01 07:32:31 -0700141 for (i = clib_max (n_fds - 1, 0); i < vec_len (fds); i++)
142 close (fds[i]);
143 vec_free (fds);
Florin Coras697faea2018-06-27 17:10:49 -0700144}
145
146static void
Florin Coras134a9962018-08-28 11:32:04 -0700147vl_api_app_worker_add_del_reply_t_handler (vl_api_app_worker_add_del_reply_t *
148 mp)
149{
Jakub Grajciarb4e5e502020-01-31 09:35:29 +0100150 int n_fds = 0, *fds = 0, i, rv;
Florin Corasd85de682018-11-29 17:02:29 -0800151 u64 segment_handle;
Florin Coras134a9962018-08-28 11:32:04 -0700152 vcl_worker_t *wrk;
Florin Corasab2f6db2018-08-31 14:31:41 -0700153 u32 wrk_index;
Jakub Grajciarb4e5e502020-01-31 09:35:29 +0100154 char *segment_name = 0;
Florin Coras134a9962018-08-28 11:32:04 -0700155
Florin Coras3348a4c2018-09-07 17:09:35 -0700156 if (!mp->is_add)
157 return;
158
Florin Corasdc2e2512018-12-03 17:47:26 -0800159 wrk_index = mp->context;
Florin Coras01f3f892018-12-02 12:45:53 -0800160 wrk = vcl_worker_get_if_valid (wrk_index);
161 if (!wrk)
162 return;
163
Florin Coras3b6c84c2021-01-05 20:45:44 -0800164 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 }
170
171 vcl_set_worker_index (wrk_index);
Florin Corasdc2e2512018-12-03 17:47:26 -0800172 wrk->vpp_wrk_index = clib_net_to_host_u32 (mp->wrk_index);
Florin Coras22ba3302019-08-29 22:45:04 -0700173 wrk->ctrl_mq = vcm->ctrl_mq;
Florin Coras134a9962018-08-28 11:32:04 -0700174
Florin Corasd85de682018-11-29 17:02:29 -0800175 segment_handle = clib_net_to_host_u64 (mp->segment_handle);
176 if (segment_handle == VCL_INVALID_SEGMENT_HANDLE)
177 {
178 clib_warning ("invalid segment handle");
Florin Coras01f3f892018-12-02 12:45:53 -0800179 goto failed;
Florin Corasd85de682018-11-29 17:02:29 -0800180 }
181
Florin Coras134a9962018-08-28 11:32:04 -0700182 if (mp->n_fds)
183 {
184 vec_validate (fds, mp->n_fds);
Florin Corasd4c70922019-11-28 14:21:21 -0800185 if (vl_socket_client_recv_fd_msg2 (&wrk->bapi_sock_ctx, fds, mp->n_fds,
186 5))
Florin Coras617574d2019-07-01 07:32:31 -0700187 goto failed;
Florin Coras134a9962018-08-28 11:32:04 -0700188
189 if (mp->fd_flags & SESSION_FD_F_VPP_MQ_SEGMENT)
Florin Coras01f3f892018-12-02 12:45:53 -0800190 if (vcl_segment_attach (vcl_vpp_worker_segment_handle (wrk_index),
191 "vpp-worker-seg", SSVM_SEGMENT_MEMFD,
192 fds[n_fds++]))
Florin Coras134a9962018-08-28 11:32:04 -0700193 goto failed;
194
195 if (mp->fd_flags & SESSION_FD_F_MEMFD_SEGMENT)
Jakub Grajciarb4e5e502020-01-31 09:35:29 +0100196 {
197 segment_name = vl_api_from_api_to_new_c_string (&mp->segment_name);
198 rv =
199 vcl_segment_attach (segment_handle, segment_name,
200 SSVM_SEGMENT_MEMFD, fds[n_fds++]);
201 vec_free (segment_name);
202 if (rv != 0)
203 goto failed;
204 }
Florin Coras134a9962018-08-28 11:32:04 -0700205
Florin Corasb4624182020-12-11 13:58:12 -0800206 vcl_segment_attach_mq (segment_handle, mp->app_event_queue_address, 0,
207 &wrk->app_event_queue);
208
Florin Coras134a9962018-08-28 11:32:04 -0700209 if (mp->fd_flags & SESSION_FD_F_MQ_EVENTFD)
210 {
Florin Coras86f12322021-01-22 15:05:14 -0800211 svm_msg_q_set_eventfd (wrk->app_event_queue, fds[n_fds]);
Florin Coras134a9962018-08-28 11:32:04 -0700212 vcl_mq_epoll_add_evfd (wrk, wrk->app_event_queue);
213 n_fds++;
214 }
215
216 vec_free (fds);
217 }
218 else
219 {
Jakub Grajciarb4e5e502020-01-31 09:35:29 +0100220 segment_name = vl_api_from_api_to_new_c_string (&mp->segment_name);
221 rv =
222 vcl_segment_attach (segment_handle, segment_name, SSVM_SEGMENT_SHM,
223 -1);
224 vec_free (segment_name);
225 if (rv != 0)
Florin Coras134a9962018-08-28 11:32:04 -0700226 goto failed;
227 }
Florin Coras3b6c84c2021-01-05 20:45:44 -0800228 wrk->bapi_app_state = STATE_APP_READY;
Florin Coras053a0e42018-11-13 15:52:38 -0800229 VDBG (0, "worker %u vpp-worker %u added", wrk_index, wrk->vpp_wrk_index);
Florin Coras134a9962018-08-28 11:32:04 -0700230 return;
231
232failed:
Florin Coras3b6c84c2021-01-05 20:45:44 -0800233 wrk->bapi_app_state = STATE_APP_FAILED;
Florin Coras617574d2019-07-01 07:32:31 -0700234 for (i = clib_max (n_fds - 1, 0); i < vec_len (fds); i++)
235 close (fds[i]);
236 vec_free (fds);
Florin Coras134a9962018-08-28 11:32:04 -0700237}
238
239static void
Florin Corasa5a9efd2021-01-05 17:03:29 -0800240vl_api_app_add_cert_key_pair_reply_t_handler (
241 vl_api_app_add_cert_key_pair_reply_t *mp)
Ping Yu34a3a082018-11-30 19:16:17 -0500242{
Florin Coras3b6c84c2021-01-05 20:45:44 -0800243 vcl_worker_t *wrk = vcl_worker_get_current ();
244
Ping Yu34a3a082018-11-30 19:16:17 -0500245 if (mp->retval)
Florin Coras3b6c84c2021-01-05 20:45:44 -0800246 {
Florin Corasa5a9efd2021-01-05 17:03:29 -0800247 VDBG (0, "Adding cert and key failed: %U", format_api_error,
248 ntohl (mp->retval));
Florin Coras3b6c84c2021-01-05 20:45:44 -0800249 return;
250 }
Florin Corasa5a9efd2021-01-05 17:03:29 -0800251 wrk->bapi_return = clib_net_to_host_u32 (mp->index);
Florin Coras3b6c84c2021-01-05 20:45:44 -0800252 wrk->bapi_app_state = STATE_APP_READY;
Ping Yu34a3a082018-11-30 19:16:17 -0500253}
254
255static void
Florin Corasa5a9efd2021-01-05 17:03:29 -0800256vl_api_app_del_cert_key_pair_reply_t_handler (
257 vl_api_app_del_cert_key_pair_reply_t *mp)
Ping Yu34a3a082018-11-30 19:16:17 -0500258{
259 if (mp->retval)
Florin Coras3b6c84c2021-01-05 20:45:44 -0800260 {
Florin Corasa5a9efd2021-01-05 17:03:29 -0800261 VDBG (0, "Deleting cert and key failed: %U", format_api_error,
262 ntohl (mp->retval));
Florin Coras3b6c84c2021-01-05 20:45:44 -0800263 return;
264 }
Ping Yu34a3a082018-11-30 19:16:17 -0500265}
266
Florin Corasa5a9efd2021-01-05 17:03:29 -0800267#define foreach_sock_msg \
268 _ (SESSION_ENABLE_DISABLE_REPLY, session_enable_disable_reply) \
269 _ (APP_ATTACH_REPLY, app_attach_reply) \
270 _ (APP_ADD_CERT_KEY_PAIR_REPLY, app_add_cert_key_pair_reply) \
271 _ (APP_DEL_CERT_KEY_PAIR_REPLY, app_del_cert_key_pair_reply) \
272 _ (APP_WORKER_ADD_DEL_REPLY, app_worker_add_del_reply)
Florin Coras697faea2018-06-27 17:10:49 -0700273
Filip Tehlar0046e972021-06-26 22:12:08 +0000274#define vl_endianfun /* define message structures */
275#include <vnet/session/session.api.h>
276#undef vl_endianfun
277
Klement Sekera9b7e8ac2021-11-22 21:26:20 +0100278#define vl_calcsizefun
279#include <vnet/session/session.api.h>
280#undef vl_calcsizefun
281
Filip Tehlar0046e972021-06-26 22:12:08 +0000282/* instantiate all the print functions we know about */
283#define vl_printfun
284#include <vnet/session/session.api.h>
285#undef vl_printfun
286
287#define vl_api_version(n, v) static u32 api_version = v;
288#include <vnet/session/session.api.h>
289#undef vl_api_version
290
Florin Corasb88de902020-09-08 16:47:57 -0700291static void
292vcl_bapi_hookup (void)
Florin Coras697faea2018-06-27 17:10:49 -0700293{
Filip Tehlar0046e972021-06-26 22:12:08 +0000294 u8 *msg_base_lookup_name = format (0, "session_%08x%c", api_version, 0);
295
296 REPLY_MSG_ID_BASE =
297 vl_client_get_first_plugin_msg_id ((char *) msg_base_lookup_name);
298
299 vec_free (msg_base_lookup_name);
300
301 if (REPLY_MSG_ID_BASE == (u16) ~0)
302 return;
303
304#define _(N, n) \
Damjan Mariona2eb5072022-05-20 20:06:01 +0200305 vl_msg_api_config (&(vl_msg_api_msg_config_t){ \
306 .id = REPLY_MSG_ID_BASE + VL_API_##N, \
307 .name = #n, \
308 .handler = vl_api_##n##_t_handler, \
309 .endian = vl_api_##n##_t_endian, \
310 .format_fn = vl_api_##n##_t_format, \
311 .size = sizeof (vl_api_##n##_t), \
312 .traced = 1, \
313 .tojson = vl_api_##n##_t_tojson, \
314 .fromjson = vl_api_##n##_t_fromjson, \
315 .calc_size = vl_api_##n##_t_calc_size, \
316 });
Florin Coras697faea2018-06-27 17:10:49 -0700317 foreach_sock_msg;
318#undef _
319}
320
321/*
322 * VPP-API message functions
323 */
Florin Corasb88de902020-09-08 16:47:57 -0700324static void
325vcl_bapi_send_session_enable_disable (u8 is_enable)
Florin Coras697faea2018-06-27 17:10:49 -0700326{
Florin Coras47c40e22018-11-26 17:01:36 -0800327 vcl_worker_t *wrk = vcl_worker_get_current ();
Florin Coras697faea2018-06-27 17:10:49 -0700328 vl_api_session_enable_disable_t *bmp;
329 bmp = vl_msg_api_alloc (sizeof (*bmp));
330 memset (bmp, 0, sizeof (*bmp));
331
Filip Tehlar0046e972021-06-26 22:12:08 +0000332 bmp->_vl_msg_id = ntohs (REPLY_MSG_ID_BASE + VL_API_SESSION_ENABLE_DISABLE);
Florin Corascc7c88e2020-09-15 15:56:51 -0700333 bmp->client_index = wrk->api_client_handle;
Florin Coras697faea2018-06-27 17:10:49 -0700334 bmp->context = htonl (0xfeedface);
335 bmp->is_enable = is_enable;
Florin Coras47c40e22018-11-26 17:01:36 -0800336 vl_msg_api_send_shmem (wrk->vl_input_queue, (u8 *) & bmp);
Florin Coras697faea2018-06-27 17:10:49 -0700337}
338
339void
Florin Corasb88de902020-09-08 16:47:57 -0700340vcl_bapi_send_attach (void)
Florin Coras697faea2018-06-27 17:10:49 -0700341{
Florin Coras47c40e22018-11-26 17:01:36 -0800342 vcl_worker_t *wrk = vcl_worker_get_current ();
Florin Corasd747c3c2019-10-20 19:55:56 -0700343 u8 tls_engine = CRYPTO_ENGINE_OPENSSL;
Florin Coras458089b2019-08-21 16:20:44 -0700344 vl_api_app_attach_t *bmp;
Florin Coras697faea2018-06-27 17:10:49 -0700345 u8 nsid_len = vec_len (vcm->cfg.namespace_id);
346 u8 app_is_proxy = (vcm->cfg.app_proxy_transport_tcp ||
347 vcm->cfg.app_proxy_transport_udp);
348
Florin Corasd747c3c2019-10-20 19:55:56 -0700349 tls_engine = vcm->cfg.tls_engine ? vcm->cfg.tls_engine : tls_engine;
350
Florin Coras697faea2018-06-27 17:10:49 -0700351 bmp = vl_msg_api_alloc (sizeof (*bmp));
352 memset (bmp, 0, sizeof (*bmp));
353
Filip Tehlar0046e972021-06-26 22:12:08 +0000354 bmp->_vl_msg_id = ntohs (REPLY_MSG_ID_BASE + VL_API_APP_ATTACH);
Florin Corascc7c88e2020-09-15 15:56:51 -0700355 bmp->client_index = wrk->api_client_handle;
Florin Coras697faea2018-06-27 17:10:49 -0700356 bmp->context = htonl (0xfeedface);
357 bmp->options[APP_OPTIONS_FLAGS] =
358 APP_OPTIONS_FLAGS_ACCEPT_REDIRECT | APP_OPTIONS_FLAGS_ADD_SEGMENT |
359 (vcm->cfg.app_scope_local ? APP_OPTIONS_FLAGS_USE_LOCAL_SCOPE : 0) |
360 (vcm->cfg.app_scope_global ? APP_OPTIONS_FLAGS_USE_GLOBAL_SCOPE : 0) |
Florin Coras54693d22018-07-17 10:46:29 -0700361 (app_is_proxy ? APP_OPTIONS_FLAGS_IS_PROXY : 0) |
Junfeng Wangc795b882022-08-12 16:24:46 +0800362 (vcm->cfg.use_mq_eventfd ? APP_OPTIONS_FLAGS_EVT_MQ_USE_EVENTFD : 0) |
qinyangaf9b7152023-06-27 01:11:53 -0700363 (vcm->cfg.huge_page ? APP_OPTIONS_FLAGS_USE_HUGE_PAGE : 0) |
364 (vcm->cfg.app_original_dst ? APP_OPTIONS_FLAGS_GET_ORIGINAL_DST : 0);
Florin Coras697faea2018-06-27 17:10:49 -0700365 bmp->options[APP_OPTIONS_PROXY_TRANSPORT] =
366 (u64) ((vcm->cfg.app_proxy_transport_tcp ? 1 << TRANSPORT_PROTO_TCP : 0) |
367 (vcm->cfg.app_proxy_transport_udp ? 1 << TRANSPORT_PROTO_UDP : 0));
368 bmp->options[APP_OPTIONS_SEGMENT_SIZE] = vcm->cfg.segment_size;
369 bmp->options[APP_OPTIONS_ADD_SEGMENT_SIZE] = vcm->cfg.add_segment_size;
370 bmp->options[APP_OPTIONS_RX_FIFO_SIZE] = vcm->cfg.rx_fifo_size;
371 bmp->options[APP_OPTIONS_TX_FIFO_SIZE] = vcm->cfg.tx_fifo_size;
372 bmp->options[APP_OPTIONS_PREALLOC_FIFO_PAIRS] =
373 vcm->cfg.preallocated_fifo_pairs;
374 bmp->options[APP_OPTIONS_EVT_QUEUE_SIZE] = vcm->cfg.event_queue_size;
Florin Corasd747c3c2019-10-20 19:55:56 -0700375 bmp->options[APP_OPTIONS_TLS_ENGINE] = tls_engine;
Florin Coras697faea2018-06-27 17:10:49 -0700376 if (nsid_len)
377 {
Jakub Grajciarb4e5e502020-01-31 09:35:29 +0100378 vl_api_vec_to_api_string (vcm->cfg.namespace_id, &bmp->namespace_id);
Florin Coras697faea2018-06-27 17:10:49 -0700379 bmp->options[APP_OPTIONS_NAMESPACE_SECRET] = vcm->cfg.namespace_secret;
380 }
Florin Coras47c40e22018-11-26 17:01:36 -0800381 vl_msg_api_send_shmem (wrk->vl_input_queue, (u8 *) & bmp);
Florin Coras697faea2018-06-27 17:10:49 -0700382}
383
384void
Florin Corasb88de902020-09-08 16:47:57 -0700385vcl_bapi_send_detach (void)
Florin Coras697faea2018-06-27 17:10:49 -0700386{
Florin Coras47c40e22018-11-26 17:01:36 -0800387 vcl_worker_t *wrk = vcl_worker_get_current ();
Florin Coras697faea2018-06-27 17:10:49 -0700388 vl_api_application_detach_t *bmp;
389 bmp = vl_msg_api_alloc (sizeof (*bmp));
390 memset (bmp, 0, sizeof (*bmp));
391
Filip Tehlar0046e972021-06-26 22:12:08 +0000392 bmp->_vl_msg_id = ntohs (REPLY_MSG_ID_BASE + VL_API_APPLICATION_DETACH);
Florin Corascc7c88e2020-09-15 15:56:51 -0700393 bmp->client_index = wrk->api_client_handle;
Florin Coras697faea2018-06-27 17:10:49 -0700394 bmp->context = htonl (0xfeedface);
Florin Coras47c40e22018-11-26 17:01:36 -0800395 vl_msg_api_send_shmem (wrk->vl_input_queue, (u8 *) & bmp);
Florin Coras697faea2018-06-27 17:10:49 -0700396}
397
Florin Corasb88de902020-09-08 16:47:57 -0700398static void
399vcl_bapi_send_app_worker_add_del (u8 is_add)
Florin Coras134a9962018-08-28 11:32:04 -0700400{
401 vcl_worker_t *wrk = vcl_worker_get_current ();
402 vl_api_app_worker_add_del_t *mp;
Florin Coras134a9962018-08-28 11:32:04 -0700403
404 mp = vl_msg_api_alloc (sizeof (*mp));
405 memset (mp, 0, sizeof (*mp));
406
Filip Tehlar0046e972021-06-26 22:12:08 +0000407 mp->_vl_msg_id = ntohs (REPLY_MSG_ID_BASE + VL_API_APP_WORKER_ADD_DEL);
Florin Corascc7c88e2020-09-15 15:56:51 -0700408 mp->client_index = wrk->api_client_handle;
Florin Corasc1f5a432018-11-20 11:31:26 -0800409 mp->app_index = clib_host_to_net_u32 (vcm->app_index);
Florin Coras01f3f892018-12-02 12:45:53 -0800410 mp->context = wrk->wrk_index;
Florin Coras134a9962018-08-28 11:32:04 -0700411 mp->is_add = is_add;
412 if (!is_add)
Florin Coras01f3f892018-12-02 12:45:53 -0800413 mp->wrk_index = clib_host_to_net_u32 (wrk->vpp_wrk_index);
414
415 vl_msg_api_send_shmem (wrk->vl_input_queue, (u8 *) & mp);
416}
417
Florin Corasb88de902020-09-08 16:47:57 -0700418static void
419vcl_bapi_send_child_worker_del (vcl_worker_t * child_wrk)
Florin Coras01f3f892018-12-02 12:45:53 -0800420{
421 vcl_worker_t *wrk = vcl_worker_get_current ();
422 vl_api_app_worker_add_del_t *mp;
423
424 mp = vl_msg_api_alloc (sizeof (*mp));
425 memset (mp, 0, sizeof (*mp));
426
Filip Tehlar0046e972021-06-26 22:12:08 +0000427 mp->_vl_msg_id = ntohs (REPLY_MSG_ID_BASE + VL_API_APP_WORKER_ADD_DEL);
Florin Corascc7c88e2020-09-15 15:56:51 -0700428 mp->client_index = wrk->api_client_handle;
Florin Coras01f3f892018-12-02 12:45:53 -0800429 mp->app_index = clib_host_to_net_u32 (vcm->app_index);
430 mp->context = wrk->wrk_index;
431 mp->is_add = 0;
432 mp->wrk_index = clib_host_to_net_u32 (child_wrk->vpp_wrk_index);
Florin Coras134a9962018-08-28 11:32:04 -0700433
Florin Coras47c40e22018-11-26 17:01:36 -0800434 vl_msg_api_send_shmem (wrk->vl_input_queue, (u8 *) & mp);
Florin Coras134a9962018-08-28 11:32:04 -0700435}
436
Florin Corasa5a9efd2021-01-05 17:03:29 -0800437static void
438vcl_bapi_send_app_add_cert_key_pair (vppcom_cert_key_pair_t *ckpair)
Ping Yu34a3a082018-11-30 19:16:17 -0500439{
440 vcl_worker_t *wrk = vcl_worker_get_current ();
Sivaprasad Tummala39d25e52021-07-27 17:38:00 +0530441 u32 cert_len = ckpair->cert_len;
442 u32 key_len = ckpair->key_len;
Florin Corasa5a9efd2021-01-05 17:03:29 -0800443 vl_api_app_add_cert_key_pair_t *bmp;
Ping Yu34a3a082018-11-30 19:16:17 -0500444
Florin Corasa5a9efd2021-01-05 17:03:29 -0800445 bmp = vl_msg_api_alloc (sizeof (*bmp) + cert_len + key_len);
446 clib_memset (bmp, 0, sizeof (*bmp) + cert_len + key_len);
447
Filip Tehlar0046e972021-06-26 22:12:08 +0000448 bmp->_vl_msg_id = ntohs (REPLY_MSG_ID_BASE + VL_API_APP_ADD_CERT_KEY_PAIR);
Florin Corasa5a9efd2021-01-05 17:03:29 -0800449 bmp->client_index = wrk->api_client_handle;
450 bmp->context = wrk->wrk_index;
451 bmp->cert_len = clib_host_to_net_u16 (cert_len);
452 bmp->certkey_len = clib_host_to_net_u16 (key_len + cert_len);
Sivaprasad Tummala39d25e52021-07-27 17:38:00 +0530453 clib_memcpy_fast (bmp->certkey, ckpair->cert, cert_len);
454 clib_memcpy_fast (bmp->certkey + cert_len, ckpair->key, key_len);
Florin Corasa5a9efd2021-01-05 17:03:29 -0800455
456 vl_msg_api_send_shmem (wrk->vl_input_queue, (u8 *) &bmp);
Ping Yu34a3a082018-11-30 19:16:17 -0500457}
458
Florin Corasa5a9efd2021-01-05 17:03:29 -0800459static void
460vcl_bapi_send_app_del_cert_key_pair (u32 ckpair_index)
Ping Yu34a3a082018-11-30 19:16:17 -0500461{
462 vcl_worker_t *wrk = vcl_worker_get_current ();
Florin Corasa5a9efd2021-01-05 17:03:29 -0800463 vl_api_app_del_cert_key_pair_t *bmp;
464 bmp = vl_msg_api_alloc (sizeof (*bmp));
465 clib_memset (bmp, 0, sizeof (*bmp));
Ping Yu34a3a082018-11-30 19:16:17 -0500466
Filip Tehlar0046e972021-06-26 22:12:08 +0000467 bmp->_vl_msg_id = ntohs (REPLY_MSG_ID_BASE + VL_API_APP_DEL_CERT_KEY_PAIR);
Florin Corasa5a9efd2021-01-05 17:03:29 -0800468 bmp->client_index = wrk->api_client_handle;
469 bmp->context = wrk->wrk_index;
470 bmp->index = clib_host_to_net_u32 (ckpair_index);
471 vl_msg_api_send_shmem (wrk->vl_input_queue, (u8 *) &bmp);
Ping Yu34a3a082018-11-30 19:16:17 -0500472}
473
Florin Coras697faea2018-06-27 17:10:49 -0700474u32
Florin Corasb88de902020-09-08 16:47:57 -0700475vcl_bapi_max_nsid_len (void)
Florin Coras697faea2018-06-27 17:10:49 -0700476{
Florin Coras888d9f02020-04-02 23:00:13 +0000477 vl_api_app_attach_t *mp;
Florin Coras697faea2018-06-27 17:10:49 -0700478 return (sizeof (mp->namespace_id) - 1);
479}
480
Florin Corasb88de902020-09-08 16:47:57 -0700481static void
482vcl_bapi_init_error_string_table (void)
Florin Coras697faea2018-06-27 17:10:49 -0700483{
484 vcm->error_string_by_error_number = hash_create (0, sizeof (uword));
485
486#define _(n, v, s) hash_set (vcm->error_string_by_error_number, -v, s);
487 foreach_vnet_api_error;
488#undef _
489
490 hash_set (vcm->error_string_by_error_number, 99, "Misc");
491}
492
Florin Corasb88de902020-09-08 16:47:57 -0700493static void
494vcl_bapi_cleanup (void)
495{
496 socket_client_main_t *scm = &socket_client_main;
497 api_main_t *am = vlibapi_get_main ();
498
499 am->my_client_index = ~0;
500 am->my_registration = 0;
501 am->vl_input_queue = 0;
502 am->msg_index_by_name_and_crc = 0;
503 scm->socket_fd = 0;
504
505 vl_client_api_unmap ();
506}
507
508static int
509vcl_bapi_connect_to_vpp (void)
Florin Coras697faea2018-06-27 17:10:49 -0700510{
Florin Coras47c40e22018-11-26 17:01:36 -0800511 vcl_worker_t *wrk = vcl_worker_get_current ();
Florin Coras697faea2018-06-27 17:10:49 -0700512 vppcom_cfg_t *vcl_cfg = &vcm->cfg;
Florin Corasb88de902020-09-08 16:47:57 -0700513 int rv = VPPCOM_OK;
Florin Corasd4c70922019-11-28 14:21:21 -0800514 api_main_t *am;
Florin Corasb88de902020-09-08 16:47:57 -0700515 u8 *wrk_name;
516
jiangxiaomingb438c762020-10-13 14:23:29 +0800517 wrk_name = format (0, "%v-wrk-%u%c", vcm->app_name, wrk->wrk_index, 0);
Florin Corasb88de902020-09-08 16:47:57 -0700518
519 /* Make sure api is cleaned up in case this is a connect from a
520 * forked worker */
521 vcl_bapi_cleanup ();
Florin Corasd4c70922019-11-28 14:21:21 -0800522
523 vlibapi_set_main (&wrk->bapi_api_ctx);
Florin Corasfda21c92021-04-07 17:03:01 -0700524 vlibapi_set_memory_client_main (&wrk->bapi_mem_ctx);
Florin Coras697faea2018-06-27 17:10:49 -0700525
Florin Coras165f3ae2020-11-08 18:04:33 -0800526 if (!vcl_cfg->vpp_bapi_socket_name)
Florin Coras697faea2018-06-27 17:10:49 -0700527 {
Florin Coras165f3ae2020-11-08 18:04:33 -0800528 rv = VPPCOM_EINVAL;
529 goto error;
Florin Coras697faea2018-06-27 17:10:49 -0700530 }
Florin Coras165f3ae2020-11-08 18:04:33 -0800531
532 if (vl_socket_client_connect2 (&wrk->bapi_sock_ctx,
533 (char *) vcl_cfg->vpp_bapi_socket_name,
534 (char *) wrk_name,
535 0 /* default rx/tx buffer */ ))
Florin Coras697faea2018-06-27 17:10:49 -0700536 {
Florin Coras165f3ae2020-11-08 18:04:33 -0800537 VERR ("app (%s) socket connect failed!", wrk_name);
538 rv = VPPCOM_ECONNREFUSED;
539 goto error;
540 }
Florin Coras697faea2018-06-27 17:10:49 -0700541
Florin Coras165f3ae2020-11-08 18:04:33 -0800542 if (vl_socket_client_init_shm2 (&wrk->bapi_sock_ctx, 0,
543 1 /* want_pthread */ ))
544 {
545 VERR ("app (%s) init shm failed!", wrk_name);
546 rv = VPPCOM_ECONNREFUSED;
547 goto error;
Florin Coras697faea2018-06-27 17:10:49 -0700548 }
Filip Tehlar0046e972021-06-26 22:12:08 +0000549 vcl_bapi_hookup ();
Florin Coras697faea2018-06-27 17:10:49 -0700550
Florin Corasd4c70922019-11-28 14:21:21 -0800551 am = vlibapi_get_main ();
Florin Coras47c40e22018-11-26 17:01:36 -0800552 wrk->vl_input_queue = am->shmem_hdr->vl_input_queue;
Florin Corascc7c88e2020-09-15 15:56:51 -0700553 wrk->api_client_handle = (u32) am->my_client_index;
Florin Coras99368312018-08-02 10:45:44 -0700554
Florin Corasb88de902020-09-08 16:47:57 -0700555 VDBG (0, "app (%s) is connected to VPP!", wrk_name);
Florin Coras697faea2018-06-27 17:10:49 -0700556 vcl_evt (VCL_EVT_INIT, vcm);
Florin Corasb88de902020-09-08 16:47:57 -0700557
558error:
559 vec_free (wrk_name);
560 return rv;
Florin Coras697faea2018-06-27 17:10:49 -0700561}
562
Florin Coras470b2a62019-08-03 18:53:48 -0700563void
Florin Corasb88de902020-09-08 16:47:57 -0700564vcl_bapi_disconnect_from_vpp (void)
Florin Coras470b2a62019-08-03 18:53:48 -0700565{
Florin Coras64cf4592019-12-12 12:01:24 -0800566 vcl_worker_t *wrk = vcl_worker_get_current ();
Florin Coras470b2a62019-08-03 18:53:48 -0700567 vppcom_cfg_t *vcl_cfg = &vcm->cfg;
568
Florin Corasb88de902020-09-08 16:47:57 -0700569 if (vcl_cfg->vpp_bapi_socket_name)
Florin Coras64cf4592019-12-12 12:01:24 -0800570 vl_socket_client_disconnect2 (&wrk->bapi_sock_ctx);
Florin Coras470b2a62019-08-03 18:53:48 -0700571 else
572 vl_client_disconnect_from_vlib ();
573}
574
Florin Corasb88de902020-09-08 16:47:57 -0700575static const char *
576vcl_bapi_app_state_str (vcl_bapi_app_state_t state)
577{
578 char *st;
579
580 switch (state)
581 {
582 case STATE_APP_START:
583 st = "STATE_APP_START";
584 break;
585
586 case STATE_APP_CONN_VPP:
587 st = "STATE_APP_CONN_VPP";
588 break;
589
590 case STATE_APP_ENABLED:
591 st = "STATE_APP_ENABLED";
592 break;
593
594 case STATE_APP_ATTACHED:
595 st = "STATE_APP_ATTACHED";
596 break;
597
598 default:
599 st = "UNKNOWN_APP_STATE";
600 break;
601 }
602
603 return st;
604}
605
606static int
Florin Coras3b6c84c2021-01-05 20:45:44 -0800607vcl_bapi_wait_for_wrk_state_change (vcl_bapi_app_state_t app_state)
Florin Corasb88de902020-09-08 16:47:57 -0700608{
609 vcl_worker_t *wrk = vcl_worker_get_current ();
610 f64 timeout = clib_time_now (&wrk->clib_time) + vcm->cfg.app_timeout;
611
612 while (clib_time_now (&wrk->clib_time) < timeout)
613 {
Florin Coras3b6c84c2021-01-05 20:45:44 -0800614 if (wrk->bapi_app_state == app_state)
Florin Corasb88de902020-09-08 16:47:57 -0700615 return VPPCOM_OK;
Florin Coras3b6c84c2021-01-05 20:45:44 -0800616 if (wrk->bapi_app_state == STATE_APP_FAILED)
Florin Corasb88de902020-09-08 16:47:57 -0700617 return VPPCOM_ECONNABORTED;
618 }
wanghanlin85207e62021-07-06 15:57:55 +0800619 VDBG (0, "timeout waiting for state %s, current state %d",
620 vcl_bapi_app_state_str (app_state), wrk->bapi_app_state);
Florin Corasb88de902020-09-08 16:47:57 -0700621 vcl_evt (VCL_EVT_SESSION_TIMEOUT, vcm, bapi_app_state);
622
623 return VPPCOM_ETIMEDOUT;
624}
625
626static int
627vcl_bapi_session_enable (void)
628{
Florin Coras3b6c84c2021-01-05 20:45:44 -0800629 vcl_worker_t *wrk = vcl_worker_get_current ();
Florin Corasb88de902020-09-08 16:47:57 -0700630 int rv;
631
Florin Coras3b6c84c2021-01-05 20:45:44 -0800632 if (wrk->bapi_app_state != STATE_APP_ENABLED)
Florin Corasb88de902020-09-08 16:47:57 -0700633 {
634 vcl_bapi_send_session_enable_disable (1 /* is_enabled == TRUE */ );
Florin Coras3b6c84c2021-01-05 20:45:44 -0800635 rv = vcl_bapi_wait_for_wrk_state_change (STATE_APP_ENABLED);
Florin Corasb88de902020-09-08 16:47:57 -0700636 if (PREDICT_FALSE (rv))
637 {
638 VDBG (0, "application session enable timed out! returning %d (%s)",
639 rv, vppcom_retval_str (rv));
640 return rv;
641 }
642 }
643 return VPPCOM_OK;
644}
645
646static int
647vcl_bapi_init (void)
648{
Florin Coras3b6c84c2021-01-05 20:45:44 -0800649 vcl_worker_t *wrk = vcl_worker_get_current ();
Florin Corasb88de902020-09-08 16:47:57 -0700650 int rv;
651
Florin Coras3b6c84c2021-01-05 20:45:44 -0800652 wrk->bapi_app_state = STATE_APP_START;
Florin Corasb88de902020-09-08 16:47:57 -0700653 vcl_bapi_init_error_string_table ();
654 rv = vcl_bapi_connect_to_vpp ();
655 if (rv)
656 {
657 VERR ("couldn't connect to VPP!");
658 return rv;
659 }
660 VDBG (0, "sending session enable");
661 rv = vcl_bapi_session_enable ();
662 if (rv)
663 {
664 VERR ("vppcom_app_session_enable() failed!");
665 return rv;
666 }
667
668 return 0;
669}
670
671int
672vcl_bapi_attach (void)
673{
674 int rv;
675
676 /* API hookup and connect to VPP */
677 if ((rv = vcl_bapi_init ()))
678 return rv;
679
680 vcl_bapi_send_attach ();
Florin Coras3b6c84c2021-01-05 20:45:44 -0800681 rv = vcl_bapi_wait_for_wrk_state_change (STATE_APP_ATTACHED);
Florin Corasb88de902020-09-08 16:47:57 -0700682 if (PREDICT_FALSE (rv))
683 {
684 VDBG (0, "application attach timed out! returning %d (%s)", rv,
685 vppcom_retval_str (rv));
686 return rv;
687 }
688
689 return 0;
690}
691
692int
693vcl_bapi_app_worker_add (void)
694{
Florin Coras3b6c84c2021-01-05 20:45:44 -0800695 vcl_worker_t *wrk = vcl_worker_get_current ();
696
Florin Corasb88de902020-09-08 16:47:57 -0700697 if (vcl_bapi_connect_to_vpp ())
698 return -1;
699
Florin Coras3b6c84c2021-01-05 20:45:44 -0800700 wrk->bapi_app_state = STATE_APP_ADDING_WORKER;
Florin Corasb88de902020-09-08 16:47:57 -0700701 vcl_bapi_send_app_worker_add_del (1 /* is_add */ );
Florin Coras3b6c84c2021-01-05 20:45:44 -0800702 if (vcl_bapi_wait_for_wrk_state_change (STATE_APP_READY))
Florin Corasb88de902020-09-08 16:47:57 -0700703 return -1;
704 return 0;
705}
706
707void
708vcl_bapi_app_worker_del (vcl_worker_t * wrk)
709{
710 /* Notify vpp that the worker is going away */
711 if (wrk->wrk_index == vcl_get_worker_index ())
712 vcl_bapi_send_app_worker_add_del (0 /* is_add */ );
713 else
714 vcl_bapi_send_child_worker_del (wrk);
715
716 /* Disconnect the binary api */
717 if (vec_len (vcm->workers) == 1)
718 vcl_bapi_disconnect_from_vpp ();
719 else
720 vl_client_send_disconnect (1 /* vpp should cleanup */ );
721}
722
723int
Florin Coras935ce752020-09-08 22:43:47 -0700724vcl_bapi_recv_fds (vcl_worker_t * wrk, int *fds, int n_fds)
725{
726 clib_error_t *err;
727
728 if ((err = vl_socket_client_recv_fd_msg2 (&wrk->bapi_sock_ctx, fds, n_fds,
729 5)))
730 {
731 clib_error_report (err);
732 return -1;
733 }
734
735 return 0;
736}
737
738int
Florin Corasa5a9efd2021-01-05 17:03:29 -0800739vcl_bapi_add_cert_key_pair (vppcom_cert_key_pair_t *ckpair)
Florin Corasb88de902020-09-08 16:47:57 -0700740{
Florin Corasb88de902020-09-08 16:47:57 -0700741 vcl_worker_t *wrk = vcl_worker_get_current ();
Florin Corasb88de902020-09-08 16:47:57 -0700742
Florin Corasa5a9efd2021-01-05 17:03:29 -0800743 if (ckpair->key_len == 0 || ckpair->key_len == ~0)
744 return VPPCOM_EINVAL;
Florin Corasb88de902020-09-08 16:47:57 -0700745
Florin Corasa5a9efd2021-01-05 17:03:29 -0800746 vcl_bapi_send_app_add_cert_key_pair (ckpair);
Florin Coras3b6c84c2021-01-05 20:45:44 -0800747 wrk->bapi_app_state = STATE_APP_ADDING_TLS_DATA;
748 vcl_bapi_wait_for_wrk_state_change (STATE_APP_READY);
Florin Corasa5a9efd2021-01-05 17:03:29 -0800749 if (wrk->bapi_app_state == STATE_APP_READY)
750 return wrk->bapi_return;
751 return VPPCOM_EFAULT;
Florin Corasb88de902020-09-08 16:47:57 -0700752}
753
754int
Florin Corasa5a9efd2021-01-05 17:03:29 -0800755vcl_bapi_del_cert_key_pair (u32 ckpair_index)
Florin Corasb88de902020-09-08 16:47:57 -0700756{
Florin Corasa5a9efd2021-01-05 17:03:29 -0800757 /* Don't wait for reply */
758 vcl_bapi_send_app_del_cert_key_pair (ckpair_index);
759 return 0;
Florin Corasb88de902020-09-08 16:47:57 -0700760}
761
762int
763vcl_bapi_worker_set (void)
764{
765 vcl_worker_t *wrk = vcl_worker_get_current ();
766 int i;
767
768 /* Find the first worker with the same pid */
769 for (i = 0; i < vec_len (vcm->workers); i++)
770 {
771 if (i == wrk->wrk_index)
772 continue;
773 if (vcm->workers[i].current_pid == wrk->current_pid)
774 {
775 wrk->vl_input_queue = vcm->workers[i].vl_input_queue;
Florin Corascc7c88e2020-09-15 15:56:51 -0700776 wrk->api_client_handle = vcm->workers[i].api_client_handle;
Florin Corasb88de902020-09-08 16:47:57 -0700777 return 0;
778 }
779 }
780 return -1;
781}
782
Florin Coras697faea2018-06-27 17:10:49 -0700783/*
784 * fd.io coding-style-patch-verification: ON
785 *
786 * Local Variables:
787 * eval: (c-set-style "gnu")
788 * End:
789 */