Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1 | /* |
| 2 | * mc.h: vlib reliable sequenced multicast distributed applications |
| 3 | * |
| 4 | * Copyright (c) 2010 Cisco and/or its affiliates. |
| 5 | * Licensed under the Apache License, Version 2.0 (the "License"); |
| 6 | * you may not use this file except in compliance with the License. |
| 7 | * You may obtain a copy of the License at: |
| 8 | * |
| 9 | * http://www.apache.org/licenses/LICENSE-2.0 |
| 10 | * |
| 11 | * Unless required by applicable law or agreed to in writing, software |
| 12 | * distributed under the License is distributed on an "AS IS" BASIS, |
| 13 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 14 | * See the License for the specific language governing permissions and |
| 15 | * limitations under the License. |
| 16 | */ |
| 17 | |
| 18 | #ifndef included_vlib_mc_h |
| 19 | #define included_vlib_mc_h |
| 20 | |
| 21 | #include <vppinfra/elog.h> |
| 22 | #include <vppinfra/fifo.h> |
| 23 | #include <vppinfra/mhash.h> |
| 24 | #include <vlib/node.h> |
| 25 | |
| 26 | #ifndef MC_EVENT_LOGGING |
| 27 | #define MC_EVENT_LOGGING 1 |
| 28 | #endif |
| 29 | |
| 30 | always_inline uword |
| 31 | mc_need_byte_swap (void) |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 32 | { |
| 33 | return CLIB_ARCH_IS_LITTLE_ENDIAN; |
| 34 | } |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 35 | |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 36 | /* |
| 37 | * Used to uniquely identify hosts. |
| 38 | * For IP4 this would be ip4_address plus tcp/udp port. |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 39 | */ |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 40 | typedef union |
| 41 | { |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 42 | u8 as_u8[8]; |
| 43 | u64 as_u64; |
| 44 | } mc_peer_id_t; |
| 45 | |
| 46 | always_inline mc_peer_id_t |
| 47 | mc_byte_swap_peer_id (mc_peer_id_t i) |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 48 | { |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 49 | /* Peer id is already in network byte order. */ |
| 50 | return i; |
| 51 | } |
| 52 | |
| 53 | always_inline int |
| 54 | mc_peer_id_compare (mc_peer_id_t a, mc_peer_id_t b) |
| 55 | { |
| 56 | return memcmp (a.as_u8, b.as_u8, sizeof (a.as_u8)); |
| 57 | } |
| 58 | |
| 59 | /* Assert mastership. Lowest peer_id amount all peers wins mastership. |
| 60 | Only sent/received over mastership channel (MC_TRANSPORT_MASTERSHIP). |
| 61 | So, we don't need a message opcode. */ |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 62 | typedef CLIB_PACKED (struct |
| 63 | { |
| 64 | /* Peer id asserting mastership. */ |
| 65 | mc_peer_id_t peer_id; |
| 66 | /* Global sequence number asserted. */ |
| 67 | u32 global_sequence;}) mc_msg_master_assert_t; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 68 | |
| 69 | always_inline void |
| 70 | mc_byte_swap_msg_master_assert (mc_msg_master_assert_t * r) |
| 71 | { |
| 72 | if (mc_need_byte_swap ()) |
| 73 | { |
| 74 | r->peer_id = mc_byte_swap_peer_id (r->peer_id); |
| 75 | r->global_sequence = clib_byte_swap_u32 (r->global_sequence); |
| 76 | } |
| 77 | } |
| 78 | |
| 79 | #define foreach_mc_msg_type \ |
| 80 | _ (master_assert) \ |
| 81 | _ (join_or_leave_request) \ |
| 82 | _ (join_reply) \ |
| 83 | _ (user_request) \ |
| 84 | _ (user_ack) \ |
| 85 | _ (catchup_request) \ |
| 86 | _ (catchup_reply) |
| 87 | |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 88 | typedef enum |
| 89 | { |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 90 | #define _(f) MC_MSG_TYPE_##f, |
| 91 | foreach_mc_msg_type |
| 92 | #undef _ |
| 93 | } mc_relay_msg_type_t; |
| 94 | |
| 95 | /* Request to join a given stream. Multicast over MC_TRANSPORT_JOIN. */ |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 96 | typedef CLIB_PACKED (struct |
| 97 | { |
| 98 | mc_peer_id_t peer_id; mc_relay_msg_type_t type:32; |
Ed Warnicke | 853e720 | 2016-08-12 11:42:26 -0700 | [diff] [blame] | 99 | /* MC_MSG_TYPE_join_or_leave_request */ |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 100 | /* Stream to join or leave. */ |
| 101 | u32 stream_index; |
| 102 | /* join = 1, leave = 0 */ |
| 103 | u8 is_join;}) mc_msg_join_or_leave_request_t; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 104 | |
| 105 | always_inline void |
| 106 | mc_byte_swap_msg_join_or_leave_request (mc_msg_join_or_leave_request_t * r) |
| 107 | { |
| 108 | if (mc_need_byte_swap ()) |
| 109 | { |
| 110 | r->peer_id = mc_byte_swap_peer_id (r->peer_id); |
| 111 | r->type = clib_byte_swap_u32 (r->type); |
| 112 | r->stream_index = clib_byte_swap_u32 (r->stream_index); |
| 113 | } |
| 114 | } |
| 115 | |
| 116 | /* Join reply. Multicast over MC_TRANSPORT_JOIN. */ |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 117 | typedef CLIB_PACKED (struct |
| 118 | { |
| 119 | mc_peer_id_t peer_id; mc_relay_msg_type_t type:32; |
Ed Warnicke | 853e720 | 2016-08-12 11:42:26 -0700 | [diff] [blame] | 120 | /* MC_MSG_TYPE_join_reply */ |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 121 | u32 stream_index; |
| 122 | /* Peer ID to contact to catchup with this stream. */ |
| 123 | mc_peer_id_t catchup_peer_id;}) mc_msg_join_reply_t; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 124 | |
| 125 | always_inline void |
| 126 | mc_byte_swap_msg_join_reply (mc_msg_join_reply_t * r) |
| 127 | { |
| 128 | if (mc_need_byte_swap ()) |
| 129 | { |
| 130 | r->peer_id = mc_byte_swap_peer_id (r->peer_id); |
| 131 | r->type = clib_byte_swap_u32 (r->type); |
| 132 | r->stream_index = clib_byte_swap_u32 (r->stream_index); |
| 133 | r->catchup_peer_id = mc_byte_swap_peer_id (r->catchup_peer_id); |
| 134 | } |
| 135 | } |
| 136 | |
| 137 | /* Generic (application) request. Multicast over MC_TRANSPORT_USER_REQUEST_TO_RELAY and then |
| 138 | relayed by relay master after filling in global sequence number. */ |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 139 | typedef CLIB_PACKED (struct |
| 140 | { |
| 141 | mc_peer_id_t peer_id; u32 stream_index; |
| 142 | /* Global sequence number as filled in by relay master. */ |
| 143 | u32 global_sequence; |
| 144 | /* Local sequence number as filled in by peer sending message. */ |
| 145 | u32 local_sequence; |
| 146 | /* Size of request data. */ |
| 147 | u32 n_data_bytes; |
| 148 | /* Opaque request data. */ |
| 149 | u8 data[0];}) mc_msg_user_request_t; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 150 | |
| 151 | always_inline void |
| 152 | mc_byte_swap_msg_user_request (mc_msg_user_request_t * r) |
| 153 | { |
| 154 | if (mc_need_byte_swap ()) |
| 155 | { |
| 156 | r->peer_id = mc_byte_swap_peer_id (r->peer_id); |
| 157 | r->stream_index = clib_byte_swap_u32 (r->stream_index); |
| 158 | r->global_sequence = clib_byte_swap_u32 (r->global_sequence); |
| 159 | r->local_sequence = clib_byte_swap_u32 (r->local_sequence); |
| 160 | r->n_data_bytes = clib_byte_swap_u32 (r->n_data_bytes); |
| 161 | } |
| 162 | } |
| 163 | |
| 164 | /* Sent unicast over ACK channel. */ |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 165 | typedef CLIB_PACKED (struct |
| 166 | { |
| 167 | mc_peer_id_t peer_id; |
Ed Warnicke | 853e720 | 2016-08-12 11:42:26 -0700 | [diff] [blame] | 168 | u32 global_sequence; u32 stream_index; |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 169 | u32 local_sequence; |
| 170 | i32 seq_cmp_result;}) mc_msg_user_ack_t; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 171 | |
| 172 | always_inline void |
| 173 | mc_byte_swap_msg_user_ack (mc_msg_user_ack_t * r) |
| 174 | { |
| 175 | if (mc_need_byte_swap ()) |
| 176 | { |
| 177 | r->peer_id = mc_byte_swap_peer_id (r->peer_id); |
| 178 | r->stream_index = clib_byte_swap_u32 (r->stream_index); |
| 179 | r->global_sequence = clib_byte_swap_u32 (r->global_sequence); |
| 180 | r->local_sequence = clib_byte_swap_u32 (r->local_sequence); |
| 181 | r->seq_cmp_result = clib_byte_swap_i32 (r->seq_cmp_result); |
| 182 | } |
| 183 | } |
| 184 | |
| 185 | /* Sent/received unicast over catchup channel (e.g. using TCP). */ |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 186 | typedef CLIB_PACKED (struct |
| 187 | { |
| 188 | mc_peer_id_t peer_id; |
| 189 | u32 stream_index;}) mc_msg_catchup_request_t; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 190 | |
| 191 | always_inline void |
| 192 | mc_byte_swap_msg_catchup_request (mc_msg_catchup_request_t * r) |
| 193 | { |
| 194 | if (mc_need_byte_swap ()) |
| 195 | { |
| 196 | r->peer_id = mc_byte_swap_peer_id (r->peer_id); |
| 197 | r->stream_index = clib_byte_swap_u32 (r->stream_index); |
| 198 | } |
| 199 | } |
| 200 | |
| 201 | /* Sent/received unicast over catchup channel. */ |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 202 | typedef CLIB_PACKED (struct |
| 203 | { |
| 204 | mc_peer_id_t peer_id; u32 stream_index; |
| 205 | /* Last global sequence number included in catchup data. */ |
| 206 | u32 last_global_sequence_included; |
| 207 | /* Size of catchup data. */ |
| 208 | u32 n_data_bytes; |
| 209 | /* Catchup data. */ |
| 210 | u8 data[0];}) mc_msg_catchup_reply_t; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 211 | |
| 212 | always_inline void |
| 213 | mc_byte_swap_msg_catchup_reply (mc_msg_catchup_reply_t * r) |
| 214 | { |
| 215 | if (mc_need_byte_swap ()) |
| 216 | { |
| 217 | r->peer_id = mc_byte_swap_peer_id (r->peer_id); |
| 218 | r->stream_index = clib_byte_swap_u32 (r->stream_index); |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 219 | r->last_global_sequence_included = |
| 220 | clib_byte_swap_u32 (r->last_global_sequence_included); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 221 | r->n_data_bytes = clib_byte_swap_u32 (r->n_data_bytes); |
| 222 | } |
| 223 | } |
| 224 | |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 225 | typedef struct _mc_serialize_msg |
| 226 | { |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 227 | /* Name for this type. */ |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 228 | char *name; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 229 | |
| 230 | /* Functions to serialize/unserialize data. */ |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 231 | serialize_function_t *serialize; |
| 232 | serialize_function_t *unserialize; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 233 | |
| 234 | /* Maximum message size in bytes when serialized. |
| 235 | If zero then this will be set to the largest sent message. */ |
| 236 | u32 max_n_bytes_serialized; |
| 237 | |
| 238 | /* Opaque to use for first argument to serialize/unserialize function. */ |
| 239 | u32 opaque; |
| 240 | |
| 241 | /* Index in global message vector. */ |
| 242 | u32 global_index; |
| 243 | |
| 244 | /* Registration list */ |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 245 | struct _mc_serialize_msg *next_registration; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 246 | } mc_serialize_msg_t; |
| 247 | |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 248 | typedef struct |
| 249 | { |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 250 | /* Index into global message vector. */ |
| 251 | u32 global_index; |
| 252 | } mc_serialize_stream_msg_t; |
| 253 | |
| 254 | #define MC_SERIALIZE_MSG(x,...) \ |
| 255 | __VA_ARGS__ mc_serialize_msg_t x; \ |
| 256 | static void __mc_serialize_msg_registration_##x (void) \ |
| 257 | __attribute__((__constructor__)) ; \ |
| 258 | static void __mc_serialize_msg_registration_##x (void) \ |
| 259 | { \ |
| 260 | vlib_main_t * vm = vlib_get_main(); \ |
| 261 | x.next_registration = vm->mc_msg_registrations; \ |
| 262 | vm->mc_msg_registrations = &x; \ |
| 263 | } \ |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 264 | __VA_ARGS__ mc_serialize_msg_t x |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 265 | |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 266 | typedef enum |
| 267 | { |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 268 | MC_TRANSPORT_MASTERSHIP, |
| 269 | MC_TRANSPORT_JOIN, |
| 270 | MC_TRANSPORT_USER_REQUEST_TO_RELAY, |
| 271 | MC_TRANSPORT_USER_REQUEST_FROM_RELAY, |
| 272 | MC_N_TRANSPORT_TYPE, |
| 273 | } mc_transport_type_t; |
| 274 | |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 275 | typedef struct |
| 276 | { |
| 277 | clib_error_t *(*tx_buffer) (void *opaque, mc_transport_type_t type, |
| 278 | u32 buffer_index); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 279 | |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 280 | clib_error_t *(*tx_ack) (void *opaque, mc_peer_id_t peer_id, |
| 281 | u32 buffer_index); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 282 | |
| 283 | /* Returns catchup opaque. */ |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 284 | uword (*catchup_request_fun) (void *opaque, u32 stream_index, |
| 285 | mc_peer_id_t catchup_peer_id); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 286 | |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 287 | void (*catchup_send_fun) (void *opaque, uword catchup_opaque, |
| 288 | u8 * data_vector); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 289 | |
| 290 | /* Opaque passed to callbacks. */ |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 291 | void *opaque; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 292 | |
| 293 | mc_peer_id_t our_ack_peer_id; |
| 294 | mc_peer_id_t our_catchup_peer_id; |
| 295 | |
| 296 | /* Max packet size (MTU) for this transport. |
| 297 | For IP this is interface MTU less IP + UDP header size. */ |
| 298 | u32 max_packet_size; |
| 299 | |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 300 | format_function_t *format_peer_id; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 301 | } mc_transport_t; |
| 302 | |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 303 | typedef struct |
| 304 | { |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 305 | /* Count of messages received from this peer from the past/future |
| 306 | (with seq_cmp != 0). */ |
| 307 | u64 n_msgs_from_past; |
| 308 | u64 n_msgs_from_future; |
| 309 | } mc_stream_peer_stats_t; |
| 310 | |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 311 | typedef struct |
| 312 | { |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 313 | /* ID of this peer. */ |
| 314 | mc_peer_id_t id; |
| 315 | |
| 316 | /* The last sequence we received from this peer. */ |
| 317 | u32 last_sequence_received; |
| 318 | |
| 319 | mc_stream_peer_stats_t stats, stats_last_clear; |
| 320 | } mc_stream_peer_t; |
| 321 | |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 322 | typedef struct |
| 323 | { |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 324 | u32 buffer_index; |
| 325 | |
| 326 | /* Cached copy of local sequence number from buffer. */ |
| 327 | u32 local_sequence; |
| 328 | |
| 329 | /* Number of times this buffer has been sent (retried). */ |
| 330 | u32 n_retries; |
| 331 | |
| 332 | /* Previous/next retries in doubly-linked list. */ |
| 333 | u32 prev_index, next_index; |
| 334 | |
| 335 | /* Bitmap of all peers which have acked this msg */ |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 336 | uword *unacked_by_peer_bitmap; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 337 | |
| 338 | /* Message send or resend time */ |
| 339 | f64 sent_at; |
| 340 | } mc_retry_t; |
| 341 | |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 342 | typedef struct |
| 343 | { |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 344 | /* Number of retries sent for this stream. */ |
| 345 | u64 n_retries; |
| 346 | } mc_stream_stats_t; |
| 347 | |
| 348 | struct mc_main_t; |
| 349 | struct mc_stream_t; |
| 350 | |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 351 | typedef struct |
| 352 | { |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 353 | /* Stream name. */ |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 354 | char *name; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 355 | |
| 356 | /* Number of outstanding messages. */ |
| 357 | u32 window_size; |
| 358 | |
| 359 | /* Retry interval, in seconds */ |
| 360 | f64 retry_interval; |
| 361 | |
| 362 | /* Retry limit */ |
| 363 | u32 retry_limit; |
| 364 | |
| 365 | /* User rx buffer callback */ |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 366 | void (*rx_buffer) (struct mc_main_t * mc_main, |
| 367 | struct mc_stream_t * stream, |
| 368 | mc_peer_id_t peer_id, u32 buffer_index); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 369 | |
| 370 | /* User callback to create a snapshot */ |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 371 | u8 *(*catchup_snapshot) (struct mc_main_t * mc_main, |
| 372 | u8 * snapshot_vector, |
| 373 | u32 last_global_sequence_included); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 374 | |
| 375 | /* User callback to replay a snapshot */ |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 376 | void (*catchup) (struct mc_main_t * mc_main, |
| 377 | u8 * snapshot_data, u32 n_snapshot_data_bytes); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 378 | |
| 379 | /* Callback to save a snapshot for offline replay */ |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 380 | void (*save_snapshot) (struct mc_main_t * mc_main, |
| 381 | u32 is_catchup, |
| 382 | u8 * snapshot_data, u32 n_snapshot_data_bytes); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 383 | |
| 384 | /* Called when a peer dies */ |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 385 | void (*peer_died) (struct mc_main_t * mc_main, |
| 386 | struct mc_stream_t * stream, mc_peer_id_t peer_id); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 387 | } mc_stream_config_t; |
| 388 | |
| 389 | #define foreach_mc_stream_state \ |
| 390 | _ (invalid) \ |
| 391 | _ (name_known) \ |
| 392 | _ (join_in_progress) \ |
| 393 | _ (catchup) \ |
| 394 | _ (ready) |
| 395 | |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 396 | typedef enum |
| 397 | { |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 398 | #define _(f) MC_STREAM_STATE_##f, |
| 399 | foreach_mc_stream_state |
| 400 | #undef _ |
| 401 | } mc_stream_state_t; |
| 402 | |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 403 | typedef struct mc_stream_t |
| 404 | { |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 405 | mc_stream_config_t config; |
| 406 | |
| 407 | mc_stream_state_t state; |
| 408 | |
| 409 | /* Index in stream pool. */ |
| 410 | u32 index; |
| 411 | |
| 412 | /* Stream index 0 is always for MC internal use. */ |
| 413 | #define MC_STREAM_INDEX_INTERNAL 0 |
| 414 | |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 415 | mc_retry_t *retry_pool; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 416 | |
| 417 | /* Head and tail index of retry pool. */ |
| 418 | u32 retry_head_index, retry_tail_index; |
| 419 | |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 420 | /* |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 421 | * Country club for recently retired messages |
| 422 | * If the set of peers is expanding and a new peer |
| 423 | * misses a message, we can easily retire the FIFO |
| 424 | * element before we even know about the new peer |
| 425 | */ |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 426 | mc_retry_t *retired_fifo; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 427 | |
| 428 | /* Hash mapping local sequence to retry pool index. */ |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 429 | uword *retry_index_by_local_sequence; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 430 | |
| 431 | /* catch-up fifo of VLIB buffer indices. |
| 432 | start recording when catching up. */ |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 433 | u32 *catchup_fifo; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 434 | |
| 435 | mc_stream_stats_t stats, stats_last_clear; |
| 436 | |
| 437 | /* Peer pool. */ |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 438 | mc_stream_peer_t *peers; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 439 | |
| 440 | /* Bitmap with ones for all peers in peer pool. */ |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 441 | uword *all_peer_bitmap; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 442 | |
| 443 | /* Map of 64 bit id to index in stream pool. */ |
| 444 | mhash_t peer_index_by_id; |
| 445 | |
| 446 | /* Timeout, in case we're alone in the world */ |
| 447 | f64 join_timeout; |
| 448 | |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 449 | vlib_one_time_waiting_process_t *procs_waiting_for_join_done; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 450 | |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 451 | vlib_one_time_waiting_process_t *procs_waiting_for_open_window; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 452 | |
| 453 | /* Next sequence number to use */ |
| 454 | u32 our_local_sequence; |
| 455 | |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 456 | /* |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 457 | * Last global sequence we processed. |
| 458 | * When supplying catchup data, we need to tell |
| 459 | * the client precisely where to start replaying |
| 460 | */ |
| 461 | u32 last_global_sequence_processed; |
| 462 | |
| 463 | /* Vector of unique messages we've sent on this stream. */ |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 464 | mc_serialize_stream_msg_t *stream_msgs; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 465 | |
| 466 | /* Vector global message index into per stream message index. */ |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 467 | u32 *stream_msg_index_by_global_index; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 468 | |
| 469 | /* Hashed by message name. */ |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 470 | uword *stream_msg_index_by_name; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 471 | |
| 472 | u64 user_requests_sent; |
| 473 | u64 user_requests_received; |
| 474 | } mc_stream_t; |
| 475 | |
| 476 | always_inline void |
| 477 | mc_stream_free (mc_stream_t * s) |
| 478 | { |
| 479 | pool_free (s->retry_pool); |
| 480 | hash_free (s->retry_index_by_local_sequence); |
| 481 | clib_fifo_free (s->catchup_fifo); |
| 482 | pool_free (s->peers); |
| 483 | mhash_free (&s->peer_index_by_id); |
| 484 | vec_free (s->procs_waiting_for_join_done); |
| 485 | vec_free (s->procs_waiting_for_open_window); |
| 486 | } |
| 487 | |
| 488 | always_inline void |
| 489 | mc_stream_init (mc_stream_t * s) |
| 490 | { |
| 491 | memset (s, 0, sizeof (s[0])); |
| 492 | s->retry_head_index = s->retry_tail_index = ~0; |
| 493 | } |
| 494 | |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 495 | typedef struct |
| 496 | { |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 497 | u32 stream_index; |
| 498 | u32 catchup_opaque; |
| 499 | u8 *catchup_snapshot; |
| 500 | } mc_catchup_process_arg_t; |
| 501 | |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 502 | typedef enum |
| 503 | { |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 504 | MC_RELAY_STATE_NEGOTIATE, |
| 505 | MC_RELAY_STATE_MASTER, |
| 506 | MC_RELAY_STATE_SLAVE, |
| 507 | } mc_relay_state_t; |
| 508 | |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 509 | typedef struct |
| 510 | { |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 511 | mc_peer_id_t peer_id; |
| 512 | |
| 513 | f64 time_last_master_assert_received; |
| 514 | } mc_mastership_peer_t; |
| 515 | |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 516 | typedef struct |
| 517 | { |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 518 | u32 stream_index; |
| 519 | u32 buffer_index; |
| 520 | } mc_stream_and_buffer_t; |
| 521 | |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 522 | typedef struct mc_main_t |
| 523 | { |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 524 | mc_relay_state_t relay_state; |
| 525 | |
| 526 | /* Mastership */ |
| 527 | u32 we_can_be_relay_master; |
| 528 | |
| 529 | u64 relay_master_peer_id; |
| 530 | |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 531 | mc_mastership_peer_t *mastership_peers; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 532 | |
| 533 | /* Map of 64 bit id to index in stream pool. */ |
| 534 | mhash_t mastership_peer_index_by_id; |
| 535 | |
| 536 | /* The transport we're using. */ |
| 537 | mc_transport_t transport; |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 538 | |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 539 | /* Last-used global sequence number. */ |
| 540 | u32 relay_global_sequence; |
| 541 | |
| 542 | /* Vector of streams. */ |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 543 | mc_stream_t *stream_vector; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 544 | |
| 545 | /* Hash table mapping stream name to pool index. */ |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 546 | uword *stream_index_by_name; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 547 | |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 548 | uword *procs_waiting_for_stream_name_by_name; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 549 | |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 550 | vlib_one_time_waiting_process_t **procs_waiting_for_stream_name_pool; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 551 | |
| 552 | int joins_in_progress; |
| 553 | |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 554 | mc_catchup_process_arg_t *catchup_process_args; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 555 | |
| 556 | /* Node indices for mastership, join ager, |
| 557 | retry and catchup processes. */ |
| 558 | u32 mastership_process; |
| 559 | u32 join_ager_process; |
| 560 | u32 retry_process; |
| 561 | u32 catchup_process; |
| 562 | u32 unserialize_process; |
| 563 | |
| 564 | /* Global vector of messages. */ |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 565 | mc_serialize_msg_t **global_msgs; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 566 | |
| 567 | /* Hash table mapping message name to index. */ |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 568 | uword *global_msg_index_by_name; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 569 | |
| 570 | /* Shared serialize/unserialize main. */ |
| 571 | serialize_main_t serialize_mains[VLIB_N_RX_TX]; |
| 572 | |
| 573 | vlib_serialize_buffer_main_t serialize_buffer_mains[VLIB_N_RX_TX]; |
| 574 | |
| 575 | /* Convenience variables */ |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 576 | struct vlib_main_t *vlib_main; |
| 577 | elog_main_t *elog_main; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 578 | |
| 579 | /* Maps 64 bit peer id to elog string table offset for this formatted peer id. */ |
| 580 | mhash_t elog_id_by_peer_id; |
| 581 | |
| 582 | uword *elog_id_by_msg_name; |
| 583 | |
| 584 | /* For mc_unserialize. */ |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 585 | mc_stream_and_buffer_t *mc_unserialize_stream_and_buffers; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 586 | } mc_main_t; |
| 587 | |
| 588 | always_inline mc_stream_t * |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 589 | mc_stream_by_name (mc_main_t * m, char *name) |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 590 | { |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 591 | uword *p = hash_get (m->stream_index_by_name, name); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 592 | return p ? vec_elt_at_index (m->stream_vector, p[0]) : 0; |
| 593 | } |
| 594 | |
| 595 | always_inline mc_stream_t * |
| 596 | mc_stream_by_index (mc_main_t * m, u32 i) |
| 597 | { |
| 598 | return i < vec_len (m->stream_vector) ? m->stream_vector + i : 0; |
| 599 | } |
| 600 | |
| 601 | always_inline void |
| 602 | mc_clear_stream_stats (mc_main_t * m) |
| 603 | { |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 604 | mc_stream_t *s; |
| 605 | mc_stream_peer_t *p; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 606 | vec_foreach (s, m->stream_vector) |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 607 | { |
| 608 | s->stats_last_clear = s->stats; |
| 609 | /* *INDENT-OFF* */ |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 610 | pool_foreach (p, s->peers, ({ |
| 611 | p->stats_last_clear = p->stats; |
| 612 | })); |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 613 | /* *INDENT-ON* */ |
| 614 | } |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 615 | } |
| 616 | |
| 617 | /* Declare all message handlers. */ |
| 618 | #define _(f) void mc_msg_##f##_handler (mc_main_t * mcm, mc_msg_##f##_t * msg, u32 buffer_index); |
| 619 | foreach_mc_msg_type |
| 620 | #undef _ |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 621 | u32 mc_stream_join (mc_main_t * mcm, mc_stream_config_t *); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 622 | |
| 623 | void mc_stream_leave (mc_main_t * mcm, u32 stream_index); |
| 624 | |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 625 | void mc_wait_for_stream_ready (mc_main_t * m, char *stream_name); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 626 | |
| 627 | u32 mc_stream_send (mc_main_t * mcm, u32 stream_index, u32 buffer_index); |
| 628 | |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 629 | void mc_main_init (mc_main_t * mcm, char *tag); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 630 | |
| 631 | void mc_enable_disable_mastership (mc_main_t * mcm, int we_can_be_master); |
| 632 | |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 633 | void *mc_get_vlib_buffer (struct vlib_main_t *vm, u32 n_bytes, |
| 634 | u32 * bi_return); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 635 | |
| 636 | format_function_t format_mc_main; |
| 637 | |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 638 | clib_error_t *mc_serialize_internal (mc_main_t * mc, |
| 639 | u32 stream_index, |
| 640 | u32 multiple_messages_per_vlib_buffer, |
| 641 | mc_serialize_msg_t * msg, ...); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 642 | |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 643 | clib_error_t *mc_serialize_va (mc_main_t * mc, |
| 644 | u32 stream_index, |
| 645 | u32 multiple_messages_per_vlib_buffer, |
| 646 | mc_serialize_msg_t * msg, va_list * va); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 647 | |
| 648 | #define mc_serialize_stream(mc,si,msg,args...) \ |
| 649 | mc_serialize_internal((mc),(si),(0),(msg),(msg)->serialize,args) |
| 650 | |
| 651 | #define mc_serialize(mc,msg,args...) \ |
| 652 | mc_serialize_internal((mc),(~0),(0),(msg),(msg)->serialize,args) |
| 653 | |
| 654 | #define mc_serialize2(mc,add,msg,args...) \ |
| 655 | mc_serialize_internal((mc),(~0),(add),(msg),(msg)->serialize,args) |
| 656 | |
| 657 | void mc_unserialize (mc_main_t * mcm, mc_stream_t * s, u32 buffer_index); |
| 658 | uword mc_unserialize_message (mc_main_t * mcm, mc_stream_t * s, |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 659 | serialize_main_t * m); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 660 | |
| 661 | serialize_function_t serialize_mc_main, unserialize_mc_main; |
| 662 | |
| 663 | always_inline uword |
| 664 | mc_max_message_size_in_bytes (mc_main_t * mcm) |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 665 | { |
| 666 | return mcm->transport.max_packet_size - sizeof (mc_msg_user_request_t); |
| 667 | } |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 668 | |
| 669 | always_inline word |
| 670 | mc_serialize_n_bytes_left (mc_main_t * mcm, serialize_main_t * m) |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 671 | { |
| 672 | return mc_max_message_size_in_bytes (mcm) - |
| 673 | serialize_vlib_buffer_n_bytes (m); |
| 674 | } |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 675 | |
| 676 | void unserialize_mc_stream (serialize_main_t * m, va_list * va); |
| 677 | void mc_stream_join_process_hold (void); |
| 678 | |
| 679 | #endif /* included_vlib_mc_h */ |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 680 | |
| 681 | /* |
| 682 | * fd.io coding-style-patch-verification: ON |
| 683 | * |
| 684 | * Local Variables: |
| 685 | * eval: (c-set-style "gnu") |
| 686 | * End: |
| 687 | */ |