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