Damjan Marion | 7cd468a | 2016-12-19 23:05:39 +0100 | [diff] [blame] | 1 | /* |
| 2 | *------------------------------------------------------------------ |
Damjan Marion | 7cd468a | 2016-12-19 23:05:39 +0100 | [diff] [blame] | 3 | * Copyright (c) 2009 Cisco and/or its affiliates. |
| 4 | * Licensed under the Apache License, Version 2.0 (the "License"); |
| 5 | * you may not use this file except in compliance with the License. |
| 6 | * You may obtain a copy of the License at: |
| 7 | * |
| 8 | * http://www.apache.org/licenses/LICENSE-2.0 |
| 9 | * |
| 10 | * Unless required by applicable law or agreed to in writing, software |
| 11 | * distributed under the License is distributed on an "AS IS" BASIS, |
| 12 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 13 | * See the License for the specific language governing permissions and |
| 14 | * limitations under the License. |
| 15 | *------------------------------------------------------------------ |
| 16 | */ |
| 17 | |
Florin Coras | e86a8ed | 2018-01-05 03:20:25 -0800 | [diff] [blame] | 18 | #ifndef included_vlibmemory_api_common_h |
| 19 | #define included_vlibmemory_api_common_h |
Damjan Marion | 7cd468a | 2016-12-19 23:05:39 +0100 | [diff] [blame] | 20 | |
Florin Coras | e86a8ed | 2018-01-05 03:20:25 -0800 | [diff] [blame] | 21 | #include <svm/svm_common.h> |
Damjan Marion | 7cd468a | 2016-12-19 23:05:39 +0100 | [diff] [blame] | 22 | #include <vlibapi/api.h> |
Florin Coras | e86a8ed | 2018-01-05 03:20:25 -0800 | [diff] [blame] | 23 | #include <vlibmemory/memory_api.h> |
| 24 | #include <vlibmemory/memory_client.h> |
| 25 | #include <vlibmemory/socket_api.h> |
| 26 | #include <vlibmemory/socket_client.h> |
Damjan Marion | 7cd468a | 2016-12-19 23:05:39 +0100 | [diff] [blame] | 27 | |
Florin Coras | e86a8ed | 2018-01-05 03:20:25 -0800 | [diff] [blame] | 28 | void vl_api_rpc_call_main_thread (void *fp, u8 * data, u32 data_length); |
| 29 | u16 vl_client_get_first_plugin_msg_id (const char *plugin_name); |
| 30 | void vl_api_send_pending_rpc_requests (vlib_main_t * vm); |
| 31 | u8 *vl_api_serialize_message_table (api_main_t * am, u8 * vector); |
| 32 | |
| 33 | always_inline void |
| 34 | vl_api_send_msg (vl_api_registration_t * rp, u8 * elem) |
Damjan Marion | 7cd468a | 2016-12-19 23:05:39 +0100 | [diff] [blame] | 35 | { |
Florin Coras | e86a8ed | 2018-01-05 03:20:25 -0800 | [diff] [blame] | 36 | if (PREDICT_FALSE (rp->registration_type > REGISTRATION_TYPE_SHMEM)) |
| 37 | { |
| 38 | vl_socket_api_send (rp, elem); |
| 39 | } |
| 40 | else |
| 41 | { |
| 42 | vl_msg_api_send_shmem (rp->vl_input_queue, (u8 *) & elem); |
| 43 | } |
Damjan Marion | 7cd468a | 2016-12-19 23:05:39 +0100 | [diff] [blame] | 44 | } |
| 45 | |
Florin Coras | af0ff5a | 2018-01-10 08:17:03 -0800 | [diff] [blame] | 46 | always_inline int |
| 47 | vl_api_can_send_msg (vl_api_registration_t * rp) |
| 48 | { |
| 49 | if (PREDICT_FALSE (rp->registration_type > REGISTRATION_TYPE_SHMEM)) |
| 50 | return 1; |
| 51 | else |
| 52 | return vl_mem_api_can_send (rp->vl_input_queue); |
| 53 | } |
| 54 | |
Florin Coras | e86a8ed | 2018-01-05 03:20:25 -0800 | [diff] [blame] | 55 | always_inline vl_api_registration_t * |
| 56 | vl_api_client_index_to_registration (u32 index) |
Damjan Marion | 7cd468a | 2016-12-19 23:05:39 +0100 | [diff] [blame] | 57 | { |
Florin Coras | 2881dec | 2018-10-02 18:29:25 -0700 | [diff] [blame] | 58 | if (vl_socket_api_registration_handle_is_valid (ntohl (index))) |
| 59 | return vl_socket_api_client_handle_to_registration (ntohl (index)); |
Ole Troan | 94495f2 | 2018-08-02 11:58:12 +0200 | [diff] [blame] | 60 | return vl_mem_api_client_index_to_registration (index); |
Damjan Marion | 7cd468a | 2016-12-19 23:05:39 +0100 | [diff] [blame] | 61 | } |
| 62 | |
Florin Coras | b384b54 | 2018-01-15 01:08:33 -0800 | [diff] [blame] | 63 | always_inline u32 |
| 64 | vl_api_registration_file_index (vl_api_registration_t * reg) |
| 65 | { |
| 66 | return reg->clib_file_index; |
| 67 | } |
| 68 | |
| 69 | always_inline clib_file_t * |
| 70 | vl_api_registration_file (vl_api_registration_t * reg) |
| 71 | { |
| 72 | return clib_file_get (&file_main, vl_api_registration_file_index (reg)); |
| 73 | } |
| 74 | |
| 75 | always_inline void |
| 76 | vl_api_registration_del_file (vl_api_registration_t * reg) |
| 77 | { |
| 78 | clib_file_t *cf = vl_api_registration_file (reg); |
| 79 | if (cf) |
| 80 | clib_file_del (&file_main, cf); |
| 81 | } |
| 82 | |
| 83 | always_inline clib_error_t * |
Florin Coras | 466f289 | 2018-08-03 02:50:43 -0700 | [diff] [blame] | 84 | vl_api_send_fd_msg (vl_api_registration_t * reg, int fds[], int n_fds) |
Florin Coras | b384b54 | 2018-01-15 01:08:33 -0800 | [diff] [blame] | 85 | { |
| 86 | clib_file_t *cf = vl_api_registration_file (reg); |
| 87 | if (cf) |
Florin Coras | 466f289 | 2018-08-03 02:50:43 -0700 | [diff] [blame] | 88 | return vl_sock_api_send_fd_msg (cf->file_descriptor, fds, n_fds); |
Florin Coras | b384b54 | 2018-01-15 01:08:33 -0800 | [diff] [blame] | 89 | return 0; |
| 90 | } |
| 91 | |
| 92 | always_inline clib_error_t * |
Florin Coras | 466f289 | 2018-08-03 02:50:43 -0700 | [diff] [blame] | 93 | vl_api_recv_fd_msg (vl_api_registration_t * reg, int fds[], int n_fds, |
| 94 | u32 wait) |
Florin Coras | b384b54 | 2018-01-15 01:08:33 -0800 | [diff] [blame] | 95 | { |
| 96 | clib_file_t *cf = vl_api_registration_file (reg); |
| 97 | if (cf) |
Florin Coras | 466f289 | 2018-08-03 02:50:43 -0700 | [diff] [blame] | 98 | return vl_sock_api_recv_fd_msg (cf->file_descriptor, fds, n_fds, wait); |
Florin Coras | b384b54 | 2018-01-15 01:08:33 -0800 | [diff] [blame] | 99 | return 0; |
| 100 | } |
| 101 | |
Florin Coras | e86a8ed | 2018-01-05 03:20:25 -0800 | [diff] [blame] | 102 | /* |
| 103 | * vl_api_clnt process data used by transports (socket api in particular) |
| 104 | */ |
| 105 | extern vlib_node_registration_t vl_api_clnt_node; |
| 106 | extern volatile int **vl_api_queue_cursizes; |
| 107 | |
| 108 | typedef enum vl_api_clnt_process_events |
Damjan Marion | 7cd468a | 2016-12-19 23:05:39 +0100 | [diff] [blame] | 109 | { |
Florin Coras | e86a8ed | 2018-01-05 03:20:25 -0800 | [diff] [blame] | 110 | QUEUE_SIGNAL_EVENT = 1, |
| 111 | SOCKET_READ_EVENT |
| 112 | } vl_api_clnt_process_events_t; |
Damjan Marion | 7cd468a | 2016-12-19 23:05:39 +0100 | [diff] [blame] | 113 | |
Florin Coras | e86a8ed | 2018-01-05 03:20:25 -0800 | [diff] [blame] | 114 | #define foreach_histogram_bucket \ |
| 115 | _(400) \ |
| 116 | _(200) \ |
| 117 | _(100) \ |
| 118 | _(10) |
Damjan Marion | 7cd468a | 2016-12-19 23:05:39 +0100 | [diff] [blame] | 119 | |
Florin Coras | e86a8ed | 2018-01-05 03:20:25 -0800 | [diff] [blame] | 120 | typedef enum |
| 121 | { |
| 122 | #define _(n) SLEEP_##n##_US, |
| 123 | foreach_histogram_bucket |
| 124 | #undef _ |
| 125 | SLEEP_N_BUCKETS, |
| 126 | } histogram_index_t; |
Dave Barach | 59b2565 | 2017-09-10 15:04:27 -0400 | [diff] [blame] | 127 | |
Florin Coras | e86a8ed | 2018-01-05 03:20:25 -0800 | [diff] [blame] | 128 | extern u64 vector_rate_histogram[]; |
| 129 | |
| 130 | /* |
| 131 | * sockclnt APIs XXX are these actually used anywhere? |
| 132 | */ |
| 133 | vl_api_registration_t *sockclnt_get_registration (u32 index); |
| 134 | void socksvr_add_pending_output (struct clib_file *uf, |
| 135 | struct vl_api_registration_ *cf, |
| 136 | u8 * buffer, uword buffer_bytes); |
| 137 | void vl_socket_process_msg (struct clib_file *uf, |
| 138 | struct vl_api_registration_ *rp, i8 * input_v); |
| 139 | u32 sockclnt_open_index (char *client_name, char *hostname, int port); |
| 140 | void sockclnt_close_index (u32 index); |
| 141 | void vl_client_msg_api_send (vl_api_registration_t * cm, u8 * elem); |
| 142 | |
| 143 | #endif /* included_vlibmemory_api_common_h */ |
Damjan Marion | 7cd468a | 2016-12-19 23:05:39 +0100 | [diff] [blame] | 144 | |
| 145 | /* |
| 146 | * fd.io coding-style-patch-verification: ON |
| 147 | * |
| 148 | * Local Variables: |
| 149 | * eval: (c-set-style "gnu") |
| 150 | * End: |
| 151 | */ |