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