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