Dave Barach | 59b2565 | 2017-09-10 15:04:27 -0400 | [diff] [blame] | 1 | /* |
| 2 | *------------------------------------------------------------------ |
Ole Troan | 94495f2 | 2018-08-02 11:58:12 +0200 | [diff] [blame] | 3 | * socket_api.c |
Dave Barach | 59b2565 | 2017-09-10 15:04:27 -0400 | [diff] [blame] | 4 | * |
| 5 | * Copyright (c) 2009 Cisco and/or its affiliates. |
| 6 | * Licensed under the Apache License, Version 2.0 (the "License"); |
| 7 | * you may not use this file except in compliance with the License. |
| 8 | * You may obtain a copy of the License at: |
| 9 | * |
| 10 | * http://www.apache.org/licenses/LICENSE-2.0 |
| 11 | * |
| 12 | * Unless required by applicable law or agreed to in writing, software |
| 13 | * distributed under the License is distributed on an "AS IS" BASIS, |
| 14 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 15 | * See the License for the specific language governing permissions and |
| 16 | * limitations under the License. |
| 17 | *------------------------------------------------------------------ |
| 18 | */ |
| 19 | |
| 20 | #include <sys/types.h> |
| 21 | #include <sys/socket.h> |
| 22 | #include <netinet/in.h> |
| 23 | #include <sys/ioctl.h> |
Dave Barach | 59b2565 | 2017-09-10 15:04:27 -0400 | [diff] [blame] | 24 | #include <fcntl.h> |
| 25 | #include <sys/stat.h> |
| 26 | |
Florin Coras | e86a8ed | 2018-01-05 03:20:25 -0800 | [diff] [blame] | 27 | #include <vppinfra/byte_order.h> |
Florin Coras | 4d9b9d8 | 2018-01-14 12:25:50 -0800 | [diff] [blame] | 28 | #include <svm/ssvm.h> |
Dave Barach | 59b2565 | 2017-09-10 15:04:27 -0400 | [diff] [blame] | 29 | #include <vlibmemory/api.h> |
| 30 | |
| 31 | #include <vlibmemory/vl_memory_msg_enum.h> |
| 32 | |
| 33 | #define vl_typedefs /* define message structures */ |
| 34 | #include <vlibmemory/vl_memory_api_h.h> |
| 35 | #undef vl_typedefs |
| 36 | |
| 37 | /* instantiate all the print functions we know about */ |
Dave Barach | 59b2565 | 2017-09-10 15:04:27 -0400 | [diff] [blame] | 38 | #define vl_printfun |
| 39 | #include <vlibmemory/vl_memory_api_h.h> |
| 40 | #undef vl_printfun |
| 41 | |
| 42 | /* instantiate all the endian swap functions we know about */ |
| 43 | #define vl_endianfun |
| 44 | #include <vlibmemory/vl_memory_api_h.h> |
| 45 | #undef vl_endianfun |
| 46 | |
Klement Sekera | 9b7e8ac | 2021-11-22 21:26:20 +0100 | [diff] [blame] | 47 | #define vl_calcsizefun |
| 48 | #include <vlibmemory/vl_memory_api_h.h> |
| 49 | #undef vl_calcsizefun |
| 50 | |
Florin Coras | e86a8ed | 2018-01-05 03:20:25 -0800 | [diff] [blame] | 51 | socket_main_t socket_main; |
| 52 | |
Florin Coras | 2881dec | 2018-10-02 18:29:25 -0700 | [diff] [blame] | 53 | #define SOCK_API_REG_HANDLE_BIT (1<<31) |
| 54 | |
| 55 | static u32 |
| 56 | sock_api_registration_handle (vl_api_registration_t * regp) |
| 57 | { |
| 58 | ASSERT (regp->vl_api_registration_pool_index < SOCK_API_REG_HANDLE_BIT); |
| 59 | return regp->vl_api_registration_pool_index | SOCK_API_REG_HANDLE_BIT; |
| 60 | } |
| 61 | |
| 62 | static u32 |
| 63 | socket_api_registration_handle_to_index (u32 reg_index) |
| 64 | { |
| 65 | return (reg_index & ~SOCK_API_REG_HANDLE_BIT); |
| 66 | } |
| 67 | |
| 68 | u8 |
| 69 | vl_socket_api_registration_handle_is_valid (u32 reg_handle) |
| 70 | { |
| 71 | return ((reg_handle & SOCK_API_REG_HANDLE_BIT) != 0); |
| 72 | } |
| 73 | |
Dave Barach | 59b2565 | 2017-09-10 15:04:27 -0400 | [diff] [blame] | 74 | void |
Florin Coras | e86a8ed | 2018-01-05 03:20:25 -0800 | [diff] [blame] | 75 | vl_sock_api_dump_clients (vlib_main_t * vm, api_main_t * am) |
Dave Barach | 59b2565 | 2017-09-10 15:04:27 -0400 | [diff] [blame] | 76 | { |
| 77 | vl_api_registration_t *reg; |
| 78 | socket_main_t *sm = &socket_main; |
Dave Barach | 59b2565 | 2017-09-10 15:04:27 -0400 | [diff] [blame] | 79 | clib_file_t *f; |
| 80 | |
| 81 | /* |
| 82 | * Must have at least one active client, not counting the |
| 83 | * REGISTRATION_TYPE_SOCKET_LISTEN bind/accept socket |
| 84 | */ |
| 85 | if (pool_elts (sm->registration_pool) < 2) |
| 86 | return; |
| 87 | |
| 88 | vlib_cli_output (vm, "Socket clients"); |
Florin Coras | 90a6398 | 2017-12-19 04:50:01 -0800 | [diff] [blame] | 89 | vlib_cli_output (vm, "%20s %8s", "Name", "Fildesc"); |
Dave Barach | 59b2565 | 2017-09-10 15:04:27 -0400 | [diff] [blame] | 90 | /* *INDENT-OFF* */ |
Damjan Marion | b2c31b6 | 2020-12-13 21:47:40 +0100 | [diff] [blame] | 91 | pool_foreach (reg, sm->registration_pool) |
| 92 | { |
Dave Barach | 59b2565 | 2017-09-10 15:04:27 -0400 | [diff] [blame] | 93 | if (reg->registration_type == REGISTRATION_TYPE_SOCKET_SERVER) { |
Florin Coras | b384b54 | 2018-01-15 01:08:33 -0800 | [diff] [blame] | 94 | f = vl_api_registration_file (reg); |
| 95 | vlib_cli_output (vm, "%20s %8d", reg->name, f->file_descriptor); |
Dave Barach | 59b2565 | 2017-09-10 15:04:27 -0400 | [diff] [blame] | 96 | } |
Damjan Marion | b2c31b6 | 2020-12-13 21:47:40 +0100 | [diff] [blame] | 97 | } |
Dave Barach | 59b2565 | 2017-09-10 15:04:27 -0400 | [diff] [blame] | 98 | /* *INDENT-ON* */ |
| 99 | } |
| 100 | |
Ole Troan | 94495f2 | 2018-08-02 11:58:12 +0200 | [diff] [blame] | 101 | vl_api_registration_t * |
Florin Coras | 2881dec | 2018-10-02 18:29:25 -0700 | [diff] [blame] | 102 | vl_socket_api_client_handle_to_registration (u32 handle) |
Ole Troan | 94495f2 | 2018-08-02 11:58:12 +0200 | [diff] [blame] | 103 | { |
| 104 | socket_main_t *sm = &socket_main; |
Florin Coras | 2881dec | 2018-10-02 18:29:25 -0700 | [diff] [blame] | 105 | u32 index = socket_api_registration_handle_to_index (handle); |
| 106 | if (pool_is_free_index (sm->registration_pool, index)) |
Ole Troan | 94495f2 | 2018-08-02 11:58:12 +0200 | [diff] [blame] | 107 | { |
| 108 | #if DEBUG > 2 |
Florin Coras | 2881dec | 2018-10-02 18:29:25 -0700 | [diff] [blame] | 109 | clib_warning ("Invalid index %d\n", index); |
Ole Troan | 94495f2 | 2018-08-02 11:58:12 +0200 | [diff] [blame] | 110 | #endif |
| 111 | return 0; |
| 112 | } |
Florin Coras | 2881dec | 2018-10-02 18:29:25 -0700 | [diff] [blame] | 113 | return pool_elt_at_index (sm->registration_pool, index); |
Ole Troan | 94495f2 | 2018-08-02 11:58:12 +0200 | [diff] [blame] | 114 | } |
| 115 | |
Dave Barach | 59b2565 | 2017-09-10 15:04:27 -0400 | [diff] [blame] | 116 | void |
| 117 | vl_socket_api_send (vl_api_registration_t * rp, u8 * elem) |
| 118 | { |
Dave Barach | 59b2565 | 2017-09-10 15:04:27 -0400 | [diff] [blame] | 119 | #if CLIB_DEBUG > 1 |
| 120 | u32 output_length; |
| 121 | #endif |
Florin Coras | 90a6398 | 2017-12-19 04:50:01 -0800 | [diff] [blame] | 122 | socket_main_t *sm = &socket_main; |
| 123 | u16 msg_id = ntohs (*(u16 *) elem); |
Dave Barach | 39d6911 | 2019-11-27 11:42:13 -0500 | [diff] [blame] | 124 | api_main_t *am = vlibapi_get_main (); |
Florin Coras | 90a6398 | 2017-12-19 04:50:01 -0800 | [diff] [blame] | 125 | msgbuf_t *mb = (msgbuf_t *) (elem - offsetof (msgbuf_t, data)); |
Florin Coras | 90a6398 | 2017-12-19 04:50:01 -0800 | [diff] [blame] | 126 | vl_api_registration_t *sock_rp; |
Florin Coras | 8023ad4 | 2018-08-02 12:16:03 -0700 | [diff] [blame] | 127 | clib_file_main_t *fm = &file_main; |
| 128 | clib_error_t *error; |
Florin Coras | b384b54 | 2018-01-15 01:08:33 -0800 | [diff] [blame] | 129 | clib_file_t *cf; |
Dave Barach | 59b2565 | 2017-09-10 15:04:27 -0400 | [diff] [blame] | 130 | |
Florin Coras | b384b54 | 2018-01-15 01:08:33 -0800 | [diff] [blame] | 131 | cf = vl_api_registration_file (rp); |
Dave Barach | 59b2565 | 2017-09-10 15:04:27 -0400 | [diff] [blame] | 132 | ASSERT (rp->registration_type > REGISTRATION_TYPE_SHMEM); |
| 133 | |
Damjan Marion | cada9eb | 2022-05-18 22:16:11 +0200 | [diff] [blame] | 134 | if (msg_id >= vec_len (am->msg_data)) |
Dave Barach | 59b2565 | 2017-09-10 15:04:27 -0400 | [diff] [blame] | 135 | { |
| 136 | clib_warning ("id out of range: %d", msg_id); |
| 137 | vl_msg_api_free ((void *) elem); |
| 138 | return; |
| 139 | } |
| 140 | |
Florin Coras | 90a6398 | 2017-12-19 04:50:01 -0800 | [diff] [blame] | 141 | sock_rp = pool_elt_at_index (sm->registration_pool, |
| 142 | rp->vl_api_registration_pool_index); |
| 143 | ASSERT (sock_rp); |
| 144 | |
Dave Barach | 59b2565 | 2017-09-10 15:04:27 -0400 | [diff] [blame] | 145 | /* Add the msgbuf_t to the output vector */ |
Florin Coras | 8023ad4 | 2018-08-02 12:16:03 -0700 | [diff] [blame] | 146 | vec_add (sock_rp->output_vector, (u8 *) mb, sizeof (*mb)); |
| 147 | |
| 148 | /* Try to send the message and save any error like |
| 149 | * we do in the input epoll loop */ |
| 150 | vec_add (sock_rp->output_vector, elem, ntohl (mb->data_len)); |
| 151 | error = clib_file_write (cf); |
| 152 | unix_save_error (&unix_main, error); |
| 153 | |
| 154 | /* If we didn't finish sending everything, wait for tx space */ |
| 155 | if (vec_len (sock_rp->output_vector) > 0 |
| 156 | && !(cf->flags & UNIX_FILE_DATA_AVAILABLE_TO_WRITE)) |
| 157 | { |
| 158 | cf->flags |= UNIX_FILE_DATA_AVAILABLE_TO_WRITE; |
| 159 | fm->file_update (cf, UNIX_FILE_UPDATE_MODIFY); |
| 160 | } |
Dave Barach | 59b2565 | 2017-09-10 15:04:27 -0400 | [diff] [blame] | 161 | |
| 162 | #if CLIB_DEBUG > 1 |
| 163 | output_length = sizeof (*mb) + ntohl (mb->data_len); |
| 164 | clib_warning ("wrote %u bytes to fd %d", output_length, |
| 165 | cf->file_descriptor); |
| 166 | #endif |
| 167 | |
| 168 | vl_msg_api_free ((void *) elem); |
| 169 | } |
| 170 | |
| 171 | void |
Florin Coras | e86a8ed | 2018-01-05 03:20:25 -0800 | [diff] [blame] | 172 | vl_socket_free_registration_index (u32 pool_index) |
Dave Barach | 59b2565 | 2017-09-10 15:04:27 -0400 | [diff] [blame] | 173 | { |
| 174 | int i; |
| 175 | vl_api_registration_t *rp; |
Dave Barach | 38ca6e6 | 2020-07-17 17:16:34 -0400 | [diff] [blame] | 176 | void vl_api_call_reaper_functions (u32 client_index); |
| 177 | |
Dave Barach | 59b2565 | 2017-09-10 15:04:27 -0400 | [diff] [blame] | 178 | if (pool_is_free_index (socket_main.registration_pool, pool_index)) |
| 179 | { |
| 180 | clib_warning ("main pool index %d already free", pool_index); |
| 181 | return; |
| 182 | } |
| 183 | rp = pool_elt_at_index (socket_main.registration_pool, pool_index); |
| 184 | |
Neale Ranns | 8df4baa | 2021-12-15 12:59:26 +0000 | [diff] [blame] | 185 | vl_api_call_reaper_functions ( |
| 186 | clib_host_to_net_u32 (sock_api_registration_handle (rp))); |
Dave Barach | 38ca6e6 | 2020-07-17 17:16:34 -0400 | [diff] [blame] | 187 | |
Dave Barach | 59b2565 | 2017-09-10 15:04:27 -0400 | [diff] [blame] | 188 | ASSERT (rp->registration_type != REGISTRATION_TYPE_FREE); |
| 189 | for (i = 0; i < vec_len (rp->additional_fds_to_close); i++) |
| 190 | if (close (rp->additional_fds_to_close[i]) < 0) |
| 191 | clib_unix_warning ("close"); |
| 192 | vec_free (rp->additional_fds_to_close); |
| 193 | vec_free (rp->name); |
| 194 | vec_free (rp->unprocessed_input); |
| 195 | vec_free (rp->output_vector); |
| 196 | rp->registration_type = REGISTRATION_TYPE_FREE; |
| 197 | pool_put (socket_main.registration_pool, rp); |
| 198 | } |
| 199 | |
| 200 | void |
Florin Coras | 5224b5c | 2019-12-06 17:05:08 -0800 | [diff] [blame] | 201 | vl_socket_process_api_msg (vl_api_registration_t * rp, i8 * input_v) |
Dave Barach | 59b2565 | 2017-09-10 15:04:27 -0400 | [diff] [blame] | 202 | { |
| 203 | msgbuf_t *mbp = (msgbuf_t *) input_v; |
| 204 | |
| 205 | u8 *the_msg = (u8 *) (mbp->data); |
Dave Barach | 59b2565 | 2017-09-10 15:04:27 -0400 | [diff] [blame] | 206 | socket_main.current_rp = rp; |
Klement Sekera | 9b7e8ac | 2021-11-22 21:26:20 +0100 | [diff] [blame] | 207 | vl_msg_api_socket_handler (the_msg, ntohl (mbp->data_len)); |
Dave Barach | 59b2565 | 2017-09-10 15:04:27 -0400 | [diff] [blame] | 208 | socket_main.current_rp = 0; |
| 209 | } |
| 210 | |
Andrew Yourtchenko | 162b70d | 2021-03-11 12:54:11 +0000 | [diff] [blame] | 211 | int |
| 212 | is_being_removed_reg_index (u32 reg_index) |
| 213 | { |
| 214 | vl_api_registration_t *rp = vl_socket_get_registration (reg_index); |
| 215 | ALWAYS_ASSERT (rp != 0); |
| 216 | return (rp->is_being_removed); |
| 217 | } |
| 218 | |
| 219 | static void |
| 220 | socket_cleanup_pending_remove_registration_cb (u32 *preg_index) |
| 221 | { |
| 222 | vl_api_registration_t *rp = vl_socket_get_registration (*preg_index); |
| 223 | clib_file_main_t *fm = &file_main; |
| 224 | u32 pending_remove_file_index = vl_api_registration_file_index (rp); |
| 225 | |
| 226 | clib_file_t *zf = fm->file_pool + pending_remove_file_index; |
| 227 | |
| 228 | clib_file_del (fm, zf); |
| 229 | vl_socket_free_registration_index (rp - socket_main.registration_pool); |
| 230 | } |
| 231 | |
| 232 | static void |
| 233 | vl_socket_request_remove_reg_index (u32 reg_index) |
| 234 | { |
| 235 | vl_api_registration_t *rp = vl_socket_get_registration (reg_index); |
| 236 | ALWAYS_ASSERT (rp != 0); |
| 237 | if (rp->is_being_removed) |
| 238 | { |
| 239 | return; |
| 240 | } |
| 241 | rp->is_being_removed = 1; |
| 242 | vl_api_force_rpc_call_main_thread ( |
| 243 | socket_cleanup_pending_remove_registration_cb, (void *) ®_index, |
| 244 | sizeof (u32)); |
| 245 | } |
| 246 | |
Vratko Polak | 6a6af6e | 2019-10-07 14:52:53 +0200 | [diff] [blame] | 247 | /* |
| 248 | * Read function for API socket. |
| 249 | * |
| 250 | * Read data from socket, invoke SOCKET_READ_EVENT |
| 251 | * for each fully read API message, return 0. |
| 252 | * Store incomplete data for next invocation to continue. |
| 253 | * |
| 254 | * On severe read error, the file is closed. |
| 255 | * |
| 256 | * As reading is single threaded, |
| 257 | * socket_main.input_buffer is used temporarily. |
| 258 | * Even its length is modified, but always restored before return. |
| 259 | * |
| 260 | * Incomplete data is copied into a vector, |
| 261 | * pointer saved in registration's unprocessed_input. |
| 262 | */ |
Dave Barach | 59b2565 | 2017-09-10 15:04:27 -0400 | [diff] [blame] | 263 | clib_error_t * |
| 264 | vl_socket_read_ready (clib_file_t * uf) |
| 265 | { |
Dave Barach | 59b2565 | 2017-09-10 15:04:27 -0400 | [diff] [blame] | 266 | vlib_main_t *vm = vlib_get_main (); |
| 267 | vl_api_registration_t *rp; |
Vratko Polak | 6a6af6e | 2019-10-07 14:52:53 +0200 | [diff] [blame] | 268 | /* n is the size of data read to input_buffer */ |
Dave Barach | 59b2565 | 2017-09-10 15:04:27 -0400 | [diff] [blame] | 269 | int n; |
Vratko Polak | 6a6af6e | 2019-10-07 14:52:53 +0200 | [diff] [blame] | 270 | /* msg_buffer vector can point to input_buffer or unprocessed_input */ |
Dave Barach | 59b2565 | 2017-09-10 15:04:27 -0400 | [diff] [blame] | 271 | i8 *msg_buffer = 0; |
Vratko Polak | 6a6af6e | 2019-10-07 14:52:53 +0200 | [diff] [blame] | 272 | /* data_for_process is a vector containing one full message, incl msgbuf_t */ |
Dave Barach | 59b2565 | 2017-09-10 15:04:27 -0400 | [diff] [blame] | 273 | u8 *data_for_process; |
Vratko Polak | 6a6af6e | 2019-10-07 14:52:53 +0200 | [diff] [blame] | 274 | /* msgbuf_len is the size of one message, including sizeof (msgbuf_t) */ |
| 275 | u32 msgbuf_len; |
Dave Barach | 59b2565 | 2017-09-10 15:04:27 -0400 | [diff] [blame] | 276 | u32 save_input_buffer_length = vec_len (socket_main.input_buffer); |
| 277 | vl_socket_args_for_process_t *a; |
Florin Coras | 5224b5c | 2019-12-06 17:05:08 -0800 | [diff] [blame] | 278 | u32 reg_index = uf->private_data; |
Andrew Yourtchenko | 162b70d | 2021-03-11 12:54:11 +0000 | [diff] [blame] | 279 | if (is_being_removed_reg_index (reg_index)) |
| 280 | { |
| 281 | return 0; |
| 282 | } |
Dave Barach | 59b2565 | 2017-09-10 15:04:27 -0400 | [diff] [blame] | 283 | |
Florin Coras | 5224b5c | 2019-12-06 17:05:08 -0800 | [diff] [blame] | 284 | rp = vl_socket_get_registration (reg_index); |
Dave Barach | 59b2565 | 2017-09-10 15:04:27 -0400 | [diff] [blame] | 285 | |
Vratko Polak | 6a6af6e | 2019-10-07 14:52:53 +0200 | [diff] [blame] | 286 | /* Ignore unprocessed_input for now, n describes input_buffer for now. */ |
Dave Barach | 59b2565 | 2017-09-10 15:04:27 -0400 | [diff] [blame] | 287 | n = read (uf->file_descriptor, socket_main.input_buffer, |
| 288 | vec_len (socket_main.input_buffer)); |
| 289 | |
Vratko Polak | 6a6af6e | 2019-10-07 14:52:53 +0200 | [diff] [blame] | 290 | if (n <= 0) |
Dave Barach | 59b2565 | 2017-09-10 15:04:27 -0400 | [diff] [blame] | 291 | { |
Vratko Polak | 6a6af6e | 2019-10-07 14:52:53 +0200 | [diff] [blame] | 292 | if (errno != EAGAIN) |
| 293 | { |
| 294 | /* Severe error, close the file. */ |
Andrew Yourtchenko | 162b70d | 2021-03-11 12:54:11 +0000 | [diff] [blame] | 295 | vl_socket_request_remove_reg_index (reg_index); |
Dave Barach | 59b2565 | 2017-09-10 15:04:27 -0400 | [diff] [blame] | 296 | } |
Vratko Polak | 6a6af6e | 2019-10-07 14:52:53 +0200 | [diff] [blame] | 297 | /* EAGAIN means we do not close the file, but no data to process anyway. */ |
Dave Barach | 59b2565 | 2017-09-10 15:04:27 -0400 | [diff] [blame] | 298 | return 0; |
| 299 | } |
| 300 | |
Vratko Polak | 6a6af6e | 2019-10-07 14:52:53 +0200 | [diff] [blame] | 301 | /* Fake smaller length teporarily, so input_buffer can be used as msg_buffer. */ |
Benoît Ganne | f017b81 | 2021-06-22 11:58:27 +0200 | [diff] [blame] | 302 | vec_set_len (socket_main.input_buffer, n); |
Dave Barach | 59b2565 | 2017-09-10 15:04:27 -0400 | [diff] [blame] | 303 | |
| 304 | /* |
| 305 | * Look for bugs here. This code is tricky because |
| 306 | * data read from a stream socket does not honor message |
| 307 | * boundaries. In the case of a long message (>4K bytes) |
| 308 | * we have to do (at least) 2 reads, etc. |
| 309 | */ |
Vratko Polak | 6a6af6e | 2019-10-07 14:52:53 +0200 | [diff] [blame] | 310 | /* Determine msg_buffer. */ |
| 311 | if (vec_len (rp->unprocessed_input)) |
| 312 | { |
| 313 | vec_append (rp->unprocessed_input, socket_main.input_buffer); |
| 314 | msg_buffer = rp->unprocessed_input; |
| 315 | } |
| 316 | else |
| 317 | { |
| 318 | msg_buffer = socket_main.input_buffer; |
| 319 | } |
| 320 | /* Loop to process any full messages. */ |
| 321 | ASSERT (vec_len (msg_buffer) > 0); |
Dave Barach | 59b2565 | 2017-09-10 15:04:27 -0400 | [diff] [blame] | 322 | do |
| 323 | { |
Vratko Polak | 6a6af6e | 2019-10-07 14:52:53 +0200 | [diff] [blame] | 324 | /* Here, we are not sure how big a chunk of message we have left. */ |
| 325 | /* Do we at least know how big the full message will be? */ |
| 326 | if (vec_len (msg_buffer) <= sizeof (msgbuf_t)) |
| 327 | /* No, so fragment is not a full message. */ |
| 328 | goto save_and_split; |
Dave Barach | 59b2565 | 2017-09-10 15:04:27 -0400 | [diff] [blame] | 329 | |
Vratko Polak | 6a6af6e | 2019-10-07 14:52:53 +0200 | [diff] [blame] | 330 | /* Now we know how big the full message will be. */ |
| 331 | msgbuf_len = |
| 332 | ntohl (((msgbuf_t *) msg_buffer)->data_len) + sizeof (msgbuf_t); |
Dave Barach | 59b2565 | 2017-09-10 15:04:27 -0400 | [diff] [blame] | 333 | |
Vratko Polak | 6a6af6e | 2019-10-07 14:52:53 +0200 | [diff] [blame] | 334 | /* But do we have a full message? */ |
| 335 | if (msgbuf_len > vec_len (msg_buffer)) |
Dave Barach | 59b2565 | 2017-09-10 15:04:27 -0400 | [diff] [blame] | 336 | { |
| 337 | save_and_split: |
Vratko Polak | 6a6af6e | 2019-10-07 14:52:53 +0200 | [diff] [blame] | 338 | /* We don't have the entire message yet. */ |
| 339 | /* If msg_buffer is unprocessed_input, nothing needs to be done. */ |
Dave Barach | 59b2565 | 2017-09-10 15:04:27 -0400 | [diff] [blame] | 340 | if (msg_buffer == socket_main.input_buffer) |
Vratko Polak | 6a6af6e | 2019-10-07 14:52:53 +0200 | [diff] [blame] | 341 | /* But if we were using the input buffer, save the fragment. */ |
Dave Barach | 59b2565 | 2017-09-10 15:04:27 -0400 | [diff] [blame] | 342 | { |
| 343 | ASSERT (vec_len (rp->unprocessed_input) == 0); |
| 344 | vec_validate (rp->unprocessed_input, vec_len (msg_buffer) - 1); |
Dave Barach | 178cf49 | 2018-11-13 16:34:13 -0500 | [diff] [blame] | 345 | clib_memcpy_fast (rp->unprocessed_input, msg_buffer, |
| 346 | vec_len (msg_buffer)); |
Benoît Ganne | f017b81 | 2021-06-22 11:58:27 +0200 | [diff] [blame] | 347 | vec_set_len (rp->unprocessed_input, vec_len (msg_buffer)); |
Dave Barach | 59b2565 | 2017-09-10 15:04:27 -0400 | [diff] [blame] | 348 | } |
Vratko Polak | 6a6af6e | 2019-10-07 14:52:53 +0200 | [diff] [blame] | 349 | /* No more full messages, restore original input_buffer length. */ |
Benoît Ganne | f017b81 | 2021-06-22 11:58:27 +0200 | [diff] [blame] | 350 | vec_set_len (socket_main.input_buffer, save_input_buffer_length); |
Dave Barach | 59b2565 | 2017-09-10 15:04:27 -0400 | [diff] [blame] | 351 | return 0; |
| 352 | } |
| 353 | |
Vratko Polak | 6a6af6e | 2019-10-07 14:52:53 +0200 | [diff] [blame] | 354 | /* |
| 355 | * We have at least one full message. |
| 356 | * But msg_buffer can contain more data, so copy one message data |
| 357 | * so we can overwrite its length to what single message has. |
| 358 | */ |
Dave Barach | 59b2565 | 2017-09-10 15:04:27 -0400 | [diff] [blame] | 359 | data_for_process = (u8 *) vec_dup (msg_buffer); |
Benoît Ganne | f017b81 | 2021-06-22 11:58:27 +0200 | [diff] [blame] | 360 | vec_set_len (data_for_process, msgbuf_len); |
Vratko Polak | 6a6af6e | 2019-10-07 14:52:53 +0200 | [diff] [blame] | 361 | /* Everything is ready to signal the SOCKET_READ_EVENT. */ |
Dave Barach | 59b2565 | 2017-09-10 15:04:27 -0400 | [diff] [blame] | 362 | pool_get (socket_main.process_args, a); |
Florin Coras | 5224b5c | 2019-12-06 17:05:08 -0800 | [diff] [blame] | 363 | a->reg_index = reg_index; |
Dave Barach | 59b2565 | 2017-09-10 15:04:27 -0400 | [diff] [blame] | 364 | a->data = data_for_process; |
| 365 | |
Florin Coras | e86a8ed | 2018-01-05 03:20:25 -0800 | [diff] [blame] | 366 | vlib_process_signal_event (vm, vl_api_clnt_node.index, |
Dave Barach | 59b2565 | 2017-09-10 15:04:27 -0400 | [diff] [blame] | 367 | SOCKET_READ_EVENT, |
| 368 | a - socket_main.process_args); |
Vratko Polak | 6a6af6e | 2019-10-07 14:52:53 +0200 | [diff] [blame] | 369 | if (vec_len (msg_buffer) > msgbuf_len) |
| 370 | /* There are some fragments left. Shrink the msg_buffer to simplify logic. */ |
| 371 | vec_delete (msg_buffer, msgbuf_len, 0); |
Dave Barach | 59b2565 | 2017-09-10 15:04:27 -0400 | [diff] [blame] | 372 | else |
Vratko Polak | 6a6af6e | 2019-10-07 14:52:53 +0200 | [diff] [blame] | 373 | /* We are done with msg_buffer. */ |
Benoît Ganne | f017b81 | 2021-06-22 11:58:27 +0200 | [diff] [blame] | 374 | vec_set_len (msg_buffer, 0); |
Dave Barach | 59b2565 | 2017-09-10 15:04:27 -0400 | [diff] [blame] | 375 | } |
Vratko Polak | 6a6af6e | 2019-10-07 14:52:53 +0200 | [diff] [blame] | 376 | while (vec_len (msg_buffer) > 0); |
Dave Barach | 59b2565 | 2017-09-10 15:04:27 -0400 | [diff] [blame] | 377 | |
Vratko Polak | 6a6af6e | 2019-10-07 14:52:53 +0200 | [diff] [blame] | 378 | /* Restore input_buffer, it could have been msg_buffer. */ |
Benoît Ganne | f017b81 | 2021-06-22 11:58:27 +0200 | [diff] [blame] | 379 | vec_set_len (socket_main.input_buffer, save_input_buffer_length); |
Dave Barach | 59b2565 | 2017-09-10 15:04:27 -0400 | [diff] [blame] | 380 | return 0; |
| 381 | } |
| 382 | |
Dave Barach | 59b2565 | 2017-09-10 15:04:27 -0400 | [diff] [blame] | 383 | clib_error_t * |
| 384 | vl_socket_write_ready (clib_file_t * uf) |
| 385 | { |
| 386 | clib_file_main_t *fm = &file_main; |
| 387 | vl_api_registration_t *rp; |
| 388 | int n; |
| 389 | |
Andrew Yourtchenko | 162b70d | 2021-03-11 12:54:11 +0000 | [diff] [blame] | 390 | u32 reg_index = uf->private_data; |
| 391 | if (is_being_removed_reg_index (reg_index)) |
| 392 | { |
| 393 | return 0; |
| 394 | } |
| 395 | |
| 396 | rp = pool_elt_at_index (socket_main.registration_pool, reg_index); |
Dave Barach | 59b2565 | 2017-09-10 15:04:27 -0400 | [diff] [blame] | 397 | |
| 398 | /* Flush output vector. */ |
Ole Troan | 94495f2 | 2018-08-02 11:58:12 +0200 | [diff] [blame] | 399 | size_t total_bytes = vec_len (rp->output_vector); |
| 400 | size_t bytes_to_send, remaining_bytes = total_bytes; |
| 401 | void *p = rp->output_vector; |
| 402 | while (remaining_bytes > 0) |
Dave Barach | 59b2565 | 2017-09-10 15:04:27 -0400 | [diff] [blame] | 403 | { |
Ole Troan | 94495f2 | 2018-08-02 11:58:12 +0200 | [diff] [blame] | 404 | bytes_to_send = remaining_bytes > 4096 ? 4096 : remaining_bytes; |
| 405 | n = write (uf->file_descriptor, p, bytes_to_send); |
| 406 | if (n < 0) |
Florin Coras | 8023ad4 | 2018-08-02 12:16:03 -0700 | [diff] [blame] | 407 | { |
Ole Troan | 94495f2 | 2018-08-02 11:58:12 +0200 | [diff] [blame] | 408 | if (errno == EAGAIN) |
| 409 | { |
| 410 | break; |
| 411 | } |
| 412 | #if DEBUG > 2 |
| 413 | clib_warning ("write error, close the file...\n"); |
| 414 | #endif |
Andrew Yourtchenko | 162b70d | 2021-03-11 12:54:11 +0000 | [diff] [blame] | 415 | vl_socket_request_remove_reg_index (reg_index); |
Ole Troan | 94495f2 | 2018-08-02 11:58:12 +0200 | [diff] [blame] | 416 | return 0; |
Florin Coras | 8023ad4 | 2018-08-02 12:16:03 -0700 | [diff] [blame] | 417 | } |
Ole Troan | 94495f2 | 2018-08-02 11:58:12 +0200 | [diff] [blame] | 418 | remaining_bytes -= bytes_to_send; |
| 419 | p += bytes_to_send; |
| 420 | } |
| 421 | |
| 422 | vec_delete (rp->output_vector, total_bytes - remaining_bytes, 0); |
| 423 | if (vec_len (rp->output_vector) <= 0 |
| 424 | && (uf->flags & UNIX_FILE_DATA_AVAILABLE_TO_WRITE)) |
| 425 | { |
| 426 | uf->flags &= ~UNIX_FILE_DATA_AVAILABLE_TO_WRITE; |
| 427 | fm->file_update (uf, UNIX_FILE_UPDATE_MODIFY); |
Florin Coras | 8023ad4 | 2018-08-02 12:16:03 -0700 | [diff] [blame] | 428 | } |
Dave Barach | 59b2565 | 2017-09-10 15:04:27 -0400 | [diff] [blame] | 429 | |
| 430 | return 0; |
| 431 | } |
| 432 | |
| 433 | clib_error_t * |
| 434 | vl_socket_error_ready (clib_file_t * uf) |
| 435 | { |
Andrew Yourtchenko | 162b70d | 2021-03-11 12:54:11 +0000 | [diff] [blame] | 436 | u32 reg_index = uf->private_data; |
| 437 | vl_socket_request_remove_reg_index (reg_index); |
Dave Barach | 59b2565 | 2017-09-10 15:04:27 -0400 | [diff] [blame] | 438 | return 0; |
| 439 | } |
| 440 | |
| 441 | void |
| 442 | socksvr_file_add (clib_file_main_t * fm, int fd) |
| 443 | { |
| 444 | vl_api_registration_t *rp; |
| 445 | clib_file_t template = { 0 }; |
| 446 | |
| 447 | pool_get (socket_main.registration_pool, rp); |
Dave Barach | b7b9299 | 2018-10-17 10:38:51 -0400 | [diff] [blame] | 448 | clib_memset (rp, 0, sizeof (*rp)); |
Dave Barach | 59b2565 | 2017-09-10 15:04:27 -0400 | [diff] [blame] | 449 | |
| 450 | template.read_function = vl_socket_read_ready; |
| 451 | template.write_function = vl_socket_write_ready; |
| 452 | template.error_function = vl_socket_error_ready; |
| 453 | template.file_descriptor = fd; |
Paul Vinciguerra | 5481ad4 | 2020-01-28 14:47:17 -0500 | [diff] [blame] | 454 | template.description = format (0, "socksrv"); |
Dave Barach | 59b2565 | 2017-09-10 15:04:27 -0400 | [diff] [blame] | 455 | template.private_data = rp - socket_main.registration_pool; |
| 456 | |
| 457 | rp->registration_type = REGISTRATION_TYPE_SOCKET_SERVER; |
| 458 | rp->vl_api_registration_pool_index = rp - socket_main.registration_pool; |
| 459 | rp->clib_file_index = clib_file_add (fm, &template); |
| 460 | } |
| 461 | |
| 462 | static clib_error_t * |
| 463 | socksvr_accept_ready (clib_file_t * uf) |
| 464 | { |
| 465 | clib_file_main_t *fm = &file_main; |
| 466 | socket_main_t *sm = &socket_main; |
| 467 | clib_socket_t *sock = &sm->socksvr_listen_socket; |
| 468 | clib_socket_t client; |
| 469 | clib_error_t *error; |
| 470 | |
| 471 | error = clib_socket_accept (sock, &client); |
Dave Barach | 59b2565 | 2017-09-10 15:04:27 -0400 | [diff] [blame] | 472 | if (error) |
| 473 | return error; |
| 474 | |
| 475 | socksvr_file_add (fm, client.fd); |
| 476 | return 0; |
| 477 | } |
| 478 | |
| 479 | static clib_error_t * |
| 480 | socksvr_bogus_write (clib_file_t * uf) |
| 481 | { |
| 482 | clib_warning ("why am I here?"); |
| 483 | return 0; |
| 484 | } |
| 485 | |
| 486 | /* |
| 487 | * vl_api_sockclnt_create_t_handler |
| 488 | */ |
| 489 | void |
| 490 | vl_api_sockclnt_create_t_handler (vl_api_sockclnt_create_t * mp) |
| 491 | { |
| 492 | vl_api_registration_t *regp; |
| 493 | vl_api_sockclnt_create_reply_t *rp; |
Dave Barach | 39d6911 | 2019-11-27 11:42:13 -0500 | [diff] [blame] | 494 | api_main_t *am = vlibapi_get_main (); |
Ole Troan | 94495f2 | 2018-08-02 11:58:12 +0200 | [diff] [blame] | 495 | hash_pair_t *hp; |
Florin Coras | 90a6398 | 2017-12-19 04:50:01 -0800 | [diff] [blame] | 496 | int rv = 0; |
Ole Troan | 94495f2 | 2018-08-02 11:58:12 +0200 | [diff] [blame] | 497 | u32 nmsg = hash_elts (am->msg_index_by_name_and_crc); |
| 498 | u32 i = 0; |
Dave Barach | 59b2565 | 2017-09-10 15:04:27 -0400 | [diff] [blame] | 499 | |
| 500 | regp = socket_main.current_rp; |
| 501 | |
Filip Tehlar | 36217e3 | 2021-07-23 08:51:10 +0000 | [diff] [blame] | 502 | /* client already connected through shared memory? */ |
| 503 | if (!regp || regp->registration_type != REGISTRATION_TYPE_SOCKET_SERVER) |
| 504 | { |
| 505 | clib_warning ( |
| 506 | "unsupported API call: already connected though shared memory?"); |
| 507 | return; |
| 508 | } |
Dave Barach | 59b2565 | 2017-09-10 15:04:27 -0400 | [diff] [blame] | 509 | |
Ole Troan | 7adaa22 | 2019-08-27 15:05:27 +0200 | [diff] [blame] | 510 | regp->name = format (0, "%s%c", mp->name, 0); |
Dave Barach | 59b2565 | 2017-09-10 15:04:27 -0400 | [diff] [blame] | 511 | |
Ole Troan | 94495f2 | 2018-08-02 11:58:12 +0200 | [diff] [blame] | 512 | u32 size = sizeof (*rp) + (nmsg * sizeof (vl_api_message_table_entry_t)); |
Vratko Polak | fc4828c | 2019-07-02 11:07:24 +0200 | [diff] [blame] | 513 | rp = vl_msg_api_alloc_zero (size); |
Dave Barach | 59b2565 | 2017-09-10 15:04:27 -0400 | [diff] [blame] | 514 | rp->_vl_msg_id = htons (VL_API_SOCKCLNT_CREATE_REPLY); |
Florin Coras | 2881dec | 2018-10-02 18:29:25 -0700 | [diff] [blame] | 515 | rp->index = htonl (sock_api_registration_handle (regp)); |
Dave Barach | 59b2565 | 2017-09-10 15:04:27 -0400 | [diff] [blame] | 516 | rp->context = mp->context; |
| 517 | rp->response = htonl (rv); |
Ole Troan | 94495f2 | 2018-08-02 11:58:12 +0200 | [diff] [blame] | 518 | rp->count = htons (nmsg); |
Dave Barach | 59b2565 | 2017-09-10 15:04:27 -0400 | [diff] [blame] | 519 | |
Ole Troan | 94495f2 | 2018-08-02 11:58:12 +0200 | [diff] [blame] | 520 | /* *INDENT-OFF* */ |
| 521 | hash_foreach_pair (hp, am->msg_index_by_name_and_crc, |
| 522 | ({ |
| 523 | rp->message_table[i].index = htons(hp->value[0]); |
Dave Barach | a6ef36b | 2020-02-11 10:29:13 -0500 | [diff] [blame] | 524 | (void) strncpy_s((char *)rp->message_table[i].name, |
| 525 | 64 /* bytes of space at dst */, |
| 526 | (char *)hp->key, |
| 527 | 64-1 /* chars to copy, without zero byte. */); |
Ole Troan | 94495f2 | 2018-08-02 11:58:12 +0200 | [diff] [blame] | 528 | i++; |
| 529 | })); |
| 530 | /* *INDENT-ON* */ |
Florin Coras | e86a8ed | 2018-01-05 03:20:25 -0800 | [diff] [blame] | 531 | vl_api_send_msg (regp, (u8 *) rp); |
Dave Barach | 59b2565 | 2017-09-10 15:04:27 -0400 | [diff] [blame] | 532 | } |
| 533 | |
| 534 | /* |
| 535 | * vl_api_sockclnt_delete_t_handler |
| 536 | */ |
| 537 | void |
| 538 | vl_api_sockclnt_delete_t_handler (vl_api_sockclnt_delete_t * mp) |
| 539 | { |
| 540 | vl_api_registration_t *regp; |
| 541 | vl_api_sockclnt_delete_reply_t *rp; |
| 542 | |
Ole Troan | 94495f2 | 2018-08-02 11:58:12 +0200 | [diff] [blame] | 543 | regp = vl_api_client_index_to_registration (mp->client_index); |
| 544 | if (!regp) |
| 545 | return; |
| 546 | |
Ole Troan | 3c1cf2c | 2019-01-05 11:27:54 +0100 | [diff] [blame] | 547 | u32 reg_index = socket_api_registration_handle_to_index (ntohl (mp->index)); |
Ole Troan | 94495f2 | 2018-08-02 11:58:12 +0200 | [diff] [blame] | 548 | rp = vl_msg_api_alloc (sizeof (*rp)); |
| 549 | rp->_vl_msg_id = htons (VL_API_SOCKCLNT_DELETE_REPLY); |
| 550 | rp->context = mp->context; |
| 551 | |
| 552 | if (!pool_is_free_index (socket_main.registration_pool, reg_index)) |
Dave Barach | 59b2565 | 2017-09-10 15:04:27 -0400 | [diff] [blame] | 553 | { |
Dave Barach | 59b2565 | 2017-09-10 15:04:27 -0400 | [diff] [blame] | 554 | rp->response = htonl (1); |
Florin Coras | e86a8ed | 2018-01-05 03:20:25 -0800 | [diff] [blame] | 555 | vl_api_send_msg (regp, (u8 *) rp); |
Dave Barach | 59b2565 | 2017-09-10 15:04:27 -0400 | [diff] [blame] | 556 | |
Florin Coras | b384b54 | 2018-01-15 01:08:33 -0800 | [diff] [blame] | 557 | vl_api_registration_del_file (regp); |
Ole Troan | 94495f2 | 2018-08-02 11:58:12 +0200 | [diff] [blame] | 558 | vl_socket_free_registration_index (reg_index); |
Dave Barach | 59b2565 | 2017-09-10 15:04:27 -0400 | [diff] [blame] | 559 | } |
| 560 | else |
| 561 | { |
Ole Troan | 94495f2 | 2018-08-02 11:58:12 +0200 | [diff] [blame] | 562 | clib_warning ("unknown client ID %d", reg_index); |
| 563 | rp->response = htonl (-1); |
| 564 | vl_api_send_msg (regp, (u8 *) rp); |
Dave Barach | 59b2565 | 2017-09-10 15:04:27 -0400 | [diff] [blame] | 565 | } |
| 566 | } |
| 567 | |
Florin Coras | b384b54 | 2018-01-15 01:08:33 -0800 | [diff] [blame] | 568 | clib_error_t * |
Florin Coras | 466f289 | 2018-08-03 02:50:43 -0700 | [diff] [blame] | 569 | vl_sock_api_send_fd_msg (int socket_fd, int fds[], int n_fds) |
Dave Barach | 59b2565 | 2017-09-10 15:04:27 -0400 | [diff] [blame] | 570 | { |
| 571 | struct msghdr mh = { 0 }; |
| 572 | struct iovec iov[1]; |
Florin Coras | 9936831 | 2018-08-02 10:45:44 -0700 | [diff] [blame] | 573 | char ctl[CMSG_SPACE (sizeof (int) * n_fds)]; |
Florin Coras | 466f289 | 2018-08-03 02:50:43 -0700 | [diff] [blame] | 574 | struct cmsghdr *cmsg; |
| 575 | char *msg = "fdmsg"; |
Dave Barach | 59b2565 | 2017-09-10 15:04:27 -0400 | [diff] [blame] | 576 | int rv; |
| 577 | |
| 578 | iov[0].iov_base = msg; |
| 579 | iov[0].iov_len = strlen (msg); |
| 580 | mh.msg_iov = iov; |
| 581 | mh.msg_iovlen = 1; |
| 582 | |
Dave Barach | b7b9299 | 2018-10-17 10:38:51 -0400 | [diff] [blame] | 583 | clib_memset (&ctl, 0, sizeof (ctl)); |
Dave Barach | 59b2565 | 2017-09-10 15:04:27 -0400 | [diff] [blame] | 584 | mh.msg_control = ctl; |
| 585 | mh.msg_controllen = sizeof (ctl); |
| 586 | cmsg = CMSG_FIRSTHDR (&mh); |
Florin Coras | 466f289 | 2018-08-03 02:50:43 -0700 | [diff] [blame] | 587 | cmsg->cmsg_len = CMSG_LEN (sizeof (int) * n_fds); |
Dave Barach | 59b2565 | 2017-09-10 15:04:27 -0400 | [diff] [blame] | 588 | cmsg->cmsg_level = SOL_SOCKET; |
| 589 | cmsg->cmsg_type = SCM_RIGHTS; |
Dave Barach | 178cf49 | 2018-11-13 16:34:13 -0500 | [diff] [blame] | 590 | clib_memcpy_fast (CMSG_DATA (cmsg), fds, sizeof (int) * n_fds); |
Dave Barach | 59b2565 | 2017-09-10 15:04:27 -0400 | [diff] [blame] | 591 | |
Florin Coras | 587ea45 | 2020-08-17 20:46:34 -0700 | [diff] [blame] | 592 | while ((rv = sendmsg (socket_fd, &mh, 0)) < 0 && errno == EAGAIN) |
| 593 | ; |
Dave Barach | 59b2565 | 2017-09-10 15:04:27 -0400 | [diff] [blame] | 594 | if (rv < 0) |
| 595 | return clib_error_return_unix (0, "sendmsg"); |
| 596 | return 0; |
| 597 | } |
| 598 | |
Florin Coras | 90a6398 | 2017-12-19 04:50:01 -0800 | [diff] [blame] | 599 | vl_api_shm_elem_config_t * |
| 600 | vl_api_make_shm_config (vl_api_sock_init_shm_t * mp) |
| 601 | { |
| 602 | vl_api_shm_elem_config_t *config = 0, *c; |
| 603 | u64 cfg; |
| 604 | int i; |
| 605 | |
| 606 | if (!mp->nitems) |
| 607 | { |
Dave Barach | 7895872 | 2018-05-10 16:44:27 -0400 | [diff] [blame] | 608 | vec_validate (config, 6); |
Florin Coras | 90a6398 | 2017-12-19 04:50:01 -0800 | [diff] [blame] | 609 | config[0].type = VL_API_VLIB_RING; |
Florin Coras | 90a6398 | 2017-12-19 04:50:01 -0800 | [diff] [blame] | 610 | config[0].size = 256; |
Dave Barach | 7895872 | 2018-05-10 16:44:27 -0400 | [diff] [blame] | 611 | config[0].count = 32; |
| 612 | |
| 613 | config[1].type = VL_API_VLIB_RING; |
Florin Coras | 90a6398 | 2017-12-19 04:50:01 -0800 | [diff] [blame] | 614 | config[1].size = 1024; |
Dave Barach | 7895872 | 2018-05-10 16:44:27 -0400 | [diff] [blame] | 615 | config[1].count = 16; |
| 616 | |
| 617 | config[2].type = VL_API_VLIB_RING; |
Florin Coras | 90a6398 | 2017-12-19 04:50:01 -0800 | [diff] [blame] | 618 | config[2].size = 4096; |
Dave Barach | 7895872 | 2018-05-10 16:44:27 -0400 | [diff] [blame] | 619 | config[2].count = 2; |
| 620 | |
| 621 | config[3].type = VL_API_CLIENT_RING; |
| 622 | config[3].size = 256; |
| 623 | config[3].count = 32; |
| 624 | |
| 625 | config[4].type = VL_API_CLIENT_RING; |
| 626 | config[4].size = 1024; |
| 627 | config[4].count = 16; |
| 628 | |
| 629 | config[5].type = VL_API_CLIENT_RING; |
| 630 | config[5].size = 4096; |
| 631 | config[5].count = 2; |
| 632 | |
| 633 | config[6].type = VL_API_QUEUE; |
| 634 | config[6].count = 128; |
| 635 | config[6].size = sizeof (uword); |
Florin Coras | 90a6398 | 2017-12-19 04:50:01 -0800 | [diff] [blame] | 636 | } |
| 637 | else |
| 638 | { |
| 639 | vec_validate (config, mp->nitems - 1); |
| 640 | for (i = 0; i < mp->nitems; i++) |
| 641 | { |
| 642 | cfg = mp->configs[i]; |
| 643 | /* Pretty much a hack but it avoids defining our own api type |
| 644 | * in memclnt.api */ |
| 645 | c = (vl_api_shm_elem_config_t *) & cfg; |
| 646 | config[i].type = c->type; |
| 647 | config[i].count = c->count; |
| 648 | config[i].size = c->size; |
| 649 | } |
| 650 | } |
| 651 | return config; |
| 652 | } |
| 653 | |
Dave Barach | 59b2565 | 2017-09-10 15:04:27 -0400 | [diff] [blame] | 654 | /* |
Florin Coras | 90a6398 | 2017-12-19 04:50:01 -0800 | [diff] [blame] | 655 | * Bootstrap shm api using the socket api |
Dave Barach | 59b2565 | 2017-09-10 15:04:27 -0400 | [diff] [blame] | 656 | */ |
| 657 | void |
Florin Coras | 90a6398 | 2017-12-19 04:50:01 -0800 | [diff] [blame] | 658 | vl_api_sock_init_shm_t_handler (vl_api_sock_init_shm_t * mp) |
Dave Barach | 59b2565 | 2017-09-10 15:04:27 -0400 | [diff] [blame] | 659 | { |
Florin Coras | 90a6398 | 2017-12-19 04:50:01 -0800 | [diff] [blame] | 660 | vl_api_sock_init_shm_reply_t *rmp; |
Florin Coras | 4d9b9d8 | 2018-01-14 12:25:50 -0800 | [diff] [blame] | 661 | ssvm_private_t _memfd_private, *memfd = &_memfd_private; |
Dave Barach | 59b2565 | 2017-09-10 15:04:27 -0400 | [diff] [blame] | 662 | svm_map_region_args_t _args, *a = &_args; |
Florin Coras | 90a6398 | 2017-12-19 04:50:01 -0800 | [diff] [blame] | 663 | vl_api_registration_t *regp; |
Dave Barach | 39d6911 | 2019-11-27 11:42:13 -0500 | [diff] [blame] | 664 | api_main_t *am = vlibapi_get_main (); |
Dave Barach | 59b2565 | 2017-09-10 15:04:27 -0400 | [diff] [blame] | 665 | svm_region_t *vlib_rp; |
Florin Coras | 90a6398 | 2017-12-19 04:50:01 -0800 | [diff] [blame] | 666 | clib_file_t *cf; |
| 667 | vl_api_shm_elem_config_t *config = 0; |
Florin Coras | b384b54 | 2018-01-15 01:08:33 -0800 | [diff] [blame] | 668 | vl_shmem_hdr_t *shmem_hdr; |
Florin Coras | 1f30a59 | 2019-05-08 19:57:24 -0700 | [diff] [blame] | 669 | int rv, tries = 1000; |
Dave Barach | 59b2565 | 2017-09-10 15:04:27 -0400 | [diff] [blame] | 670 | |
| 671 | regp = vl_api_client_index_to_registration (mp->client_index); |
Dave Barach | 59b2565 | 2017-09-10 15:04:27 -0400 | [diff] [blame] | 672 | if (regp == 0) |
| 673 | { |
| 674 | clib_warning ("API client disconnected"); |
| 675 | return; |
| 676 | } |
Dave Barach | 59b2565 | 2017-09-10 15:04:27 -0400 | [diff] [blame] | 677 | if (regp->registration_type != REGISTRATION_TYPE_SOCKET_SERVER) |
| 678 | { |
wanghanlin | ec2c4c4 | 2021-03-02 17:18:06 +0800 | [diff] [blame] | 679 | clib_warning ("Invalid registration"); |
| 680 | return; |
Dave Barach | 59b2565 | 2017-09-10 15:04:27 -0400 | [diff] [blame] | 681 | } |
| 682 | |
Florin Coras | 90a6398 | 2017-12-19 04:50:01 -0800 | [diff] [blame] | 683 | /* |
| 684 | * Set up a memfd segment of the requested size wherein the |
| 685 | * shmem data structures will be initialized |
| 686 | */ |
Dave Barach | b7b9299 | 2018-10-17 10:38:51 -0400 | [diff] [blame] | 687 | clib_memset (memfd, 0, sizeof (*memfd)); |
Florin Coras | 4d9b9d8 | 2018-01-14 12:25:50 -0800 | [diff] [blame] | 688 | memfd->ssvm_size = mp->requested_size; |
Dave Barach | 59b2565 | 2017-09-10 15:04:27 -0400 | [diff] [blame] | 689 | memfd->requested_va = 0ULL; |
Florin Coras | 5220a26 | 2020-09-29 18:11:24 -0700 | [diff] [blame] | 690 | memfd->is_server = 1; |
Dave Barach | 59b2565 | 2017-09-10 15:04:27 -0400 | [diff] [blame] | 691 | memfd->name = format (0, "%s%c", regp->name, 0); |
| 692 | |
Florin Coras | 5220a26 | 2020-09-29 18:11:24 -0700 | [diff] [blame] | 693 | if ((rv = ssvm_server_init_memfd (memfd))) |
Dave Barach | 59b2565 | 2017-09-10 15:04:27 -0400 | [diff] [blame] | 694 | goto reply; |
| 695 | |
Benoît Ganne | df601ae | 2020-10-20 14:31:55 +0200 | [diff] [blame] | 696 | /* delete the unused heap created in ssvm_server_init_memfd and mark it |
| 697 | * accessible again for ASAN */ |
| 698 | clib_mem_destroy_heap (memfd->sh->heap); |
Damjan Marion | 79934e8 | 2022-04-05 12:40:31 +0200 | [diff] [blame] | 699 | clib_mem_unpoison ((void *) memfd->sh->ssvm_va, memfd->ssvm_size); |
Benoît Ganne | df601ae | 2020-10-20 14:31:55 +0200 | [diff] [blame] | 700 | |
Dave Barach | 59b2565 | 2017-09-10 15:04:27 -0400 | [diff] [blame] | 701 | /* Remember to close this fd when the socket connection goes away */ |
| 702 | vec_add1 (regp->additional_fds_to_close, memfd->fd); |
| 703 | |
Florin Coras | 90a6398 | 2017-12-19 04:50:01 -0800 | [diff] [blame] | 704 | /* |
| 705 | * Create a plausible svm_region in the memfd backed segment |
| 706 | */ |
Dave Barach | b7b9299 | 2018-10-17 10:38:51 -0400 | [diff] [blame] | 707 | clib_memset (a, 0, sizeof (*a)); |
Florin Coras | 4d9b9d8 | 2018-01-14 12:25:50 -0800 | [diff] [blame] | 708 | a->baseva = memfd->sh->ssvm_va + MMAP_PAGESIZE; |
| 709 | a->size = memfd->ssvm_size - MMAP_PAGESIZE; |
Dave Barach | 59b2565 | 2017-09-10 15:04:27 -0400 | [diff] [blame] | 710 | /* $$$$ might want a different config parameter */ |
| 711 | a->pvt_heap_size = am->api_pvt_heap_size; |
| 712 | a->flags = SVM_FLAGS_MHEAP; |
| 713 | svm_region_init_mapped_region (a, (svm_region_t *) a->baseva); |
| 714 | |
Dave Barach | 59b2565 | 2017-09-10 15:04:27 -0400 | [diff] [blame] | 715 | /* |
| 716 | * Part deux, initialize the svm_region_t shared-memory header |
| 717 | * api allocation rings, and so on. |
| 718 | */ |
Florin Coras | 90a6398 | 2017-12-19 04:50:01 -0800 | [diff] [blame] | 719 | config = vl_api_make_shm_config (mp); |
| 720 | vlib_rp = (svm_region_t *) a->baseva; |
| 721 | vl_init_shmem (vlib_rp, config, 1 /* is_vlib (dont-care) */ , |
| 722 | 1 /* is_private */ ); |
Florin Coras | b384b54 | 2018-01-15 01:08:33 -0800 | [diff] [blame] | 723 | |
| 724 | /* Remember who created this. Needs to be post vl_init_shmem */ |
| 725 | shmem_hdr = (vl_shmem_hdr_t *) vlib_rp->user_ctx; |
| 726 | shmem_hdr->clib_file_index = vl_api_registration_file_index (regp); |
| 727 | |
Dave Barach | 59b2565 | 2017-09-10 15:04:27 -0400 | [diff] [blame] | 728 | vec_add1 (am->vlib_private_rps, vlib_rp); |
Dave Barach | 59b2565 | 2017-09-10 15:04:27 -0400 | [diff] [blame] | 729 | memfd->sh->ready = 1; |
Florin Coras | 90a6398 | 2017-12-19 04:50:01 -0800 | [diff] [blame] | 730 | vec_free (config); |
Dave Barach | 59b2565 | 2017-09-10 15:04:27 -0400 | [diff] [blame] | 731 | |
| 732 | /* Recompute the set of input queues to poll in memclnt_process */ |
| 733 | vec_reset_length (vl_api_queue_cursizes); |
| 734 | |
| 735 | reply: |
| 736 | |
Florin Coras | 90a6398 | 2017-12-19 04:50:01 -0800 | [diff] [blame] | 737 | rmp = vl_msg_api_alloc (sizeof (*rmp)); |
| 738 | rmp->_vl_msg_id = htons (VL_API_SOCK_INIT_SHM_REPLY); |
| 739 | rmp->context = mp->context; |
| 740 | rmp->retval = htonl (rv); |
| 741 | |
Florin Coras | 8023ad4 | 2018-08-02 12:16:03 -0700 | [diff] [blame] | 742 | /* |
| 743 | * Note: The reply message needs to make it out the back door |
| 744 | * before we send the magic fd message. That's taken care of by |
| 745 | * the send function. |
| 746 | */ |
| 747 | vl_socket_api_send (regp, (u8 *) rmp); |
Florin Coras | 90a6398 | 2017-12-19 04:50:01 -0800 | [diff] [blame] | 748 | |
| 749 | if (rv != 0) |
| 750 | return; |
| 751 | |
Florin Coras | 90a6398 | 2017-12-19 04:50:01 -0800 | [diff] [blame] | 752 | /* Send the magic "here's your sign (aka fd)" socket message */ |
Florin Coras | 8023ad4 | 2018-08-02 12:16:03 -0700 | [diff] [blame] | 753 | cf = vl_api_registration_file (regp); |
wanghanlin | ec2c4c4 | 2021-03-02 17:18:06 +0800 | [diff] [blame] | 754 | if (!cf) |
| 755 | { |
| 756 | clib_warning ("cf removed"); |
| 757 | return; |
| 758 | } |
Florin Coras | 1f30a59 | 2019-05-08 19:57:24 -0700 | [diff] [blame] | 759 | |
| 760 | /* Wait for reply to be consumed before sending the fd */ |
| 761 | while (tries-- > 0) |
| 762 | { |
| 763 | int bytes; |
| 764 | rv = ioctl (cf->file_descriptor, TIOCOUTQ, &bytes); |
| 765 | if (rv < 0) |
| 766 | { |
| 767 | clib_unix_warning ("ioctl returned"); |
| 768 | break; |
| 769 | } |
| 770 | if (bytes == 0) |
| 771 | break; |
| 772 | usleep (1e3); |
| 773 | } |
| 774 | |
Florin Coras | 466f289 | 2018-08-03 02:50:43 -0700 | [diff] [blame] | 775 | vl_sock_api_send_fd_msg (cf->file_descriptor, &memfd->fd, 1); |
Florin Coras | 90a6398 | 2017-12-19 04:50:01 -0800 | [diff] [blame] | 776 | } |
| 777 | |
Filip Tehlar | 36217e3 | 2021-07-23 08:51:10 +0000 | [diff] [blame] | 778 | #define foreach_vlib_api_msg \ |
| 779 | _ (SOCKCLNT_CREATE, sockclnt_create, 0) \ |
| 780 | _ (SOCKCLNT_DELETE, sockclnt_delete, 0) \ |
| 781 | _ (SOCK_INIT_SHM, sock_init_shm, 0) |
Dave Barach | 59b2565 | 2017-09-10 15:04:27 -0400 | [diff] [blame] | 782 | |
| 783 | clib_error_t * |
Florin Coras | e86a8ed | 2018-01-05 03:20:25 -0800 | [diff] [blame] | 784 | vl_sock_api_init (vlib_main_t * vm) |
Dave Barach | 59b2565 | 2017-09-10 15:04:27 -0400 | [diff] [blame] | 785 | { |
Filip Tehlar | 36217e3 | 2021-07-23 08:51:10 +0000 | [diff] [blame] | 786 | api_main_t *am = vlibapi_get_main (); |
Dave Barach | 59b2565 | 2017-09-10 15:04:27 -0400 | [diff] [blame] | 787 | clib_file_main_t *fm = &file_main; |
| 788 | clib_file_t template = { 0 }; |
| 789 | vl_api_registration_t *rp; |
Dave Barach | 59b2565 | 2017-09-10 15:04:27 -0400 | [diff] [blame] | 790 | socket_main_t *sm = &socket_main; |
| 791 | clib_socket_t *sock = &sm->socksvr_listen_socket; |
| 792 | clib_error_t *error; |
| 793 | |
| 794 | /* If not explicitly configured, do not bind/enable, etc. */ |
| 795 | if (sm->socket_name == 0) |
| 796 | return 0; |
| 797 | |
Filip Tehlar | 36217e3 | 2021-07-23 08:51:10 +0000 | [diff] [blame] | 798 | #define _(N, n, t) \ |
Damjan Marion | a2eb507 | 2022-05-20 20:06:01 +0200 | [diff] [blame] | 799 | vl_msg_api_config (&(vl_msg_api_msg_config_t){ \ |
| 800 | .id = VL_API_##N, \ |
| 801 | .name = #n, \ |
| 802 | .handler = vl_api_##n##_t_handler, \ |
| 803 | .endian = vl_api_##n##_t_endian, \ |
| 804 | .format_fn = vl_api_##n##_t_format, \ |
| 805 | .size = sizeof (vl_api_##n##_t), \ |
| 806 | .traced = t, \ |
| 807 | .tojson = vl_api_##n##_t_tojson, \ |
| 808 | .fromjson = vl_api_##n##_t_fromjson, \ |
| 809 | .calc_size = vl_api_##n##_t_calc_size, \ |
| 810 | }); \ |
Damjan Marion | cada9eb | 2022-05-18 22:16:11 +0200 | [diff] [blame] | 811 | am->msg_data[VL_API_##N].replay_allowed = 0; |
Dave Barach | 59b2565 | 2017-09-10 15:04:27 -0400 | [diff] [blame] | 812 | foreach_vlib_api_msg; |
| 813 | #undef _ |
| 814 | |
| 815 | vec_resize (sm->input_buffer, 4096); |
| 816 | |
| 817 | sock->config = (char *) sm->socket_name; |
Ole Troan | 4ff09ae | 2019-04-15 11:27:22 +0200 | [diff] [blame] | 818 | sock->flags = CLIB_SOCKET_F_IS_SERVER | CLIB_SOCKET_F_ALLOW_GROUP_WRITE; |
Dave Barach | 59b2565 | 2017-09-10 15:04:27 -0400 | [diff] [blame] | 819 | error = clib_socket_init (sock); |
| 820 | if (error) |
| 821 | return error; |
| 822 | |
| 823 | pool_get (sm->registration_pool, rp); |
Dave Barach | b7b9299 | 2018-10-17 10:38:51 -0400 | [diff] [blame] | 824 | clib_memset (rp, 0, sizeof (*rp)); |
Dave Barach | 59b2565 | 2017-09-10 15:04:27 -0400 | [diff] [blame] | 825 | |
| 826 | rp->registration_type = REGISTRATION_TYPE_SOCKET_LISTEN; |
| 827 | |
| 828 | template.read_function = socksvr_accept_ready; |
| 829 | template.write_function = socksvr_bogus_write; |
| 830 | template.file_descriptor = sock->fd; |
Paul Vinciguerra | 5481ad4 | 2020-01-28 14:47:17 -0500 | [diff] [blame] | 831 | template.description = format (0, "socksvr %s", sock->config); |
Dave Barach | 59b2565 | 2017-09-10 15:04:27 -0400 | [diff] [blame] | 832 | template.private_data = rp - sm->registration_pool; |
| 833 | |
| 834 | rp->clib_file_index = clib_file_add (fm, &template); |
| 835 | return 0; |
| 836 | } |
| 837 | |
| 838 | static clib_error_t * |
| 839 | socket_exit (vlib_main_t * vm) |
| 840 | { |
Dave Barach | 59b2565 | 2017-09-10 15:04:27 -0400 | [diff] [blame] | 841 | socket_main_t *sm = &socket_main; |
| 842 | vl_api_registration_t *rp; |
| 843 | |
| 844 | /* Defensive driving in case something wipes out early */ |
| 845 | if (sm->registration_pool) |
| 846 | { |
| 847 | u32 index; |
| 848 | /* *INDENT-OFF* */ |
Damjan Marion | b2c31b6 | 2020-12-13 21:47:40 +0100 | [diff] [blame] | 849 | pool_foreach (rp, sm->registration_pool) { |
Florin Coras | b384b54 | 2018-01-15 01:08:33 -0800 | [diff] [blame] | 850 | vl_api_registration_del_file (rp); |
| 851 | index = rp->vl_api_registration_pool_index; |
| 852 | vl_socket_free_registration_index (index); |
Damjan Marion | b2c31b6 | 2020-12-13 21:47:40 +0100 | [diff] [blame] | 853 | } |
Dave Barach | 59b2565 | 2017-09-10 15:04:27 -0400 | [diff] [blame] | 854 | /* *INDENT-ON* */ |
| 855 | } |
| 856 | |
| 857 | return 0; |
| 858 | } |
| 859 | |
| 860 | VLIB_MAIN_LOOP_EXIT_FUNCTION (socket_exit); |
| 861 | |
| 862 | static clib_error_t * |
| 863 | socksvr_config (vlib_main_t * vm, unformat_input_t * input) |
| 864 | { |
| 865 | socket_main_t *sm = &socket_main; |
| 866 | |
| 867 | while (unformat_check_input (input) != UNFORMAT_END_OF_INPUT) |
| 868 | { |
| 869 | if (unformat (input, "socket-name %s", &sm->socket_name)) |
| 870 | ; |
Ole Troan | 6595ff7 | 2019-08-07 13:41:39 +0200 | [diff] [blame] | 871 | /* DEPRECATE: default keyword is ignored */ |
Dave Barach | 59b2565 | 2017-09-10 15:04:27 -0400 | [diff] [blame] | 872 | else if (unformat (input, "default")) |
Ole Troan | 6595ff7 | 2019-08-07 13:41:39 +0200 | [diff] [blame] | 873 | ; |
Dave Barach | 59b2565 | 2017-09-10 15:04:27 -0400 | [diff] [blame] | 874 | else |
| 875 | { |
| 876 | return clib_error_return (0, "unknown input '%U'", |
| 877 | format_unformat_error, input); |
| 878 | } |
| 879 | } |
Ole Troan | 6595ff7 | 2019-08-07 13:41:39 +0200 | [diff] [blame] | 880 | |
| 881 | if (!vec_len (sm->socket_name)) |
| 882 | sm->socket_name = format (0, "%s/%s", vlib_unix_get_runtime_dir (), |
| 883 | API_SOCKET_FILENAME); |
| 884 | vec_terminate_c_string (sm->socket_name); |
| 885 | |
Dave Barach | 59b2565 | 2017-09-10 15:04:27 -0400 | [diff] [blame] | 886 | return 0; |
| 887 | } |
| 888 | |
| 889 | VLIB_CONFIG_FUNCTION (socksvr_config, "socksvr"); |
| 890 | |
Dave Barach | f8d5068 | 2019-05-14 18:01:44 -0400 | [diff] [blame] | 891 | void |
| 892 | vlibsocket_reference () |
Dave Barach | 59b2565 | 2017-09-10 15:04:27 -0400 | [diff] [blame] | 893 | { |
Dave Barach | 59b2565 | 2017-09-10 15:04:27 -0400 | [diff] [blame] | 894 | } |
| 895 | |
Dave Barach | 59b2565 | 2017-09-10 15:04:27 -0400 | [diff] [blame] | 896 | /* |
| 897 | * fd.io coding-style-patch-verification: ON |
| 898 | * |
| 899 | * Local Variables: |
| 900 | * eval: (c-set-style "gnu") |
| 901 | * End: |
| 902 | */ |