blob: 3462e0eeee83656c373cd50b4bf73cca97112934 [file] [log] [blame]
Florin Coras6792ec02017-03-13 03:49:51 -07001
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>
27#include <vlibmemory/unix_shared_memory_queue.h>
28#include <svm/svm_fifo_segment.h>
29#include <vnet/session/session.h>
30#include <vnet/session/application_interface.h>
31
32typedef struct
33{
Dave Barach0194f1a2017-05-15 10:11:39 -040034 u64 bytes_to_send;
35 u64 bytes_sent;
36 u64 bytes_to_receive;
37 u64 bytes_received;
Florin Coras6792ec02017-03-13 03:49:51 -070038
39 svm_fifo_t *server_rx_fifo;
40 svm_fifo_t *server_tx_fifo;
41
Florin Coras6cf30ad2017-04-04 23:08:23 -070042 u64 vpp_session_handle;
Florin Coras6792ec02017-03-13 03:49:51 -070043} session_t;
44
45typedef struct
46{
Florin Corasf03a59a2017-06-09 21:07:32 -070047 /*
48 * Application setup parameters
49 */
50 unix_shared_memory_queue_t *vl_input_queue; /**< vpe input queue */
51 unix_shared_memory_queue_t *our_event_queue; /**< Our event queue */
52 unix_shared_memory_queue_t *vpp_event_queue; /**< $$$ single thread */
Florin Coras6792ec02017-03-13 03:49:51 -070053
Florin Corasf03a59a2017-06-09 21:07:32 -070054 u32 cli_node_index; /**< cli process node index */
55 u32 my_client_index; /**< loopback API client handle */
56 u32 app_index; /**< app index after attach */
Florin Coras6792ec02017-03-13 03:49:51 -070057
Florin Corasf03a59a2017-06-09 21:07:32 -070058 /*
59 * Configuration params
60 */
61 u8 *connect_uri; /**< URI for slave's connect */
62 u64 bytes_to_send; /**< Bytes to send */
63 u32 configured_segment_size;
64 u32 fifo_size;
65 u32 expected_connections; /**< Number of clients/connections */
Florin Coras6792ec02017-03-13 03:49:51 -070066
Florin Corasf03a59a2017-06-09 21:07:32 -070067 /*
68 * Test state variables
69 */
70 session_t *sessions; /**< Sessions pool */
71 u8 *rx_buf; /**< intermediate rx buffer */
72 uword *session_index_by_vpp_handles; /**< Hash table for disconnecting */
73 u8 *connect_test_data; /**< Pre-computed test data */
74 u32 **connection_index_by_thread;
75 pthread_t client_thread_handle;
Florin Coras6792ec02017-03-13 03:49:51 -070076
Florin Corasf03a59a2017-06-09 21:07:32 -070077 volatile u32 ready_connections;
78 volatile u32 finished_connections;
79 volatile u64 rx_total;
80 volatile u64 tx_total;
81 volatile int run_test; /**< Signal start of test */
Florin Coras6792ec02017-03-13 03:49:51 -070082
Dave Barach10d8cc62017-05-30 09:30:07 -040083 f64 test_start_time;
84 f64 test_end_time;
Florin Coras6792ec02017-03-13 03:49:51 -070085
Florin Corasf03a59a2017-06-09 21:07:32 -070086 /*
87 * Flags
88 */
Florin Coras6cf30ad2017-04-04 23:08:23 -070089 u8 is_init;
Dave Barach10d8cc62017-05-30 09:30:07 -040090 u8 test_client_attached;
Florin Corasf03a59a2017-06-09 21:07:32 -070091 u8 no_return;
92 u8 test_return_packets;
93 int i_am_master;
94 int drop_packets; /**< drop all packets */
95 u8 prealloc_fifos; /**< Request fifo preallocation */
Florin Coras6cf30ad2017-04-04 23:08:23 -070096
Florin Corasf03a59a2017-06-09 21:07:32 -070097 /*
98 * Convenience
99 */
Florin Coras6792ec02017-03-13 03:49:51 -0700100 vlib_main_t *vlib_main;
101 vnet_main_t *vnet_main;
102 ethernet_main_t *ethernet_main;
103} tclient_main_t;
104
105tclient_main_t tclient_main;
106
107vlib_node_registration_t tclient_node;
108
109#endif /* __included_tclient_h__ */
110
111/*
112 * fd.io coding-style-patch-verification: ON
113 *
114 * Local Variables:
115 * eval: (c-set-style "gnu")
116 * End:
117 */