Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 1 | /* |
Florin Coras | 288eaab | 2019-02-03 15:26:14 -0800 | [diff] [blame] | 2 | * Copyright (c) 2015-2019 Cisco and/or its affiliates. |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 3 | * Licensed under the Apache License, Version 2.0 (the "License"); |
| 4 | * you may not use this file except in compliance with the License. |
| 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 <vnet/vnet.h> |
| 17 | #include <vlibmemory/api.h> |
| 18 | #include <vnet/session/application.h> |
Florin Coras | 1c71045 | 2017-10-17 00:03:13 -0700 | [diff] [blame] | 19 | #include <vnet/session/application_interface.h> |
Florin Coras | ba7d8f5 | 2019-02-22 13:11:38 -0800 | [diff] [blame] | 20 | #include <vnet/session/application_local.h> |
Florin Coras | 1c71045 | 2017-10-17 00:03:13 -0700 | [diff] [blame] | 21 | #include <vnet/session/session_rules_table.h> |
Florin Coras | 6c36f53 | 2017-11-03 18:32:34 -0700 | [diff] [blame] | 22 | #include <vnet/session/session_table.h> |
Florin Coras | c9940fc | 2019-02-05 20:55:11 -0800 | [diff] [blame] | 23 | #include <vnet/session/session.h> |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 24 | |
Jakub Grajciar | b4e5e50 | 2020-01-31 09:35:29 +0100 | [diff] [blame] | 25 | #include <vnet/ip/ip_types_api.h> |
| 26 | |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 27 | #include <vnet/vnet_msg_enum.h> |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 28 | |
| 29 | #define vl_typedefs /* define message structures */ |
| 30 | #include <vnet/vnet_all_api_h.h> |
| 31 | #undef vl_typedefs |
| 32 | |
| 33 | #define vl_endianfun /* define message structures */ |
| 34 | #include <vnet/vnet_all_api_h.h> |
| 35 | #undef vl_endianfun |
| 36 | |
| 37 | /* instantiate all the print functions we know about */ |
| 38 | #define vl_print(handle, ...) vlib_cli_output (handle, __VA_ARGS__) |
| 39 | #define vl_printfun |
| 40 | #include <vnet/vnet_all_api_h.h> |
| 41 | #undef vl_printfun |
| 42 | |
| 43 | #include <vlibapi/api_helper_macros.h> |
| 44 | |
| 45 | #define foreach_session_api_msg \ |
Florin Coras | 458089b | 2019-08-21 16:20:44 -0700 | [diff] [blame] | 46 | _(APP_ATTACH, app_attach) \ |
Florin Coras | 6cf30ad | 2017-04-04 23:08:23 -0700 | [diff] [blame] | 47 | _(APPLICATION_DETACH, application_detach) \ |
Florin Coras | e04c299 | 2017-03-01 08:17:34 -0800 | [diff] [blame] | 48 | _(SESSION_ENABLE_DISABLE, session_enable_disable) \ |
Florin Coras | cea194d | 2017-10-02 00:18:51 -0700 | [diff] [blame] | 49 | _(APP_NAMESPACE_ADD_DEL, app_namespace_add_del) \ |
Florin Coras | 1c71045 | 2017-10-17 00:03:13 -0700 | [diff] [blame] | 50 | _(SESSION_RULE_ADD_DEL, session_rule_add_del) \ |
Florin Coras | 6c36f53 | 2017-11-03 18:32:34 -0700 | [diff] [blame] | 51 | _(SESSION_RULES_DUMP, session_rules_dump) \ |
Nathan Skrzypczak | 79f8953 | 2019-09-13 11:08:13 +0200 | [diff] [blame] | 52 | _(APP_ADD_CERT_KEY_PAIR, app_add_cert_key_pair) \ |
| 53 | _(APP_DEL_CERT_KEY_PAIR, app_del_cert_key_pair) \ |
Florin Coras | 1553197 | 2018-08-12 23:50:53 -0700 | [diff] [blame] | 54 | _(APP_WORKER_ADD_DEL, app_worker_add_del) \ |
Florin Coras | e04c299 | 2017-03-01 08:17:34 -0800 | [diff] [blame] | 55 | |
Jakub Grajciar | b4e5e50 | 2020-01-31 09:35:29 +0100 | [diff] [blame] | 56 | static transport_proto_t |
| 57 | api_session_transport_proto_decode (const vl_api_transport_proto_t * api_tp) |
| 58 | { |
| 59 | switch (*api_tp) |
| 60 | { |
| 61 | case TRANSPORT_PROTO_API_TCP: |
| 62 | return TRANSPORT_PROTO_TCP; |
| 63 | case TRANSPORT_PROTO_API_UDP: |
| 64 | return TRANSPORT_PROTO_UDP; |
Jakub Grajciar | b4e5e50 | 2020-01-31 09:35:29 +0100 | [diff] [blame] | 65 | case TRANSPORT_PROTO_API_TLS: |
| 66 | return TRANSPORT_PROTO_TLS; |
Jakub Grajciar | b4e5e50 | 2020-01-31 09:35:29 +0100 | [diff] [blame] | 67 | case TRANSPORT_PROTO_API_QUIC: |
| 68 | return TRANSPORT_PROTO_QUIC; |
| 69 | default: |
| 70 | return TRANSPORT_PROTO_NONE; |
| 71 | } |
| 72 | } |
| 73 | |
| 74 | static vl_api_transport_proto_t |
| 75 | api_session_transport_proto_encode (const transport_proto_t tp) |
| 76 | { |
| 77 | switch (tp) |
| 78 | { |
| 79 | case TRANSPORT_PROTO_TCP: |
| 80 | return TRANSPORT_PROTO_API_TCP; |
| 81 | case TRANSPORT_PROTO_UDP: |
| 82 | return TRANSPORT_PROTO_API_UDP; |
Jakub Grajciar | b4e5e50 | 2020-01-31 09:35:29 +0100 | [diff] [blame] | 83 | case TRANSPORT_PROTO_TLS: |
| 84 | return TRANSPORT_PROTO_API_TLS; |
Jakub Grajciar | b4e5e50 | 2020-01-31 09:35:29 +0100 | [diff] [blame] | 85 | case TRANSPORT_PROTO_QUIC: |
| 86 | return TRANSPORT_PROTO_API_QUIC; |
| 87 | default: |
| 88 | return TRANSPORT_PROTO_API_NONE; |
| 89 | } |
| 90 | } |
| 91 | |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 92 | static int |
Florin Coras | 9936831 | 2018-08-02 10:45:44 -0700 | [diff] [blame] | 93 | session_send_fds (vl_api_registration_t * reg, int fds[], int n_fds) |
Florin Coras | b384b54 | 2018-01-15 01:08:33 -0800 | [diff] [blame] | 94 | { |
| 95 | clib_error_t *error; |
| 96 | if (vl_api_registration_file_index (reg) == VL_API_INVALID_FI) |
Florin Coras | 00e01d3 | 2019-10-21 16:07:46 -0700 | [diff] [blame] | 97 | return SESSION_E_BAPI_NO_FD; |
Florin Coras | 9936831 | 2018-08-02 10:45:44 -0700 | [diff] [blame] | 98 | error = vl_api_send_fd_msg (reg, fds, n_fds); |
Florin Coras | b384b54 | 2018-01-15 01:08:33 -0800 | [diff] [blame] | 99 | if (error) |
| 100 | { |
| 101 | clib_error_report (error); |
Florin Coras | 00e01d3 | 2019-10-21 16:07:46 -0700 | [diff] [blame] | 102 | return SESSION_E_BAPI_SEND_FD; |
Florin Coras | b384b54 | 2018-01-15 01:08:33 -0800 | [diff] [blame] | 103 | } |
| 104 | return 0; |
| 105 | } |
| 106 | |
Florin Coras | 9936831 | 2018-08-02 10:45:44 -0700 | [diff] [blame] | 107 | static int |
Florin Coras | 83ea669 | 2018-10-12 16:55:14 -0700 | [diff] [blame] | 108 | mq_try_lock_and_alloc_msg (svm_msg_q_t * app_mq, svm_msg_q_msg_t * msg) |
| 109 | { |
| 110 | int rv; |
| 111 | u8 try = 0; |
| 112 | while (try < 100) |
| 113 | { |
| 114 | rv = svm_msg_q_lock_and_alloc_msg_w_ring (app_mq, |
| 115 | SESSION_MQ_CTRL_EVT_RING, |
| 116 | SVM_Q_NOWAIT, msg); |
| 117 | if (!rv) |
| 118 | return 0; |
| 119 | try++; |
Florin Coras | e2ea193 | 2018-12-17 23:08:14 -0800 | [diff] [blame] | 120 | usleep (1); |
Florin Coras | 83ea669 | 2018-10-12 16:55:14 -0700 | [diff] [blame] | 121 | } |
Florin Coras | dc2e251 | 2018-12-03 17:47:26 -0800 | [diff] [blame] | 122 | clib_warning ("failed to alloc msg"); |
Florin Coras | 83ea669 | 2018-10-12 16:55:14 -0700 | [diff] [blame] | 123 | return -1; |
| 124 | } |
| 125 | |
| 126 | static int |
Florin Coras | 288eaab | 2019-02-03 15:26:14 -0800 | [diff] [blame] | 127 | mq_send_session_accepted_cb (session_t * s) |
Florin Coras | 52207f1 | 2018-07-12 14:48:06 -0700 | [diff] [blame] | 128 | { |
Florin Coras | 1553197 | 2018-08-12 23:50:53 -0700 | [diff] [blame] | 129 | app_worker_t *app_wrk = app_worker_get (s->app_wrk_index); |
Florin Coras | 52207f1 | 2018-07-12 14:48:06 -0700 | [diff] [blame] | 130 | svm_msg_q_msg_t _msg, *msg = &_msg; |
Florin Coras | 09bf91a | 2021-02-23 08:44:13 -0800 | [diff] [blame] | 131 | session_accepted_msg_t m = { 0 }; |
Florin Coras | b462418 | 2020-12-11 13:58:12 -0800 | [diff] [blame] | 132 | svm_msg_q_t *app_mq; |
| 133 | fifo_segment_t *eq_seg; |
Florin Coras | 288eaab | 2019-02-03 15:26:14 -0800 | [diff] [blame] | 134 | session_t *listener; |
Florin Coras | 52207f1 | 2018-07-12 14:48:06 -0700 | [diff] [blame] | 135 | session_event_t *evt; |
Florin Coras | 1553197 | 2018-08-12 23:50:53 -0700 | [diff] [blame] | 136 | application_t *app; |
Florin Coras | 52207f1 | 2018-07-12 14:48:06 -0700 | [diff] [blame] | 137 | |
Florin Coras | 1553197 | 2018-08-12 23:50:53 -0700 | [diff] [blame] | 138 | app = application_get (app_wrk->app_index); |
Florin Coras | 52207f1 | 2018-07-12 14:48:06 -0700 | [diff] [blame] | 139 | |
Florin Coras | 09bf91a | 2021-02-23 08:44:13 -0800 | [diff] [blame] | 140 | m.context = app->app_index; |
| 141 | m.server_rx_fifo = fifo_segment_fifo_offset (s->rx_fifo); |
| 142 | m.server_tx_fifo = fifo_segment_fifo_offset (s->tx_fifo); |
| 143 | m.segment_handle = session_segment_handle (s); |
| 144 | m.flags = s->flags; |
Florin Coras | 52207f1 | 2018-07-12 14:48:06 -0700 | [diff] [blame] | 145 | |
Florin Coras | 41d5f54 | 2021-01-15 13:49:33 -0800 | [diff] [blame] | 146 | eq_seg = application_get_rx_mqs_segment (app); |
Florin Coras | b462418 | 2020-12-11 13:58:12 -0800 | [diff] [blame] | 147 | |
Florin Coras | 52207f1 | 2018-07-12 14:48:06 -0700 | [diff] [blame] | 148 | if (session_has_transport (s)) |
| 149 | { |
Nathan Skrzypczak | 2f0f96b | 2019-06-13 10:14:28 +0200 | [diff] [blame] | 150 | listener = listen_session_get_from_handle (s->listener_handle); |
Florin Coras | 09bf91a | 2021-02-23 08:44:13 -0800 | [diff] [blame] | 151 | m.listener_handle = app_listen_session_handle (listener); |
Florin Coras | 52207f1 | 2018-07-12 14:48:06 -0700 | [diff] [blame] | 152 | if (application_is_proxy (app)) |
| 153 | { |
| 154 | listener = |
Florin Coras | 1553197 | 2018-08-12 23:50:53 -0700 | [diff] [blame] | 155 | app_worker_first_listener (app_wrk, session_get_fib_proto (s), |
| 156 | session_get_transport_proto (s)); |
Florin Coras | 52207f1 | 2018-07-12 14:48:06 -0700 | [diff] [blame] | 157 | if (listener) |
Florin Coras | 09bf91a | 2021-02-23 08:44:13 -0800 | [diff] [blame] | 158 | m.listener_handle = listen_session_get_handle (listener); |
Florin Coras | 52207f1 | 2018-07-12 14:48:06 -0700 | [diff] [blame] | 159 | } |
Florin Coras | 09bf91a | 2021-02-23 08:44:13 -0800 | [diff] [blame] | 160 | m.vpp_event_queue_address = |
Florin Coras | b462418 | 2020-12-11 13:58:12 -0800 | [diff] [blame] | 161 | fifo_segment_msg_q_offset (eq_seg, s->thread_index); |
Florin Coras | 09bf91a | 2021-02-23 08:44:13 -0800 | [diff] [blame] | 162 | m.mq_index = s->thread_index; |
| 163 | m.handle = session_handle (s); |
Aloys Augustin | cdb7170 | 2019-04-08 17:54:39 +0200 | [diff] [blame] | 164 | |
Florin Coras | 09bf91a | 2021-02-23 08:44:13 -0800 | [diff] [blame] | 165 | session_get_endpoint (s, &m.rmt, 0 /* is_lcl */); |
Florin Coras | 52207f1 | 2018-07-12 14:48:06 -0700 | [diff] [blame] | 166 | } |
| 167 | else |
| 168 | { |
Florin Coras | 2b81e3c | 2019-02-27 07:55:46 -0800 | [diff] [blame] | 169 | ct_connection_t *ct; |
Florin Coras | 9936831 | 2018-08-02 10:45:44 -0700 | [diff] [blame] | 170 | |
Florin Coras | 2b81e3c | 2019-02-27 07:55:46 -0800 | [diff] [blame] | 171 | ct = (ct_connection_t *) session_get_transport (s); |
Nathan Skrzypczak | 2f0f96b | 2019-06-13 10:14:28 +0200 | [diff] [blame] | 172 | listener = listen_session_get_from_handle (s->listener_handle); |
Florin Coras | 09bf91a | 2021-02-23 08:44:13 -0800 | [diff] [blame] | 173 | m.listener_handle = app_listen_session_handle (listener); |
| 174 | m.rmt.is_ip4 = session_type_is_ip4 (listener->session_type); |
| 175 | m.rmt.port = ct->c_rmt_port; |
| 176 | m.handle = session_handle (s); |
| 177 | m.vpp_event_queue_address = |
Florin Coras | b462418 | 2020-12-11 13:58:12 -0800 | [diff] [blame] | 178 | fifo_segment_msg_q_offset (eq_seg, s->thread_index); |
Florin Coras | 09bf91a | 2021-02-23 08:44:13 -0800 | [diff] [blame] | 179 | m.mq_index = s->thread_index; |
Florin Coras | 52207f1 | 2018-07-12 14:48:06 -0700 | [diff] [blame] | 180 | } |
Florin Coras | 09bf91a | 2021-02-23 08:44:13 -0800 | [diff] [blame] | 181 | |
| 182 | app_mq = app_wrk->event_queue; |
| 183 | if (mq_try_lock_and_alloc_msg (app_mq, msg)) |
| 184 | return SESSION_E_MQ_MSG_ALLOC; |
| 185 | |
| 186 | evt = svm_msg_q_msg_data (app_mq, msg); |
| 187 | clib_memset (evt, 0, sizeof (*evt)); |
| 188 | evt->event_type = SESSION_CTRL_EVT_ACCEPTED; |
| 189 | clib_memcpy_fast (evt->data, &m, sizeof (m)); |
Florin Coras | 537b17e | 2018-09-28 10:35:45 -0700 | [diff] [blame] | 190 | svm_msg_q_add_and_unlock (app_mq, msg); |
Florin Coras | 52207f1 | 2018-07-12 14:48:06 -0700 | [diff] [blame] | 191 | |
| 192 | return 0; |
| 193 | } |
| 194 | |
Florin Coras | 72b0428 | 2019-01-14 17:23:11 -0800 | [diff] [blame] | 195 | static inline void |
| 196 | mq_send_session_close_evt (app_worker_t * app_wrk, session_handle_t sh, |
| 197 | session_evt_type_t evt_type) |
Florin Coras | 52207f1 | 2018-07-12 14:48:06 -0700 | [diff] [blame] | 198 | { |
Florin Coras | 52207f1 | 2018-07-12 14:48:06 -0700 | [diff] [blame] | 199 | svm_msg_q_msg_t _msg, *msg = &_msg; |
| 200 | session_disconnected_msg_t *mp; |
| 201 | svm_msg_q_t *app_mq; |
| 202 | session_event_t *evt; |
| 203 | |
Florin Coras | 1553197 | 2018-08-12 23:50:53 -0700 | [diff] [blame] | 204 | app_mq = app_wrk->event_queue; |
Florin Coras | 83ea669 | 2018-10-12 16:55:14 -0700 | [diff] [blame] | 205 | if (mq_try_lock_and_alloc_msg (app_mq, msg)) |
| 206 | return; |
Florin Coras | 52207f1 | 2018-07-12 14:48:06 -0700 | [diff] [blame] | 207 | evt = svm_msg_q_msg_data (app_mq, msg); |
Dave Barach | b7b9299 | 2018-10-17 10:38:51 -0400 | [diff] [blame] | 208 | clib_memset (evt, 0, sizeof (*evt)); |
Florin Coras | 72b0428 | 2019-01-14 17:23:11 -0800 | [diff] [blame] | 209 | evt->event_type = evt_type; |
Florin Coras | 52207f1 | 2018-07-12 14:48:06 -0700 | [diff] [blame] | 210 | mp = (session_disconnected_msg_t *) evt->data; |
Florin Coras | 72b0428 | 2019-01-14 17:23:11 -0800 | [diff] [blame] | 211 | mp->handle = sh; |
Florin Coras | c1f5a43 | 2018-11-20 11:31:26 -0800 | [diff] [blame] | 212 | mp->context = app_wrk->api_client_index; |
Florin Coras | 537b17e | 2018-09-28 10:35:45 -0700 | [diff] [blame] | 213 | svm_msg_q_add_and_unlock (app_mq, msg); |
Florin Coras | 52207f1 | 2018-07-12 14:48:06 -0700 | [diff] [blame] | 214 | } |
| 215 | |
Florin Coras | 72b0428 | 2019-01-14 17:23:11 -0800 | [diff] [blame] | 216 | static inline void |
| 217 | mq_notify_close_subscribers (u32 app_index, session_handle_t sh, |
| 218 | svm_fifo_t * f, session_evt_type_t evt_type) |
| 219 | { |
| 220 | app_worker_t *app_wrk; |
| 221 | application_t *app; |
| 222 | int i; |
| 223 | |
| 224 | app = application_get (app_index); |
| 225 | if (!app) |
| 226 | return; |
| 227 | |
Florin Coras | c547e91 | 2020-12-08 17:50:45 -0800 | [diff] [blame] | 228 | for (i = 0; i < f->shr->n_subscribers; i++) |
Florin Coras | 72b0428 | 2019-01-14 17:23:11 -0800 | [diff] [blame] | 229 | { |
Florin Coras | c547e91 | 2020-12-08 17:50:45 -0800 | [diff] [blame] | 230 | if (!(app_wrk = application_get_worker (app, f->shr->subscribers[i]))) |
Florin Coras | 72b0428 | 2019-01-14 17:23:11 -0800 | [diff] [blame] | 231 | continue; |
| 232 | mq_send_session_close_evt (app_wrk, sh, SESSION_CTRL_EVT_DISCONNECTED); |
| 233 | } |
| 234 | } |
| 235 | |
| 236 | static void |
Florin Coras | 288eaab | 2019-02-03 15:26:14 -0800 | [diff] [blame] | 237 | mq_send_session_disconnected_cb (session_t * s) |
Florin Coras | 72b0428 | 2019-01-14 17:23:11 -0800 | [diff] [blame] | 238 | { |
| 239 | app_worker_t *app_wrk = app_worker_get (s->app_wrk_index); |
| 240 | session_handle_t sh = session_handle (s); |
| 241 | |
| 242 | mq_send_session_close_evt (app_wrk, session_handle (s), |
| 243 | SESSION_CTRL_EVT_DISCONNECTED); |
| 244 | |
Florin Coras | 288eaab | 2019-02-03 15:26:14 -0800 | [diff] [blame] | 245 | if (svm_fifo_n_subscribers (s->rx_fifo)) |
| 246 | mq_notify_close_subscribers (app_wrk->app_index, sh, s->rx_fifo, |
Florin Coras | 72b0428 | 2019-01-14 17:23:11 -0800 | [diff] [blame] | 247 | SESSION_CTRL_EVT_DISCONNECTED); |
| 248 | } |
| 249 | |
Florin Coras | 52207f1 | 2018-07-12 14:48:06 -0700 | [diff] [blame] | 250 | static void |
Florin Coras | 288eaab | 2019-02-03 15:26:14 -0800 | [diff] [blame] | 251 | mq_send_session_reset_cb (session_t * s) |
Florin Coras | 52207f1 | 2018-07-12 14:48:06 -0700 | [diff] [blame] | 252 | { |
Florin Coras | 72b0428 | 2019-01-14 17:23:11 -0800 | [diff] [blame] | 253 | app_worker_t *app_wrk = app_worker_get (s->app_wrk_index); |
| 254 | session_handle_t sh = session_handle (s); |
Florin Coras | 52207f1 | 2018-07-12 14:48:06 -0700 | [diff] [blame] | 255 | |
Florin Coras | 72b0428 | 2019-01-14 17:23:11 -0800 | [diff] [blame] | 256 | mq_send_session_close_evt (app_wrk, sh, SESSION_CTRL_EVT_RESET); |
| 257 | |
Florin Coras | 288eaab | 2019-02-03 15:26:14 -0800 | [diff] [blame] | 258 | if (svm_fifo_n_subscribers (s->rx_fifo)) |
| 259 | mq_notify_close_subscribers (app_wrk->app_index, sh, s->rx_fifo, |
Florin Coras | 72b0428 | 2019-01-14 17:23:11 -0800 | [diff] [blame] | 260 | SESSION_CTRL_EVT_RESET); |
Florin Coras | 52207f1 | 2018-07-12 14:48:06 -0700 | [diff] [blame] | 261 | } |
| 262 | |
Florin Coras | 458089b | 2019-08-21 16:20:44 -0700 | [diff] [blame] | 263 | int |
Florin Coras | 1553197 | 2018-08-12 23:50:53 -0700 | [diff] [blame] | 264 | mq_send_session_connected_cb (u32 app_wrk_index, u32 api_context, |
Florin Coras | 00e01d3 | 2019-10-21 16:07:46 -0700 | [diff] [blame] | 265 | session_t * s, session_error_t err) |
Florin Coras | 52207f1 | 2018-07-12 14:48:06 -0700 | [diff] [blame] | 266 | { |
| 267 | svm_msg_q_msg_t _msg, *msg = &_msg; |
Florin Coras | 09bf91a | 2021-02-23 08:44:13 -0800 | [diff] [blame] | 268 | session_connected_msg_t m = { 0 }; |
Florin Coras | b462418 | 2020-12-11 13:58:12 -0800 | [diff] [blame] | 269 | svm_msg_q_t *app_mq; |
Florin Coras | 52207f1 | 2018-07-12 14:48:06 -0700 | [diff] [blame] | 270 | transport_connection_t *tc; |
Florin Coras | b462418 | 2020-12-11 13:58:12 -0800 | [diff] [blame] | 271 | fifo_segment_t *eq_seg; |
Florin Coras | 1553197 | 2018-08-12 23:50:53 -0700 | [diff] [blame] | 272 | app_worker_t *app_wrk; |
Florin Coras | 52207f1 | 2018-07-12 14:48:06 -0700 | [diff] [blame] | 273 | session_event_t *evt; |
Florin Coras | 41d5f54 | 2021-01-15 13:49:33 -0800 | [diff] [blame] | 274 | application_t *app; |
| 275 | |
| 276 | app_wrk = app_worker_get (app_wrk_index); |
Florin Coras | 52207f1 | 2018-07-12 14:48:06 -0700 | [diff] [blame] | 277 | |
Florin Coras | 09bf91a | 2021-02-23 08:44:13 -0800 | [diff] [blame] | 278 | m.context = api_context; |
| 279 | m.retval = err; |
Florin Coras | 52207f1 | 2018-07-12 14:48:06 -0700 | [diff] [blame] | 280 | |
Florin Coras | 00e01d3 | 2019-10-21 16:07:46 -0700 | [diff] [blame] | 281 | if (err) |
Florin Coras | 09bf91a | 2021-02-23 08:44:13 -0800 | [diff] [blame] | 282 | goto snd_msg; |
Florin Coras | 52207f1 | 2018-07-12 14:48:06 -0700 | [diff] [blame] | 283 | |
Florin Coras | 41d5f54 | 2021-01-15 13:49:33 -0800 | [diff] [blame] | 284 | app = application_get (app_wrk->app_index); |
| 285 | eq_seg = application_get_rx_mqs_segment (app); |
Florin Coras | b462418 | 2020-12-11 13:58:12 -0800 | [diff] [blame] | 286 | |
Florin Coras | 52207f1 | 2018-07-12 14:48:06 -0700 | [diff] [blame] | 287 | if (session_has_transport (s)) |
| 288 | { |
| 289 | tc = session_get_transport (s); |
| 290 | if (!tc) |
| 291 | { |
Florin Coras | 00e01d3 | 2019-10-21 16:07:46 -0700 | [diff] [blame] | 292 | clib_warning ("failed to retrieve transport!"); |
Florin Coras | 09bf91a | 2021-02-23 08:44:13 -0800 | [diff] [blame] | 293 | m.retval = SESSION_E_REFUSED; |
| 294 | goto snd_msg; |
Florin Coras | 52207f1 | 2018-07-12 14:48:06 -0700 | [diff] [blame] | 295 | } |
| 296 | |
Florin Coras | 09bf91a | 2021-02-23 08:44:13 -0800 | [diff] [blame] | 297 | m.handle = session_handle (s); |
| 298 | m.vpp_event_queue_address = |
Florin Coras | b462418 | 2020-12-11 13:58:12 -0800 | [diff] [blame] | 299 | fifo_segment_msg_q_offset (eq_seg, s->thread_index); |
Aloys Augustin | cdb7170 | 2019-04-08 17:54:39 +0200 | [diff] [blame] | 300 | |
Florin Coras | 09bf91a | 2021-02-23 08:44:13 -0800 | [diff] [blame] | 301 | session_get_endpoint (s, &m.lcl, 1 /* is_lcl */); |
Aloys Augustin | cdb7170 | 2019-04-08 17:54:39 +0200 | [diff] [blame] | 302 | |
Florin Coras | 09bf91a | 2021-02-23 08:44:13 -0800 | [diff] [blame] | 303 | m.server_rx_fifo = fifo_segment_fifo_offset (s->rx_fifo); |
| 304 | m.server_tx_fifo = fifo_segment_fifo_offset (s->tx_fifo); |
| 305 | m.segment_handle = session_segment_handle (s); |
Florin Coras | 52207f1 | 2018-07-12 14:48:06 -0700 | [diff] [blame] | 306 | } |
| 307 | else |
| 308 | { |
Florin Coras | 2b81e3c | 2019-02-27 07:55:46 -0800 | [diff] [blame] | 309 | ct_connection_t *cct; |
| 310 | session_t *ss; |
Florin Coras | 9936831 | 2018-08-02 10:45:44 -0700 | [diff] [blame] | 311 | |
Florin Coras | 2b81e3c | 2019-02-27 07:55:46 -0800 | [diff] [blame] | 312 | cct = (ct_connection_t *) session_get_transport (s); |
Florin Coras | 09bf91a | 2021-02-23 08:44:13 -0800 | [diff] [blame] | 313 | m.handle = session_handle (s); |
| 314 | m.lcl.port = cct->c_lcl_port; |
| 315 | m.lcl.is_ip4 = cct->c_is_ip4; |
| 316 | m.vpp_event_queue_address = |
Florin Coras | b462418 | 2020-12-11 13:58:12 -0800 | [diff] [blame] | 317 | fifo_segment_msg_q_offset (eq_seg, s->thread_index); |
Florin Coras | 09bf91a | 2021-02-23 08:44:13 -0800 | [diff] [blame] | 318 | m.server_rx_fifo = fifo_segment_fifo_offset (s->rx_fifo); |
| 319 | m.server_tx_fifo = fifo_segment_fifo_offset (s->tx_fifo); |
| 320 | m.segment_handle = session_segment_handle (s); |
Florin Coras | 2b81e3c | 2019-02-27 07:55:46 -0800 | [diff] [blame] | 321 | ss = ct_session_get_peer (s); |
Florin Coras | 09bf91a | 2021-02-23 08:44:13 -0800 | [diff] [blame] | 322 | m.ct_rx_fifo = fifo_segment_fifo_offset (ss->tx_fifo); |
| 323 | m.ct_tx_fifo = fifo_segment_fifo_offset (ss->rx_fifo); |
| 324 | m.ct_segment_handle = session_segment_handle (ss); |
Florin Coras | 52207f1 | 2018-07-12 14:48:06 -0700 | [diff] [blame] | 325 | } |
| 326 | |
Florin Coras | 893bc97 | 2021-04-23 08:58:57 -0700 | [diff] [blame] | 327 | /* Setup client session index in advance, in case data arrives |
| 328 | * before the app processes message and updates it */ |
| 329 | s->rx_fifo->shr->client_session_index = api_context; |
| 330 | s->tx_fifo->shr->client_session_index = api_context; |
| 331 | |
Florin Coras | 09bf91a | 2021-02-23 08:44:13 -0800 | [diff] [blame] | 332 | snd_msg: |
| 333 | |
Florin Coras | 09bf91a | 2021-02-23 08:44:13 -0800 | [diff] [blame] | 334 | app_mq = app_wrk->event_queue; |
| 335 | |
| 336 | if (mq_try_lock_and_alloc_msg (app_mq, msg)) |
| 337 | return SESSION_E_MQ_MSG_ALLOC; |
| 338 | |
| 339 | evt = svm_msg_q_msg_data (app_mq, msg); |
| 340 | clib_memset (evt, 0, sizeof (*evt)); |
| 341 | evt->event_type = SESSION_CTRL_EVT_CONNECTED; |
| 342 | clib_memcpy_fast (evt->data, &m, sizeof (m)); |
Florin Coras | 52207f1 | 2018-07-12 14:48:06 -0700 | [diff] [blame] | 343 | |
Florin Coras | 537b17e | 2018-09-28 10:35:45 -0700 | [diff] [blame] | 344 | svm_msg_q_add_and_unlock (app_mq, msg); |
Florin Coras | 52207f1 | 2018-07-12 14:48:06 -0700 | [diff] [blame] | 345 | return 0; |
| 346 | } |
| 347 | |
Florin Coras | 458089b | 2019-08-21 16:20:44 -0700 | [diff] [blame] | 348 | int |
Florin Coras | 6011699 | 2018-08-27 09:52:18 -0700 | [diff] [blame] | 349 | mq_send_session_bound_cb (u32 app_wrk_index, u32 api_context, |
| 350 | session_handle_t handle, int rv) |
| 351 | { |
| 352 | svm_msg_q_msg_t _msg, *msg = &_msg; |
Florin Coras | 09bf91a | 2021-02-23 08:44:13 -0800 | [diff] [blame] | 353 | session_bound_msg_t m = { 0 }; |
Florin Coras | b462418 | 2020-12-11 13:58:12 -0800 | [diff] [blame] | 354 | svm_msg_q_t *app_mq; |
Yu Ping | 0b81915 | 2019-05-07 02:24:30 +0800 | [diff] [blame] | 355 | transport_endpoint_t tep; |
Florin Coras | b462418 | 2020-12-11 13:58:12 -0800 | [diff] [blame] | 356 | fifo_segment_t *eq_seg; |
Florin Coras | 6011699 | 2018-08-27 09:52:18 -0700 | [diff] [blame] | 357 | app_worker_t *app_wrk; |
| 358 | session_event_t *evt; |
Florin Coras | 41d5f54 | 2021-01-15 13:49:33 -0800 | [diff] [blame] | 359 | application_t *app; |
Florin Coras | c9940fc | 2019-02-05 20:55:11 -0800 | [diff] [blame] | 360 | app_listener_t *al; |
| 361 | session_t *ls = 0; |
Florin Coras | 09bf91a | 2021-02-23 08:44:13 -0800 | [diff] [blame] | 362 | |
Florin Coras | 41d5f54 | 2021-01-15 13:49:33 -0800 | [diff] [blame] | 363 | app_wrk = app_worker_get (app_wrk_index); |
| 364 | |
Florin Coras | 09bf91a | 2021-02-23 08:44:13 -0800 | [diff] [blame] | 365 | m.context = api_context; |
| 366 | m.retval = rv; |
| 367 | |
| 368 | if (rv) |
| 369 | goto snd_msg; |
| 370 | |
| 371 | m.handle = handle; |
| 372 | al = app_listener_get_w_handle (handle); |
| 373 | if (al->session_index != SESSION_INVALID_INDEX) |
| 374 | ls = app_listener_get_session (al); |
| 375 | else |
| 376 | ls = app_listener_get_local_session (al); |
| 377 | |
| 378 | session_get_endpoint (ls, &tep, 1 /* is_lcl */); |
| 379 | m.lcl_port = tep.port; |
| 380 | m.lcl_is_ip4 = tep.is_ip4; |
| 381 | clib_memcpy_fast (m.lcl_ip, &tep.ip, sizeof (tep.ip)); |
Florin Coras | 41d5f54 | 2021-01-15 13:49:33 -0800 | [diff] [blame] | 382 | app = application_get (app_wrk->app_index); |
| 383 | eq_seg = application_get_rx_mqs_segment (app); |
Florin Coras | 09bf91a | 2021-02-23 08:44:13 -0800 | [diff] [blame] | 384 | m.vpp_evt_q = fifo_segment_msg_q_offset (eq_seg, ls->thread_index); |
| 385 | |
Florin Coras | 8694fbc | 2021-03-10 00:21:02 -0800 | [diff] [blame] | 386 | if (session_transport_service_type (ls) == TRANSPORT_SERVICE_CL && |
| 387 | ls->rx_fifo) |
Florin Coras | 09bf91a | 2021-02-23 08:44:13 -0800 | [diff] [blame] | 388 | { |
| 389 | m.rx_fifo = fifo_segment_fifo_offset (ls->rx_fifo); |
| 390 | m.tx_fifo = fifo_segment_fifo_offset (ls->tx_fifo); |
| 391 | m.segment_handle = session_segment_handle (ls); |
| 392 | } |
| 393 | |
| 394 | snd_msg: |
| 395 | |
Florin Coras | 6011699 | 2018-08-27 09:52:18 -0700 | [diff] [blame] | 396 | app_mq = app_wrk->event_queue; |
Florin Coras | 6011699 | 2018-08-27 09:52:18 -0700 | [diff] [blame] | 397 | |
Florin Coras | 83ea669 | 2018-10-12 16:55:14 -0700 | [diff] [blame] | 398 | if (mq_try_lock_and_alloc_msg (app_mq, msg)) |
Florin Coras | 00e01d3 | 2019-10-21 16:07:46 -0700 | [diff] [blame] | 399 | return SESSION_E_MQ_MSG_ALLOC; |
Florin Coras | 83ea669 | 2018-10-12 16:55:14 -0700 | [diff] [blame] | 400 | |
Florin Coras | 6011699 | 2018-08-27 09:52:18 -0700 | [diff] [blame] | 401 | evt = svm_msg_q_msg_data (app_mq, msg); |
Dave Barach | b7b9299 | 2018-10-17 10:38:51 -0400 | [diff] [blame] | 402 | clib_memset (evt, 0, sizeof (*evt)); |
Florin Coras | 6011699 | 2018-08-27 09:52:18 -0700 | [diff] [blame] | 403 | evt->event_type = SESSION_CTRL_EVT_BOUND; |
Florin Coras | 09bf91a | 2021-02-23 08:44:13 -0800 | [diff] [blame] | 404 | clib_memcpy_fast (evt->data, &m, sizeof (m)); |
Florin Coras | 6011699 | 2018-08-27 09:52:18 -0700 | [diff] [blame] | 405 | |
Florin Coras | 537b17e | 2018-09-28 10:35:45 -0700 | [diff] [blame] | 406 | svm_msg_q_add_and_unlock (app_mq, msg); |
Florin Coras | 6011699 | 2018-08-27 09:52:18 -0700 | [diff] [blame] | 407 | return 0; |
| 408 | } |
| 409 | |
Florin Coras | 458089b | 2019-08-21 16:20:44 -0700 | [diff] [blame] | 410 | void |
| 411 | mq_send_unlisten_reply (app_worker_t * app_wrk, session_handle_t sh, |
| 412 | u32 context, int rv) |
| 413 | { |
| 414 | svm_msg_q_msg_t _msg, *msg = &_msg; |
| 415 | session_unlisten_reply_msg_t *ump; |
| 416 | svm_msg_q_t *app_mq; |
| 417 | session_event_t *evt; |
| 418 | |
| 419 | app_mq = app_wrk->event_queue; |
| 420 | if (mq_try_lock_and_alloc_msg (app_mq, msg)) |
| 421 | return; |
| 422 | |
| 423 | evt = svm_msg_q_msg_data (app_mq, msg); |
| 424 | clib_memset (evt, 0, sizeof (*evt)); |
| 425 | evt->event_type = SESSION_CTRL_EVT_UNLISTEN_REPLY; |
| 426 | ump = (session_unlisten_reply_msg_t *) evt->data; |
| 427 | ump->context = context; |
| 428 | ump->handle = sh; |
| 429 | ump->retval = rv; |
| 430 | svm_msg_q_add_and_unlock (app_mq, msg); |
| 431 | } |
| 432 | |
Florin Coras | 49568af | 2019-07-31 16:46:24 -0700 | [diff] [blame] | 433 | static void |
| 434 | mq_send_session_migrate_cb (session_t * s, session_handle_t new_sh) |
| 435 | { |
Florin Coras | 68b7e58 | 2020-01-21 18:33:23 -0800 | [diff] [blame] | 436 | svm_msg_q_msg_t _msg, *msg = &_msg; |
Florin Coras | 09bf91a | 2021-02-23 08:44:13 -0800 | [diff] [blame] | 437 | session_migrated_msg_t m = { 0 }; |
Florin Coras | b462418 | 2020-12-11 13:58:12 -0800 | [diff] [blame] | 438 | fifo_segment_t *eq_seg; |
Florin Coras | 68b7e58 | 2020-01-21 18:33:23 -0800 | [diff] [blame] | 439 | app_worker_t *app_wrk; |
| 440 | session_event_t *evt; |
| 441 | svm_msg_q_t *app_mq; |
Florin Coras | 41d5f54 | 2021-01-15 13:49:33 -0800 | [diff] [blame] | 442 | application_t *app; |
Florin Coras | b462418 | 2020-12-11 13:58:12 -0800 | [diff] [blame] | 443 | u32 thread_index; |
| 444 | |
| 445 | thread_index = session_thread_from_handle (new_sh); |
Florin Coras | 41d5f54 | 2021-01-15 13:49:33 -0800 | [diff] [blame] | 446 | app_wrk = app_worker_get (s->app_wrk_index); |
| 447 | app_mq = app_wrk->event_queue; |
| 448 | app = application_get (app_wrk->app_index); |
| 449 | eq_seg = application_get_rx_mqs_segment (app); |
Florin Coras | 68b7e58 | 2020-01-21 18:33:23 -0800 | [diff] [blame] | 450 | |
Florin Coras | 09bf91a | 2021-02-23 08:44:13 -0800 | [diff] [blame] | 451 | m.handle = session_handle (s); |
| 452 | m.new_handle = new_sh; |
| 453 | m.vpp_thread_index = thread_index; |
| 454 | m.vpp_evt_q = fifo_segment_msg_q_offset (eq_seg, thread_index); |
| 455 | m.segment_handle = SESSION_INVALID_HANDLE; |
| 456 | |
Florin Coras | 68b7e58 | 2020-01-21 18:33:23 -0800 | [diff] [blame] | 457 | if (mq_try_lock_and_alloc_msg (app_mq, msg)) |
| 458 | return; |
| 459 | |
| 460 | evt = svm_msg_q_msg_data (app_mq, msg); |
| 461 | clib_memset (evt, 0, sizeof (*evt)); |
| 462 | evt->event_type = SESSION_CTRL_EVT_MIGRATED; |
Florin Coras | 09bf91a | 2021-02-23 08:44:13 -0800 | [diff] [blame] | 463 | clib_memcpy_fast (evt->data, &m, sizeof (m)); |
| 464 | |
Florin Coras | 68b7e58 | 2020-01-21 18:33:23 -0800 | [diff] [blame] | 465 | svm_msg_q_add_and_unlock (app_mq, msg); |
Florin Coras | 49568af | 2019-07-31 16:46:24 -0700 | [diff] [blame] | 466 | } |
| 467 | |
Florin Coras | c4c4cf5 | 2019-08-24 18:17:34 -0700 | [diff] [blame] | 468 | static int |
| 469 | mq_send_add_segment_cb (u32 app_wrk_index, u64 segment_handle) |
| 470 | { |
| 471 | int fds[SESSION_N_FD_TYPE], n_fds = 0; |
| 472 | svm_msg_q_msg_t _msg, *msg = &_msg; |
| 473 | session_app_add_segment_msg_t *mp; |
| 474 | vl_api_registration_t *reg; |
| 475 | app_worker_t *app_wrk; |
| 476 | session_event_t *evt; |
| 477 | svm_msg_q_t *app_mq; |
| 478 | fifo_segment_t *fs; |
| 479 | ssvm_private_t *sp; |
| 480 | u8 fd_flags = 0; |
| 481 | |
| 482 | app_wrk = app_worker_get (app_wrk_index); |
| 483 | |
| 484 | reg = vl_mem_api_client_index_to_registration (app_wrk->api_client_index); |
| 485 | if (!reg) |
| 486 | { |
| 487 | clib_warning ("no api registration for client: %u", |
| 488 | app_wrk->api_client_index); |
| 489 | return -1; |
| 490 | } |
| 491 | |
| 492 | fs = segment_manager_get_segment_w_handle (segment_handle); |
| 493 | sp = &fs->ssvm; |
| 494 | if (ssvm_type (sp) == SSVM_SEGMENT_MEMFD) |
| 495 | { |
| 496 | if (vl_api_registration_file_index (reg) == VL_API_INVALID_FI) |
| 497 | { |
| 498 | clib_warning ("can't send memfd fd"); |
| 499 | return -1; |
| 500 | } |
| 501 | |
| 502 | fd_flags |= SESSION_FD_F_MEMFD_SEGMENT; |
| 503 | fds[n_fds] = sp->fd; |
| 504 | n_fds += 1; |
| 505 | } |
| 506 | |
| 507 | app_mq = app_wrk->event_queue; |
| 508 | if (mq_try_lock_and_alloc_msg (app_mq, msg)) |
| 509 | return -1; |
| 510 | |
| 511 | if (n_fds) |
| 512 | session_send_fds (reg, fds, n_fds); |
| 513 | |
| 514 | evt = svm_msg_q_msg_data (app_mq, msg); |
| 515 | clib_memset (evt, 0, sizeof (*evt)); |
| 516 | evt->event_type = SESSION_CTRL_EVT_APP_ADD_SEGMENT; |
| 517 | mp = (session_app_add_segment_msg_t *) evt->data; |
| 518 | clib_memset (mp, 0, sizeof (*mp)); |
| 519 | mp->segment_size = sp->ssvm_size; |
| 520 | mp->fd_flags = fd_flags; |
| 521 | mp->segment_handle = segment_handle; |
| 522 | strncpy ((char *) mp->segment_name, (char *) sp->name, |
| 523 | sizeof (mp->segment_name) - 1); |
| 524 | |
| 525 | svm_msg_q_add_and_unlock (app_mq, msg); |
| 526 | |
| 527 | return 0; |
| 528 | } |
| 529 | |
| 530 | static int |
| 531 | mq_send_del_segment_cb (u32 app_wrk_index, u64 segment_handle) |
| 532 | { |
| 533 | svm_msg_q_msg_t _msg, *msg = &_msg; |
| 534 | session_app_del_segment_msg_t *mp; |
| 535 | vl_api_registration_t *reg; |
| 536 | app_worker_t *app_wrk; |
| 537 | session_event_t *evt; |
| 538 | svm_msg_q_t *app_mq; |
| 539 | |
| 540 | app_wrk = app_worker_get (app_wrk_index); |
| 541 | reg = vl_mem_api_client_index_to_registration (app_wrk->api_client_index); |
| 542 | if (!reg) |
| 543 | { |
| 544 | clib_warning ("no registration: %u", app_wrk->api_client_index); |
| 545 | return -1; |
| 546 | } |
| 547 | |
| 548 | app_mq = app_wrk->event_queue; |
| 549 | if (mq_try_lock_and_alloc_msg (app_mq, msg)) |
| 550 | return -1; |
| 551 | |
| 552 | evt = svm_msg_q_msg_data (app_mq, msg); |
| 553 | clib_memset (evt, 0, sizeof (*evt)); |
| 554 | evt->event_type = SESSION_CTRL_EVT_APP_DEL_SEGMENT; |
| 555 | mp = (session_app_del_segment_msg_t *) evt->data; |
| 556 | clib_memset (mp, 0, sizeof (*mp)); |
| 557 | mp->segment_handle = segment_handle; |
| 558 | svm_msg_q_add_and_unlock (app_mq, msg); |
| 559 | |
| 560 | return 0; |
| 561 | } |
| 562 | |
Florin Coras | 9ace36d | 2019-10-28 13:14:17 -0700 | [diff] [blame] | 563 | static void |
| 564 | mq_send_session_cleanup_cb (session_t * s, session_cleanup_ntf_t ntf) |
| 565 | { |
| 566 | svm_msg_q_msg_t _msg, *msg = &_msg; |
| 567 | session_cleanup_msg_t *mp; |
| 568 | svm_msg_q_t *app_mq; |
| 569 | session_event_t *evt; |
| 570 | app_worker_t *app_wrk; |
| 571 | |
Florin Coras | 36d4939 | 2020-04-24 23:00:11 +0000 | [diff] [blame] | 572 | /* Propagate transport cleanup notifications only if app didn't close */ |
| 573 | if (ntf == SESSION_CLEANUP_TRANSPORT |
| 574 | && s->session_state != SESSION_STATE_TRANSPORT_DELETED) |
Florin Coras | 9ace36d | 2019-10-28 13:14:17 -0700 | [diff] [blame] | 575 | return; |
| 576 | |
| 577 | app_wrk = app_worker_get_if_valid (s->app_wrk_index); |
| 578 | if (!app_wrk) |
| 579 | return; |
| 580 | |
| 581 | app_mq = app_wrk->event_queue; |
| 582 | if (mq_try_lock_and_alloc_msg (app_mq, msg)) |
| 583 | return; |
| 584 | |
| 585 | evt = svm_msg_q_msg_data (app_mq, msg); |
| 586 | clib_memset (evt, 0, sizeof (*evt)); |
| 587 | evt->event_type = SESSION_CTRL_EVT_CLEANUP; |
| 588 | mp = (session_cleanup_msg_t *) evt->data; |
| 589 | mp->handle = session_handle (s); |
Florin Coras | 36d4939 | 2020-04-24 23:00:11 +0000 | [diff] [blame] | 590 | mp->type = ntf; |
Florin Coras | 9ace36d | 2019-10-28 13:14:17 -0700 | [diff] [blame] | 591 | svm_msg_q_add_and_unlock (app_mq, msg); |
| 592 | } |
| 593 | |
Florin Coras | c4c4cf5 | 2019-08-24 18:17:34 -0700 | [diff] [blame] | 594 | static session_cb_vft_t session_mq_cb_vft = { |
| 595 | .session_accept_callback = mq_send_session_accepted_cb, |
| 596 | .session_disconnect_callback = mq_send_session_disconnected_cb, |
| 597 | .session_connected_callback = mq_send_session_connected_cb, |
| 598 | .session_reset_callback = mq_send_session_reset_cb, |
| 599 | .session_migrate_callback = mq_send_session_migrate_cb, |
Florin Coras | 9ace36d | 2019-10-28 13:14:17 -0700 | [diff] [blame] | 600 | .session_cleanup_callback = mq_send_session_cleanup_cb, |
Florin Coras | c4c4cf5 | 2019-08-24 18:17:34 -0700 | [diff] [blame] | 601 | .add_segment_callback = mq_send_add_segment_cb, |
| 602 | .del_segment_callback = mq_send_del_segment_cb, |
| 603 | }; |
| 604 | |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 605 | static void |
Florin Coras | e04c299 | 2017-03-01 08:17:34 -0800 | [diff] [blame] | 606 | vl_api_session_enable_disable_t_handler (vl_api_session_enable_disable_t * mp) |
| 607 | { |
| 608 | vl_api_session_enable_disable_reply_t *rmp; |
| 609 | vlib_main_t *vm = vlib_get_main (); |
| 610 | int rv = 0; |
| 611 | |
| 612 | vnet_session_enable_disable (vm, mp->is_enable); |
| 613 | REPLY_MACRO (VL_API_SESSION_ENABLE_DISABLE_REPLY); |
| 614 | } |
| 615 | |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 616 | static void |
Florin Coras | 458089b | 2019-08-21 16:20:44 -0700 | [diff] [blame] | 617 | vl_api_app_attach_t_handler (vl_api_app_attach_t * mp) |
| 618 | { |
Florin Coras | 41d5f54 | 2021-01-15 13:49:33 -0800 | [diff] [blame] | 619 | int rv = 0, *fds = 0, n_fds = 0, n_workers, i; |
| 620 | fifo_segment_t *segp, *rx_mqs_seg = 0; |
Florin Coras | 458089b | 2019-08-21 16:20:44 -0700 | [diff] [blame] | 621 | vnet_app_attach_args_t _a, *a = &_a; |
Florin Coras | 41d5f54 | 2021-01-15 13:49:33 -0800 | [diff] [blame] | 622 | vl_api_app_attach_reply_t *rmp; |
Florin Coras | 458089b | 2019-08-21 16:20:44 -0700 | [diff] [blame] | 623 | u8 fd_flags = 0, ctrl_thread; |
| 624 | vl_api_registration_t *reg; |
Florin Coras | 41d5f54 | 2021-01-15 13:49:33 -0800 | [diff] [blame] | 625 | svm_msg_q_t *rx_mq; |
| 626 | application_t *app; |
Florin Coras | 458089b | 2019-08-21 16:20:44 -0700 | [diff] [blame] | 627 | |
| 628 | reg = vl_api_client_index_to_registration (mp->client_index); |
| 629 | if (!reg) |
| 630 | return; |
| 631 | |
Florin Coras | 41d5f54 | 2021-01-15 13:49:33 -0800 | [diff] [blame] | 632 | n_workers = vlib_num_workers (); |
Florin Coras | 61ae056 | 2020-09-02 19:10:28 -0700 | [diff] [blame] | 633 | if (!session_main_is_enabled () || appns_sapi_enabled ()) |
Florin Coras | 458089b | 2019-08-21 16:20:44 -0700 | [diff] [blame] | 634 | { |
| 635 | rv = VNET_API_ERROR_FEATURE_DISABLED; |
| 636 | goto done; |
| 637 | } |
Florin Coras | 6c10ab2 | 2020-11-08 16:50:39 -0800 | [diff] [blame] | 638 | /* Only support binary api with socket transport */ |
| 639 | if (vl_api_registration_file_index (reg) == VL_API_INVALID_FI) |
| 640 | { |
| 641 | rv = VNET_API_ERROR_APP_UNSUPPORTED_CFG; |
| 642 | goto done; |
| 643 | } |
Florin Coras | 458089b | 2019-08-21 16:20:44 -0700 | [diff] [blame] | 644 | |
| 645 | STATIC_ASSERT (sizeof (u64) * APP_OPTIONS_N_OPTIONS <= |
| 646 | sizeof (mp->options), |
| 647 | "Out of options, fix api message definition"); |
| 648 | |
| 649 | clib_memset (a, 0, sizeof (*a)); |
| 650 | a->api_client_index = mp->client_index; |
| 651 | a->options = mp->options; |
| 652 | a->session_cb_vft = &session_mq_cb_vft; |
Dave Barach | 7784140 | 2020-04-29 17:04:10 -0400 | [diff] [blame] | 653 | a->namespace_id = vl_api_from_api_to_new_vec (mp, &mp->namespace_id); |
Florin Coras | 458089b | 2019-08-21 16:20:44 -0700 | [diff] [blame] | 654 | |
| 655 | if ((rv = vnet_application_attach (a))) |
| 656 | { |
| 657 | clib_warning ("attach returned: %d", rv); |
| 658 | vec_free (a->namespace_id); |
| 659 | goto done; |
| 660 | } |
| 661 | vec_free (a->namespace_id); |
| 662 | |
Florin Coras | 41d5f54 | 2021-01-15 13:49:33 -0800 | [diff] [blame] | 663 | vec_validate (fds, 3 /* segs + tx evtfd */ + n_workers); |
| 664 | |
| 665 | /* Send rx mqs segment */ |
| 666 | app = application_get (a->app_index); |
| 667 | rx_mqs_seg = application_get_rx_mqs_segment (app); |
| 668 | |
| 669 | fd_flags |= SESSION_FD_F_VPP_MQ_SEGMENT; |
| 670 | fds[n_fds] = rx_mqs_seg->ssvm.fd; |
| 671 | n_fds += 1; |
| 672 | |
Florin Coras | 458089b | 2019-08-21 16:20:44 -0700 | [diff] [blame] | 673 | /* Send fifo segment fd if needed */ |
| 674 | if (ssvm_type (a->segment) == SSVM_SEGMENT_MEMFD) |
| 675 | { |
| 676 | fd_flags |= SESSION_FD_F_MEMFD_SEGMENT; |
| 677 | fds[n_fds] = a->segment->fd; |
| 678 | n_fds += 1; |
| 679 | } |
| 680 | if (a->options[APP_OPTIONS_FLAGS] & APP_OPTIONS_FLAGS_EVT_MQ_USE_EVENTFD) |
| 681 | { |
| 682 | fd_flags |= SESSION_FD_F_MQ_EVENTFD; |
Florin Coras | 86f1232 | 2021-01-22 15:05:14 -0800 | [diff] [blame] | 683 | fds[n_fds] = svm_msg_q_get_eventfd (a->app_evt_q); |
Florin Coras | 458089b | 2019-08-21 16:20:44 -0700 | [diff] [blame] | 684 | n_fds += 1; |
| 685 | } |
| 686 | |
Florin Coras | 41d5f54 | 2021-01-15 13:49:33 -0800 | [diff] [blame] | 687 | if (application_use_private_rx_mqs ()) |
| 688 | { |
| 689 | fd_flags |= SESSION_FD_F_VPP_MQ_EVENTFD; |
| 690 | for (i = 0; i < n_workers + 1; i++) |
| 691 | { |
| 692 | rx_mq = application_rx_mq_get (app, i); |
| 693 | fds[n_fds] = svm_msg_q_get_eventfd (rx_mq); |
| 694 | n_fds += 1; |
| 695 | } |
| 696 | } |
| 697 | |
Florin Coras | 458089b | 2019-08-21 16:20:44 -0700 | [diff] [blame] | 698 | done: |
Florin Coras | 458089b | 2019-08-21 16:20:44 -0700 | [diff] [blame] | 699 | /* *INDENT-OFF* */ |
| 700 | REPLY_MACRO2 (VL_API_APP_ATTACH_REPLY, ({ |
| 701 | if (!rv) |
| 702 | { |
Florin Coras | 41d5f54 | 2021-01-15 13:49:33 -0800 | [diff] [blame] | 703 | ctrl_thread = n_workers ? 1 : 0; |
Florin Coras | b462418 | 2020-12-11 13:58:12 -0800 | [diff] [blame] | 704 | segp = (fifo_segment_t *) a->segment; |
Florin Coras | 458089b | 2019-08-21 16:20:44 -0700 | [diff] [blame] | 705 | rmp->app_index = clib_host_to_net_u32 (a->app_index); |
Florin Coras | b462418 | 2020-12-11 13:58:12 -0800 | [diff] [blame] | 706 | rmp->app_mq = fifo_segment_msg_q_offset (segp, 0); |
Florin Coras | 41d5f54 | 2021-01-15 13:49:33 -0800 | [diff] [blame] | 707 | rmp->vpp_ctrl_mq = fifo_segment_msg_q_offset (rx_mqs_seg, ctrl_thread); |
Florin Coras | 458089b | 2019-08-21 16:20:44 -0700 | [diff] [blame] | 708 | rmp->vpp_ctrl_mq_thread = ctrl_thread; |
| 709 | rmp->n_fds = n_fds; |
| 710 | rmp->fd_flags = fd_flags; |
Florin Coras | b462418 | 2020-12-11 13:58:12 -0800 | [diff] [blame] | 711 | if (vec_len (segp->ssvm.name)) |
Florin Coras | 458089b | 2019-08-21 16:20:44 -0700 | [diff] [blame] | 712 | { |
Florin Coras | b462418 | 2020-12-11 13:58:12 -0800 | [diff] [blame] | 713 | vl_api_vec_to_api_string (segp->ssvm.name, &rmp->segment_name); |
Florin Coras | 458089b | 2019-08-21 16:20:44 -0700 | [diff] [blame] | 714 | } |
Florin Coras | b462418 | 2020-12-11 13:58:12 -0800 | [diff] [blame] | 715 | rmp->segment_size = segp->ssvm.ssvm_size; |
Florin Coras | 458089b | 2019-08-21 16:20:44 -0700 | [diff] [blame] | 716 | rmp->segment_handle = clib_host_to_net_u64 (a->segment_handle); |
| 717 | } |
| 718 | })); |
| 719 | /* *INDENT-ON* */ |
| 720 | |
| 721 | if (n_fds) |
| 722 | session_send_fds (reg, fds, n_fds); |
Florin Coras | 41d5f54 | 2021-01-15 13:49:33 -0800 | [diff] [blame] | 723 | vec_free (fds); |
Florin Coras | 458089b | 2019-08-21 16:20:44 -0700 | [diff] [blame] | 724 | } |
| 725 | |
Florin Coras | cea194d | 2017-10-02 00:18:51 -0700 | [diff] [blame] | 726 | static void |
Florin Coras | 1553197 | 2018-08-12 23:50:53 -0700 | [diff] [blame] | 727 | vl_api_app_worker_add_del_t_handler (vl_api_app_worker_add_del_t * mp) |
| 728 | { |
| 729 | int rv = 0, fds[SESSION_N_FD_TYPE], n_fds = 0; |
| 730 | vl_api_app_worker_add_del_reply_t *rmp; |
| 731 | vl_api_registration_t *reg; |
Florin Coras | 1553197 | 2018-08-12 23:50:53 -0700 | [diff] [blame] | 732 | application_t *app; |
| 733 | u8 fd_flags = 0; |
| 734 | |
Florin Coras | 61ae056 | 2020-09-02 19:10:28 -0700 | [diff] [blame] | 735 | if (!session_main_is_enabled () || appns_sapi_enabled ()) |
Florin Coras | 1553197 | 2018-08-12 23:50:53 -0700 | [diff] [blame] | 736 | { |
| 737 | rv = VNET_API_ERROR_FEATURE_DISABLED; |
| 738 | goto done; |
| 739 | } |
| 740 | |
| 741 | reg = vl_api_client_index_to_registration (mp->client_index); |
| 742 | if (!reg) |
| 743 | return; |
| 744 | |
Florin Coras | c1f5a43 | 2018-11-20 11:31:26 -0800 | [diff] [blame] | 745 | app = application_get_if_valid (clib_net_to_host_u32 (mp->app_index)); |
Florin Coras | 1553197 | 2018-08-12 23:50:53 -0700 | [diff] [blame] | 746 | if (!app) |
| 747 | { |
| 748 | rv = VNET_API_ERROR_INVALID_VALUE; |
| 749 | goto done; |
| 750 | } |
| 751 | |
| 752 | vnet_app_worker_add_del_args_t args = { |
| 753 | .app_index = app->app_index, |
Florin Coras | 349f8ca | 2018-11-20 16:52:49 -0800 | [diff] [blame] | 754 | .wrk_map_index = clib_net_to_host_u32 (mp->wrk_index), |
Florin Coras | c1f5a43 | 2018-11-20 11:31:26 -0800 | [diff] [blame] | 755 | .api_client_index = mp->client_index, |
Florin Coras | 1553197 | 2018-08-12 23:50:53 -0700 | [diff] [blame] | 756 | .is_add = mp->is_add |
| 757 | }; |
Florin Coras | c1a4265 | 2019-02-08 18:27:29 -0800 | [diff] [blame] | 758 | rv = vnet_app_worker_add_del (&args); |
| 759 | if (rv) |
Florin Coras | 1553197 | 2018-08-12 23:50:53 -0700 | [diff] [blame] | 760 | { |
Florin Coras | c1a4265 | 2019-02-08 18:27:29 -0800 | [diff] [blame] | 761 | clib_warning ("app worker add/del returned: %d", rv); |
Florin Coras | 1553197 | 2018-08-12 23:50:53 -0700 | [diff] [blame] | 762 | goto done; |
| 763 | } |
| 764 | |
Florin Coras | 1459877 | 2018-09-04 19:47:52 -0700 | [diff] [blame] | 765 | if (!mp->is_add) |
| 766 | goto done; |
Florin Coras | c3638fe | 2018-08-24 13:58:49 -0700 | [diff] [blame] | 767 | |
Florin Coras | 1553197 | 2018-08-12 23:50:53 -0700 | [diff] [blame] | 768 | /* Send fifo segment fd if needed */ |
| 769 | if (ssvm_type (args.segment) == SSVM_SEGMENT_MEMFD) |
| 770 | { |
| 771 | fd_flags |= SESSION_FD_F_MEMFD_SEGMENT; |
| 772 | fds[n_fds] = args.segment->fd; |
| 773 | n_fds += 1; |
| 774 | } |
| 775 | if (application_segment_manager_properties (app)->use_mq_eventfd) |
| 776 | { |
| 777 | fd_flags |= SESSION_FD_F_MQ_EVENTFD; |
Florin Coras | 86f1232 | 2021-01-22 15:05:14 -0800 | [diff] [blame] | 778 | fds[n_fds] = svm_msg_q_get_eventfd (args.evt_q); |
Florin Coras | 1553197 | 2018-08-12 23:50:53 -0700 | [diff] [blame] | 779 | n_fds += 1; |
| 780 | } |
| 781 | |
| 782 | /* *INDENT-OFF* */ |
| 783 | done: |
| 784 | REPLY_MACRO2 (VL_API_APP_WORKER_ADD_DEL_REPLY, ({ |
| 785 | rmp->is_add = mp->is_add; |
Florin Coras | 349f8ca | 2018-11-20 16:52:49 -0800 | [diff] [blame] | 786 | rmp->wrk_index = clib_host_to_net_u32 (args.wrk_map_index); |
Florin Coras | fa76a76 | 2018-11-29 12:40:10 -0800 | [diff] [blame] | 787 | rmp->segment_handle = clib_host_to_net_u64 (args.segment_handle); |
Florin Coras | 1459877 | 2018-09-04 19:47:52 -0700 | [diff] [blame] | 788 | if (!rv && mp->is_add) |
Florin Coras | 1553197 | 2018-08-12 23:50:53 -0700 | [diff] [blame] | 789 | { |
Florin Coras | b462418 | 2020-12-11 13:58:12 -0800 | [diff] [blame] | 790 | rmp->app_event_queue_address = |
| 791 | fifo_segment_msg_q_offset ((fifo_segment_t *) args.segment, 0); |
| 792 | rmp->n_fds = n_fds; |
| 793 | rmp->fd_flags = fd_flags; |
Florin Coras | 1553197 | 2018-08-12 23:50:53 -0700 | [diff] [blame] | 794 | if (vec_len (args.segment->name)) |
| 795 | { |
Jakub Grajciar | b4e5e50 | 2020-01-31 09:35:29 +0100 | [diff] [blame] | 796 | vl_api_vec_to_api_string (args.segment->name, &rmp->segment_name); |
Florin Coras | 1553197 | 2018-08-12 23:50:53 -0700 | [diff] [blame] | 797 | } |
Florin Coras | 1553197 | 2018-08-12 23:50:53 -0700 | [diff] [blame] | 798 | } |
| 799 | })); |
| 800 | /* *INDENT-ON* */ |
| 801 | |
| 802 | if (n_fds) |
| 803 | session_send_fds (reg, fds, n_fds); |
| 804 | } |
| 805 | |
| 806 | static void |
Florin Coras | 888d9f0 | 2020-04-02 23:00:13 +0000 | [diff] [blame] | 807 | vl_api_application_detach_t_handler (vl_api_application_detach_t * mp) |
| 808 | { |
| 809 | vl_api_application_detach_reply_t *rmp; |
| 810 | int rv = VNET_API_ERROR_INVALID_VALUE_2; |
| 811 | vnet_app_detach_args_t _a, *a = &_a; |
| 812 | application_t *app; |
| 813 | |
Florin Coras | 61ae056 | 2020-09-02 19:10:28 -0700 | [diff] [blame] | 814 | if (!session_main_is_enabled () || appns_sapi_enabled ()) |
Florin Coras | 888d9f0 | 2020-04-02 23:00:13 +0000 | [diff] [blame] | 815 | { |
| 816 | rv = VNET_API_ERROR_FEATURE_DISABLED; |
| 817 | goto done; |
| 818 | } |
| 819 | |
| 820 | app = application_lookup (mp->client_index); |
| 821 | if (app) |
| 822 | { |
| 823 | a->app_index = app->app_index; |
| 824 | a->api_client_index = mp->client_index; |
| 825 | rv = vnet_application_detach (a); |
| 826 | } |
| 827 | |
| 828 | done: |
| 829 | REPLY_MACRO (VL_API_APPLICATION_DETACH_REPLY); |
| 830 | } |
| 831 | |
| 832 | static void |
Florin Coras | cea194d | 2017-10-02 00:18:51 -0700 | [diff] [blame] | 833 | vl_api_app_namespace_add_del_t_handler (vl_api_app_namespace_add_del_t * mp) |
| 834 | { |
| 835 | vl_api_app_namespace_add_del_reply_t *rmp; |
Florin Coras | 6e8c667 | 2017-11-10 09:03:54 -0800 | [diff] [blame] | 836 | u32 appns_index = 0; |
| 837 | u8 *ns_id = 0; |
Florin Coras | cea194d | 2017-10-02 00:18:51 -0700 | [diff] [blame] | 838 | int rv = 0; |
Nathan Skrzypczak | 79f8953 | 2019-09-13 11:08:13 +0200 | [diff] [blame] | 839 | if (session_main_is_enabled () == 0) |
Florin Coras | cea194d | 2017-10-02 00:18:51 -0700 | [diff] [blame] | 840 | { |
| 841 | rv = VNET_API_ERROR_FEATURE_DISABLED; |
| 842 | goto done; |
| 843 | } |
| 844 | |
Dave Barach | 7784140 | 2020-04-29 17:04:10 -0400 | [diff] [blame] | 845 | ns_id = vl_api_from_api_to_new_vec (mp, &mp->namespace_id); |
Florin Coras | cea194d | 2017-10-02 00:18:51 -0700 | [diff] [blame] | 846 | |
Florin Coras | cea194d | 2017-10-02 00:18:51 -0700 | [diff] [blame] | 847 | vnet_app_namespace_add_del_args_t args = { |
| 848 | .ns_id = ns_id, |
Florin Coras | 9a9adb2 | 2017-10-26 08:16:59 -0700 | [diff] [blame] | 849 | .secret = clib_net_to_host_u64 (mp->secret), |
Florin Coras | cea194d | 2017-10-02 00:18:51 -0700 | [diff] [blame] | 850 | .sw_if_index = clib_net_to_host_u32 (mp->sw_if_index), |
| 851 | .ip4_fib_id = clib_net_to_host_u32 (mp->ip4_fib_id), |
| 852 | .ip6_fib_id = clib_net_to_host_u32 (mp->ip6_fib_id), |
| 853 | .is_add = 1 |
| 854 | }; |
Florin Coras | c1a4265 | 2019-02-08 18:27:29 -0800 | [diff] [blame] | 855 | rv = vnet_app_namespace_add_del (&args); |
| 856 | if (!rv) |
Florin Coras | 6e8c667 | 2017-11-10 09:03:54 -0800 | [diff] [blame] | 857 | { |
| 858 | appns_index = app_namespace_index_from_id (ns_id); |
| 859 | if (appns_index == APP_NAMESPACE_INVALID_INDEX) |
| 860 | { |
| 861 | clib_warning ("app ns lookup failed"); |
| 862 | rv = VNET_API_ERROR_UNSPECIFIED; |
| 863 | } |
| 864 | } |
Florin Coras | cea194d | 2017-10-02 00:18:51 -0700 | [diff] [blame] | 865 | vec_free (ns_id); |
Florin Coras | 6e8c667 | 2017-11-10 09:03:54 -0800 | [diff] [blame] | 866 | |
| 867 | /* *INDENT-OFF* */ |
Florin Coras | cea194d | 2017-10-02 00:18:51 -0700 | [diff] [blame] | 868 | done: |
Florin Coras | 6e8c667 | 2017-11-10 09:03:54 -0800 | [diff] [blame] | 869 | REPLY_MACRO2 (VL_API_APP_NAMESPACE_ADD_DEL_REPLY, ({ |
| 870 | if (!rv) |
| 871 | rmp->appns_index = clib_host_to_net_u32 (appns_index); |
| 872 | })); |
| 873 | /* *INDENT-ON* */ |
Florin Coras | cea194d | 2017-10-02 00:18:51 -0700 | [diff] [blame] | 874 | } |
| 875 | |
Florin Coras | 1c71045 | 2017-10-17 00:03:13 -0700 | [diff] [blame] | 876 | static void |
| 877 | vl_api_session_rule_add_del_t_handler (vl_api_session_rule_add_del_t * mp) |
| 878 | { |
| 879 | vl_api_session_rule_add_del_reply_t *rmp; |
| 880 | session_rule_add_del_args_t args; |
| 881 | session_rule_table_add_del_args_t *table_args = &args.table_args; |
Florin Coras | 1c71045 | 2017-10-17 00:03:13 -0700 | [diff] [blame] | 882 | int rv = 0; |
| 883 | |
Dave Barach | b7b9299 | 2018-10-17 10:38:51 -0400 | [diff] [blame] | 884 | clib_memset (&args, 0, sizeof (args)); |
Florin Coras | 1c71045 | 2017-10-17 00:03:13 -0700 | [diff] [blame] | 885 | |
Jakub Grajciar | b4e5e50 | 2020-01-31 09:35:29 +0100 | [diff] [blame] | 886 | ip_prefix_decode (&mp->lcl, &table_args->lcl); |
| 887 | ip_prefix_decode (&mp->rmt, &table_args->rmt); |
| 888 | |
Milan Lenco | 8b9a5d1 | 2017-11-24 17:12:33 +0100 | [diff] [blame] | 889 | table_args->lcl_port = mp->lcl_port; |
| 890 | table_args->rmt_port = mp->rmt_port; |
Florin Coras | 1c71045 | 2017-10-17 00:03:13 -0700 | [diff] [blame] | 891 | table_args->action_index = clib_net_to_host_u32 (mp->action_index); |
| 892 | table_args->is_add = mp->is_add; |
Florin Coras | c97a739 | 2017-11-05 23:07:07 -0800 | [diff] [blame] | 893 | mp->tag[sizeof (mp->tag) - 1] = 0; |
| 894 | table_args->tag = format (0, "%s", mp->tag); |
Florin Coras | 1c71045 | 2017-10-17 00:03:13 -0700 | [diff] [blame] | 895 | args.appns_index = clib_net_to_host_u32 (mp->appns_index); |
| 896 | args.scope = mp->scope; |
Jakub Grajciar | b4e5e50 | 2020-01-31 09:35:29 +0100 | [diff] [blame] | 897 | args.transport_proto = |
| 898 | api_session_transport_proto_decode (&mp->transport_proto) == |
| 899 | TRANSPORT_PROTO_UDP ? 1 : 0; |
Florin Coras | 1c71045 | 2017-10-17 00:03:13 -0700 | [diff] [blame] | 900 | |
Florin Coras | c1a4265 | 2019-02-08 18:27:29 -0800 | [diff] [blame] | 901 | rv = vnet_session_rule_add_del (&args); |
| 902 | if (rv) |
| 903 | clib_warning ("rule add del returned: %d", rv); |
Florin Coras | c97a739 | 2017-11-05 23:07:07 -0800 | [diff] [blame] | 904 | vec_free (table_args->tag); |
Florin Coras | 1c71045 | 2017-10-17 00:03:13 -0700 | [diff] [blame] | 905 | REPLY_MACRO (VL_API_SESSION_RULE_ADD_DEL_REPLY); |
| 906 | } |
| 907 | |
Florin Coras | 6c36f53 | 2017-11-03 18:32:34 -0700 | [diff] [blame] | 908 | static void |
| 909 | send_session_rule_details4 (mma_rule_16_t * rule, u8 is_local, |
Florin Coras | c97a739 | 2017-11-05 23:07:07 -0800 | [diff] [blame] | 910 | u8 transport_proto, u32 appns_index, u8 * tag, |
Florin Coras | 6c4dae2 | 2018-01-09 06:39:23 -0800 | [diff] [blame] | 911 | vl_api_registration_t * reg, u32 context) |
Florin Coras | 6c36f53 | 2017-11-03 18:32:34 -0700 | [diff] [blame] | 912 | { |
| 913 | vl_api_session_rules_details_t *rmp = 0; |
| 914 | session_mask_or_match_4_t *match = |
| 915 | (session_mask_or_match_4_t *) & rule->match; |
| 916 | session_mask_or_match_4_t *mask = |
| 917 | (session_mask_or_match_4_t *) & rule->mask; |
Jakub Grajciar | b4e5e50 | 2020-01-31 09:35:29 +0100 | [diff] [blame] | 918 | fib_prefix_t lcl, rmt; |
Florin Coras | 6c36f53 | 2017-11-03 18:32:34 -0700 | [diff] [blame] | 919 | |
| 920 | rmp = vl_msg_api_alloc (sizeof (*rmp)); |
Dave Barach | b7b9299 | 2018-10-17 10:38:51 -0400 | [diff] [blame] | 921 | clib_memset (rmp, 0, sizeof (*rmp)); |
Florin Coras | 6c36f53 | 2017-11-03 18:32:34 -0700 | [diff] [blame] | 922 | rmp->_vl_msg_id = ntohs (VL_API_SESSION_RULES_DETAILS); |
| 923 | rmp->context = context; |
| 924 | |
Jakub Grajciar | b4e5e50 | 2020-01-31 09:35:29 +0100 | [diff] [blame] | 925 | clib_memset (&lcl, 0, sizeof (lcl)); |
| 926 | clib_memset (&rmt, 0, sizeof (rmt)); |
| 927 | ip_set (&lcl.fp_addr, &match->lcl_ip, 1); |
| 928 | ip_set (&rmt.fp_addr, &match->rmt_ip, 1); |
| 929 | lcl.fp_len = ip4_mask_to_preflen (&mask->lcl_ip); |
| 930 | rmt.fp_len = ip4_mask_to_preflen (&mask->rmt_ip); |
| 931 | |
| 932 | ip_prefix_encode (&lcl, &rmp->lcl); |
| 933 | ip_prefix_encode (&rmt, &rmp->rmt); |
Milan Lenco | 8b9a5d1 | 2017-11-24 17:12:33 +0100 | [diff] [blame] | 934 | rmp->lcl_port = match->lcl_port; |
| 935 | rmp->rmt_port = match->rmt_port; |
Florin Coras | 6c36f53 | 2017-11-03 18:32:34 -0700 | [diff] [blame] | 936 | rmp->action_index = clib_host_to_net_u32 (rule->action_index); |
| 937 | rmp->scope = |
Jakub Grajciar | b4e5e50 | 2020-01-31 09:35:29 +0100 | [diff] [blame] | 938 | is_local ? SESSION_RULE_SCOPE_API_LOCAL : SESSION_RULE_SCOPE_API_GLOBAL; |
| 939 | rmp->transport_proto = api_session_transport_proto_encode (transport_proto); |
Florin Coras | 6c36f53 | 2017-11-03 18:32:34 -0700 | [diff] [blame] | 940 | rmp->appns_index = clib_host_to_net_u32 (appns_index); |
Florin Coras | c97a739 | 2017-11-05 23:07:07 -0800 | [diff] [blame] | 941 | if (tag) |
| 942 | { |
Dave Barach | 178cf49 | 2018-11-13 16:34:13 -0500 | [diff] [blame] | 943 | clib_memcpy_fast (rmp->tag, tag, vec_len (tag)); |
Florin Coras | c97a739 | 2017-11-05 23:07:07 -0800 | [diff] [blame] | 944 | rmp->tag[vec_len (tag)] = 0; |
| 945 | } |
Florin Coras | 6c36f53 | 2017-11-03 18:32:34 -0700 | [diff] [blame] | 946 | |
Florin Coras | 6c4dae2 | 2018-01-09 06:39:23 -0800 | [diff] [blame] | 947 | vl_api_send_msg (reg, (u8 *) rmp); |
Florin Coras | 6c36f53 | 2017-11-03 18:32:34 -0700 | [diff] [blame] | 948 | } |
| 949 | |
| 950 | static void |
Florin Coras | c97a739 | 2017-11-05 23:07:07 -0800 | [diff] [blame] | 951 | send_session_rule_details6 (mma_rule_40_t * rule, u8 is_local, |
| 952 | u8 transport_proto, u32 appns_index, u8 * tag, |
Florin Coras | 6c4dae2 | 2018-01-09 06:39:23 -0800 | [diff] [blame] | 953 | vl_api_registration_t * reg, u32 context) |
Florin Coras | 6c36f53 | 2017-11-03 18:32:34 -0700 | [diff] [blame] | 954 | { |
| 955 | vl_api_session_rules_details_t *rmp = 0; |
| 956 | session_mask_or_match_6_t *match = |
| 957 | (session_mask_or_match_6_t *) & rule->match; |
| 958 | session_mask_or_match_6_t *mask = |
| 959 | (session_mask_or_match_6_t *) & rule->mask; |
Jakub Grajciar | b4e5e50 | 2020-01-31 09:35:29 +0100 | [diff] [blame] | 960 | fib_prefix_t lcl, rmt; |
Florin Coras | 6c36f53 | 2017-11-03 18:32:34 -0700 | [diff] [blame] | 961 | |
| 962 | rmp = vl_msg_api_alloc (sizeof (*rmp)); |
Dave Barach | b7b9299 | 2018-10-17 10:38:51 -0400 | [diff] [blame] | 963 | clib_memset (rmp, 0, sizeof (*rmp)); |
Florin Coras | 6c36f53 | 2017-11-03 18:32:34 -0700 | [diff] [blame] | 964 | rmp->_vl_msg_id = ntohs (VL_API_SESSION_RULES_DETAILS); |
| 965 | rmp->context = context; |
| 966 | |
Jakub Grajciar | b4e5e50 | 2020-01-31 09:35:29 +0100 | [diff] [blame] | 967 | clib_memset (&lcl, 0, sizeof (lcl)); |
| 968 | clib_memset (&rmt, 0, sizeof (rmt)); |
| 969 | ip_set (&lcl.fp_addr, &match->lcl_ip, 0); |
| 970 | ip_set (&rmt.fp_addr, &match->rmt_ip, 0); |
| 971 | lcl.fp_len = ip6_mask_to_preflen (&mask->lcl_ip); |
| 972 | rmt.fp_len = ip6_mask_to_preflen (&mask->rmt_ip); |
| 973 | |
| 974 | ip_prefix_encode (&lcl, &rmp->lcl); |
| 975 | ip_prefix_encode (&rmt, &rmp->rmt); |
Milan Lenco | 8b9a5d1 | 2017-11-24 17:12:33 +0100 | [diff] [blame] | 976 | rmp->lcl_port = match->lcl_port; |
| 977 | rmp->rmt_port = match->rmt_port; |
Florin Coras | 6c36f53 | 2017-11-03 18:32:34 -0700 | [diff] [blame] | 978 | rmp->action_index = clib_host_to_net_u32 (rule->action_index); |
Florin Coras | c97a739 | 2017-11-05 23:07:07 -0800 | [diff] [blame] | 979 | rmp->scope = |
Jakub Grajciar | b4e5e50 | 2020-01-31 09:35:29 +0100 | [diff] [blame] | 980 | is_local ? SESSION_RULE_SCOPE_API_LOCAL : SESSION_RULE_SCOPE_API_GLOBAL; |
| 981 | rmp->transport_proto = api_session_transport_proto_encode (transport_proto); |
Florin Coras | 6c36f53 | 2017-11-03 18:32:34 -0700 | [diff] [blame] | 982 | rmp->appns_index = clib_host_to_net_u32 (appns_index); |
Florin Coras | c97a739 | 2017-11-05 23:07:07 -0800 | [diff] [blame] | 983 | if (tag) |
| 984 | { |
Dave Barach | 178cf49 | 2018-11-13 16:34:13 -0500 | [diff] [blame] | 985 | clib_memcpy_fast (rmp->tag, tag, vec_len (tag)); |
Florin Coras | c97a739 | 2017-11-05 23:07:07 -0800 | [diff] [blame] | 986 | rmp->tag[vec_len (tag)] = 0; |
| 987 | } |
Florin Coras | 6c36f53 | 2017-11-03 18:32:34 -0700 | [diff] [blame] | 988 | |
Florin Coras | 6c4dae2 | 2018-01-09 06:39:23 -0800 | [diff] [blame] | 989 | vl_api_send_msg (reg, (u8 *) rmp); |
Florin Coras | 6c36f53 | 2017-11-03 18:32:34 -0700 | [diff] [blame] | 990 | } |
| 991 | |
| 992 | static void |
| 993 | send_session_rules_table_details (session_rules_table_t * srt, u8 fib_proto, |
Florin Coras | c97a739 | 2017-11-05 23:07:07 -0800 | [diff] [blame] | 994 | u8 tp, u8 is_local, u32 appns_index, |
Florin Coras | 6c4dae2 | 2018-01-09 06:39:23 -0800 | [diff] [blame] | 995 | vl_api_registration_t * reg, u32 context) |
Florin Coras | 6c36f53 | 2017-11-03 18:32:34 -0700 | [diff] [blame] | 996 | { |
| 997 | mma_rule_16_t *rule16; |
| 998 | mma_rule_40_t *rule40; |
| 999 | mma_rules_table_16_t *srt16; |
| 1000 | mma_rules_table_40_t *srt40; |
Florin Coras | c97a739 | 2017-11-05 23:07:07 -0800 | [diff] [blame] | 1001 | u32 ri; |
Florin Coras | 6c36f53 | 2017-11-03 18:32:34 -0700 | [diff] [blame] | 1002 | |
Florin Coras | c97a739 | 2017-11-05 23:07:07 -0800 | [diff] [blame] | 1003 | if (is_local || fib_proto == FIB_PROTOCOL_IP4) |
Florin Coras | 6c36f53 | 2017-11-03 18:32:34 -0700 | [diff] [blame] | 1004 | { |
Florin Coras | c97a739 | 2017-11-05 23:07:07 -0800 | [diff] [blame] | 1005 | u8 *tag = 0; |
| 1006 | /* *INDENT-OFF* */ |
| 1007 | srt16 = &srt->session_rules_tables_16; |
Damjan Marion | b2c31b6 | 2020-12-13 21:47:40 +0100 | [diff] [blame] | 1008 | pool_foreach (rule16, srt16->rules) { |
Florin Coras | c97a739 | 2017-11-05 23:07:07 -0800 | [diff] [blame] | 1009 | ri = mma_rules_table_rule_index_16 (srt16, rule16); |
| 1010 | tag = session_rules_table_rule_tag (srt, ri, 1); |
| 1011 | send_session_rule_details4 (rule16, is_local, tp, appns_index, tag, |
Florin Coras | 6c4dae2 | 2018-01-09 06:39:23 -0800 | [diff] [blame] | 1012 | reg, context); |
Damjan Marion | b2c31b6 | 2020-12-13 21:47:40 +0100 | [diff] [blame] | 1013 | } |
Florin Coras | c97a739 | 2017-11-05 23:07:07 -0800 | [diff] [blame] | 1014 | /* *INDENT-ON* */ |
| 1015 | } |
| 1016 | if (is_local || fib_proto == FIB_PROTOCOL_IP6) |
| 1017 | { |
| 1018 | u8 *tag = 0; |
| 1019 | /* *INDENT-OFF* */ |
| 1020 | srt40 = &srt->session_rules_tables_40; |
Damjan Marion | b2c31b6 | 2020-12-13 21:47:40 +0100 | [diff] [blame] | 1021 | pool_foreach (rule40, srt40->rules) { |
Florin Coras | c97a739 | 2017-11-05 23:07:07 -0800 | [diff] [blame] | 1022 | ri = mma_rules_table_rule_index_40 (srt40, rule40); |
| 1023 | tag = session_rules_table_rule_tag (srt, ri, 1); |
| 1024 | send_session_rule_details6 (rule40, is_local, tp, appns_index, tag, |
Florin Coras | 6c4dae2 | 2018-01-09 06:39:23 -0800 | [diff] [blame] | 1025 | reg, context); |
Damjan Marion | b2c31b6 | 2020-12-13 21:47:40 +0100 | [diff] [blame] | 1026 | } |
Florin Coras | c97a739 | 2017-11-05 23:07:07 -0800 | [diff] [blame] | 1027 | /* *INDENT-ON* */ |
Florin Coras | 6c36f53 | 2017-11-03 18:32:34 -0700 | [diff] [blame] | 1028 | } |
| 1029 | } |
| 1030 | |
| 1031 | static void |
Neale Ranns | 2b202bc | 2020-09-21 08:17:51 +0000 | [diff] [blame] | 1032 | vl_api_session_rules_dump_t_handler (vl_api_session_rules_dump_t * mp) |
Florin Coras | 6c36f53 | 2017-11-03 18:32:34 -0700 | [diff] [blame] | 1033 | { |
Florin Coras | 6c4dae2 | 2018-01-09 06:39:23 -0800 | [diff] [blame] | 1034 | vl_api_registration_t *reg; |
Florin Coras | 6c36f53 | 2017-11-03 18:32:34 -0700 | [diff] [blame] | 1035 | session_table_t *st; |
Florin Coras | c97a739 | 2017-11-05 23:07:07 -0800 | [diff] [blame] | 1036 | u8 tp; |
Florin Coras | 6c36f53 | 2017-11-03 18:32:34 -0700 | [diff] [blame] | 1037 | |
Florin Coras | 6c4dae2 | 2018-01-09 06:39:23 -0800 | [diff] [blame] | 1038 | reg = vl_api_client_index_to_registration (mp->client_index); |
| 1039 | if (!reg) |
Florin Coras | 6c36f53 | 2017-11-03 18:32:34 -0700 | [diff] [blame] | 1040 | return; |
| 1041 | |
| 1042 | /* *INDENT-OFF* */ |
| 1043 | session_table_foreach (st, ({ |
Florin Coras | 07063b8 | 2020-03-13 04:44:51 +0000 | [diff] [blame] | 1044 | for (tp = 0; tp < TRANSPORT_N_PROTOS; tp++) |
Florin Coras | c97a739 | 2017-11-05 23:07:07 -0800 | [diff] [blame] | 1045 | { |
| 1046 | send_session_rules_table_details (&st->session_rules[tp], |
| 1047 | st->active_fib_proto, tp, |
Florin Coras | 6c4dae2 | 2018-01-09 06:39:23 -0800 | [diff] [blame] | 1048 | st->is_local, st->appns_index, reg, |
Florin Coras | c97a739 | 2017-11-05 23:07:07 -0800 | [diff] [blame] | 1049 | mp->context); |
| 1050 | } |
Florin Coras | 6c36f53 | 2017-11-03 18:32:34 -0700 | [diff] [blame] | 1051 | })); |
| 1052 | /* *INDENT-ON* */ |
| 1053 | } |
| 1054 | |
Florin Coras | 371ca50 | 2018-02-21 12:07:41 -0800 | [diff] [blame] | 1055 | static void |
Nathan Skrzypczak | 79f8953 | 2019-09-13 11:08:13 +0200 | [diff] [blame] | 1056 | vl_api_app_add_cert_key_pair_t_handler (vl_api_app_add_cert_key_pair_t * mp) |
Florin Coras | 371ca50 | 2018-02-21 12:07:41 -0800 | [diff] [blame] | 1057 | { |
Nathan Skrzypczak | 79f8953 | 2019-09-13 11:08:13 +0200 | [diff] [blame] | 1058 | vl_api_app_add_cert_key_pair_reply_t *rmp; |
| 1059 | vnet_app_add_cert_key_pair_args_t _a, *a = &_a; |
| 1060 | u32 certkey_len, key_len, cert_len; |
Florin Coras | 371ca50 | 2018-02-21 12:07:41 -0800 | [diff] [blame] | 1061 | int rv = 0; |
Nathan Skrzypczak | 79f8953 | 2019-09-13 11:08:13 +0200 | [diff] [blame] | 1062 | if (session_main_is_enabled () == 0) |
Florin Coras | 371ca50 | 2018-02-21 12:07:41 -0800 | [diff] [blame] | 1063 | { |
| 1064 | rv = VNET_API_ERROR_FEATURE_DISABLED; |
| 1065 | goto done; |
| 1066 | } |
Nathan Skrzypczak | 79f8953 | 2019-09-13 11:08:13 +0200 | [diff] [blame] | 1067 | |
Florin Coras | 371ca50 | 2018-02-21 12:07:41 -0800 | [diff] [blame] | 1068 | cert_len = clib_net_to_host_u16 (mp->cert_len); |
Florin Coras | 5090c57 | 2018-03-18 08:22:17 -0700 | [diff] [blame] | 1069 | if (cert_len > 10000) |
| 1070 | { |
| 1071 | rv = VNET_API_ERROR_INVALID_VALUE; |
| 1072 | goto done; |
| 1073 | } |
Nathan Skrzypczak | 79f8953 | 2019-09-13 11:08:13 +0200 | [diff] [blame] | 1074 | |
| 1075 | certkey_len = clib_net_to_host_u16 (mp->certkey_len); |
| 1076 | if (certkey_len < cert_len) |
Florin Coras | 371ca50 | 2018-02-21 12:07:41 -0800 | [diff] [blame] | 1077 | { |
Nathan Skrzypczak | 79f8953 | 2019-09-13 11:08:13 +0200 | [diff] [blame] | 1078 | rv = VNET_API_ERROR_INVALID_VALUE; |
| 1079 | goto done; |
Florin Coras | 371ca50 | 2018-02-21 12:07:41 -0800 | [diff] [blame] | 1080 | } |
Nathan Skrzypczak | 79f8953 | 2019-09-13 11:08:13 +0200 | [diff] [blame] | 1081 | |
| 1082 | key_len = certkey_len - cert_len; |
| 1083 | if (key_len > 10000) |
| 1084 | { |
| 1085 | rv = VNET_API_ERROR_INVALID_VALUE; |
| 1086 | goto done; |
| 1087 | } |
| 1088 | |
| 1089 | clib_memset (a, 0, sizeof (*a)); |
Florin Coras | a5a9efd | 2021-01-05 17:03:29 -0800 | [diff] [blame] | 1090 | a->cert = mp->certkey; |
| 1091 | a->key = mp->certkey + cert_len; |
| 1092 | a->cert_len = cert_len; |
| 1093 | a->key_len = key_len; |
Nathan Skrzypczak | 79f8953 | 2019-09-13 11:08:13 +0200 | [diff] [blame] | 1094 | rv = vnet_app_add_cert_key_pair (a); |
Nathan Skrzypczak | 79f8953 | 2019-09-13 11:08:13 +0200 | [diff] [blame] | 1095 | |
Florin Coras | 371ca50 | 2018-02-21 12:07:41 -0800 | [diff] [blame] | 1096 | done: |
Nathan Skrzypczak | 79f8953 | 2019-09-13 11:08:13 +0200 | [diff] [blame] | 1097 | /* *INDENT-OFF* */ |
| 1098 | REPLY_MACRO2 (VL_API_APP_ADD_CERT_KEY_PAIR_REPLY, ({ |
| 1099 | if (!rv) |
Nathan Skrzypczak | 45ec9f4 | 2019-11-06 14:47:40 +0100 | [diff] [blame] | 1100 | rmp->index = clib_host_to_net_u32 (a->index); |
Nathan Skrzypczak | 79f8953 | 2019-09-13 11:08:13 +0200 | [diff] [blame] | 1101 | })); |
| 1102 | /* *INDENT-ON* */ |
Florin Coras | 371ca50 | 2018-02-21 12:07:41 -0800 | [diff] [blame] | 1103 | } |
| 1104 | |
| 1105 | static void |
Nathan Skrzypczak | 79f8953 | 2019-09-13 11:08:13 +0200 | [diff] [blame] | 1106 | vl_api_app_del_cert_key_pair_t_handler (vl_api_app_del_cert_key_pair_t * mp) |
Florin Coras | 371ca50 | 2018-02-21 12:07:41 -0800 | [diff] [blame] | 1107 | { |
Nathan Skrzypczak | 79f8953 | 2019-09-13 11:08:13 +0200 | [diff] [blame] | 1108 | vl_api_app_del_cert_key_pair_reply_t *rmp; |
Nathan Skrzypczak | 45ec9f4 | 2019-11-06 14:47:40 +0100 | [diff] [blame] | 1109 | u32 ckpair_index; |
Florin Coras | 371ca50 | 2018-02-21 12:07:41 -0800 | [diff] [blame] | 1110 | int rv = 0; |
Nathan Skrzypczak | 79f8953 | 2019-09-13 11:08:13 +0200 | [diff] [blame] | 1111 | if (session_main_is_enabled () == 0) |
| 1112 | { |
| 1113 | rv = VNET_API_ERROR_FEATURE_DISABLED; |
| 1114 | goto done; |
| 1115 | } |
Nathan Skrzypczak | 45ec9f4 | 2019-11-06 14:47:40 +0100 | [diff] [blame] | 1116 | ckpair_index = clib_net_to_host_u32 (mp->index); |
| 1117 | rv = vnet_app_del_cert_key_pair (ckpair_index); |
Nathan Skrzypczak | 79f8953 | 2019-09-13 11:08:13 +0200 | [diff] [blame] | 1118 | |
| 1119 | done: |
Nathan Skrzypczak | 45ec9f4 | 2019-11-06 14:47:40 +0100 | [diff] [blame] | 1120 | REPLY_MACRO (VL_API_APP_DEL_CERT_KEY_PAIR_REPLY); |
Nathan Skrzypczak | 79f8953 | 2019-09-13 11:08:13 +0200 | [diff] [blame] | 1121 | } |
| 1122 | |
Florin Coras | 6cf30ad | 2017-04-04 23:08:23 -0700 | [diff] [blame] | 1123 | static clib_error_t * |
| 1124 | application_reaper_cb (u32 client_index) |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 1125 | { |
Florin Coras | 6cf30ad | 2017-04-04 23:08:23 -0700 | [diff] [blame] | 1126 | application_t *app = application_lookup (client_index); |
| 1127 | vnet_app_detach_args_t _a, *a = &_a; |
| 1128 | if (app) |
| 1129 | { |
Florin Coras | 1553197 | 2018-08-12 23:50:53 -0700 | [diff] [blame] | 1130 | a->app_index = app->app_index; |
Florin Coras | 053a0e4 | 2018-11-13 15:52:38 -0800 | [diff] [blame] | 1131 | a->api_client_index = client_index; |
Florin Coras | 6cf30ad | 2017-04-04 23:08:23 -0700 | [diff] [blame] | 1132 | vnet_application_detach (a); |
| 1133 | } |
| 1134 | return 0; |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 1135 | } |
| 1136 | |
Florin Coras | 6cf30ad | 2017-04-04 23:08:23 -0700 | [diff] [blame] | 1137 | VL_MSG_API_REAPER_FUNCTION (application_reaper_cb); |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 1138 | |
| 1139 | #define vl_msg_name_crc_list |
| 1140 | #include <vnet/vnet_all_api_h.h> |
| 1141 | #undef vl_msg_name_crc_list |
| 1142 | |
| 1143 | static void |
| 1144 | setup_message_id_table (api_main_t * am) |
| 1145 | { |
| 1146 | #define _(id,n,crc) vl_msg_api_add_msg_name_crc (am, #n "_" #crc, id); |
| 1147 | foreach_vl_msg_name_crc_session; |
| 1148 | #undef _ |
| 1149 | } |
| 1150 | |
| 1151 | /* |
| 1152 | * session_api_hookup |
| 1153 | * Add uri's API message handlers to the table. |
Jim Thompson | f324dec | 2019-04-08 03:22:21 -0500 | [diff] [blame] | 1154 | * vlib has already mapped shared memory and |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 1155 | * added the client registration handlers. |
| 1156 | * See .../open-repo/vlib/memclnt_vlib.c:memclnt_process() |
| 1157 | */ |
| 1158 | static clib_error_t * |
| 1159 | session_api_hookup (vlib_main_t * vm) |
| 1160 | { |
Dave Barach | 39d6911 | 2019-11-27 11:42:13 -0500 | [diff] [blame] | 1161 | api_main_t *am = vlibapi_get_main (); |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 1162 | |
| 1163 | #define _(N,n) \ |
| 1164 | vl_msg_api_set_handlers(VL_API_##N, #n, \ |
| 1165 | vl_api_##n##_t_handler, \ |
| 1166 | vl_noop_handler, \ |
| 1167 | vl_api_##n##_t_endian, \ |
| 1168 | vl_api_##n##_t_print, \ |
| 1169 | sizeof(vl_api_##n##_t), 1); |
| 1170 | foreach_session_api_msg; |
| 1171 | #undef _ |
| 1172 | |
| 1173 | /* |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 1174 | * Set up the (msg_name, crc, message-id) table |
| 1175 | */ |
| 1176 | setup_message_id_table (am); |
| 1177 | |
| 1178 | return 0; |
| 1179 | } |
| 1180 | |
| 1181 | VLIB_API_INIT_FUNCTION (session_api_hookup); |
Florin Coras | 6cf30ad | 2017-04-04 23:08:23 -0700 | [diff] [blame] | 1182 | |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 1183 | /* |
Florin Coras | 61ae056 | 2020-09-02 19:10:28 -0700 | [diff] [blame] | 1184 | * Socket api functions |
| 1185 | */ |
| 1186 | |
| 1187 | static void |
| 1188 | sapi_send_fds (app_worker_t * app_wrk, int *fds, int n_fds) |
| 1189 | { |
| 1190 | app_sapi_msg_t smsg = { 0 }; |
| 1191 | app_namespace_t *app_ns; |
| 1192 | application_t *app; |
| 1193 | clib_socket_t *cs; |
| 1194 | u32 cs_index; |
| 1195 | |
| 1196 | app = application_get (app_wrk->app_index); |
| 1197 | app_ns = app_namespace_get (app->ns_index); |
| 1198 | cs_index = appns_sapi_handle_sock_index (app_wrk->api_client_index); |
| 1199 | cs = appns_sapi_get_socket (app_ns, cs_index); |
Florin Coras | 1c0573d | 2020-09-23 10:31:27 -0700 | [diff] [blame] | 1200 | if (PREDICT_FALSE (!cs)) |
| 1201 | return; |
Florin Coras | 61ae056 | 2020-09-02 19:10:28 -0700 | [diff] [blame] | 1202 | |
| 1203 | /* There's no payload for the message only the type */ |
| 1204 | smsg.type = APP_SAPI_MSG_TYPE_SEND_FDS; |
| 1205 | clib_socket_sendmsg (cs, &smsg, sizeof (smsg), fds, n_fds); |
| 1206 | } |
| 1207 | |
| 1208 | static int |
| 1209 | mq_send_add_segment_sapi_cb (u32 app_wrk_index, u64 segment_handle) |
| 1210 | { |
| 1211 | int fds[SESSION_N_FD_TYPE], n_fds = 0; |
| 1212 | svm_msg_q_msg_t _msg, *msg = &_msg; |
| 1213 | session_app_add_segment_msg_t *mp; |
| 1214 | app_worker_t *app_wrk; |
| 1215 | session_event_t *evt; |
| 1216 | svm_msg_q_t *app_mq; |
| 1217 | fifo_segment_t *fs; |
| 1218 | ssvm_private_t *sp; |
| 1219 | u8 fd_flags = 0; |
| 1220 | |
| 1221 | app_wrk = app_worker_get (app_wrk_index); |
| 1222 | |
| 1223 | fs = segment_manager_get_segment_w_handle (segment_handle); |
| 1224 | sp = &fs->ssvm; |
| 1225 | ASSERT (ssvm_type (sp) == SSVM_SEGMENT_MEMFD); |
| 1226 | |
| 1227 | fd_flags |= SESSION_FD_F_MEMFD_SEGMENT; |
| 1228 | fds[n_fds] = sp->fd; |
| 1229 | n_fds += 1; |
| 1230 | |
| 1231 | app_mq = app_wrk->event_queue; |
| 1232 | if (mq_try_lock_and_alloc_msg (app_mq, msg)) |
| 1233 | return -1; |
| 1234 | |
| 1235 | /* |
| 1236 | * Send the fd over api socket |
| 1237 | */ |
| 1238 | sapi_send_fds (app_wrk, fds, n_fds); |
| 1239 | |
| 1240 | /* |
| 1241 | * Send the actual message over mq |
| 1242 | */ |
| 1243 | evt = svm_msg_q_msg_data (app_mq, msg); |
| 1244 | clib_memset (evt, 0, sizeof (*evt)); |
| 1245 | evt->event_type = SESSION_CTRL_EVT_APP_ADD_SEGMENT; |
| 1246 | mp = (session_app_add_segment_msg_t *) evt->data; |
| 1247 | clib_memset (mp, 0, sizeof (*mp)); |
| 1248 | mp->segment_size = sp->ssvm_size; |
| 1249 | mp->fd_flags = fd_flags; |
| 1250 | mp->segment_handle = segment_handle; |
| 1251 | strncpy ((char *) mp->segment_name, (char *) sp->name, |
| 1252 | sizeof (mp->segment_name) - 1); |
| 1253 | |
| 1254 | svm_msg_q_add_and_unlock (app_mq, msg); |
| 1255 | |
| 1256 | return 0; |
| 1257 | } |
| 1258 | |
| 1259 | static int |
| 1260 | mq_send_del_segment_sapi_cb (u32 app_wrk_index, u64 segment_handle) |
| 1261 | { |
| 1262 | svm_msg_q_msg_t _msg, *msg = &_msg; |
| 1263 | session_app_del_segment_msg_t *mp; |
| 1264 | app_worker_t *app_wrk; |
| 1265 | session_event_t *evt; |
| 1266 | svm_msg_q_t *app_mq; |
| 1267 | |
| 1268 | app_wrk = app_worker_get (app_wrk_index); |
| 1269 | |
| 1270 | app_mq = app_wrk->event_queue; |
| 1271 | if (mq_try_lock_and_alloc_msg (app_mq, msg)) |
| 1272 | return -1; |
| 1273 | |
| 1274 | evt = svm_msg_q_msg_data (app_mq, msg); |
| 1275 | clib_memset (evt, 0, sizeof (*evt)); |
| 1276 | evt->event_type = SESSION_CTRL_EVT_APP_DEL_SEGMENT; |
| 1277 | mp = (session_app_del_segment_msg_t *) evt->data; |
| 1278 | clib_memset (mp, 0, sizeof (*mp)); |
| 1279 | mp->segment_handle = segment_handle; |
| 1280 | svm_msg_q_add_and_unlock (app_mq, msg); |
| 1281 | |
| 1282 | return 0; |
| 1283 | } |
| 1284 | |
| 1285 | static session_cb_vft_t session_mq_sapi_cb_vft = { |
| 1286 | .session_accept_callback = mq_send_session_accepted_cb, |
| 1287 | .session_disconnect_callback = mq_send_session_disconnected_cb, |
| 1288 | .session_connected_callback = mq_send_session_connected_cb, |
| 1289 | .session_reset_callback = mq_send_session_reset_cb, |
| 1290 | .session_migrate_callback = mq_send_session_migrate_cb, |
| 1291 | .session_cleanup_callback = mq_send_session_cleanup_cb, |
| 1292 | .add_segment_callback = mq_send_add_segment_sapi_cb, |
| 1293 | .del_segment_callback = mq_send_del_segment_sapi_cb, |
| 1294 | }; |
| 1295 | |
| 1296 | static void |
| 1297 | session_api_attach_handler (app_namespace_t * app_ns, clib_socket_t * cs, |
| 1298 | app_sapi_attach_msg_t * mp) |
| 1299 | { |
Florin Coras | 41d5f54 | 2021-01-15 13:49:33 -0800 | [diff] [blame] | 1300 | int rv = 0, *fds = 0, n_fds = 0, i, n_workers; |
Florin Coras | 61ae056 | 2020-09-02 19:10:28 -0700 | [diff] [blame] | 1301 | vnet_app_attach_args_t _a, *a = &_a; |
| 1302 | app_sapi_attach_reply_msg_t *rmp; |
Florin Coras | 61ae056 | 2020-09-02 19:10:28 -0700 | [diff] [blame] | 1303 | u8 fd_flags = 0, ctrl_thread; |
| 1304 | app_ns_api_handle_t *handle; |
Florin Coras | 41d5f54 | 2021-01-15 13:49:33 -0800 | [diff] [blame] | 1305 | fifo_segment_t *rx_mqs_seg; |
Florin Coras | 61ae056 | 2020-09-02 19:10:28 -0700 | [diff] [blame] | 1306 | app_sapi_msg_t msg = { 0 }; |
| 1307 | app_worker_t *app_wrk; |
Florin Coras | 61ae056 | 2020-09-02 19:10:28 -0700 | [diff] [blame] | 1308 | application_t *app; |
Florin Coras | 41d5f54 | 2021-01-15 13:49:33 -0800 | [diff] [blame] | 1309 | svm_msg_q_t *rx_mq; |
Florin Coras | 61ae056 | 2020-09-02 19:10:28 -0700 | [diff] [blame] | 1310 | |
| 1311 | /* Make sure name is null terminated */ |
| 1312 | mp->name[63] = 0; |
| 1313 | |
| 1314 | clib_memset (a, 0, sizeof (*a)); |
| 1315 | a->api_client_index = appns_sapi_socket_handle (app_ns, cs); |
| 1316 | a->name = format (0, "%s", (char *) mp->name); |
| 1317 | a->options = mp->options; |
| 1318 | a->session_cb_vft = &session_mq_sapi_cb_vft; |
| 1319 | a->use_sock_api = 1; |
| 1320 | a->options[APP_OPTIONS_NAMESPACE] = app_namespace_index (app_ns); |
| 1321 | |
| 1322 | if ((rv = vnet_application_attach (a))) |
| 1323 | { |
| 1324 | clib_warning ("attach returned: %d", rv); |
| 1325 | goto done; |
| 1326 | } |
| 1327 | |
Florin Coras | 41d5f54 | 2021-01-15 13:49:33 -0800 | [diff] [blame] | 1328 | n_workers = vlib_num_workers (); |
| 1329 | vec_validate (fds, 3 /* segs + tx evtfd */ + n_workers); |
| 1330 | |
Florin Coras | 61ae056 | 2020-09-02 19:10:28 -0700 | [diff] [blame] | 1331 | /* Send event queues segment */ |
Florin Coras | 41d5f54 | 2021-01-15 13:49:33 -0800 | [diff] [blame] | 1332 | app = application_get (a->app_index); |
| 1333 | rx_mqs_seg = application_get_rx_mqs_segment (app); |
| 1334 | |
| 1335 | fd_flags |= SESSION_FD_F_VPP_MQ_SEGMENT; |
| 1336 | fds[n_fds] = rx_mqs_seg->ssvm.fd; |
| 1337 | n_fds += 1; |
| 1338 | |
Florin Coras | 61ae056 | 2020-09-02 19:10:28 -0700 | [diff] [blame] | 1339 | /* Send fifo segment fd if needed */ |
| 1340 | if (ssvm_type (a->segment) == SSVM_SEGMENT_MEMFD) |
| 1341 | { |
| 1342 | fd_flags |= SESSION_FD_F_MEMFD_SEGMENT; |
| 1343 | fds[n_fds] = a->segment->fd; |
| 1344 | n_fds += 1; |
| 1345 | } |
| 1346 | if (a->options[APP_OPTIONS_FLAGS] & APP_OPTIONS_FLAGS_EVT_MQ_USE_EVENTFD) |
| 1347 | { |
| 1348 | fd_flags |= SESSION_FD_F_MQ_EVENTFD; |
Florin Coras | 86f1232 | 2021-01-22 15:05:14 -0800 | [diff] [blame] | 1349 | fds[n_fds] = svm_msg_q_get_eventfd (a->app_evt_q); |
Florin Coras | 61ae056 | 2020-09-02 19:10:28 -0700 | [diff] [blame] | 1350 | n_fds += 1; |
| 1351 | } |
| 1352 | |
Florin Coras | 41d5f54 | 2021-01-15 13:49:33 -0800 | [diff] [blame] | 1353 | if (application_use_private_rx_mqs ()) |
| 1354 | { |
| 1355 | fd_flags |= SESSION_FD_F_VPP_MQ_EVENTFD; |
| 1356 | for (i = 0; i < n_workers + 1; i++) |
| 1357 | { |
| 1358 | rx_mq = application_rx_mq_get (app, i); |
| 1359 | fds[n_fds] = svm_msg_q_get_eventfd (rx_mq); |
| 1360 | n_fds += 1; |
| 1361 | } |
| 1362 | } |
| 1363 | |
Florin Coras | 61ae056 | 2020-09-02 19:10:28 -0700 | [diff] [blame] | 1364 | done: |
| 1365 | |
| 1366 | msg.type = APP_SAPI_MSG_TYPE_ATTACH_REPLY; |
| 1367 | rmp = &msg.attach_reply; |
| 1368 | rmp->retval = rv; |
| 1369 | if (!rv) |
| 1370 | { |
Florin Coras | 41d5f54 | 2021-01-15 13:49:33 -0800 | [diff] [blame] | 1371 | ctrl_thread = n_workers ? 1 : 0; |
Florin Coras | 61ae056 | 2020-09-02 19:10:28 -0700 | [diff] [blame] | 1372 | rmp->app_index = a->app_index; |
Florin Coras | b462418 | 2020-12-11 13:58:12 -0800 | [diff] [blame] | 1373 | rmp->app_mq = |
| 1374 | fifo_segment_msg_q_offset ((fifo_segment_t *) a->segment, 0); |
Florin Coras | 41d5f54 | 2021-01-15 13:49:33 -0800 | [diff] [blame] | 1375 | rmp->vpp_ctrl_mq = fifo_segment_msg_q_offset (rx_mqs_seg, ctrl_thread); |
Florin Coras | 61ae056 | 2020-09-02 19:10:28 -0700 | [diff] [blame] | 1376 | rmp->vpp_ctrl_mq_thread = ctrl_thread; |
| 1377 | rmp->n_fds = n_fds; |
| 1378 | rmp->fd_flags = fd_flags; |
| 1379 | /* No segment name and size since we only support memfds |
| 1380 | * in this configuration */ |
| 1381 | rmp->segment_handle = a->segment_handle; |
| 1382 | rmp->api_client_handle = a->api_client_index; |
| 1383 | |
| 1384 | /* Update app index for socket */ |
| 1385 | handle = (app_ns_api_handle_t *) & cs->private_data; |
Florin Coras | 61ae056 | 2020-09-02 19:10:28 -0700 | [diff] [blame] | 1386 | app_wrk = application_get_worker (app, 0); |
| 1387 | handle->aah_app_wrk_index = app_wrk->wrk_index; |
| 1388 | } |
| 1389 | |
| 1390 | clib_socket_sendmsg (cs, &msg, sizeof (msg), fds, n_fds); |
| 1391 | vec_free (a->name); |
Florin Coras | 41d5f54 | 2021-01-15 13:49:33 -0800 | [diff] [blame] | 1392 | vec_free (fds); |
Florin Coras | 61ae056 | 2020-09-02 19:10:28 -0700 | [diff] [blame] | 1393 | } |
| 1394 | |
| 1395 | static void |
| 1396 | sapi_socket_close_w_handle (u32 api_handle) |
| 1397 | { |
| 1398 | app_namespace_t *app_ns = app_namespace_get (api_handle >> 16); |
| 1399 | u16 sock_index = api_handle & 0xffff; |
| 1400 | app_ns_api_handle_t *handle; |
| 1401 | clib_socket_t *cs; |
| 1402 | clib_file_t *cf; |
| 1403 | |
| 1404 | cs = appns_sapi_get_socket (app_ns, sock_index); |
| 1405 | if (!cs) |
| 1406 | return; |
| 1407 | |
| 1408 | handle = (app_ns_api_handle_t *) & cs->private_data; |
| 1409 | cf = clib_file_get (&file_main, handle->aah_file_index); |
| 1410 | clib_file_del (&file_main, cf); |
| 1411 | |
| 1412 | clib_socket_close (cs); |
| 1413 | appns_sapi_free_socket (app_ns, cs); |
| 1414 | } |
| 1415 | |
| 1416 | static void |
| 1417 | sapi_add_del_worker_handler (app_namespace_t * app_ns, |
| 1418 | clib_socket_t * cs, |
| 1419 | app_sapi_worker_add_del_msg_t * mp) |
| 1420 | { |
| 1421 | int rv = 0, fds[SESSION_N_FD_TYPE], n_fds = 0; |
| 1422 | app_sapi_worker_add_del_reply_msg_t *rmp; |
| 1423 | app_ns_api_handle_t *handle; |
| 1424 | app_sapi_msg_t msg = { 0 }; |
| 1425 | app_worker_t *app_wrk; |
Florin Coras | cc7c88e | 2020-09-15 15:56:51 -0700 | [diff] [blame] | 1426 | u32 sapi_handle = -1; |
Florin Coras | 61ae056 | 2020-09-02 19:10:28 -0700 | [diff] [blame] | 1427 | application_t *app; |
Florin Coras | 61ae056 | 2020-09-02 19:10:28 -0700 | [diff] [blame] | 1428 | u8 fd_flags = 0; |
| 1429 | |
| 1430 | app = application_get_if_valid (mp->app_index); |
| 1431 | if (!app) |
| 1432 | { |
| 1433 | rv = VNET_API_ERROR_INVALID_VALUE; |
| 1434 | goto done; |
| 1435 | } |
| 1436 | |
| 1437 | sapi_handle = appns_sapi_socket_handle (app_ns, cs); |
| 1438 | |
| 1439 | vnet_app_worker_add_del_args_t args = { |
| 1440 | .app_index = app->app_index, |
| 1441 | .wrk_map_index = mp->wrk_index, |
| 1442 | .api_client_index = sapi_handle, |
| 1443 | .is_add = mp->is_add |
| 1444 | }; |
| 1445 | rv = vnet_app_worker_add_del (&args); |
| 1446 | if (rv) |
| 1447 | { |
| 1448 | clib_warning ("app worker add/del returned: %d", rv); |
| 1449 | goto done; |
| 1450 | } |
| 1451 | |
| 1452 | if (!mp->is_add) |
| 1453 | { |
| 1454 | sapi_socket_close_w_handle (sapi_handle); |
| 1455 | goto done; |
| 1456 | } |
| 1457 | |
| 1458 | /* Send fifo segment fd if needed */ |
| 1459 | if (ssvm_type (args.segment) == SSVM_SEGMENT_MEMFD) |
| 1460 | { |
| 1461 | fd_flags |= SESSION_FD_F_MEMFD_SEGMENT; |
| 1462 | fds[n_fds] = args.segment->fd; |
| 1463 | n_fds += 1; |
| 1464 | } |
| 1465 | if (application_segment_manager_properties (app)->use_mq_eventfd) |
| 1466 | { |
| 1467 | fd_flags |= SESSION_FD_F_MQ_EVENTFD; |
Florin Coras | 86f1232 | 2021-01-22 15:05:14 -0800 | [diff] [blame] | 1468 | fds[n_fds] = svm_msg_q_get_eventfd (args.evt_q); |
Florin Coras | 61ae056 | 2020-09-02 19:10:28 -0700 | [diff] [blame] | 1469 | n_fds += 1; |
| 1470 | } |
| 1471 | |
| 1472 | done: |
| 1473 | |
| 1474 | msg.type = APP_SAPI_MSG_TYPE_ADD_DEL_WORKER_REPLY; |
| 1475 | rmp = &msg.worker_add_del_reply; |
| 1476 | rmp->retval = rv; |
| 1477 | rmp->is_add = mp->is_add; |
Florin Coras | cc7c88e | 2020-09-15 15:56:51 -0700 | [diff] [blame] | 1478 | rmp->api_client_handle = sapi_handle; |
Florin Coras | 61ae056 | 2020-09-02 19:10:28 -0700 | [diff] [blame] | 1479 | rmp->wrk_index = args.wrk_map_index; |
| 1480 | rmp->segment_handle = args.segment_handle; |
| 1481 | if (!rv && mp->is_add) |
| 1482 | { |
| 1483 | /* No segment name and size. This supports only memfds */ |
Florin Coras | b462418 | 2020-12-11 13:58:12 -0800 | [diff] [blame] | 1484 | rmp->app_event_queue_address = |
| 1485 | fifo_segment_msg_q_offset ((fifo_segment_t *) args.segment, 0); |
Florin Coras | 61ae056 | 2020-09-02 19:10:28 -0700 | [diff] [blame] | 1486 | rmp->n_fds = n_fds; |
| 1487 | rmp->fd_flags = fd_flags; |
| 1488 | |
| 1489 | /* Update app index for socket */ |
| 1490 | handle = (app_ns_api_handle_t *) & cs->private_data; |
| 1491 | app_wrk = application_get_worker (app, args.wrk_map_index); |
| 1492 | handle->aah_app_wrk_index = app_wrk->wrk_index; |
| 1493 | } |
| 1494 | |
| 1495 | clib_socket_sendmsg (cs, &msg, sizeof (msg), fds, n_fds); |
| 1496 | } |
| 1497 | |
| 1498 | static void |
| 1499 | sapi_socket_detach (app_namespace_t * app_ns, clib_socket_t * cs) |
| 1500 | { |
Florin Coras | 61ae056 | 2020-09-02 19:10:28 -0700 | [diff] [blame] | 1501 | app_ns_api_handle_t *handle; |
| 1502 | app_worker_t *app_wrk; |
| 1503 | u32 api_client_handle; |
| 1504 | |
| 1505 | api_client_handle = appns_sapi_socket_handle (app_ns, cs); |
| 1506 | sapi_socket_close_w_handle (api_client_handle); |
| 1507 | |
Florin Coras | f99a7d6 | 2020-09-14 10:29:29 -0700 | [diff] [blame] | 1508 | /* Cleanup everything because app worker closed socket or crashed */ |
Florin Coras | 61ae056 | 2020-09-02 19:10:28 -0700 | [diff] [blame] | 1509 | handle = (app_ns_api_handle_t *) & cs->private_data; |
| 1510 | app_wrk = app_worker_get (handle->aah_app_wrk_index); |
Florin Coras | f99a7d6 | 2020-09-14 10:29:29 -0700 | [diff] [blame] | 1511 | |
| 1512 | vnet_app_worker_add_del_args_t args = { |
| 1513 | .app_index = app_wrk->app_index, |
| 1514 | .wrk_map_index = app_wrk->wrk_map_index, |
| 1515 | .api_client_index = api_client_handle, |
| 1516 | .is_add = 0 |
| 1517 | }; |
| 1518 | /* Send rpc to main thread for worker barrier */ |
| 1519 | vlib_rpc_call_main_thread (vnet_app_worker_add_del, (u8 *) & args, |
| 1520 | sizeof (args)); |
Florin Coras | 61ae056 | 2020-09-02 19:10:28 -0700 | [diff] [blame] | 1521 | } |
| 1522 | |
| 1523 | static clib_error_t * |
| 1524 | sapi_sock_read_ready (clib_file_t * cf) |
| 1525 | { |
| 1526 | app_ns_api_handle_t *handle = (app_ns_api_handle_t *) & cf->private_data; |
Florin Coras | 7360e3d | 2020-09-18 16:15:47 -0700 | [diff] [blame] | 1527 | vlib_main_t *vm = vlib_get_main (); |
Florin Coras | 61ae056 | 2020-09-02 19:10:28 -0700 | [diff] [blame] | 1528 | app_sapi_msg_t msg = { 0 }; |
| 1529 | app_namespace_t *app_ns; |
| 1530 | clib_error_t *err = 0; |
| 1531 | clib_socket_t *cs; |
| 1532 | |
| 1533 | app_ns = app_namespace_get (handle->aah_app_ns_index); |
| 1534 | cs = appns_sapi_get_socket (app_ns, handle->aah_sock_index); |
| 1535 | if (!cs) |
| 1536 | goto error; |
| 1537 | |
| 1538 | err = clib_socket_recvmsg (cs, &msg, sizeof (msg), 0, 0); |
| 1539 | if (err) |
| 1540 | { |
| 1541 | clib_error_free (err); |
| 1542 | sapi_socket_detach (app_ns, cs); |
| 1543 | goto error; |
| 1544 | } |
| 1545 | |
| 1546 | handle = (app_ns_api_handle_t *) & cs->private_data; |
| 1547 | |
Florin Coras | 7360e3d | 2020-09-18 16:15:47 -0700 | [diff] [blame] | 1548 | vlib_worker_thread_barrier_sync (vm); |
| 1549 | |
Florin Coras | 61ae056 | 2020-09-02 19:10:28 -0700 | [diff] [blame] | 1550 | switch (msg.type) |
| 1551 | { |
| 1552 | case APP_SAPI_MSG_TYPE_ATTACH: |
| 1553 | session_api_attach_handler (app_ns, cs, &msg.attach); |
| 1554 | break; |
| 1555 | case APP_SAPI_MSG_TYPE_ADD_DEL_WORKER: |
| 1556 | sapi_add_del_worker_handler (app_ns, cs, &msg.worker_add_del); |
| 1557 | break; |
| 1558 | default: |
| 1559 | clib_warning ("app wrk %u unknown message type: %u", |
| 1560 | handle->aah_app_wrk_index, msg.type); |
| 1561 | break; |
| 1562 | } |
| 1563 | |
Florin Coras | 7360e3d | 2020-09-18 16:15:47 -0700 | [diff] [blame] | 1564 | vlib_worker_thread_barrier_release (vm); |
| 1565 | |
Florin Coras | 61ae056 | 2020-09-02 19:10:28 -0700 | [diff] [blame] | 1566 | error: |
| 1567 | return 0; |
| 1568 | } |
| 1569 | |
| 1570 | static clib_error_t * |
| 1571 | sapi_sock_write_ready (clib_file_t * cf) |
| 1572 | { |
| 1573 | app_ns_api_handle_t *handle = (app_ns_api_handle_t *) & cf->private_data; |
| 1574 | clib_warning ("called for app ns %u", handle->aah_app_ns_index); |
| 1575 | return 0; |
| 1576 | } |
| 1577 | |
| 1578 | static clib_error_t * |
| 1579 | sapi_sock_error (clib_file_t * cf) |
| 1580 | { |
| 1581 | app_ns_api_handle_t *handle = (app_ns_api_handle_t *) & cf->private_data; |
| 1582 | app_namespace_t *app_ns; |
| 1583 | clib_socket_t *cs; |
| 1584 | |
| 1585 | app_ns = app_namespace_get (handle->aah_app_ns_index); |
| 1586 | cs = appns_sapi_get_socket (app_ns, handle->aah_sock_index); |
| 1587 | if (!cs) |
| 1588 | return 0; |
| 1589 | |
| 1590 | sapi_socket_detach (app_ns, cs); |
| 1591 | return 0; |
| 1592 | } |
| 1593 | |
| 1594 | static clib_error_t * |
| 1595 | sapi_sock_accept_ready (clib_file_t * scf) |
| 1596 | { |
| 1597 | app_ns_api_handle_t handle = *(app_ns_api_handle_t *) & scf->private_data; |
| 1598 | app_namespace_t *app_ns; |
| 1599 | clib_file_t cf = { 0 }; |
| 1600 | clib_error_t *err = 0; |
| 1601 | clib_socket_t *ccs, *scs; |
| 1602 | |
| 1603 | /* Listener files point to namespace */ |
| 1604 | app_ns = app_namespace_get (handle.aah_app_ns_index); |
| 1605 | |
| 1606 | /* |
| 1607 | * Initialize client socket |
| 1608 | */ |
| 1609 | ccs = appns_sapi_alloc_socket (app_ns); |
| 1610 | |
| 1611 | /* Grab server socket after client is initialized */ |
| 1612 | scs = appns_sapi_get_socket (app_ns, handle.aah_sock_index); |
| 1613 | if (!scs) |
| 1614 | goto error; |
| 1615 | |
| 1616 | err = clib_socket_accept (scs, ccs); |
| 1617 | if (err) |
| 1618 | { |
| 1619 | clib_error_report (err); |
| 1620 | goto error; |
| 1621 | } |
| 1622 | |
| 1623 | cf.read_function = sapi_sock_read_ready; |
| 1624 | cf.write_function = sapi_sock_write_ready; |
| 1625 | cf.error_function = sapi_sock_error; |
| 1626 | cf.file_descriptor = ccs->fd; |
| 1627 | /* File points to app namespace and socket */ |
| 1628 | handle.aah_sock_index = appns_sapi_socket_index (app_ns, ccs); |
Florin Coras | 6b6c10b | 2020-09-24 11:58:28 -0700 | [diff] [blame] | 1629 | cf.private_data = handle.as_u64; |
Florin Coras | 61ae056 | 2020-09-02 19:10:28 -0700 | [diff] [blame] | 1630 | cf.description = format (0, "app sock conn fd: %d", ccs->fd); |
| 1631 | |
| 1632 | /* Poll until we get an attach message. Socket points to file and |
| 1633 | * application that owns the socket */ |
| 1634 | handle.aah_app_wrk_index = APP_INVALID_INDEX; |
| 1635 | handle.aah_file_index = clib_file_add (&file_main, &cf); |
Florin Coras | 6b6c10b | 2020-09-24 11:58:28 -0700 | [diff] [blame] | 1636 | ccs->private_data = handle.as_u64; |
Florin Coras | 61ae056 | 2020-09-02 19:10:28 -0700 | [diff] [blame] | 1637 | |
| 1638 | return err; |
| 1639 | |
| 1640 | error: |
| 1641 | appns_sapi_free_socket (app_ns, ccs); |
| 1642 | return err; |
| 1643 | } |
| 1644 | |
| 1645 | int |
| 1646 | appns_sapi_add_ns_socket (app_namespace_t * app_ns) |
| 1647 | { |
| 1648 | char *subdir = "/app_ns_sockets/"; |
| 1649 | app_ns_api_handle_t *handle; |
| 1650 | clib_file_t cf = { 0 }; |
| 1651 | struct stat file_stat; |
| 1652 | clib_error_t *err; |
| 1653 | clib_socket_t *cs; |
| 1654 | u8 *dir = 0; |
| 1655 | int rv = 0; |
| 1656 | |
| 1657 | vec_add (dir, vlib_unix_get_runtime_dir (), |
| 1658 | strlen (vlib_unix_get_runtime_dir ())); |
| 1659 | vec_add (dir, (u8 *) subdir, strlen (subdir)); |
| 1660 | |
| 1661 | err = vlib_unix_recursive_mkdir ((char *) dir); |
| 1662 | if (err) |
| 1663 | { |
| 1664 | clib_error_report (err); |
| 1665 | rv = -1; |
| 1666 | goto error; |
| 1667 | } |
| 1668 | |
| 1669 | app_ns->sock_name = format (0, "%v%v%c", dir, app_ns->ns_id, 0); |
| 1670 | |
| 1671 | /* |
| 1672 | * Create and initialize socket to listen on |
| 1673 | */ |
| 1674 | cs = appns_sapi_alloc_socket (app_ns); |
| 1675 | cs->config = (char *) app_ns->sock_name; |
| 1676 | cs->flags = CLIB_SOCKET_F_IS_SERVER | |
| 1677 | CLIB_SOCKET_F_ALLOW_GROUP_WRITE | |
| 1678 | CLIB_SOCKET_F_SEQPACKET | CLIB_SOCKET_F_PASSCRED; |
| 1679 | |
| 1680 | if ((err = clib_socket_init (cs))) |
| 1681 | { |
| 1682 | clib_error_report (err); |
| 1683 | rv = -1; |
| 1684 | goto error; |
| 1685 | } |
| 1686 | |
| 1687 | if (stat ((char *) app_ns->sock_name, &file_stat) == -1) |
| 1688 | { |
| 1689 | rv = -1; |
| 1690 | goto error; |
| 1691 | } |
| 1692 | |
| 1693 | /* |
| 1694 | * Start polling it |
| 1695 | */ |
| 1696 | cf.read_function = sapi_sock_accept_ready; |
| 1697 | cf.file_descriptor = cs->fd; |
| 1698 | /* File points to namespace */ |
| 1699 | handle = (app_ns_api_handle_t *) & cf.private_data; |
| 1700 | handle->aah_app_ns_index = app_namespace_index (app_ns); |
| 1701 | handle->aah_sock_index = appns_sapi_socket_index (app_ns, cs); |
| 1702 | cf.description = format (0, "app sock listener: %s", app_ns->sock_name); |
| 1703 | |
| 1704 | /* Socket points to clib file index */ |
| 1705 | handle = (app_ns_api_handle_t *) & cs->private_data; |
| 1706 | handle->aah_file_index = clib_file_add (&file_main, &cf); |
| 1707 | handle->aah_app_wrk_index = APP_INVALID_INDEX; |
| 1708 | |
| 1709 | error: |
| 1710 | vec_free (dir); |
| 1711 | return rv; |
| 1712 | } |
| 1713 | |
| 1714 | /* |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 1715 | * fd.io coding-style-patch-verification: ON |
| 1716 | * |
| 1717 | * Local Variables: |
| 1718 | * eval: (c-set-style "gnu") |
| 1719 | * End: |
| 1720 | */ |