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