Florin Coras | 697faea | 2018-06-27 17:10:49 -0700 | [diff] [blame] | 1 | /* |
Florin Coras | 5e06257 | 2019-03-14 19:07:51 -0700 | [diff] [blame] | 2 | * Copyright (c) 2018-2019 Cisco and/or its affiliates. |
Florin Coras | 697faea | 2018-06-27 17:10:49 -0700 | [diff] [blame] | 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> |
Florin Coras | 697faea | 2018-06-27 17:10:49 -0700 | [diff] [blame] | 18 | |
Filip Tehlar | 0046e97 | 2021-06-26 22:12:08 +0000 | [diff] [blame] | 19 | #include <vnet/format_fns.h> |
| 20 | #include <vnet/session/session.api_enum.h> |
| 21 | #include <vnet/session/session.api_types.h> |
Florin Coras | 697faea | 2018-06-27 17:10:49 -0700 | [diff] [blame] | 22 | |
Filip Tehlar | 0046e97 | 2021-06-26 22:12:08 +0000 | [diff] [blame] | 23 | #define REPLY_MSG_ID_BASE msg_id_base |
Florin Coras | 697faea | 2018-06-27 17:10:49 -0700 | [diff] [blame] | 24 | |
Filip Tehlar | 0046e97 | 2021-06-26 22:12:08 +0000 | [diff] [blame] | 25 | static u16 msg_id_base; |
Florin Coras | 697faea | 2018-06-27 17:10:49 -0700 | [diff] [blame] | 26 | |
Florin Coras | 00e01d3 | 2019-10-21 16:07:46 -0700 | [diff] [blame] | 27 | static u8 * |
Florin Coras | 697faea | 2018-06-27 17:10:49 -0700 | [diff] [blame] | 28 | format_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 | |
| 42 | static void |
| 43 | vl_api_session_enable_disable_reply_t_handler |
| 44 | (vl_api_session_enable_disable_reply_t * mp) |
| 45 | { |
Florin Coras | 3b6c84c | 2021-01-05 20:45:44 -0800 | [diff] [blame] | 46 | vcl_worker_t *wrk = vcl_worker_get (0); |
| 47 | |
Florin Coras | 697faea | 2018-06-27 17:10:49 -0700 | [diff] [blame] | 48 | 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 Coras | 3b6c84c | 2021-01-05 20:45:44 -0800 | [diff] [blame] | 54 | wrk->bapi_app_state = STATE_APP_ENABLED; |
Florin Coras | 697faea | 2018-06-27 17:10:49 -0700 | [diff] [blame] | 55 | } |
| 56 | |
Florin Coras | d85de68 | 2018-11-29 17:02:29 -0800 | [diff] [blame] | 57 | static void |
Florin Coras | 458089b | 2019-08-21 16:20:44 -0700 | [diff] [blame] | 58 | vl_api_app_attach_reply_t_handler (vl_api_app_attach_reply_t * mp) |
Florin Coras | 697faea | 2018-06-27 17:10:49 -0700 | [diff] [blame] | 59 | { |
Florin Coras | 134a996 | 2018-08-28 11:32:04 -0700 | [diff] [blame] | 60 | vcl_worker_t *wrk = vcl_worker_get (0); |
Florin Coras | d85de68 | 2018-11-29 17:02:29 -0800 | [diff] [blame] | 61 | u64 segment_handle; |
Jakub Grajciar | b4e5e50 | 2020-01-31 09:35:29 +0100 | [diff] [blame] | 62 | int *fds = 0, i, rv; |
Florin Coras | 9936831 | 2018-08-02 10:45:44 -0700 | [diff] [blame] | 63 | u32 n_fds = 0; |
Jakub Grajciar | b4e5e50 | 2020-01-31 09:35:29 +0100 | [diff] [blame] | 64 | char *segment_name = 0; |
Florin Coras | 697faea | 2018-06-27 17:10:49 -0700 | [diff] [blame] | 65 | |
Florin Coras | 697faea | 2018-06-27 17:10:49 -0700 | [diff] [blame] | 66 | if (mp->retval) |
| 67 | { |
Florin Coras | a5efca3 | 2019-03-20 08:33:10 -0700 | [diff] [blame] | 68 | VERR ("attach failed: %U", format_api_error, ntohl (mp->retval)); |
| 69 | goto failed; |
Florin Coras | 697faea | 2018-06-27 17:10:49 -0700 | [diff] [blame] | 70 | } |
| 71 | |
Florin Coras | 3b6c84c | 2021-01-05 20:45:44 -0800 | [diff] [blame] | 72 | vcl_set_worker_index (0); |
| 73 | |
Florin Coras | d85de68 | 2018-11-29 17:02:29 -0800 | [diff] [blame] | 74 | segment_handle = clib_net_to_host_u64 (mp->segment_handle); |
| 75 | if (segment_handle == VCL_INVALID_SEGMENT_HANDLE) |
| 76 | { |
Florin Coras | a5efca3 | 2019-03-20 08:33:10 -0700 | [diff] [blame] | 77 | VERR ("invalid segment handle"); |
| 78 | goto failed; |
Florin Coras | d85de68 | 2018-11-29 17:02:29 -0800 | [diff] [blame] | 79 | } |
| 80 | |
Florin Coras | 9936831 | 2018-08-02 10:45:44 -0700 | [diff] [blame] | 81 | if (mp->n_fds) |
Florin Coras | 697faea | 2018-06-27 17:10:49 -0700 | [diff] [blame] | 82 | { |
Florin Coras | 9936831 | 2018-08-02 10:45:44 -0700 | [diff] [blame] | 83 | vec_validate (fds, mp->n_fds); |
Florin Coras | d4c7092 | 2019-11-28 14:21:21 -0800 | [diff] [blame] | 84 | if (vl_socket_client_recv_fd_msg2 (&wrk->bapi_sock_ctx, fds, mp->n_fds, |
| 85 | 5)) |
Florin Coras | 617574d | 2019-07-01 07:32:31 -0700 | [diff] [blame] | 86 | goto failed; |
Florin Coras | 9936831 | 2018-08-02 10:45:44 -0700 | [diff] [blame] | 87 | |
| 88 | if (mp->fd_flags & SESSION_FD_F_VPP_MQ_SEGMENT) |
Florin Coras | d85de68 | 2018-11-29 17:02:29 -0800 | [diff] [blame] | 89 | if (vcl_segment_attach (vcl_vpp_worker_segment_handle (0), |
| 90 | "vpp-mq-seg", SSVM_SEGMENT_MEMFD, |
| 91 | fds[n_fds++])) |
Florin Coras | a5efca3 | 2019-03-20 08:33:10 -0700 | [diff] [blame] | 92 | goto failed; |
Florin Coras | 9936831 | 2018-08-02 10:45:44 -0700 | [diff] [blame] | 93 | |
| 94 | if (mp->fd_flags & SESSION_FD_F_MEMFD_SEGMENT) |
Jakub Grajciar | b4e5e50 | 2020-01-31 09:35:29 +0100 | [diff] [blame] | 95 | { |
| 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 Coras | b462418 | 2020-12-11 13:58:12 -0800 | [diff] [blame] | 105 | vcl_segment_attach_mq (segment_handle, mp->app_mq, 0, |
| 106 | &wrk->app_event_queue); |
Florin Coras | 9936831 | 2018-08-02 10:45:44 -0700 | [diff] [blame] | 107 | |
| 108 | if (mp->fd_flags & SESSION_FD_F_MQ_EVENTFD) |
| 109 | { |
Florin Coras | 86f1232 | 2021-01-22 15:05:14 -0800 | [diff] [blame] | 110 | svm_msg_q_set_eventfd (wrk->app_event_queue, fds[n_fds]); |
Florin Coras | 134a996 | 2018-08-28 11:32:04 -0700 | [diff] [blame] | 111 | vcl_mq_epoll_add_evfd (wrk, wrk->app_event_queue); |
Florin Coras | 9936831 | 2018-08-02 10:45:44 -0700 | [diff] [blame] | 112 | n_fds++; |
| 113 | } |
| 114 | |
Florin Coras | 80b7425 | 2021-01-27 18:08:25 -0800 | [diff] [blame] | 115 | 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 Coras | 9936831 | 2018-08-02 10:45:44 -0700 | [diff] [blame] | 122 | vec_free (fds); |
Florin Coras | 697faea | 2018-06-27 17:10:49 -0700 | [diff] [blame] | 123 | } |
Florin Coras | 9936831 | 2018-08-02 10:45:44 -0700 | [diff] [blame] | 124 | else |
Florin Coras | 697faea | 2018-06-27 17:10:49 -0700 | [diff] [blame] | 125 | { |
Jakub Grajciar | b4e5e50 | 2020-01-31 09:35:29 +0100 | [diff] [blame] | 126 | 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 Coras | a5efca3 | 2019-03-20 08:33:10 -0700 | [diff] [blame] | 132 | goto failed; |
Florin Coras | 697faea | 2018-06-27 17:10:49 -0700 | [diff] [blame] | 133 | } |
| 134 | |
Florin Coras | c1f5a43 | 2018-11-20 11:31:26 -0800 | [diff] [blame] | 135 | vcm->app_index = clib_net_to_host_u32 (mp->app_index); |
Florin Coras | 3b6c84c | 2021-01-05 20:45:44 -0800 | [diff] [blame] | 136 | wrk->bapi_app_state = STATE_APP_ATTACHED; |
Florin Coras | a5efca3 | 2019-03-20 08:33:10 -0700 | [diff] [blame] | 137 | return; |
| 138 | |
| 139 | failed: |
Florin Coras | 3b6c84c | 2021-01-05 20:45:44 -0800 | [diff] [blame] | 140 | wrk->bapi_app_state = STATE_APP_FAILED; |
Florin Coras | 617574d | 2019-07-01 07:32:31 -0700 | [diff] [blame] | 141 | for (i = clib_max (n_fds - 1, 0); i < vec_len (fds); i++) |
| 142 | close (fds[i]); |
| 143 | vec_free (fds); |
Florin Coras | 697faea | 2018-06-27 17:10:49 -0700 | [diff] [blame] | 144 | } |
| 145 | |
| 146 | static void |
Florin Coras | 134a996 | 2018-08-28 11:32:04 -0700 | [diff] [blame] | 147 | vl_api_app_worker_add_del_reply_t_handler (vl_api_app_worker_add_del_reply_t * |
| 148 | mp) |
| 149 | { |
Jakub Grajciar | b4e5e50 | 2020-01-31 09:35:29 +0100 | [diff] [blame] | 150 | int n_fds = 0, *fds = 0, i, rv; |
Florin Coras | d85de68 | 2018-11-29 17:02:29 -0800 | [diff] [blame] | 151 | u64 segment_handle; |
Florin Coras | 134a996 | 2018-08-28 11:32:04 -0700 | [diff] [blame] | 152 | vcl_worker_t *wrk; |
Florin Coras | ab2f6db | 2018-08-31 14:31:41 -0700 | [diff] [blame] | 153 | u32 wrk_index; |
Jakub Grajciar | b4e5e50 | 2020-01-31 09:35:29 +0100 | [diff] [blame] | 154 | char *segment_name = 0; |
Florin Coras | 134a996 | 2018-08-28 11:32:04 -0700 | [diff] [blame] | 155 | |
Florin Coras | 3348a4c | 2018-09-07 17:09:35 -0700 | [diff] [blame] | 156 | if (!mp->is_add) |
| 157 | return; |
| 158 | |
Florin Coras | dc2e251 | 2018-12-03 17:47:26 -0800 | [diff] [blame] | 159 | wrk_index = mp->context; |
Florin Coras | 01f3f89 | 2018-12-02 12:45:53 -0800 | [diff] [blame] | 160 | wrk = vcl_worker_get_if_valid (wrk_index); |
| 161 | if (!wrk) |
| 162 | return; |
| 163 | |
Florin Coras | 3b6c84c | 2021-01-05 20:45:44 -0800 | [diff] [blame] | 164 | if (mp->retval) |
| 165 | { |
| 166 | clib_warning ("VCL<%d>: add/del worker failed: %U", getpid (), |
| 167 | format_api_error, ntohl (mp->retval)); |
| 168 | goto failed; |
| 169 | } |
| 170 | |
| 171 | vcl_set_worker_index (wrk_index); |
Florin Coras | dc2e251 | 2018-12-03 17:47:26 -0800 | [diff] [blame] | 172 | wrk->vpp_wrk_index = clib_net_to_host_u32 (mp->wrk_index); |
Florin Coras | 22ba330 | 2019-08-29 22:45:04 -0700 | [diff] [blame] | 173 | wrk->ctrl_mq = vcm->ctrl_mq; |
Florin Coras | 134a996 | 2018-08-28 11:32:04 -0700 | [diff] [blame] | 174 | |
Florin Coras | d85de68 | 2018-11-29 17:02:29 -0800 | [diff] [blame] | 175 | 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 Coras | 01f3f89 | 2018-12-02 12:45:53 -0800 | [diff] [blame] | 179 | goto failed; |
Florin Coras | d85de68 | 2018-11-29 17:02:29 -0800 | [diff] [blame] | 180 | } |
| 181 | |
Florin Coras | 134a996 | 2018-08-28 11:32:04 -0700 | [diff] [blame] | 182 | if (mp->n_fds) |
| 183 | { |
| 184 | vec_validate (fds, mp->n_fds); |
Florin Coras | d4c7092 | 2019-11-28 14:21:21 -0800 | [diff] [blame] | 185 | if (vl_socket_client_recv_fd_msg2 (&wrk->bapi_sock_ctx, fds, mp->n_fds, |
| 186 | 5)) |
Florin Coras | 617574d | 2019-07-01 07:32:31 -0700 | [diff] [blame] | 187 | goto failed; |
Florin Coras | 134a996 | 2018-08-28 11:32:04 -0700 | [diff] [blame] | 188 | |
| 189 | if (mp->fd_flags & SESSION_FD_F_VPP_MQ_SEGMENT) |
Florin Coras | 01f3f89 | 2018-12-02 12:45:53 -0800 | [diff] [blame] | 190 | if (vcl_segment_attach (vcl_vpp_worker_segment_handle (wrk_index), |
| 191 | "vpp-worker-seg", SSVM_SEGMENT_MEMFD, |
| 192 | fds[n_fds++])) |
Florin Coras | 134a996 | 2018-08-28 11:32:04 -0700 | [diff] [blame] | 193 | goto failed; |
| 194 | |
| 195 | if (mp->fd_flags & SESSION_FD_F_MEMFD_SEGMENT) |
Jakub Grajciar | b4e5e50 | 2020-01-31 09:35:29 +0100 | [diff] [blame] | 196 | { |
| 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 Coras | 134a996 | 2018-08-28 11:32:04 -0700 | [diff] [blame] | 205 | |
Florin Coras | b462418 | 2020-12-11 13:58:12 -0800 | [diff] [blame] | 206 | vcl_segment_attach_mq (segment_handle, mp->app_event_queue_address, 0, |
| 207 | &wrk->app_event_queue); |
| 208 | |
Florin Coras | 134a996 | 2018-08-28 11:32:04 -0700 | [diff] [blame] | 209 | if (mp->fd_flags & SESSION_FD_F_MQ_EVENTFD) |
| 210 | { |
Florin Coras | 86f1232 | 2021-01-22 15:05:14 -0800 | [diff] [blame] | 211 | svm_msg_q_set_eventfd (wrk->app_event_queue, fds[n_fds]); |
Florin Coras | 134a996 | 2018-08-28 11:32:04 -0700 | [diff] [blame] | 212 | vcl_mq_epoll_add_evfd (wrk, wrk->app_event_queue); |
| 213 | n_fds++; |
| 214 | } |
| 215 | |
| 216 | vec_free (fds); |
| 217 | } |
| 218 | else |
| 219 | { |
Jakub Grajciar | b4e5e50 | 2020-01-31 09:35:29 +0100 | [diff] [blame] | 220 | 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 Coras | 134a996 | 2018-08-28 11:32:04 -0700 | [diff] [blame] | 226 | goto failed; |
| 227 | } |
Florin Coras | 3b6c84c | 2021-01-05 20:45:44 -0800 | [diff] [blame] | 228 | wrk->bapi_app_state = STATE_APP_READY; |
Florin Coras | 053a0e4 | 2018-11-13 15:52:38 -0800 | [diff] [blame] | 229 | VDBG (0, "worker %u vpp-worker %u added", wrk_index, wrk->vpp_wrk_index); |
Florin Coras | 134a996 | 2018-08-28 11:32:04 -0700 | [diff] [blame] | 230 | return; |
| 231 | |
| 232 | failed: |
Florin Coras | 3b6c84c | 2021-01-05 20:45:44 -0800 | [diff] [blame] | 233 | wrk->bapi_app_state = STATE_APP_FAILED; |
Florin Coras | 617574d | 2019-07-01 07:32:31 -0700 | [diff] [blame] | 234 | for (i = clib_max (n_fds - 1, 0); i < vec_len (fds); i++) |
| 235 | close (fds[i]); |
| 236 | vec_free (fds); |
Florin Coras | 134a996 | 2018-08-28 11:32:04 -0700 | [diff] [blame] | 237 | } |
| 238 | |
| 239 | static void |
Florin Coras | a5a9efd | 2021-01-05 17:03:29 -0800 | [diff] [blame] | 240 | vl_api_app_add_cert_key_pair_reply_t_handler ( |
| 241 | vl_api_app_add_cert_key_pair_reply_t *mp) |
Ping Yu | 34a3a08 | 2018-11-30 19:16:17 -0500 | [diff] [blame] | 242 | { |
Florin Coras | 3b6c84c | 2021-01-05 20:45:44 -0800 | [diff] [blame] | 243 | vcl_worker_t *wrk = vcl_worker_get_current (); |
| 244 | |
Ping Yu | 34a3a08 | 2018-11-30 19:16:17 -0500 | [diff] [blame] | 245 | if (mp->retval) |
Florin Coras | 3b6c84c | 2021-01-05 20:45:44 -0800 | [diff] [blame] | 246 | { |
Florin Coras | a5a9efd | 2021-01-05 17:03:29 -0800 | [diff] [blame] | 247 | VDBG (0, "Adding cert and key failed: %U", format_api_error, |
| 248 | ntohl (mp->retval)); |
Florin Coras | 3b6c84c | 2021-01-05 20:45:44 -0800 | [diff] [blame] | 249 | return; |
| 250 | } |
Florin Coras | a5a9efd | 2021-01-05 17:03:29 -0800 | [diff] [blame] | 251 | wrk->bapi_return = clib_net_to_host_u32 (mp->index); |
Florin Coras | 3b6c84c | 2021-01-05 20:45:44 -0800 | [diff] [blame] | 252 | wrk->bapi_app_state = STATE_APP_READY; |
Ping Yu | 34a3a08 | 2018-11-30 19:16:17 -0500 | [diff] [blame] | 253 | } |
| 254 | |
| 255 | static void |
Florin Coras | a5a9efd | 2021-01-05 17:03:29 -0800 | [diff] [blame] | 256 | vl_api_app_del_cert_key_pair_reply_t_handler ( |
| 257 | vl_api_app_del_cert_key_pair_reply_t *mp) |
Ping Yu | 34a3a08 | 2018-11-30 19:16:17 -0500 | [diff] [blame] | 258 | { |
| 259 | if (mp->retval) |
Florin Coras | 3b6c84c | 2021-01-05 20:45:44 -0800 | [diff] [blame] | 260 | { |
Florin Coras | a5a9efd | 2021-01-05 17:03:29 -0800 | [diff] [blame] | 261 | VDBG (0, "Deleting cert and key failed: %U", format_api_error, |
| 262 | ntohl (mp->retval)); |
Florin Coras | 3b6c84c | 2021-01-05 20:45:44 -0800 | [diff] [blame] | 263 | return; |
| 264 | } |
Ping Yu | 34a3a08 | 2018-11-30 19:16:17 -0500 | [diff] [blame] | 265 | } |
| 266 | |
Florin Coras | a5a9efd | 2021-01-05 17:03:29 -0800 | [diff] [blame] | 267 | #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 Coras | 697faea | 2018-06-27 17:10:49 -0700 | [diff] [blame] | 273 | |
Filip Tehlar | 0046e97 | 2021-06-26 22:12:08 +0000 | [diff] [blame] | 274 | #define vl_print(handle, ...) fformat (handle, __VA_ARGS__) |
| 275 | #define vl_endianfun /* define message structures */ |
| 276 | #include <vnet/session/session.api.h> |
| 277 | #undef vl_endianfun |
| 278 | |
| 279 | /* instantiate all the print functions we know about */ |
| 280 | #define vl_printfun |
| 281 | #include <vnet/session/session.api.h> |
| 282 | #undef vl_printfun |
| 283 | |
| 284 | #define vl_api_version(n, v) static u32 api_version = v; |
| 285 | #include <vnet/session/session.api.h> |
| 286 | #undef vl_api_version |
| 287 | |
Florin Coras | b88de90 | 2020-09-08 16:47:57 -0700 | [diff] [blame] | 288 | static void |
| 289 | vcl_bapi_hookup (void) |
Florin Coras | 697faea | 2018-06-27 17:10:49 -0700 | [diff] [blame] | 290 | { |
Filip Tehlar | 0046e97 | 2021-06-26 22:12:08 +0000 | [diff] [blame] | 291 | u8 *msg_base_lookup_name = format (0, "session_%08x%c", api_version, 0); |
| 292 | |
| 293 | REPLY_MSG_ID_BASE = |
| 294 | vl_client_get_first_plugin_msg_id ((char *) msg_base_lookup_name); |
| 295 | |
| 296 | vec_free (msg_base_lookup_name); |
| 297 | |
| 298 | if (REPLY_MSG_ID_BASE == (u16) ~0) |
| 299 | return; |
| 300 | |
| 301 | #define _(N, n) \ |
Filip Tehlar | 36217e3 | 2021-07-23 08:51:10 +0000 | [diff] [blame] | 302 | vl_msg_api_set_handlers ( \ |
| 303 | REPLY_MSG_ID_BASE + VL_API_##N, #n, vl_api_##n##_t_handler, \ |
| 304 | vl_noop_handler, vl_api_##n##_t_endian, vl_api_##n##_t_print, \ |
| 305 | sizeof (vl_api_##n##_t), 1, vl_api_##n##_t_print_json, \ |
| 306 | vl_api_##n##_t_tojson, vl_api_##n##_t_fromjson); |
Florin Coras | 697faea | 2018-06-27 17:10:49 -0700 | [diff] [blame] | 307 | foreach_sock_msg; |
| 308 | #undef _ |
| 309 | } |
| 310 | |
| 311 | /* |
| 312 | * VPP-API message functions |
| 313 | */ |
Florin Coras | b88de90 | 2020-09-08 16:47:57 -0700 | [diff] [blame] | 314 | static void |
| 315 | vcl_bapi_send_session_enable_disable (u8 is_enable) |
Florin Coras | 697faea | 2018-06-27 17:10:49 -0700 | [diff] [blame] | 316 | { |
Florin Coras | 47c40e2 | 2018-11-26 17:01:36 -0800 | [diff] [blame] | 317 | vcl_worker_t *wrk = vcl_worker_get_current (); |
Florin Coras | 697faea | 2018-06-27 17:10:49 -0700 | [diff] [blame] | 318 | vl_api_session_enable_disable_t *bmp; |
| 319 | bmp = vl_msg_api_alloc (sizeof (*bmp)); |
| 320 | memset (bmp, 0, sizeof (*bmp)); |
| 321 | |
Filip Tehlar | 0046e97 | 2021-06-26 22:12:08 +0000 | [diff] [blame] | 322 | bmp->_vl_msg_id = ntohs (REPLY_MSG_ID_BASE + VL_API_SESSION_ENABLE_DISABLE); |
Florin Coras | cc7c88e | 2020-09-15 15:56:51 -0700 | [diff] [blame] | 323 | bmp->client_index = wrk->api_client_handle; |
Florin Coras | 697faea | 2018-06-27 17:10:49 -0700 | [diff] [blame] | 324 | bmp->context = htonl (0xfeedface); |
| 325 | bmp->is_enable = is_enable; |
Florin Coras | 47c40e2 | 2018-11-26 17:01:36 -0800 | [diff] [blame] | 326 | vl_msg_api_send_shmem (wrk->vl_input_queue, (u8 *) & bmp); |
Florin Coras | 697faea | 2018-06-27 17:10:49 -0700 | [diff] [blame] | 327 | } |
| 328 | |
| 329 | void |
Florin Coras | b88de90 | 2020-09-08 16:47:57 -0700 | [diff] [blame] | 330 | vcl_bapi_send_attach (void) |
Florin Coras | 697faea | 2018-06-27 17:10:49 -0700 | [diff] [blame] | 331 | { |
Florin Coras | 47c40e2 | 2018-11-26 17:01:36 -0800 | [diff] [blame] | 332 | vcl_worker_t *wrk = vcl_worker_get_current (); |
Florin Coras | d747c3c | 2019-10-20 19:55:56 -0700 | [diff] [blame] | 333 | u8 tls_engine = CRYPTO_ENGINE_OPENSSL; |
Florin Coras | 458089b | 2019-08-21 16:20:44 -0700 | [diff] [blame] | 334 | vl_api_app_attach_t *bmp; |
Florin Coras | 697faea | 2018-06-27 17:10:49 -0700 | [diff] [blame] | 335 | u8 nsid_len = vec_len (vcm->cfg.namespace_id); |
| 336 | u8 app_is_proxy = (vcm->cfg.app_proxy_transport_tcp || |
| 337 | vcm->cfg.app_proxy_transport_udp); |
| 338 | |
Florin Coras | d747c3c | 2019-10-20 19:55:56 -0700 | [diff] [blame] | 339 | tls_engine = vcm->cfg.tls_engine ? vcm->cfg.tls_engine : tls_engine; |
| 340 | |
Florin Coras | 697faea | 2018-06-27 17:10:49 -0700 | [diff] [blame] | 341 | bmp = vl_msg_api_alloc (sizeof (*bmp)); |
| 342 | memset (bmp, 0, sizeof (*bmp)); |
| 343 | |
Filip Tehlar | 0046e97 | 2021-06-26 22:12:08 +0000 | [diff] [blame] | 344 | bmp->_vl_msg_id = ntohs (REPLY_MSG_ID_BASE + VL_API_APP_ATTACH); |
Florin Coras | cc7c88e | 2020-09-15 15:56:51 -0700 | [diff] [blame] | 345 | bmp->client_index = wrk->api_client_handle; |
Florin Coras | 697faea | 2018-06-27 17:10:49 -0700 | [diff] [blame] | 346 | bmp->context = htonl (0xfeedface); |
| 347 | bmp->options[APP_OPTIONS_FLAGS] = |
| 348 | APP_OPTIONS_FLAGS_ACCEPT_REDIRECT | APP_OPTIONS_FLAGS_ADD_SEGMENT | |
| 349 | (vcm->cfg.app_scope_local ? APP_OPTIONS_FLAGS_USE_LOCAL_SCOPE : 0) | |
| 350 | (vcm->cfg.app_scope_global ? APP_OPTIONS_FLAGS_USE_GLOBAL_SCOPE : 0) | |
Florin Coras | 54693d2 | 2018-07-17 10:46:29 -0700 | [diff] [blame] | 351 | (app_is_proxy ? APP_OPTIONS_FLAGS_IS_PROXY : 0) | |
Florin Coras | 9936831 | 2018-08-02 10:45:44 -0700 | [diff] [blame] | 352 | (vcm->cfg.use_mq_eventfd ? APP_OPTIONS_FLAGS_EVT_MQ_USE_EVENTFD : 0); |
Florin Coras | 697faea | 2018-06-27 17:10:49 -0700 | [diff] [blame] | 353 | bmp->options[APP_OPTIONS_PROXY_TRANSPORT] = |
| 354 | (u64) ((vcm->cfg.app_proxy_transport_tcp ? 1 << TRANSPORT_PROTO_TCP : 0) | |
| 355 | (vcm->cfg.app_proxy_transport_udp ? 1 << TRANSPORT_PROTO_UDP : 0)); |
| 356 | bmp->options[APP_OPTIONS_SEGMENT_SIZE] = vcm->cfg.segment_size; |
| 357 | bmp->options[APP_OPTIONS_ADD_SEGMENT_SIZE] = vcm->cfg.add_segment_size; |
| 358 | bmp->options[APP_OPTIONS_RX_FIFO_SIZE] = vcm->cfg.rx_fifo_size; |
| 359 | bmp->options[APP_OPTIONS_TX_FIFO_SIZE] = vcm->cfg.tx_fifo_size; |
| 360 | bmp->options[APP_OPTIONS_PREALLOC_FIFO_PAIRS] = |
| 361 | vcm->cfg.preallocated_fifo_pairs; |
| 362 | bmp->options[APP_OPTIONS_EVT_QUEUE_SIZE] = vcm->cfg.event_queue_size; |
Florin Coras | d747c3c | 2019-10-20 19:55:56 -0700 | [diff] [blame] | 363 | bmp->options[APP_OPTIONS_TLS_ENGINE] = tls_engine; |
Florin Coras | 697faea | 2018-06-27 17:10:49 -0700 | [diff] [blame] | 364 | if (nsid_len) |
| 365 | { |
Jakub Grajciar | b4e5e50 | 2020-01-31 09:35:29 +0100 | [diff] [blame] | 366 | vl_api_vec_to_api_string (vcm->cfg.namespace_id, &bmp->namespace_id); |
Florin Coras | 697faea | 2018-06-27 17:10:49 -0700 | [diff] [blame] | 367 | bmp->options[APP_OPTIONS_NAMESPACE_SECRET] = vcm->cfg.namespace_secret; |
| 368 | } |
Florin Coras | 47c40e2 | 2018-11-26 17:01:36 -0800 | [diff] [blame] | 369 | vl_msg_api_send_shmem (wrk->vl_input_queue, (u8 *) & bmp); |
Florin Coras | 697faea | 2018-06-27 17:10:49 -0700 | [diff] [blame] | 370 | } |
| 371 | |
| 372 | void |
Florin Coras | b88de90 | 2020-09-08 16:47:57 -0700 | [diff] [blame] | 373 | vcl_bapi_send_detach (void) |
Florin Coras | 697faea | 2018-06-27 17:10:49 -0700 | [diff] [blame] | 374 | { |
Florin Coras | 47c40e2 | 2018-11-26 17:01:36 -0800 | [diff] [blame] | 375 | vcl_worker_t *wrk = vcl_worker_get_current (); |
Florin Coras | 697faea | 2018-06-27 17:10:49 -0700 | [diff] [blame] | 376 | vl_api_application_detach_t *bmp; |
| 377 | bmp = vl_msg_api_alloc (sizeof (*bmp)); |
| 378 | memset (bmp, 0, sizeof (*bmp)); |
| 379 | |
Filip Tehlar | 0046e97 | 2021-06-26 22:12:08 +0000 | [diff] [blame] | 380 | bmp->_vl_msg_id = ntohs (REPLY_MSG_ID_BASE + VL_API_APPLICATION_DETACH); |
Florin Coras | cc7c88e | 2020-09-15 15:56:51 -0700 | [diff] [blame] | 381 | bmp->client_index = wrk->api_client_handle; |
Florin Coras | 697faea | 2018-06-27 17:10:49 -0700 | [diff] [blame] | 382 | bmp->context = htonl (0xfeedface); |
Florin Coras | 47c40e2 | 2018-11-26 17:01:36 -0800 | [diff] [blame] | 383 | vl_msg_api_send_shmem (wrk->vl_input_queue, (u8 *) & bmp); |
Florin Coras | 697faea | 2018-06-27 17:10:49 -0700 | [diff] [blame] | 384 | } |
| 385 | |
Florin Coras | b88de90 | 2020-09-08 16:47:57 -0700 | [diff] [blame] | 386 | static void |
| 387 | vcl_bapi_send_app_worker_add_del (u8 is_add) |
Florin Coras | 134a996 | 2018-08-28 11:32:04 -0700 | [diff] [blame] | 388 | { |
| 389 | vcl_worker_t *wrk = vcl_worker_get_current (); |
| 390 | vl_api_app_worker_add_del_t *mp; |
Florin Coras | 134a996 | 2018-08-28 11:32:04 -0700 | [diff] [blame] | 391 | |
| 392 | mp = vl_msg_api_alloc (sizeof (*mp)); |
| 393 | memset (mp, 0, sizeof (*mp)); |
| 394 | |
Filip Tehlar | 0046e97 | 2021-06-26 22:12:08 +0000 | [diff] [blame] | 395 | mp->_vl_msg_id = ntohs (REPLY_MSG_ID_BASE + VL_API_APP_WORKER_ADD_DEL); |
Florin Coras | cc7c88e | 2020-09-15 15:56:51 -0700 | [diff] [blame] | 396 | mp->client_index = wrk->api_client_handle; |
Florin Coras | c1f5a43 | 2018-11-20 11:31:26 -0800 | [diff] [blame] | 397 | mp->app_index = clib_host_to_net_u32 (vcm->app_index); |
Florin Coras | 01f3f89 | 2018-12-02 12:45:53 -0800 | [diff] [blame] | 398 | mp->context = wrk->wrk_index; |
Florin Coras | 134a996 | 2018-08-28 11:32:04 -0700 | [diff] [blame] | 399 | mp->is_add = is_add; |
| 400 | if (!is_add) |
Florin Coras | 01f3f89 | 2018-12-02 12:45:53 -0800 | [diff] [blame] | 401 | mp->wrk_index = clib_host_to_net_u32 (wrk->vpp_wrk_index); |
| 402 | |
| 403 | vl_msg_api_send_shmem (wrk->vl_input_queue, (u8 *) & mp); |
| 404 | } |
| 405 | |
Florin Coras | b88de90 | 2020-09-08 16:47:57 -0700 | [diff] [blame] | 406 | static void |
| 407 | vcl_bapi_send_child_worker_del (vcl_worker_t * child_wrk) |
Florin Coras | 01f3f89 | 2018-12-02 12:45:53 -0800 | [diff] [blame] | 408 | { |
| 409 | vcl_worker_t *wrk = vcl_worker_get_current (); |
| 410 | vl_api_app_worker_add_del_t *mp; |
| 411 | |
| 412 | mp = vl_msg_api_alloc (sizeof (*mp)); |
| 413 | memset (mp, 0, sizeof (*mp)); |
| 414 | |
Filip Tehlar | 0046e97 | 2021-06-26 22:12:08 +0000 | [diff] [blame] | 415 | mp->_vl_msg_id = ntohs (REPLY_MSG_ID_BASE + VL_API_APP_WORKER_ADD_DEL); |
Florin Coras | cc7c88e | 2020-09-15 15:56:51 -0700 | [diff] [blame] | 416 | mp->client_index = wrk->api_client_handle; |
Florin Coras | 01f3f89 | 2018-12-02 12:45:53 -0800 | [diff] [blame] | 417 | mp->app_index = clib_host_to_net_u32 (vcm->app_index); |
| 418 | mp->context = wrk->wrk_index; |
| 419 | mp->is_add = 0; |
| 420 | mp->wrk_index = clib_host_to_net_u32 (child_wrk->vpp_wrk_index); |
Florin Coras | 134a996 | 2018-08-28 11:32:04 -0700 | [diff] [blame] | 421 | |
Florin Coras | 47c40e2 | 2018-11-26 17:01:36 -0800 | [diff] [blame] | 422 | vl_msg_api_send_shmem (wrk->vl_input_queue, (u8 *) & mp); |
Florin Coras | 134a996 | 2018-08-28 11:32:04 -0700 | [diff] [blame] | 423 | } |
| 424 | |
Florin Coras | a5a9efd | 2021-01-05 17:03:29 -0800 | [diff] [blame] | 425 | static void |
| 426 | vcl_bapi_send_app_add_cert_key_pair (vppcom_cert_key_pair_t *ckpair) |
Ping Yu | 34a3a08 | 2018-11-30 19:16:17 -0500 | [diff] [blame] | 427 | { |
| 428 | vcl_worker_t *wrk = vcl_worker_get_current (); |
Sivaprasad Tummala | 39d25e5 | 2021-07-27 17:38:00 +0530 | [diff] [blame] | 429 | u32 cert_len = ckpair->cert_len; |
| 430 | u32 key_len = ckpair->key_len; |
Florin Coras | a5a9efd | 2021-01-05 17:03:29 -0800 | [diff] [blame] | 431 | vl_api_app_add_cert_key_pair_t *bmp; |
Ping Yu | 34a3a08 | 2018-11-30 19:16:17 -0500 | [diff] [blame] | 432 | |
Florin Coras | a5a9efd | 2021-01-05 17:03:29 -0800 | [diff] [blame] | 433 | bmp = vl_msg_api_alloc (sizeof (*bmp) + cert_len + key_len); |
| 434 | clib_memset (bmp, 0, sizeof (*bmp) + cert_len + key_len); |
| 435 | |
Filip Tehlar | 0046e97 | 2021-06-26 22:12:08 +0000 | [diff] [blame] | 436 | bmp->_vl_msg_id = ntohs (REPLY_MSG_ID_BASE + VL_API_APP_ADD_CERT_KEY_PAIR); |
Florin Coras | a5a9efd | 2021-01-05 17:03:29 -0800 | [diff] [blame] | 437 | bmp->client_index = wrk->api_client_handle; |
| 438 | bmp->context = wrk->wrk_index; |
| 439 | bmp->cert_len = clib_host_to_net_u16 (cert_len); |
| 440 | bmp->certkey_len = clib_host_to_net_u16 (key_len + cert_len); |
Sivaprasad Tummala | 39d25e5 | 2021-07-27 17:38:00 +0530 | [diff] [blame] | 441 | clib_memcpy_fast (bmp->certkey, ckpair->cert, cert_len); |
| 442 | clib_memcpy_fast (bmp->certkey + cert_len, ckpair->key, key_len); |
Florin Coras | a5a9efd | 2021-01-05 17:03:29 -0800 | [diff] [blame] | 443 | |
| 444 | vl_msg_api_send_shmem (wrk->vl_input_queue, (u8 *) &bmp); |
Ping Yu | 34a3a08 | 2018-11-30 19:16:17 -0500 | [diff] [blame] | 445 | } |
| 446 | |
Florin Coras | a5a9efd | 2021-01-05 17:03:29 -0800 | [diff] [blame] | 447 | static void |
| 448 | vcl_bapi_send_app_del_cert_key_pair (u32 ckpair_index) |
Ping Yu | 34a3a08 | 2018-11-30 19:16:17 -0500 | [diff] [blame] | 449 | { |
| 450 | vcl_worker_t *wrk = vcl_worker_get_current (); |
Florin Coras | a5a9efd | 2021-01-05 17:03:29 -0800 | [diff] [blame] | 451 | vl_api_app_del_cert_key_pair_t *bmp; |
| 452 | bmp = vl_msg_api_alloc (sizeof (*bmp)); |
| 453 | clib_memset (bmp, 0, sizeof (*bmp)); |
Ping Yu | 34a3a08 | 2018-11-30 19:16:17 -0500 | [diff] [blame] | 454 | |
Filip Tehlar | 0046e97 | 2021-06-26 22:12:08 +0000 | [diff] [blame] | 455 | bmp->_vl_msg_id = ntohs (REPLY_MSG_ID_BASE + VL_API_APP_DEL_CERT_KEY_PAIR); |
Florin Coras | a5a9efd | 2021-01-05 17:03:29 -0800 | [diff] [blame] | 456 | bmp->client_index = wrk->api_client_handle; |
| 457 | bmp->context = wrk->wrk_index; |
| 458 | bmp->index = clib_host_to_net_u32 (ckpair_index); |
| 459 | vl_msg_api_send_shmem (wrk->vl_input_queue, (u8 *) &bmp); |
Ping Yu | 34a3a08 | 2018-11-30 19:16:17 -0500 | [diff] [blame] | 460 | } |
| 461 | |
Florin Coras | 697faea | 2018-06-27 17:10:49 -0700 | [diff] [blame] | 462 | u32 |
Florin Coras | b88de90 | 2020-09-08 16:47:57 -0700 | [diff] [blame] | 463 | vcl_bapi_max_nsid_len (void) |
Florin Coras | 697faea | 2018-06-27 17:10:49 -0700 | [diff] [blame] | 464 | { |
Florin Coras | 888d9f0 | 2020-04-02 23:00:13 +0000 | [diff] [blame] | 465 | vl_api_app_attach_t *mp; |
Florin Coras | 697faea | 2018-06-27 17:10:49 -0700 | [diff] [blame] | 466 | return (sizeof (mp->namespace_id) - 1); |
| 467 | } |
| 468 | |
Florin Coras | b88de90 | 2020-09-08 16:47:57 -0700 | [diff] [blame] | 469 | static void |
| 470 | vcl_bapi_init_error_string_table (void) |
Florin Coras | 697faea | 2018-06-27 17:10:49 -0700 | [diff] [blame] | 471 | { |
| 472 | vcm->error_string_by_error_number = hash_create (0, sizeof (uword)); |
| 473 | |
| 474 | #define _(n, v, s) hash_set (vcm->error_string_by_error_number, -v, s); |
| 475 | foreach_vnet_api_error; |
| 476 | #undef _ |
| 477 | |
| 478 | hash_set (vcm->error_string_by_error_number, 99, "Misc"); |
| 479 | } |
| 480 | |
Florin Coras | b88de90 | 2020-09-08 16:47:57 -0700 | [diff] [blame] | 481 | static void |
| 482 | vcl_bapi_cleanup (void) |
| 483 | { |
| 484 | socket_client_main_t *scm = &socket_client_main; |
| 485 | api_main_t *am = vlibapi_get_main (); |
| 486 | |
| 487 | am->my_client_index = ~0; |
| 488 | am->my_registration = 0; |
| 489 | am->vl_input_queue = 0; |
| 490 | am->msg_index_by_name_and_crc = 0; |
| 491 | scm->socket_fd = 0; |
| 492 | |
| 493 | vl_client_api_unmap (); |
| 494 | } |
| 495 | |
| 496 | static int |
| 497 | vcl_bapi_connect_to_vpp (void) |
Florin Coras | 697faea | 2018-06-27 17:10:49 -0700 | [diff] [blame] | 498 | { |
Florin Coras | 47c40e2 | 2018-11-26 17:01:36 -0800 | [diff] [blame] | 499 | vcl_worker_t *wrk = vcl_worker_get_current (); |
Florin Coras | 697faea | 2018-06-27 17:10:49 -0700 | [diff] [blame] | 500 | vppcom_cfg_t *vcl_cfg = &vcm->cfg; |
Florin Coras | b88de90 | 2020-09-08 16:47:57 -0700 | [diff] [blame] | 501 | int rv = VPPCOM_OK; |
Florin Coras | d4c7092 | 2019-11-28 14:21:21 -0800 | [diff] [blame] | 502 | api_main_t *am; |
Florin Coras | b88de90 | 2020-09-08 16:47:57 -0700 | [diff] [blame] | 503 | u8 *wrk_name; |
| 504 | |
jiangxiaoming | b438c76 | 2020-10-13 14:23:29 +0800 | [diff] [blame] | 505 | wrk_name = format (0, "%v-wrk-%u%c", vcm->app_name, wrk->wrk_index, 0); |
Florin Coras | b88de90 | 2020-09-08 16:47:57 -0700 | [diff] [blame] | 506 | |
| 507 | /* Make sure api is cleaned up in case this is a connect from a |
| 508 | * forked worker */ |
| 509 | vcl_bapi_cleanup (); |
Florin Coras | d4c7092 | 2019-11-28 14:21:21 -0800 | [diff] [blame] | 510 | |
| 511 | vlibapi_set_main (&wrk->bapi_api_ctx); |
Florin Coras | fda21c9 | 2021-04-07 17:03:01 -0700 | [diff] [blame] | 512 | vlibapi_set_memory_client_main (&wrk->bapi_mem_ctx); |
Florin Coras | 697faea | 2018-06-27 17:10:49 -0700 | [diff] [blame] | 513 | |
Florin Coras | 165f3ae | 2020-11-08 18:04:33 -0800 | [diff] [blame] | 514 | if (!vcl_cfg->vpp_bapi_socket_name) |
Florin Coras | 697faea | 2018-06-27 17:10:49 -0700 | [diff] [blame] | 515 | { |
Florin Coras | 165f3ae | 2020-11-08 18:04:33 -0800 | [diff] [blame] | 516 | rv = VPPCOM_EINVAL; |
| 517 | goto error; |
Florin Coras | 697faea | 2018-06-27 17:10:49 -0700 | [diff] [blame] | 518 | } |
Florin Coras | 165f3ae | 2020-11-08 18:04:33 -0800 | [diff] [blame] | 519 | |
| 520 | if (vl_socket_client_connect2 (&wrk->bapi_sock_ctx, |
| 521 | (char *) vcl_cfg->vpp_bapi_socket_name, |
| 522 | (char *) wrk_name, |
| 523 | 0 /* default rx/tx buffer */ )) |
Florin Coras | 697faea | 2018-06-27 17:10:49 -0700 | [diff] [blame] | 524 | { |
Florin Coras | 165f3ae | 2020-11-08 18:04:33 -0800 | [diff] [blame] | 525 | VERR ("app (%s) socket connect failed!", wrk_name); |
| 526 | rv = VPPCOM_ECONNREFUSED; |
| 527 | goto error; |
| 528 | } |
Florin Coras | 697faea | 2018-06-27 17:10:49 -0700 | [diff] [blame] | 529 | |
Florin Coras | 165f3ae | 2020-11-08 18:04:33 -0800 | [diff] [blame] | 530 | if (vl_socket_client_init_shm2 (&wrk->bapi_sock_ctx, 0, |
| 531 | 1 /* want_pthread */ )) |
| 532 | { |
| 533 | VERR ("app (%s) init shm failed!", wrk_name); |
| 534 | rv = VPPCOM_ECONNREFUSED; |
| 535 | goto error; |
Florin Coras | 697faea | 2018-06-27 17:10:49 -0700 | [diff] [blame] | 536 | } |
Filip Tehlar | 0046e97 | 2021-06-26 22:12:08 +0000 | [diff] [blame] | 537 | vcl_bapi_hookup (); |
Florin Coras | 697faea | 2018-06-27 17:10:49 -0700 | [diff] [blame] | 538 | |
Florin Coras | d4c7092 | 2019-11-28 14:21:21 -0800 | [diff] [blame] | 539 | am = vlibapi_get_main (); |
Florin Coras | 47c40e2 | 2018-11-26 17:01:36 -0800 | [diff] [blame] | 540 | wrk->vl_input_queue = am->shmem_hdr->vl_input_queue; |
Florin Coras | cc7c88e | 2020-09-15 15:56:51 -0700 | [diff] [blame] | 541 | wrk->api_client_handle = (u32) am->my_client_index; |
Florin Coras | 9936831 | 2018-08-02 10:45:44 -0700 | [diff] [blame] | 542 | |
Florin Coras | b88de90 | 2020-09-08 16:47:57 -0700 | [diff] [blame] | 543 | VDBG (0, "app (%s) is connected to VPP!", wrk_name); |
Florin Coras | 697faea | 2018-06-27 17:10:49 -0700 | [diff] [blame] | 544 | vcl_evt (VCL_EVT_INIT, vcm); |
Florin Coras | b88de90 | 2020-09-08 16:47:57 -0700 | [diff] [blame] | 545 | |
| 546 | error: |
| 547 | vec_free (wrk_name); |
| 548 | return rv; |
Florin Coras | 697faea | 2018-06-27 17:10:49 -0700 | [diff] [blame] | 549 | } |
| 550 | |
Florin Coras | 470b2a6 | 2019-08-03 18:53:48 -0700 | [diff] [blame] | 551 | void |
Florin Coras | b88de90 | 2020-09-08 16:47:57 -0700 | [diff] [blame] | 552 | vcl_bapi_disconnect_from_vpp (void) |
Florin Coras | 470b2a6 | 2019-08-03 18:53:48 -0700 | [diff] [blame] | 553 | { |
Florin Coras | 64cf459 | 2019-12-12 12:01:24 -0800 | [diff] [blame] | 554 | vcl_worker_t *wrk = vcl_worker_get_current (); |
Florin Coras | 470b2a6 | 2019-08-03 18:53:48 -0700 | [diff] [blame] | 555 | vppcom_cfg_t *vcl_cfg = &vcm->cfg; |
| 556 | |
Florin Coras | b88de90 | 2020-09-08 16:47:57 -0700 | [diff] [blame] | 557 | if (vcl_cfg->vpp_bapi_socket_name) |
Florin Coras | 64cf459 | 2019-12-12 12:01:24 -0800 | [diff] [blame] | 558 | vl_socket_client_disconnect2 (&wrk->bapi_sock_ctx); |
Florin Coras | 470b2a6 | 2019-08-03 18:53:48 -0700 | [diff] [blame] | 559 | else |
| 560 | vl_client_disconnect_from_vlib (); |
| 561 | } |
| 562 | |
Florin Coras | b88de90 | 2020-09-08 16:47:57 -0700 | [diff] [blame] | 563 | static const char * |
| 564 | vcl_bapi_app_state_str (vcl_bapi_app_state_t state) |
| 565 | { |
| 566 | char *st; |
| 567 | |
| 568 | switch (state) |
| 569 | { |
| 570 | case STATE_APP_START: |
| 571 | st = "STATE_APP_START"; |
| 572 | break; |
| 573 | |
| 574 | case STATE_APP_CONN_VPP: |
| 575 | st = "STATE_APP_CONN_VPP"; |
| 576 | break; |
| 577 | |
| 578 | case STATE_APP_ENABLED: |
| 579 | st = "STATE_APP_ENABLED"; |
| 580 | break; |
| 581 | |
| 582 | case STATE_APP_ATTACHED: |
| 583 | st = "STATE_APP_ATTACHED"; |
| 584 | break; |
| 585 | |
| 586 | default: |
| 587 | st = "UNKNOWN_APP_STATE"; |
| 588 | break; |
| 589 | } |
| 590 | |
| 591 | return st; |
| 592 | } |
| 593 | |
| 594 | static int |
Florin Coras | 3b6c84c | 2021-01-05 20:45:44 -0800 | [diff] [blame] | 595 | vcl_bapi_wait_for_wrk_state_change (vcl_bapi_app_state_t app_state) |
Florin Coras | b88de90 | 2020-09-08 16:47:57 -0700 | [diff] [blame] | 596 | { |
| 597 | vcl_worker_t *wrk = vcl_worker_get_current (); |
| 598 | f64 timeout = clib_time_now (&wrk->clib_time) + vcm->cfg.app_timeout; |
| 599 | |
| 600 | while (clib_time_now (&wrk->clib_time) < timeout) |
| 601 | { |
Florin Coras | 3b6c84c | 2021-01-05 20:45:44 -0800 | [diff] [blame] | 602 | if (wrk->bapi_app_state == app_state) |
Florin Coras | b88de90 | 2020-09-08 16:47:57 -0700 | [diff] [blame] | 603 | return VPPCOM_OK; |
Florin Coras | 3b6c84c | 2021-01-05 20:45:44 -0800 | [diff] [blame] | 604 | if (wrk->bapi_app_state == STATE_APP_FAILED) |
Florin Coras | b88de90 | 2020-09-08 16:47:57 -0700 | [diff] [blame] | 605 | return VPPCOM_ECONNABORTED; |
| 606 | } |
wanghanlin | 85207e6 | 2021-07-06 15:57:55 +0800 | [diff] [blame] | 607 | VDBG (0, "timeout waiting for state %s, current state %d", |
| 608 | vcl_bapi_app_state_str (app_state), wrk->bapi_app_state); |
Florin Coras | b88de90 | 2020-09-08 16:47:57 -0700 | [diff] [blame] | 609 | vcl_evt (VCL_EVT_SESSION_TIMEOUT, vcm, bapi_app_state); |
| 610 | |
| 611 | return VPPCOM_ETIMEDOUT; |
| 612 | } |
| 613 | |
| 614 | static int |
| 615 | vcl_bapi_session_enable (void) |
| 616 | { |
Florin Coras | 3b6c84c | 2021-01-05 20:45:44 -0800 | [diff] [blame] | 617 | vcl_worker_t *wrk = vcl_worker_get_current (); |
Florin Coras | b88de90 | 2020-09-08 16:47:57 -0700 | [diff] [blame] | 618 | int rv; |
| 619 | |
Florin Coras | 3b6c84c | 2021-01-05 20:45:44 -0800 | [diff] [blame] | 620 | if (wrk->bapi_app_state != STATE_APP_ENABLED) |
Florin Coras | b88de90 | 2020-09-08 16:47:57 -0700 | [diff] [blame] | 621 | { |
| 622 | vcl_bapi_send_session_enable_disable (1 /* is_enabled == TRUE */ ); |
Florin Coras | 3b6c84c | 2021-01-05 20:45:44 -0800 | [diff] [blame] | 623 | rv = vcl_bapi_wait_for_wrk_state_change (STATE_APP_ENABLED); |
Florin Coras | b88de90 | 2020-09-08 16:47:57 -0700 | [diff] [blame] | 624 | if (PREDICT_FALSE (rv)) |
| 625 | { |
| 626 | VDBG (0, "application session enable timed out! returning %d (%s)", |
| 627 | rv, vppcom_retval_str (rv)); |
| 628 | return rv; |
| 629 | } |
| 630 | } |
| 631 | return VPPCOM_OK; |
| 632 | } |
| 633 | |
| 634 | static int |
| 635 | vcl_bapi_init (void) |
| 636 | { |
Florin Coras | 3b6c84c | 2021-01-05 20:45:44 -0800 | [diff] [blame] | 637 | vcl_worker_t *wrk = vcl_worker_get_current (); |
Florin Coras | b88de90 | 2020-09-08 16:47:57 -0700 | [diff] [blame] | 638 | int rv; |
| 639 | |
Florin Coras | 3b6c84c | 2021-01-05 20:45:44 -0800 | [diff] [blame] | 640 | wrk->bapi_app_state = STATE_APP_START; |
Florin Coras | b88de90 | 2020-09-08 16:47:57 -0700 | [diff] [blame] | 641 | vcl_bapi_init_error_string_table (); |
| 642 | rv = vcl_bapi_connect_to_vpp (); |
| 643 | if (rv) |
| 644 | { |
| 645 | VERR ("couldn't connect to VPP!"); |
| 646 | return rv; |
| 647 | } |
| 648 | VDBG (0, "sending session enable"); |
| 649 | rv = vcl_bapi_session_enable (); |
| 650 | if (rv) |
| 651 | { |
| 652 | VERR ("vppcom_app_session_enable() failed!"); |
| 653 | return rv; |
| 654 | } |
| 655 | |
| 656 | return 0; |
| 657 | } |
| 658 | |
| 659 | int |
| 660 | vcl_bapi_attach (void) |
| 661 | { |
| 662 | int rv; |
| 663 | |
| 664 | /* API hookup and connect to VPP */ |
| 665 | if ((rv = vcl_bapi_init ())) |
| 666 | return rv; |
| 667 | |
| 668 | vcl_bapi_send_attach (); |
Florin Coras | 3b6c84c | 2021-01-05 20:45:44 -0800 | [diff] [blame] | 669 | rv = vcl_bapi_wait_for_wrk_state_change (STATE_APP_ATTACHED); |
Florin Coras | b88de90 | 2020-09-08 16:47:57 -0700 | [diff] [blame] | 670 | if (PREDICT_FALSE (rv)) |
| 671 | { |
| 672 | VDBG (0, "application attach timed out! returning %d (%s)", rv, |
| 673 | vppcom_retval_str (rv)); |
| 674 | return rv; |
| 675 | } |
| 676 | |
| 677 | return 0; |
| 678 | } |
| 679 | |
| 680 | int |
| 681 | vcl_bapi_app_worker_add (void) |
| 682 | { |
Florin Coras | 3b6c84c | 2021-01-05 20:45:44 -0800 | [diff] [blame] | 683 | vcl_worker_t *wrk = vcl_worker_get_current (); |
| 684 | |
Florin Coras | b88de90 | 2020-09-08 16:47:57 -0700 | [diff] [blame] | 685 | if (vcl_bapi_connect_to_vpp ()) |
| 686 | return -1; |
| 687 | |
Florin Coras | 3b6c84c | 2021-01-05 20:45:44 -0800 | [diff] [blame] | 688 | wrk->bapi_app_state = STATE_APP_ADDING_WORKER; |
Florin Coras | b88de90 | 2020-09-08 16:47:57 -0700 | [diff] [blame] | 689 | vcl_bapi_send_app_worker_add_del (1 /* is_add */ ); |
Florin Coras | 3b6c84c | 2021-01-05 20:45:44 -0800 | [diff] [blame] | 690 | if (vcl_bapi_wait_for_wrk_state_change (STATE_APP_READY)) |
Florin Coras | b88de90 | 2020-09-08 16:47:57 -0700 | [diff] [blame] | 691 | return -1; |
| 692 | return 0; |
| 693 | } |
| 694 | |
| 695 | void |
| 696 | vcl_bapi_app_worker_del (vcl_worker_t * wrk) |
| 697 | { |
| 698 | /* Notify vpp that the worker is going away */ |
| 699 | if (wrk->wrk_index == vcl_get_worker_index ()) |
| 700 | vcl_bapi_send_app_worker_add_del (0 /* is_add */ ); |
| 701 | else |
| 702 | vcl_bapi_send_child_worker_del (wrk); |
| 703 | |
| 704 | /* Disconnect the binary api */ |
| 705 | if (vec_len (vcm->workers) == 1) |
| 706 | vcl_bapi_disconnect_from_vpp (); |
| 707 | else |
| 708 | vl_client_send_disconnect (1 /* vpp should cleanup */ ); |
| 709 | } |
| 710 | |
| 711 | int |
Florin Coras | 935ce75 | 2020-09-08 22:43:47 -0700 | [diff] [blame] | 712 | vcl_bapi_recv_fds (vcl_worker_t * wrk, int *fds, int n_fds) |
| 713 | { |
| 714 | clib_error_t *err; |
| 715 | |
| 716 | if ((err = vl_socket_client_recv_fd_msg2 (&wrk->bapi_sock_ctx, fds, n_fds, |
| 717 | 5))) |
| 718 | { |
| 719 | clib_error_report (err); |
| 720 | return -1; |
| 721 | } |
| 722 | |
| 723 | return 0; |
| 724 | } |
| 725 | |
| 726 | int |
Florin Coras | a5a9efd | 2021-01-05 17:03:29 -0800 | [diff] [blame] | 727 | vcl_bapi_add_cert_key_pair (vppcom_cert_key_pair_t *ckpair) |
Florin Coras | b88de90 | 2020-09-08 16:47:57 -0700 | [diff] [blame] | 728 | { |
Florin Coras | b88de90 | 2020-09-08 16:47:57 -0700 | [diff] [blame] | 729 | vcl_worker_t *wrk = vcl_worker_get_current (); |
Florin Coras | b88de90 | 2020-09-08 16:47:57 -0700 | [diff] [blame] | 730 | |
Florin Coras | a5a9efd | 2021-01-05 17:03:29 -0800 | [diff] [blame] | 731 | if (ckpair->key_len == 0 || ckpair->key_len == ~0) |
| 732 | return VPPCOM_EINVAL; |
Florin Coras | b88de90 | 2020-09-08 16:47:57 -0700 | [diff] [blame] | 733 | |
Florin Coras | a5a9efd | 2021-01-05 17:03:29 -0800 | [diff] [blame] | 734 | vcl_bapi_send_app_add_cert_key_pair (ckpair); |
Florin Coras | 3b6c84c | 2021-01-05 20:45:44 -0800 | [diff] [blame] | 735 | wrk->bapi_app_state = STATE_APP_ADDING_TLS_DATA; |
| 736 | vcl_bapi_wait_for_wrk_state_change (STATE_APP_READY); |
Florin Coras | a5a9efd | 2021-01-05 17:03:29 -0800 | [diff] [blame] | 737 | if (wrk->bapi_app_state == STATE_APP_READY) |
| 738 | return wrk->bapi_return; |
| 739 | return VPPCOM_EFAULT; |
Florin Coras | b88de90 | 2020-09-08 16:47:57 -0700 | [diff] [blame] | 740 | } |
| 741 | |
| 742 | int |
Florin Coras | a5a9efd | 2021-01-05 17:03:29 -0800 | [diff] [blame] | 743 | vcl_bapi_del_cert_key_pair (u32 ckpair_index) |
Florin Coras | b88de90 | 2020-09-08 16:47:57 -0700 | [diff] [blame] | 744 | { |
Florin Coras | a5a9efd | 2021-01-05 17:03:29 -0800 | [diff] [blame] | 745 | /* Don't wait for reply */ |
| 746 | vcl_bapi_send_app_del_cert_key_pair (ckpair_index); |
| 747 | return 0; |
Florin Coras | b88de90 | 2020-09-08 16:47:57 -0700 | [diff] [blame] | 748 | } |
| 749 | |
| 750 | int |
| 751 | vcl_bapi_worker_set (void) |
| 752 | { |
| 753 | vcl_worker_t *wrk = vcl_worker_get_current (); |
| 754 | int i; |
| 755 | |
| 756 | /* Find the first worker with the same pid */ |
| 757 | for (i = 0; i < vec_len (vcm->workers); i++) |
| 758 | { |
| 759 | if (i == wrk->wrk_index) |
| 760 | continue; |
| 761 | if (vcm->workers[i].current_pid == wrk->current_pid) |
| 762 | { |
| 763 | wrk->vl_input_queue = vcm->workers[i].vl_input_queue; |
Florin Coras | cc7c88e | 2020-09-15 15:56:51 -0700 | [diff] [blame] | 764 | wrk->api_client_handle = vcm->workers[i].api_client_handle; |
Florin Coras | b88de90 | 2020-09-08 16:47:57 -0700 | [diff] [blame] | 765 | return 0; |
| 766 | } |
| 767 | } |
| 768 | return -1; |
| 769 | } |
| 770 | |
Florin Coras | 697faea | 2018-06-27 17:10:49 -0700 | [diff] [blame] | 771 | /* |
| 772 | * fd.io coding-style-patch-verification: ON |
| 773 | * |
| 774 | * Local Variables: |
| 775 | * eval: (c-set-style "gnu") |
| 776 | * End: |
| 777 | */ |