4 * Copyright(c) 2010-2015 Intel Corporation. All rights reserved.
7 * Redistribution and use in source and binary forms, with or without
8 * modification, are permitted provided that the following conditions
11 * * Redistributions of source code must retain the above copyright
12 * notice, this list of conditions and the following disclaimer.
13 * * Redistributions in binary form must reproduce the above copyright
14 * notice, this list of conditions and the following disclaimer in
15 * the documentation and/or other materials provided with the
17 * * Neither the name of Intel Corporation nor the names of its
18 * contributors may be used to endorse or promote products derived
19 * from this software without specific prior written permission.
21 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
22 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
23 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
24 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
25 * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
26 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
27 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
28 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
29 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
30 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
31 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
40 #include <sys/queue.h>
42 #include <rte_cycles.h>
43 #include <rte_random.h>
45 #include <rte_jhash.h>
46 #include <rte_hash_crc.h>
51 * Hash values calculated for key sizes from array "hashtest_key_lens"
52 * and for initial values from array "hashtest_initvals.
53 * Each key will be formed by increasing each byte by 1:
54 * e.g.: key size = 4, key = 0x03020100
55 * key size = 8, key = 0x0706050403020100
57 static uint32_t hash_values_jhash[2][12] = {{
58 0x8ba9414b, 0xdf0d39c9,
59 0xe4cf1d42, 0xd4ccb93c, 0x5e84eafc, 0x21362cfe,
60 0x2f4775ab, 0x9ff036cc, 0xeca51474, 0xbc9d6816,
61 0x12926a31, 0x1c9fa888
64 0x5c62c303, 0x1b8cf784,
65 0x8270ac65, 0x05fa6668, 0x762df861, 0xda088f2f,
66 0x59614cd4, 0x7a94f690, 0xdc1e4993, 0x30825494,
67 0x91d0e462, 0x768087fc
70 static uint32_t hash_values_crc[2][12] = {{
71 0x00000000, 0xf26b8303,
72 0x91545164, 0x06040eb1, 0x9bb99201, 0xcc4c4fe4,
73 0x14a90993, 0xf8a5dd8c, 0xcaa1ad0b, 0x7ac1e03e,
74 0x43f44466, 0x4a11475e
77 0xbdfd3980, 0x70204542,
78 0x98cd4c70, 0xd52c702f, 0x41fc0e1c, 0x3905f65c,
79 0x94bff47f, 0x1bab102d, 0xf4a2c645, 0xbf441539,
80 0x789c104f, 0x53028d3e
84 /*******************************************************************************
85 * Hash function performance test configuration section. Each performance test
86 * will be performed HASHTEST_ITERATIONS times.
88 * The three arrays below control what tests are performed. Every combination
89 * from the array entries is tested.
91 #define HASHTEST_ITERATIONS 1000000
92 #define MAX_KEYSIZE 64
93 static rte_hash_function hashtest_funcs[] = {rte_jhash, rte_hash_crc};
94 static uint32_t hashtest_initvals[] = {0, 0xdeadbeef};
95 static uint32_t hashtest_key_lens[] = {
96 1, 2, /* Unusual key sizes */
97 4, 8, 16, 32, 48, 64, /* standard key sizes */
98 9, /* IPv4 SRC + DST + protocol, unpadded */
99 13, /* IPv4 5-tuple, unpadded */
100 37, /* IPv6 5-tuple, unpadded */
101 40 /* IPv6 5-tuple, padded to 8-byte boundary */
103 /******************************************************************************/
106 * To help print out name of hash functions.
109 get_hash_name(rte_hash_function f)
114 if (f == rte_hash_crc)
115 return "rte_hash_crc";
117 return "UnknownHash";
121 * Test a hash function.
124 run_hash_func_perf_test(uint32_t key_len, uint32_t init_val,
127 static uint8_t key[HASHTEST_ITERATIONS][MAX_KEYSIZE];
128 uint64_t ticks, start, end;
131 for (i = 0; i < HASHTEST_ITERATIONS; i++) {
132 for (j = 0; j < key_len; j++)
133 key[i][j] = (uint8_t) rte_rand();
137 for (i = 0; i < HASHTEST_ITERATIONS; i++)
138 f(key[i], key_len, init_val);
142 printf("%-12s, %-18u, %-13u, %.02f\n", get_hash_name(f), (unsigned) key_len,
143 (unsigned) init_val, (double)ticks / HASHTEST_ITERATIONS);
147 * Test all hash functions.
150 run_hash_func_perf_tests(void)
154 printf(" *** Hash function performance test results ***\n");
155 printf(" Number of iterations for each test = %d\n",
156 HASHTEST_ITERATIONS);
157 printf("Hash Func. , Key Length (bytes), Initial value, Ticks/Op.\n");
159 for (i = 0; i < RTE_DIM(hashtest_initvals); i++) {
160 for (j = 0; j < RTE_DIM(hashtest_key_lens); j++) {
161 for (k = 0; k < RTE_DIM(hashtest_funcs); k++) {
162 run_hash_func_perf_test(hashtest_key_lens[j],
163 hashtest_initvals[i],
171 * Verify that hash functions return what they are expected to return
172 * (using precalculated values stored above)
175 verify_precalculated_hash_func_tests(void)
181 for (i = 0; i < 64; i++)
182 key[i] = (uint8_t) i;
184 for (i = 0; i < sizeof(hashtest_key_lens) / sizeof(uint32_t); i++) {
185 for (j = 0; j < sizeof(hashtest_initvals) / sizeof(uint32_t); j++) {
186 hash = rte_jhash(key, hashtest_key_lens[i],
187 hashtest_initvals[j]);
188 if (hash != hash_values_jhash[j][i]) {
189 printf("jhash for %u bytes with initial value 0x%x."
190 "Expected 0x%x, but got 0x%x\n",
191 hashtest_key_lens[i], hashtest_initvals[j],
192 hash_values_jhash[j][i], hash);
196 hash = rte_hash_crc(key, hashtest_key_lens[i],
197 hashtest_initvals[j]);
198 if (hash != hash_values_crc[j][i]) {
199 printf("CRC for %u bytes with initial value 0x%x."
200 "Expected 0x%x, but got 0x%x\n",
201 hashtest_key_lens[i], hashtest_initvals[j],
202 hash_values_crc[j][i], hash);
212 * Verify that rte_jhash and rte_jhash_32b return the same
215 verify_jhash_32bits(void)
219 uint32_t hash, hash32;
221 for (i = 0; i < 64; i++)
222 key[i] = rand() & 0xff;
224 for (i = 0; i < sizeof(hashtest_key_lens) / sizeof(uint32_t); i++) {
225 for (j = 0; j < sizeof(hashtest_initvals) / sizeof(uint32_t); j++) {
226 /* Key size must be multiple of 4 (32 bits) */
227 if ((hashtest_key_lens[i] & 0x3) == 0) {
228 hash = rte_jhash(key, hashtest_key_lens[i],
229 hashtest_initvals[j]);
230 /* Divide key length by 4 in rte_jhash for 32 bits */
231 hash32 = rte_jhash_32b((const unaligned_uint32_t *)key,
232 hashtest_key_lens[i] >> 2,
233 hashtest_initvals[j]);
234 if (hash != hash32) {
235 printf("rte_jhash returns different value (0x%x)"
236 "than rte_jhash_32b (0x%x)\n",
248 * Verify that rte_jhash and rte_jhash_1word, rte_jhash_2words
249 * and rte_jhash_3words return the same
252 verify_jhash_words(void)
256 uint32_t hash, hash_words;
258 for (i = 0; i < 3; i++)
261 /* Test rte_jhash_1word */
262 hash = rte_jhash(key, 4, 0);
263 hash_words = rte_jhash_1word(key[0], 0);
264 if (hash != hash_words) {
265 printf("rte_jhash returns different value (0x%x)"
266 "than rte_jhash_1word (0x%x)\n",
270 /* Test rte_jhash_2words */
271 hash = rte_jhash(key, 8, 0);
272 hash_words = rte_jhash_2words(key[0], key[1], 0);
273 if (hash != hash_words) {
274 printf("rte_jhash returns different value (0x%x)"
275 "than rte_jhash_2words (0x%x)\n",
279 /* Test rte_jhash_3words */
280 hash = rte_jhash(key, 12, 0);
281 hash_words = rte_jhash_3words(key[0], key[1], key[2], 0);
282 if (hash != hash_words) {
283 printf("rte_jhash returns different value (0x%x)"
284 "than rte_jhash_3words (0x%x)\n",
293 * Run all functional tests for hash functions
296 run_hash_func_tests(void)
298 if (verify_precalculated_hash_func_tests() != 0)
301 if (verify_jhash_32bits() != 0)
304 if (verify_jhash_words() != 0)
312 test_hash_functions(void)
314 if (run_hash_func_tests() != 0)
317 run_hash_func_perf_tests();
322 static struct test_command hash_functions_cmd = {
323 .command = "hash_functions_autotest",
324 .callback = test_hash_functions,
326 REGISTER_TEST_COMMAND(hash_functions_cmd);