Damjan Marion | 7cd468a | 2016-12-19 23:05:39 +0100 | [diff] [blame] | 1 | /* |
| 2 | *------------------------------------------------------------------ |
Ole Troan | 3c70c05 | 2020-08-10 16:25:21 +0200 | [diff] [blame] | 3 | * test.c -- VPP API/Stats tests |
Damjan Marion | 7cd468a | 2016-12-19 23:05:39 +0100 | [diff] [blame] | 4 | * |
| 5 | * Copyright (c) 2016 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 | #include <stdio.h> |
| 20 | #include <stdlib.h> |
Ole Troan | 3c70c05 | 2020-08-10 16:25:21 +0200 | [diff] [blame] | 21 | #include <assert.h> |
Damjan Marion | 7cd468a | 2016-12-19 23:05:39 +0100 | [diff] [blame] | 22 | #include <sys/types.h> |
| 23 | #include <sys/socket.h> |
| 24 | #include <sys/mman.h> |
| 25 | #include <sys/stat.h> |
| 26 | #include <netinet/in.h> |
| 27 | #include <netdb.h> |
| 28 | |
Damjan Marion | 7cd468a | 2016-12-19 23:05:39 +0100 | [diff] [blame] | 29 | |
| 30 | #include <vnet/vnet.h> |
| 31 | #include <vlib/vlib.h> |
| 32 | #include <vlib/unix/unix.h> |
| 33 | #include <vlibapi/api.h> |
Ole Troan | 3c70c05 | 2020-08-10 16:25:21 +0200 | [diff] [blame] | 34 | #include <vppinfra/time.h> |
Damjan Marion | 7cd468a | 2016-12-19 23:05:39 +0100 | [diff] [blame] | 35 | #include <signal.h> |
Damjan Marion | 5fec1e8 | 2017-04-13 19:13:47 +0200 | [diff] [blame] | 36 | #include "vppapiclient.h" |
Ole Troan | 3c70c05 | 2020-08-10 16:25:21 +0200 | [diff] [blame] | 37 | #include "stat_client.h" |
Damjan Marion | 7cd468a | 2016-12-19 23:05:39 +0100 | [diff] [blame] | 38 | |
Florin Coras | a1400ce | 2021-09-15 09:02:08 -0700 | [diff] [blame] | 39 | #include <vlibmemory/vlib.api_enum.h> |
| 40 | #include <vlibmemory/vlib.api_types.h> |
| 41 | |
Ole Troan | 3459ece | 2021-09-27 17:11:34 +0200 | [diff] [blame] | 42 | #include <vpp/api/vpe.api_enum.h> |
| 43 | #include <vpp/api/vpe.api_types.h> |
Damjan Marion | 7cd468a | 2016-12-19 23:05:39 +0100 | [diff] [blame] | 44 | |
Damjan Marion | 7cd468a | 2016-12-19 23:05:39 +0100 | [diff] [blame] | 45 | volatile int sigterm_received = 0; |
| 46 | volatile u32 result_ready; |
| 47 | volatile u16 result_msg_id; |
| 48 | |
| 49 | /* M_NOALLOC: construct, but don't yet send a message */ |
| 50 | |
| 51 | #define M_NOALLOC(T,t) \ |
| 52 | do { \ |
| 53 | result_ready = 0; \ |
Dave Barach | b7b9299 | 2018-10-17 10:38:51 -0400 | [diff] [blame] | 54 | clib_memset (mp, 0, sizeof (*mp)); \ |
Damjan Marion | 7cd468a | 2016-12-19 23:05:39 +0100 | [diff] [blame] | 55 | mp->_vl_msg_id = ntohs (VL_API_##T); \ |
| 56 | mp->client_index = am->my_client_index; \ |
| 57 | } while(0); |
| 58 | |
| 59 | |
| 60 | |
Andrey "Zed" Zaikin | 334167f | 2018-04-09 16:42:42 +0300 | [diff] [blame] | 61 | void |
| 62 | wrap_vac_callback (unsigned char *data, int len) |
Damjan Marion | 7cd468a | 2016-12-19 23:05:39 +0100 | [diff] [blame] | 63 | { |
Damjan Marion | 7cd468a | 2016-12-19 23:05:39 +0100 | [diff] [blame] | 64 | result_ready = 1; |
| 65 | result_msg_id = ntohs(*((u16 *)data)); |
Damjan Marion | 7cd468a | 2016-12-19 23:05:39 +0100 | [diff] [blame] | 66 | } |
| 67 | |
Ole Troan | 73710c7 | 2018-06-04 22:27:49 +0200 | [diff] [blame] | 68 | static void |
| 69 | test_connect () |
| 70 | { |
| 71 | static int i; |
| 72 | int rv = vac_connect("vac_client", NULL, wrap_vac_callback, 32 /* rx queue-length*/); |
| 73 | if (rv != 0) { |
| 74 | printf("Connect failed: %d\n", rv); |
| 75 | exit(rv); |
| 76 | } |
| 77 | printf("."); |
| 78 | vac_disconnect(); |
| 79 | i++; |
| 80 | } |
| 81 | |
| 82 | static void |
| 83 | test_messages (void) |
Damjan Marion | 7cd468a | 2016-12-19 23:05:39 +0100 | [diff] [blame] | 84 | { |
Dave Barach | 39d6911 | 2019-11-27 11:42:13 -0500 | [diff] [blame] | 85 | api_main_t * am = vlibapi_get_main(); |
Damjan Marion | 7cd468a | 2016-12-19 23:05:39 +0100 | [diff] [blame] | 86 | vl_api_show_version_t message; |
| 87 | vl_api_show_version_t *mp; |
| 88 | int async = 1; |
Damjan Marion | 7cd468a | 2016-12-19 23:05:39 +0100 | [diff] [blame] | 89 | |
Ole Troan | 73710c7 | 2018-06-04 22:27:49 +0200 | [diff] [blame] | 90 | int rv = vac_connect("vac_client", NULL, wrap_vac_callback, 32 /* rx queue-length*/); |
Damjan Marion | 7cd468a | 2016-12-19 23:05:39 +0100 | [diff] [blame] | 91 | if (rv != 0) { |
| 92 | printf("Connect failed: %d\n", rv); |
| 93 | exit(rv); |
| 94 | } |
Damjan Marion | 7cd468a | 2016-12-19 23:05:39 +0100 | [diff] [blame] | 95 | |
Ole Troan | 3c70c05 | 2020-08-10 16:25:21 +0200 | [diff] [blame] | 96 | double timestamp_start = unix_time_now_nsec() * 1e-6; |
Damjan Marion | 7cd468a | 2016-12-19 23:05:39 +0100 | [diff] [blame] | 97 | |
| 98 | /* |
| 99 | * Test vpe_api_write and vpe_api_read to send and recv message for an |
| 100 | * API |
| 101 | */ |
| 102 | int i; |
| 103 | long int no_msgs = 10000; |
| 104 | mp = &message; |
| 105 | |
| 106 | for (i = 0; i < no_msgs; i++) { |
| 107 | /* Construct the API message */ |
| 108 | M_NOALLOC(SHOW_VERSION, show_version); |
Damjan Marion | 5fec1e8 | 2017-04-13 19:13:47 +0200 | [diff] [blame] | 109 | vac_write((char *)mp, sizeof(*mp)); |
Damjan Marion | 7cd468a | 2016-12-19 23:05:39 +0100 | [diff] [blame] | 110 | #ifndef __COVERITY__ |
| 111 | /* As given, async is always 1. Shut up Coverity about it */ |
| 112 | if (!async) |
| 113 | while (result_ready == 0); |
| 114 | #endif |
| 115 | } |
| 116 | if (async) { |
| 117 | vl_api_control_ping_t control; |
| 118 | vl_api_control_ping_t *mp; |
| 119 | mp = &control; |
| 120 | M_NOALLOC(CONTROL_PING, control_ping); |
Damjan Marion | 5fec1e8 | 2017-04-13 19:13:47 +0200 | [diff] [blame] | 121 | vac_write((char *)mp, sizeof(*mp)); |
Damjan Marion | 7cd468a | 2016-12-19 23:05:39 +0100 | [diff] [blame] | 122 | |
| 123 | while (result_msg_id != VL_API_CONTROL_PING_REPLY); |
| 124 | } |
| 125 | |
Ole Troan | 3c70c05 | 2020-08-10 16:25:21 +0200 | [diff] [blame] | 126 | double timestamp_end = unix_time_now_nsec() * 1e-6; |
| 127 | printf("\nTook %.2f msec, %.0f msgs/msec \n", (timestamp_end - timestamp_start), |
| 128 | no_msgs/(timestamp_end - timestamp_start)); |
Damjan Marion | 5fec1e8 | 2017-04-13 19:13:47 +0200 | [diff] [blame] | 129 | printf("Exiting...\n"); |
| 130 | vac_disconnect(); |
Ole Troan | 73710c7 | 2018-06-04 22:27:49 +0200 | [diff] [blame] | 131 | } |
| 132 | |
Ole Troan | 3c70c05 | 2020-08-10 16:25:21 +0200 | [diff] [blame] | 133 | static void |
| 134 | test_stats (void) |
| 135 | { |
| 136 | clib_mem_trace_enable_disable(1); |
| 137 | clib_mem_trace (1); |
| 138 | |
| 139 | int rv = stat_segment_connect (STAT_SEGMENT_SOCKET_FILE); |
| 140 | assert(rv == 0); |
| 141 | |
| 142 | u32 *dir; |
| 143 | int i, j, k; |
| 144 | stat_segment_data_t *res; |
| 145 | u8 **pattern = 0; |
| 146 | vec_add1(pattern, (u8 *)"/if/names"); |
| 147 | vec_add1(pattern, (u8 *)"/err"); |
| 148 | |
| 149 | dir = stat_segment_ls ((u8 **)pattern); |
| 150 | |
| 151 | res = stat_segment_dump (dir); |
| 152 | for (i = 0; i < vec_len (res); i++) { |
| 153 | switch (res[i].type) { |
| 154 | case STAT_DIR_TYPE_NAME_VECTOR: |
| 155 | if (res[i].name_vector == 0) |
| 156 | continue; |
| 157 | for (k = 0; k < vec_len (res[i].name_vector); k++) |
| 158 | if (res[i].name_vector[k]) |
| 159 | fformat (stdout, "[%d]: %s %s\n", k, res[i].name_vector[k], |
| 160 | res[i].name); |
| 161 | break; |
| 162 | case STAT_DIR_TYPE_ERROR_INDEX: |
| 163 | for (j = 0; j < vec_len (res[i].error_vector); j++) |
| 164 | fformat (stdout, "%llu %s\n", res[i].error_vector[j], |
| 165 | res[i].name); |
| 166 | break; |
| 167 | default: |
| 168 | assert(0); |
| 169 | } |
| 170 | } |
| 171 | stat_segment_data_free (res); |
| 172 | stat_segment_disconnect(); |
| 173 | |
| 174 | vec_free(pattern); |
| 175 | vec_free(dir); |
| 176 | |
| 177 | (void) clib_mem_trace_enable_disable (0); |
Damjan Marion | 4537c30 | 2020-09-28 19:03:37 +0200 | [diff] [blame] | 178 | u8 *leak_report = format (0, "%U", format_clib_mem_heap, 0, |
Ole Troan | 3c70c05 | 2020-08-10 16:25:21 +0200 | [diff] [blame] | 179 | 1 /* verbose, i.e. print leaks */ ); |
| 180 | printf("%s", leak_report); |
| 181 | vec_free (leak_report); |
| 182 | clib_mem_trace (0); |
| 183 | } |
| 184 | |
Ole Troan | 73710c7 | 2018-06-04 22:27:49 +0200 | [diff] [blame] | 185 | int main (int argc, char ** argv) |
| 186 | { |
Ole Troan | 3c70c05 | 2020-08-10 16:25:21 +0200 | [diff] [blame] | 187 | clib_mem_init (0, 3ULL << 30); |
| 188 | test_stats(); |
| 189 | |
Ole Troan | 73710c7 | 2018-06-04 22:27:49 +0200 | [diff] [blame] | 190 | int i; |
| 191 | |
| 192 | for (i = 0; i < 1000; i++) { |
| 193 | test_connect(); |
| 194 | } |
| 195 | test_messages(); |
Damjan Marion | 7cd468a | 2016-12-19 23:05:39 +0100 | [diff] [blame] | 196 | exit (0); |
| 197 | } |