Florin Coras | 6792ec0 | 2017-03-13 03:49:51 -0700 | [diff] [blame] | 1 | |
| 2 | /* |
| 3 | * tclient.h - skeleton vpp engine plug-in header file |
| 4 | * |
| 5 | * Copyright (c) <current-year> <your-organization> |
| 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 | #ifndef __included_tclient_h__ |
| 19 | #define __included_tclient_h__ |
| 20 | |
| 21 | #include <vnet/vnet.h> |
| 22 | #include <vnet/ip/ip.h> |
| 23 | #include <vnet/ethernet/ethernet.h> |
| 24 | |
| 25 | #include <vppinfra/hash.h> |
| 26 | #include <vppinfra/error.h> |
Florin Coras | 6792ec0 | 2017-03-13 03:49:51 -0700 | [diff] [blame] | 27 | #include <svm/svm_fifo_segment.h> |
| 28 | #include <vnet/session/session.h> |
| 29 | #include <vnet/session/application_interface.h> |
| 30 | |
| 31 | typedef struct |
| 32 | { |
Dave Barach | 0194f1a | 2017-05-15 10:11:39 -0400 | [diff] [blame] | 33 | u64 bytes_to_send; |
| 34 | u64 bytes_sent; |
| 35 | u64 bytes_to_receive; |
| 36 | u64 bytes_received; |
Florin Coras | 6792ec0 | 2017-03-13 03:49:51 -0700 | [diff] [blame] | 37 | |
| 38 | svm_fifo_t *server_rx_fifo; |
| 39 | svm_fifo_t *server_tx_fifo; |
| 40 | |
Florin Coras | 6cf30ad | 2017-04-04 23:08:23 -0700 | [diff] [blame] | 41 | u64 vpp_session_handle; |
Florin Coras | 6792ec0 | 2017-03-13 03:49:51 -0700 | [diff] [blame] | 42 | } session_t; |
| 43 | |
| 44 | typedef struct |
| 45 | { |
Florin Coras | f03a59a | 2017-06-09 21:07:32 -0700 | [diff] [blame] | 46 | /* |
| 47 | * Application setup parameters |
| 48 | */ |
Florin Coras | e86a8ed | 2018-01-05 03:20:25 -0800 | [diff] [blame^] | 49 | svm_queue_t *vl_input_queue; /**< vpe input queue */ |
| 50 | svm_queue_t **vpp_event_queue; |
Florin Coras | 6792ec0 | 2017-03-13 03:49:51 -0700 | [diff] [blame] | 51 | |
Florin Coras | f03a59a | 2017-06-09 21:07:32 -0700 | [diff] [blame] | 52 | u32 cli_node_index; /**< cli process node index */ |
| 53 | u32 my_client_index; /**< loopback API client handle */ |
| 54 | u32 app_index; /**< app index after attach */ |
Florin Coras | 6792ec0 | 2017-03-13 03:49:51 -0700 | [diff] [blame] | 55 | |
Florin Coras | f03a59a | 2017-06-09 21:07:32 -0700 | [diff] [blame] | 56 | /* |
| 57 | * Configuration params |
| 58 | */ |
| 59 | u8 *connect_uri; /**< URI for slave's connect */ |
| 60 | u64 bytes_to_send; /**< Bytes to send */ |
| 61 | u32 configured_segment_size; |
| 62 | u32 fifo_size; |
| 63 | u32 expected_connections; /**< Number of clients/connections */ |
Dave Barach | 2c25a62 | 2017-06-26 11:35:07 -0400 | [diff] [blame] | 64 | u32 connections_per_batch; /**< Connections to rx/tx at once */ |
| 65 | u32 private_segment_count; /**< Number of private fifo segs */ |
| 66 | u32 private_segment_size; /**< size of private fifo segs */ |
Florin Coras | 6792ec0 | 2017-03-13 03:49:51 -0700 | [diff] [blame] | 67 | |
Florin Coras | f03a59a | 2017-06-09 21:07:32 -0700 | [diff] [blame] | 68 | /* |
| 69 | * Test state variables |
| 70 | */ |
Florin Coras | 6881062 | 2017-07-24 17:40:28 -0700 | [diff] [blame] | 71 | session_t *sessions; /**< Session pool, shared */ |
| 72 | clib_spinlock_t sessions_lock; |
| 73 | u8 **rx_buf; /**< intermediate rx buffers */ |
Florin Coras | f03a59a | 2017-06-09 21:07:32 -0700 | [diff] [blame] | 74 | u8 *connect_test_data; /**< Pre-computed test data */ |
| 75 | u32 **connection_index_by_thread; |
Dave Barach | 2c25a62 | 2017-06-26 11:35:07 -0400 | [diff] [blame] | 76 | u32 **connections_this_batch_by_thread; /**< active connection batch */ |
Florin Coras | f03a59a | 2017-06-09 21:07:32 -0700 | [diff] [blame] | 77 | pthread_t client_thread_handle; |
Florin Coras | 6792ec0 | 2017-03-13 03:49:51 -0700 | [diff] [blame] | 78 | |
Florin Coras | f03a59a | 2017-06-09 21:07:32 -0700 | [diff] [blame] | 79 | volatile u32 ready_connections; |
| 80 | volatile u32 finished_connections; |
| 81 | volatile u64 rx_total; |
| 82 | volatile u64 tx_total; |
| 83 | volatile int run_test; /**< Signal start of test */ |
Florin Coras | 6792ec0 | 2017-03-13 03:49:51 -0700 | [diff] [blame] | 84 | |
Dave Barach | 10d8cc6 | 2017-05-30 09:30:07 -0400 | [diff] [blame] | 85 | f64 test_start_time; |
| 86 | f64 test_end_time; |
Dave Barach | 2c25a62 | 2017-06-26 11:35:07 -0400 | [diff] [blame] | 87 | u32 prev_conns; |
| 88 | u32 repeats; |
Florin Coras | f03a59a | 2017-06-09 21:07:32 -0700 | [diff] [blame] | 89 | /* |
| 90 | * Flags |
| 91 | */ |
Florin Coras | 6cf30ad | 2017-04-04 23:08:23 -0700 | [diff] [blame] | 92 | u8 is_init; |
Dave Barach | 10d8cc6 | 2017-05-30 09:30:07 -0400 | [diff] [blame] | 93 | u8 test_client_attached; |
Florin Coras | f03a59a | 2017-06-09 21:07:32 -0700 | [diff] [blame] | 94 | u8 no_return; |
| 95 | u8 test_return_packets; |
| 96 | int i_am_master; |
| 97 | int drop_packets; /**< drop all packets */ |
| 98 | u8 prealloc_fifos; /**< Request fifo preallocation */ |
Florin Coras | b795bd0 | 2017-12-14 11:30:48 -0800 | [diff] [blame] | 99 | u8 no_output; |
| 100 | u8 test_bytes; |
| 101 | u8 test_failed; |
Florin Coras | 6cf30ad | 2017-04-04 23:08:23 -0700 | [diff] [blame] | 102 | |
Florin Coras | f03a59a | 2017-06-09 21:07:32 -0700 | [diff] [blame] | 103 | /* |
| 104 | * Convenience |
| 105 | */ |
Florin Coras | 6792ec0 | 2017-03-13 03:49:51 -0700 | [diff] [blame] | 106 | vlib_main_t *vlib_main; |
| 107 | vnet_main_t *vnet_main; |
| 108 | ethernet_main_t *ethernet_main; |
| 109 | } tclient_main_t; |
| 110 | |
Dave Wallace | 71612d6 | 2017-10-24 01:32:41 -0400 | [diff] [blame] | 111 | extern tclient_main_t tclient_main; |
Florin Coras | 6792ec0 | 2017-03-13 03:49:51 -0700 | [diff] [blame] | 112 | |
| 113 | vlib_node_registration_t tclient_node; |
| 114 | |
| 115 | #endif /* __included_tclient_h__ */ |
| 116 | |
| 117 | /* |
| 118 | * fd.io coding-style-patch-verification: ON |
| 119 | * |
| 120 | * Local Variables: |
| 121 | * eval: (c-set-style "gnu") |
| 122 | * End: |
| 123 | */ |