blob: 457fc18b1c2bfac2b6027c10c4c73ecac487cc7a [file] [log] [blame]
Florin Coras697faea2018-06-27 17:10:49 -07001/*
2 * Copyright (c) 2018 Cisco and/or its affiliates.
3 * 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 Coras54693d22018-07-17 10:46:29 -070036u8 *
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 Coras99368312018-08-02 10:45:44 -070064static int
Florin Corasd85de682018-11-29 17:02:29 -080065vcl_segment_attach (u64 segment_handle, char *name, ssvm_segment_type_t type,
66 int fd)
Florin Coras99368312018-08-02 10:45:44 -070067{
68 svm_fifo_segment_create_args_t _a, *a = &_a;
69 int rv;
70
71 memset (a, 0, sizeof (*a));
72 a->segment_name = (char *) name;
73 a->segment_type = type;
74
75 if (type == SSVM_SEGMENT_MEMFD)
76 a->memfd_fd = fd;
77
Florin Corasadc74d72018-12-02 13:36:00 -080078 if ((rv = svm_fifo_segment_attach (&vcm->segment_main, a)))
Florin Coras99368312018-08-02 10:45:44 -070079 {
80 clib_warning ("svm_fifo_segment_attach ('%s') failed", name);
81 return rv;
82 }
Florin Corasd85de682018-11-29 17:02:29 -080083 vcl_segment_table_add (segment_handle, a->new_segment_indices[0]);
Florin Coras99368312018-08-02 10:45:44 -070084 vec_reset_length (a->new_segment_indices);
85 return 0;
86}
87
Florin Coras697faea2018-06-27 17:10:49 -070088static void
Florin Corasd85de682018-11-29 17:02:29 -080089vcl_segment_detach (u64 segment_handle)
90{
Florin Corasadc74d72018-12-02 13:36:00 -080091 svm_fifo_segment_main_t *sm = &vcm->segment_main;
Florin Corasd85de682018-11-29 17:02:29 -080092 svm_fifo_segment_private_t *segment;
93 u32 segment_index;
94
95 segment_index = vcl_segment_table_lookup (segment_handle);
96 if (segment_index == (u32) ~ 0)
97 return;
Florin Corasadc74d72018-12-02 13:36:00 -080098 segment = svm_fifo_segment_get_segment (sm, segment_index);
99 svm_fifo_segment_delete (sm, segment);
Florin Corasd85de682018-11-29 17:02:29 -0800100 vcl_segment_table_del (segment_handle);
101}
102
103static u64
104vcl_vpp_worker_segment_handle (u32 wrk_index)
105{
106 return (VCL_INVALID_SEGMENT_HANDLE - wrk_index - 1);
107}
108
109static void
Florin Coras697faea2018-06-27 17:10:49 -0700110vl_api_application_attach_reply_t_handler (vl_api_application_attach_reply_t *
111 mp)
112{
Florin Coras134a9962018-08-28 11:32:04 -0700113 vcl_worker_t *wrk = vcl_worker_get (0);
Florin Corasd85de682018-11-29 17:02:29 -0800114 u64 segment_handle;
Florin Coras99368312018-08-02 10:45:44 -0700115 u32 n_fds = 0;
116 int *fds = 0;
Florin Coras697faea2018-06-27 17:10:49 -0700117
Florin Coras697faea2018-06-27 17:10:49 -0700118 if (mp->retval)
119 {
120 clib_warning ("VCL<%d>: attach failed: %U", getpid (),
121 format_api_error, ntohl (mp->retval));
122 return;
123 }
124
Florin Coras134a9962018-08-28 11:32:04 -0700125 wrk->app_event_queue = uword_to_pointer (mp->app_event_queue_address,
Florin Coras99368312018-08-02 10:45:44 -0700126 svm_msg_q_t *);
Florin Corasd85de682018-11-29 17:02:29 -0800127 segment_handle = clib_net_to_host_u64 (mp->segment_handle);
128 if (segment_handle == VCL_INVALID_SEGMENT_HANDLE)
129 {
130 clib_warning ("invalid segment handle");
131 return;
132 }
133
Florin Coras99368312018-08-02 10:45:44 -0700134 if (mp->n_fds)
Florin Coras697faea2018-06-27 17:10:49 -0700135 {
Florin Coras99368312018-08-02 10:45:44 -0700136 vec_validate (fds, mp->n_fds);
137 vl_socket_client_recv_fd_msg (fds, mp->n_fds, 5);
138
139 if (mp->fd_flags & SESSION_FD_F_VPP_MQ_SEGMENT)
Florin Corasd85de682018-11-29 17:02:29 -0800140 if (vcl_segment_attach (vcl_vpp_worker_segment_handle (0),
141 "vpp-mq-seg", SSVM_SEGMENT_MEMFD,
142 fds[n_fds++]))
Florin Coras99368312018-08-02 10:45:44 -0700143 return;
144
145 if (mp->fd_flags & SESSION_FD_F_MEMFD_SEGMENT)
Florin Corasd85de682018-11-29 17:02:29 -0800146 if (vcl_segment_attach (segment_handle, (char *) mp->segment_name,
147 SSVM_SEGMENT_MEMFD, fds[n_fds++]))
Florin Coras99368312018-08-02 10:45:44 -0700148 return;
149
150 if (mp->fd_flags & SESSION_FD_F_MQ_EVENTFD)
151 {
Florin Coras134a9962018-08-28 11:32:04 -0700152 svm_msg_q_set_consumer_eventfd (wrk->app_event_queue, fds[n_fds]);
153 vcl_mq_epoll_add_evfd (wrk, wrk->app_event_queue);
Florin Coras99368312018-08-02 10:45:44 -0700154 n_fds++;
155 }
156
157 vec_free (fds);
Florin Coras697faea2018-06-27 17:10:49 -0700158 }
Florin Coras99368312018-08-02 10:45:44 -0700159 else
Florin Coras697faea2018-06-27 17:10:49 -0700160 {
Florin Corasd85de682018-11-29 17:02:29 -0800161 if (vcl_segment_attach (segment_handle, (char *) mp->segment_name,
162 SSVM_SEGMENT_SHM, -1))
Florin Coras99368312018-08-02 10:45:44 -0700163 return;
Florin Coras697faea2018-06-27 17:10:49 -0700164 }
165
Florin Corasc1f5a432018-11-20 11:31:26 -0800166 vcm->app_index = clib_net_to_host_u32 (mp->app_index);
Florin Coras697faea2018-06-27 17:10:49 -0700167 vcm->app_state = STATE_APP_ATTACHED;
168}
169
170static void
Florin Coras134a9962018-08-28 11:32:04 -0700171vl_api_app_worker_add_del_reply_t_handler (vl_api_app_worker_add_del_reply_t *
172 mp)
173{
Florin Corasab2f6db2018-08-31 14:31:41 -0700174 int n_fds = 0, *fds = 0;
Florin Corasd85de682018-11-29 17:02:29 -0800175 u64 segment_handle;
Florin Coras134a9962018-08-28 11:32:04 -0700176 vcl_worker_t *wrk;
Florin Corasab2f6db2018-08-31 14:31:41 -0700177 u32 wrk_index;
Florin Coras134a9962018-08-28 11:32:04 -0700178
179 if (mp->retval)
180 {
181 clib_warning ("VCL<%d>: add/del worker failed: %U", getpid (),
182 format_api_error, ntohl (mp->retval));
183 goto failed;
184 }
Florin Coras053a0e42018-11-13 15:52:38 -0800185
Florin Coras3348a4c2018-09-07 17:09:35 -0700186 if (!mp->is_add)
187 return;
188
Florin Corasdc2e2512018-12-03 17:47:26 -0800189 wrk_index = mp->context;
Florin Coras01f3f892018-12-02 12:45:53 -0800190 wrk = vcl_worker_get_if_valid (wrk_index);
191 if (!wrk)
192 return;
193
Florin Corasdc2e2512018-12-03 17:47:26 -0800194 wrk->vpp_wrk_index = clib_net_to_host_u32 (mp->wrk_index);
Florin Coras134a9962018-08-28 11:32:04 -0700195 wrk->app_event_queue = uword_to_pointer (mp->app_event_queue_address,
196 svm_msg_q_t *);
197
Florin Corasd85de682018-11-29 17:02:29 -0800198 segment_handle = clib_net_to_host_u64 (mp->segment_handle);
199 if (segment_handle == VCL_INVALID_SEGMENT_HANDLE)
200 {
201 clib_warning ("invalid segment handle");
Florin Coras01f3f892018-12-02 12:45:53 -0800202 goto failed;
Florin Corasd85de682018-11-29 17:02:29 -0800203 }
204
Florin Coras134a9962018-08-28 11:32:04 -0700205 if (mp->n_fds)
206 {
207 vec_validate (fds, mp->n_fds);
208 vl_socket_client_recv_fd_msg (fds, mp->n_fds, 5);
209
210 if (mp->fd_flags & SESSION_FD_F_VPP_MQ_SEGMENT)
Florin Coras01f3f892018-12-02 12:45:53 -0800211 if (vcl_segment_attach (vcl_vpp_worker_segment_handle (wrk_index),
212 "vpp-worker-seg", SSVM_SEGMENT_MEMFD,
213 fds[n_fds++]))
Florin Coras134a9962018-08-28 11:32:04 -0700214 goto failed;
215
216 if (mp->fd_flags & SESSION_FD_F_MEMFD_SEGMENT)
Florin Corasd85de682018-11-29 17:02:29 -0800217 if (vcl_segment_attach (segment_handle, (char *) mp->segment_name,
218 SSVM_SEGMENT_MEMFD, fds[n_fds++]))
Florin Coras134a9962018-08-28 11:32:04 -0700219 goto failed;
220
221 if (mp->fd_flags & SESSION_FD_F_MQ_EVENTFD)
222 {
223 svm_msg_q_set_consumer_eventfd (wrk->app_event_queue, fds[n_fds]);
224 vcl_mq_epoll_add_evfd (wrk, wrk->app_event_queue);
225 n_fds++;
226 }
227
228 vec_free (fds);
229 }
230 else
231 {
Florin Corasd85de682018-11-29 17:02:29 -0800232 if (vcl_segment_attach (segment_handle, (char *) mp->segment_name,
233 SSVM_SEGMENT_SHM, -1))
Florin Coras134a9962018-08-28 11:32:04 -0700234 goto failed;
235 }
236 vcm->app_state = STATE_APP_READY;
Florin Coras053a0e42018-11-13 15:52:38 -0800237 VDBG (0, "worker %u vpp-worker %u added", wrk_index, wrk->vpp_wrk_index);
Florin Coras134a9962018-08-28 11:32:04 -0700238 return;
239
240failed:
241 vcm->app_state = STATE_APP_FAILED;
242}
243
244static void
Florin Coras697faea2018-06-27 17:10:49 -0700245vl_api_application_detach_reply_t_handler (vl_api_application_detach_reply_t *
246 mp)
247{
248 if (mp->retval)
249 clib_warning ("VCL<%d>: detach failed: %U", getpid (), format_api_error,
250 ntohl (mp->retval));
251
252 vcm->app_state = STATE_APP_ENABLED;
253}
254
255static void
Florin Coras697faea2018-06-27 17:10:49 -0700256vl_api_map_another_segment_t_handler (vl_api_map_another_segment_t * mp)
257{
Florin Coras99368312018-08-02 10:45:44 -0700258 ssvm_segment_type_t seg_type = SSVM_SEGMENT_SHM;
Florin Corasd85de682018-11-29 17:02:29 -0800259 u64 segment_handle;
Florin Coras99368312018-08-02 10:45:44 -0700260 int fd = -1;
Florin Coras697faea2018-06-27 17:10:49 -0700261
Florin Coras99368312018-08-02 10:45:44 -0700262 if (mp->fd_flags)
263 {
264 vl_socket_client_recv_fd_msg (&fd, 1, 5);
265 seg_type = SSVM_SEGMENT_MEMFD;
266 }
267
Florin Corasd85de682018-11-29 17:02:29 -0800268 segment_handle = clib_net_to_host_u64 (mp->segment_handle);
269 if (segment_handle == VCL_INVALID_SEGMENT_HANDLE)
270 {
271 clib_warning ("invalid segment handle");
272 return;
273 }
274
275 if (vcl_segment_attach (segment_handle, (char *) mp->segment_name,
276 seg_type, fd))
Florin Coras697faea2018-06-27 17:10:49 -0700277 {
278 clib_warning ("VCL<%d>: svm_fifo_segment_attach ('%s') failed",
279 getpid (), mp->segment_name);
280 return;
281 }
282
283 VDBG (1, "VCL<%d>: mapped new segment '%s' size %d", getpid (),
284 mp->segment_name, mp->segment_size);
285}
286
287static void
288vl_api_unmap_segment_t_handler (vl_api_unmap_segment_t * mp)
289{
Florin Corasd85de682018-11-29 17:02:29 -0800290 u64 segment_handle = clib_net_to_host_u64 (mp->segment_handle);
291 vcl_segment_detach (segment_handle);
292 VDBG (1, "Unmapped segment: %d", segment_handle);
Florin Coras697faea2018-06-27 17:10:49 -0700293}
294
295static void
Florin Coras99368312018-08-02 10:45:44 -0700296 vl_api_app_cut_through_registration_add_t_handler
297 (vl_api_app_cut_through_registration_add_t * mp)
298{
299 vcl_cut_through_registration_t *ctr;
300 u32 mqc_index = ~0;
Florin Coras134a9962018-08-28 11:32:04 -0700301 vcl_worker_t *wrk;
Florin Coras99368312018-08-02 10:45:44 -0700302 int *fds = 0;
303
304 if (mp->n_fds)
305 {
306 ASSERT (mp->n_fds == 2);
307 vec_validate (fds, mp->n_fds);
308 vl_socket_client_recv_fd_msg (fds, mp->n_fds, 5);
309 }
310
Florin Coras134a9962018-08-28 11:32:04 -0700311 wrk = vcl_worker_get (mp->wrk_index);
312 ctr = vcl_ct_registration_lock_and_alloc (wrk);
Florin Coras99368312018-08-02 10:45:44 -0700313 ctr->mq = uword_to_pointer (mp->evt_q_address, svm_msg_q_t *);
314 ctr->peer_mq = uword_to_pointer (mp->peer_evt_q_address, svm_msg_q_t *);
Florin Coras134a9962018-08-28 11:32:04 -0700315 VDBG (0, "Adding ct registration %u", vcl_ct_registration_index (wrk, ctr));
Florin Coras99368312018-08-02 10:45:44 -0700316
Florin Coras15531972018-08-12 23:50:53 -0700317 if (mp->n_fds && (mp->fd_flags & SESSION_FD_F_MQ_EVENTFD))
Florin Coras99368312018-08-02 10:45:44 -0700318 {
319 svm_msg_q_set_consumer_eventfd (ctr->mq, fds[0]);
320 svm_msg_q_set_producer_eventfd (ctr->peer_mq, fds[1]);
Florin Coras134a9962018-08-28 11:32:04 -0700321 mqc_index = vcl_mq_epoll_add_evfd (wrk, ctr->mq);
Florin Coras99368312018-08-02 10:45:44 -0700322 ctr->epoll_evt_conn_index = mqc_index;
323 vec_free (fds);
324 }
Florin Coras134a9962018-08-28 11:32:04 -0700325 vcl_ct_registration_lookup_add (wrk, mp->evt_q_address,
326 vcl_ct_registration_index (wrk, ctr));
327 vcl_ct_registration_unlock (wrk);
Florin Coras99368312018-08-02 10:45:44 -0700328}
329
330static void
Florin Coras697faea2018-06-27 17:10:49 -0700331vl_api_bind_sock_reply_t_handler (vl_api_bind_sock_reply_t * mp)
332{
Florin Coras60116992018-08-27 09:52:18 -0700333 /* Expecting a similar message on mq. So ignore this */
Florin Corasdc2e2512018-12-03 17:47:26 -0800334 VDBG (0, "bapi msg vpp handle 0x%llx, sid %u: bind retval: %u!",
Florin Coras60116992018-08-27 09:52:18 -0700335 getpid (), mp->handle, mp->context, mp->retval);
Florin Coras697faea2018-06-27 17:10:49 -0700336}
337
338static void
339vl_api_unbind_sock_reply_t_handler (vl_api_unbind_sock_reply_t * mp)
340{
341 if (mp->retval)
342 clib_warning ("VCL<%d>: ERROR: sid %u: unbind failed: %U",
343 getpid (), mp->context, format_api_error,
344 ntohl (mp->retval));
345
346 else
347 VDBG (1, "VCL<%d>: sid %u: unbind succeeded!", getpid (), mp->context);
348}
349
Florin Corasab2f6db2018-08-31 14:31:41 -0700350static void
351vl_api_disconnect_session_reply_t_handler (vl_api_disconnect_session_reply_t *
352 mp)
353{
354 if (mp->retval)
355 clib_warning ("VCL<%d>: ERROR: sid %u: disconnect failed: %U",
356 getpid (), mp->context, format_api_error,
357 ntohl (mp->retval));
358}
359
360static void
Florin Coras6d4bb422018-09-04 22:07:27 -0700361vl_api_connect_session_reply_t_handler (vl_api_connect_sock_reply_t * mp)
Florin Corasab2f6db2018-08-31 14:31:41 -0700362{
363 if (mp->retval)
364 clib_warning ("VCL<%d>: ERROR: sid %u: connect failed: %U",
365 getpid (), mp->context, format_api_error,
366 ntohl (mp->retval));
367}
368
Florin Coras99368312018-08-02 10:45:44 -0700369#define foreach_sock_msg \
370_(SESSION_ENABLE_DISABLE_REPLY, session_enable_disable_reply) \
371_(BIND_SOCK_REPLY, bind_sock_reply) \
372_(UNBIND_SOCK_REPLY, unbind_sock_reply) \
Florin Coras6d4bb422018-09-04 22:07:27 -0700373_(CONNECT_SESSION_REPLY, connect_session_reply) \
Florin Corasab2f6db2018-08-31 14:31:41 -0700374_(DISCONNECT_SESSION_REPLY, disconnect_session_reply) \
Florin Coras99368312018-08-02 10:45:44 -0700375_(APPLICATION_ATTACH_REPLY, application_attach_reply) \
376_(APPLICATION_DETACH_REPLY, application_detach_reply) \
377_(MAP_ANOTHER_SEGMENT, map_another_segment) \
378_(UNMAP_SEGMENT, unmap_segment) \
379_(APP_CUT_THROUGH_REGISTRATION_ADD, app_cut_through_registration_add) \
Florin Coras134a9962018-08-28 11:32:04 -0700380_(APP_WORKER_ADD_DEL_REPLY, app_worker_add_del_reply) \
Florin Coras697faea2018-06-27 17:10:49 -0700381
382void
383vppcom_api_hookup (void)
384{
Florin Coras60116992018-08-27 09:52:18 -0700385#define _(N, n) \
386 vl_msg_api_set_handlers(VL_API_##N, #n, \
Florin Coras697faea2018-06-27 17:10:49 -0700387 vl_api_##n##_t_handler, \
388 vl_noop_handler, \
389 vl_api_##n##_t_endian, \
390 vl_api_##n##_t_print, \
391 sizeof(vl_api_##n##_t), 1);
392 foreach_sock_msg;
393#undef _
394}
395
396/*
397 * VPP-API message functions
398 */
399void
400vppcom_send_session_enable_disable (u8 is_enable)
401{
Florin Coras47c40e22018-11-26 17:01:36 -0800402 vcl_worker_t *wrk = vcl_worker_get_current ();
Florin Coras697faea2018-06-27 17:10:49 -0700403 vl_api_session_enable_disable_t *bmp;
404 bmp = vl_msg_api_alloc (sizeof (*bmp));
405 memset (bmp, 0, sizeof (*bmp));
406
407 bmp->_vl_msg_id = ntohs (VL_API_SESSION_ENABLE_DISABLE);
Florin Coras47c40e22018-11-26 17:01:36 -0800408 bmp->client_index = wrk->my_client_index;
Florin Coras697faea2018-06-27 17:10:49 -0700409 bmp->context = htonl (0xfeedface);
410 bmp->is_enable = is_enable;
Florin Coras47c40e22018-11-26 17:01:36 -0800411 vl_msg_api_send_shmem (wrk->vl_input_queue, (u8 *) & bmp);
Florin Coras697faea2018-06-27 17:10:49 -0700412}
413
414void
415vppcom_app_send_attach (void)
416{
Florin Coras47c40e22018-11-26 17:01:36 -0800417 vcl_worker_t *wrk = vcl_worker_get_current ();
Florin Coras697faea2018-06-27 17:10:49 -0700418 vl_api_application_attach_t *bmp;
419 u8 nsid_len = vec_len (vcm->cfg.namespace_id);
420 u8 app_is_proxy = (vcm->cfg.app_proxy_transport_tcp ||
421 vcm->cfg.app_proxy_transport_udp);
422
423 bmp = vl_msg_api_alloc (sizeof (*bmp));
424 memset (bmp, 0, sizeof (*bmp));
425
426 bmp->_vl_msg_id = ntohs (VL_API_APPLICATION_ATTACH);
Florin Coras47c40e22018-11-26 17:01:36 -0800427 bmp->client_index = wrk->my_client_index;
Florin Coras697faea2018-06-27 17:10:49 -0700428 bmp->context = htonl (0xfeedface);
429 bmp->options[APP_OPTIONS_FLAGS] =
430 APP_OPTIONS_FLAGS_ACCEPT_REDIRECT | APP_OPTIONS_FLAGS_ADD_SEGMENT |
431 (vcm->cfg.app_scope_local ? APP_OPTIONS_FLAGS_USE_LOCAL_SCOPE : 0) |
432 (vcm->cfg.app_scope_global ? APP_OPTIONS_FLAGS_USE_GLOBAL_SCOPE : 0) |
Florin Coras54693d22018-07-17 10:46:29 -0700433 (app_is_proxy ? APP_OPTIONS_FLAGS_IS_PROXY : 0) |
Florin Coras99368312018-08-02 10:45:44 -0700434 APP_OPTIONS_FLAGS_USE_MQ_FOR_CTRL_MSGS |
435 (vcm->cfg.use_mq_eventfd ? APP_OPTIONS_FLAGS_EVT_MQ_USE_EVENTFD : 0);
Florin Coras697faea2018-06-27 17:10:49 -0700436 bmp->options[APP_OPTIONS_PROXY_TRANSPORT] =
437 (u64) ((vcm->cfg.app_proxy_transport_tcp ? 1 << TRANSPORT_PROTO_TCP : 0) |
438 (vcm->cfg.app_proxy_transport_udp ? 1 << TRANSPORT_PROTO_UDP : 0));
439 bmp->options[APP_OPTIONS_SEGMENT_SIZE] = vcm->cfg.segment_size;
440 bmp->options[APP_OPTIONS_ADD_SEGMENT_SIZE] = vcm->cfg.add_segment_size;
441 bmp->options[APP_OPTIONS_RX_FIFO_SIZE] = vcm->cfg.rx_fifo_size;
442 bmp->options[APP_OPTIONS_TX_FIFO_SIZE] = vcm->cfg.tx_fifo_size;
443 bmp->options[APP_OPTIONS_PREALLOC_FIFO_PAIRS] =
444 vcm->cfg.preallocated_fifo_pairs;
445 bmp->options[APP_OPTIONS_EVT_QUEUE_SIZE] = vcm->cfg.event_queue_size;
446 if (nsid_len)
447 {
448 bmp->namespace_id_len = nsid_len;
Dave Barach178cf492018-11-13 16:34:13 -0500449 clib_memcpy_fast (bmp->namespace_id, vcm->cfg.namespace_id, nsid_len);
Florin Coras697faea2018-06-27 17:10:49 -0700450 bmp->options[APP_OPTIONS_NAMESPACE_SECRET] = vcm->cfg.namespace_secret;
451 }
Florin Coras47c40e22018-11-26 17:01:36 -0800452 vl_msg_api_send_shmem (wrk->vl_input_queue, (u8 *) & bmp);
Florin Coras697faea2018-06-27 17:10:49 -0700453}
454
455void
456vppcom_app_send_detach (void)
457{
Florin Coras47c40e22018-11-26 17:01:36 -0800458 vcl_worker_t *wrk = vcl_worker_get_current ();
Florin Coras697faea2018-06-27 17:10:49 -0700459 vl_api_application_detach_t *bmp;
460 bmp = vl_msg_api_alloc (sizeof (*bmp));
461 memset (bmp, 0, sizeof (*bmp));
462
463 bmp->_vl_msg_id = ntohs (VL_API_APPLICATION_DETACH);
Florin Coras47c40e22018-11-26 17:01:36 -0800464 bmp->client_index = wrk->my_client_index;
Florin Coras697faea2018-06-27 17:10:49 -0700465 bmp->context = htonl (0xfeedface);
Florin Coras47c40e22018-11-26 17:01:36 -0800466 vl_msg_api_send_shmem (wrk->vl_input_queue, (u8 *) & bmp);
Florin Coras697faea2018-06-27 17:10:49 -0700467}
468
469void
Florin Coras134a9962018-08-28 11:32:04 -0700470vcl_send_app_worker_add_del (u8 is_add)
471{
472 vcl_worker_t *wrk = vcl_worker_get_current ();
473 vl_api_app_worker_add_del_t *mp;
Florin Coras134a9962018-08-28 11:32:04 -0700474
475 mp = vl_msg_api_alloc (sizeof (*mp));
476 memset (mp, 0, sizeof (*mp));
477
478 mp->_vl_msg_id = ntohs (VL_API_APP_WORKER_ADD_DEL);
Florin Coras47c40e22018-11-26 17:01:36 -0800479 mp->client_index = wrk->my_client_index;
Florin Corasc1f5a432018-11-20 11:31:26 -0800480 mp->app_index = clib_host_to_net_u32 (vcm->app_index);
Florin Coras01f3f892018-12-02 12:45:53 -0800481 mp->context = wrk->wrk_index;
Florin Coras134a9962018-08-28 11:32:04 -0700482 mp->is_add = is_add;
483 if (!is_add)
Florin Coras01f3f892018-12-02 12:45:53 -0800484 mp->wrk_index = clib_host_to_net_u32 (wrk->vpp_wrk_index);
485
486 vl_msg_api_send_shmem (wrk->vl_input_queue, (u8 *) & mp);
487}
488
489void
490vcl_send_child_worker_del (vcl_worker_t * child_wrk)
491{
492 vcl_worker_t *wrk = vcl_worker_get_current ();
493 vl_api_app_worker_add_del_t *mp;
494
495 mp = vl_msg_api_alloc (sizeof (*mp));
496 memset (mp, 0, sizeof (*mp));
497
498 mp->_vl_msg_id = ntohs (VL_API_APP_WORKER_ADD_DEL);
499 mp->client_index = wrk->my_client_index;
500 mp->app_index = clib_host_to_net_u32 (vcm->app_index);
501 mp->context = wrk->wrk_index;
502 mp->is_add = 0;
503 mp->wrk_index = clib_host_to_net_u32 (child_wrk->vpp_wrk_index);
Florin Coras134a9962018-08-28 11:32:04 -0700504
Florin Coras47c40e22018-11-26 17:01:36 -0800505 vl_msg_api_send_shmem (wrk->vl_input_queue, (u8 *) & mp);
Florin Coras134a9962018-08-28 11:32:04 -0700506}
507
508void
509vppcom_send_connect_sock (vcl_session_t * session)
Florin Coras697faea2018-06-27 17:10:49 -0700510{
Florin Coras053a0e42018-11-13 15:52:38 -0800511 vcl_worker_t *wrk = vcl_worker_get_current ();
Florin Coras697faea2018-06-27 17:10:49 -0700512 vl_api_connect_sock_t *cmp;
513
Florin Coras697faea2018-06-27 17:10:49 -0700514 cmp = vl_msg_api_alloc (sizeof (*cmp));
515 memset (cmp, 0, sizeof (*cmp));
516 cmp->_vl_msg_id = ntohs (VL_API_CONNECT_SOCK);
Florin Coras47c40e22018-11-26 17:01:36 -0800517 cmp->client_index = wrk->my_client_index;
Florin Coras134a9962018-08-28 11:32:04 -0700518 cmp->context = session->session_index;
Florin Coras053a0e42018-11-13 15:52:38 -0800519 cmp->wrk_index = wrk->vpp_wrk_index;
Florin Coras697faea2018-06-27 17:10:49 -0700520 cmp->is_ip4 = session->transport.is_ip4;
Dave Barach178cf492018-11-13 16:34:13 -0500521 clib_memcpy_fast (cmp->ip, &session->transport.rmt_ip, sizeof (cmp->ip));
Florin Coras697faea2018-06-27 17:10:49 -0700522 cmp->port = session->transport.rmt_port;
523 cmp->proto = session->session_type;
Dave Barach178cf492018-11-13 16:34:13 -0500524 clib_memcpy_fast (cmp->options, session->options, sizeof (cmp->options));
Florin Coras47c40e22018-11-26 17:01:36 -0800525 vl_msg_api_send_shmem (wrk->vl_input_queue, (u8 *) & cmp);
Florin Coras697faea2018-06-27 17:10:49 -0700526}
527
528void
Florin Corasab2f6db2018-08-31 14:31:41 -0700529vppcom_send_disconnect_session (u64 vpp_handle)
Florin Coras697faea2018-06-27 17:10:49 -0700530{
Florin Coras47c40e22018-11-26 17:01:36 -0800531 vcl_worker_t *wrk = vcl_worker_get_current ();
Florin Coras697faea2018-06-27 17:10:49 -0700532 vl_api_disconnect_session_t *dmp;
533
Florin Coras697faea2018-06-27 17:10:49 -0700534 dmp = vl_msg_api_alloc (sizeof (*dmp));
535 memset (dmp, 0, sizeof (*dmp));
536 dmp->_vl_msg_id = ntohs (VL_API_DISCONNECT_SESSION);
Florin Coras47c40e22018-11-26 17:01:36 -0800537 dmp->client_index = wrk->my_client_index;
Florin Coras697faea2018-06-27 17:10:49 -0700538 dmp->handle = vpp_handle;
Florin Coras47c40e22018-11-26 17:01:36 -0800539 vl_msg_api_send_shmem (wrk->vl_input_queue, (u8 *) & dmp);
Florin Coras697faea2018-06-27 17:10:49 -0700540}
541
542/* VPP combines bind and listen as one operation. VCL manages the separation
543 * of bind and listen locally via vppcom_session_bind() and
544 * vppcom_session_listen() */
545void
Florin Coras134a9962018-08-28 11:32:04 -0700546vppcom_send_bind_sock (vcl_session_t * session)
Florin Coras697faea2018-06-27 17:10:49 -0700547{
Florin Coras053a0e42018-11-13 15:52:38 -0800548 vcl_worker_t *wrk = vcl_worker_get_current ();
Florin Coras697faea2018-06-27 17:10:49 -0700549 vl_api_bind_sock_t *bmp;
550
551 /* Assumes caller has acquired spinlock: vcm->sessions_lockp */
552 bmp = vl_msg_api_alloc (sizeof (*bmp));
553 memset (bmp, 0, sizeof (*bmp));
554
555 bmp->_vl_msg_id = ntohs (VL_API_BIND_SOCK);
Florin Coras47c40e22018-11-26 17:01:36 -0800556 bmp->client_index = wrk->my_client_index;
Florin Coras134a9962018-08-28 11:32:04 -0700557 bmp->context = session->session_index;
Florin Coras053a0e42018-11-13 15:52:38 -0800558 bmp->wrk_index = wrk->vpp_wrk_index;
Florin Coras697faea2018-06-27 17:10:49 -0700559 bmp->is_ip4 = session->transport.is_ip4;
Dave Barach178cf492018-11-13 16:34:13 -0500560 clib_memcpy_fast (bmp->ip, &session->transport.lcl_ip, sizeof (bmp->ip));
Florin Coras697faea2018-06-27 17:10:49 -0700561 bmp->port = session->transport.lcl_port;
562 bmp->proto = session->session_type;
Dave Barach178cf492018-11-13 16:34:13 -0500563 clib_memcpy_fast (bmp->options, session->options, sizeof (bmp->options));
Florin Coras47c40e22018-11-26 17:01:36 -0800564 vl_msg_api_send_shmem (wrk->vl_input_queue, (u8 *) & bmp);
Florin Coras697faea2018-06-27 17:10:49 -0700565}
566
567void
568vppcom_send_unbind_sock (u64 vpp_handle)
569{
Florin Coras053a0e42018-11-13 15:52:38 -0800570 vcl_worker_t *wrk = vcl_worker_get_current ();
Florin Coras697faea2018-06-27 17:10:49 -0700571 vl_api_unbind_sock_t *ump;
572
573 ump = vl_msg_api_alloc (sizeof (*ump));
574 memset (ump, 0, sizeof (*ump));
575
576 ump->_vl_msg_id = ntohs (VL_API_UNBIND_SOCK);
Florin Coras47c40e22018-11-26 17:01:36 -0800577 ump->client_index = wrk->my_client_index;
Florin Coras053a0e42018-11-13 15:52:38 -0800578 ump->wrk_index = wrk->vpp_wrk_index;
Florin Coras697faea2018-06-27 17:10:49 -0700579 ump->handle = vpp_handle;
Florin Coras47c40e22018-11-26 17:01:36 -0800580 vl_msg_api_send_shmem (wrk->vl_input_queue, (u8 *) & ump);
Florin Coras697faea2018-06-27 17:10:49 -0700581}
582
583void
584vppcom_send_accept_session_reply (u64 handle, u32 context, int retval)
585{
Florin Coras47c40e22018-11-26 17:01:36 -0800586 vcl_worker_t *wrk = vcl_worker_get_current ();
Florin Coras697faea2018-06-27 17:10:49 -0700587 vl_api_accept_session_reply_t *rmp;
588
589 rmp = vl_msg_api_alloc (sizeof (*rmp));
590 memset (rmp, 0, sizeof (*rmp));
591 rmp->_vl_msg_id = ntohs (VL_API_ACCEPT_SESSION_REPLY);
592 rmp->retval = htonl (retval);
593 rmp->context = context;
594 rmp->handle = handle;
Florin Coras47c40e22018-11-26 17:01:36 -0800595 vl_msg_api_send_shmem (wrk->vl_input_queue, (u8 *) & rmp);
Florin Coras697faea2018-06-27 17:10:49 -0700596}
597
598u32
599vcl_max_nsid_len (void)
600{
601 vl_api_application_attach_t *mp;
602 return (sizeof (mp->namespace_id) - 1);
603}
604
605void
606vppcom_init_error_string_table (void)
607{
608 vcm->error_string_by_error_number = hash_create (0, sizeof (uword));
609
610#define _(n, v, s) hash_set (vcm->error_string_by_error_number, -v, s);
611 foreach_vnet_api_error;
612#undef _
613
614 hash_set (vcm->error_string_by_error_number, 99, "Misc");
615}
616
617int
618vppcom_connect_to_vpp (char *app_name)
619{
Florin Coras47c40e22018-11-26 17:01:36 -0800620 vcl_worker_t *wrk = vcl_worker_get_current ();
Florin Coras697faea2018-06-27 17:10:49 -0700621 api_main_t *am = &api_main;
622 vppcom_cfg_t *vcl_cfg = &vcm->cfg;
Florin Coras697faea2018-06-27 17:10:49 -0700623
Florin Coras99368312018-08-02 10:45:44 -0700624 if (vcl_cfg->vpp_api_socket_name)
Florin Coras697faea2018-06-27 17:10:49 -0700625 {
Florin Coras99368312018-08-02 10:45:44 -0700626 if (vl_socket_client_connect ((char *) vcl_cfg->vpp_api_socket_name,
627 app_name, 0 /* default rx/tx buffer */ ))
628 {
Florin Coras053a0e42018-11-13 15:52:38 -0800629 VERR ("app (%s) socket connect failed!", app_name);
Florin Coras99368312018-08-02 10:45:44 -0700630 return VPPCOM_ECONNREFUSED;
631 }
632
633 if (vl_socket_client_init_shm (0))
634 {
Florin Coras053a0e42018-11-13 15:52:38 -0800635 VERR ("app (%s) init shm failed!", app_name);
Florin Coras99368312018-08-02 10:45:44 -0700636 return VPPCOM_ECONNREFUSED;
637 }
Florin Coras697faea2018-06-27 17:10:49 -0700638 }
639 else
640 {
Florin Coras99368312018-08-02 10:45:44 -0700641 if (!vcl_cfg->vpp_api_filename)
642 vcl_cfg->vpp_api_filename = format (0, "/vpe-api%c", 0);
Florin Coras697faea2018-06-27 17:10:49 -0700643
Florin Coras053a0e42018-11-13 15:52:38 -0800644 VDBG (0, "app (%s) connecting to VPP api (%s)...",
Florin Coras99368312018-08-02 10:45:44 -0700645 app_name, vcl_cfg->vpp_api_filename);
646
647 if (vl_client_connect_to_vlib ((char *) vcl_cfg->vpp_api_filename,
648 app_name, vcm->cfg.vpp_api_q_length) < 0)
649 {
Florin Coras053a0e42018-11-13 15:52:38 -0800650 VERR ("app (%s) connect failed!", app_name);
Florin Coras99368312018-08-02 10:45:44 -0700651 return VPPCOM_ECONNREFUSED;
652 }
653
Florin Coras697faea2018-06-27 17:10:49 -0700654 }
655
Florin Coras47c40e22018-11-26 17:01:36 -0800656 wrk->vl_input_queue = am->shmem_hdr->vl_input_queue;
657 wrk->my_client_index = (u32) am->my_client_index;
658 wrk->wrk_state = STATE_APP_CONN_VPP;
Florin Coras99368312018-08-02 10:45:44 -0700659
Florin Coras053a0e42018-11-13 15:52:38 -0800660 VDBG (0, "app (%s) is connected to VPP!", app_name);
Florin Coras697faea2018-06-27 17:10:49 -0700661 vcl_evt (VCL_EVT_INIT, vcm);
Florin Coras99368312018-08-02 10:45:44 -0700662 return VPPCOM_OK;
Florin Coras697faea2018-06-27 17:10:49 -0700663}
664
665/*
666 * fd.io coding-style-patch-verification: ON
667 *
668 * Local Variables:
669 * eval: (c-set-style "gnu")
670 * End:
671 */