2 * Test cases for <linux/hash.h> and <linux/stringhash.h>
3 * This just verifies that various ways of computing a hash
4 * produce the same thing and, for cases where a k-bit hash
5 * value is requested, is of the requested size.
7 * We fill a buffer with a 255-byte null-terminated string,
8 * and use both full_name_hash() and hashlen_string() to hash the
9 * substrings from i to j, where 0 <= i < j < 256.
11 * The returned values are used to check that __hash_32() and
12 * __hash_32_generic() compute the same thing. Likewise hash_32()
16 #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt "\n"
18 #include <linux/compiler.h>
19 #include <linux/types.h>
20 #include <linux/module.h>
21 #include <linux/hash.h>
22 #include <linux/stringhash.h>
23 #include <linux/printk.h>
25 /* 32-bit XORSHIFT generator. Seed must not be zero. */
26 static u32 __init __attribute_const__
35 /* Given a non-zero x, returns a non-zero byte. */
36 static u8 __init __attribute_const__
39 x
= (x
& 0xffff) + (x
>> 16); /* 1 <= x <= 0x1fffe */
40 x
= (x
& 0xff) + (x
>> 8); /* 1 <= x <= 0x2fd */
41 x
= (x
& 0xff) + (x
>> 8); /* 1 <= x <= 0x100 */
42 x
= (x
& 0xff) + (x
>> 8); /* 1 <= x <= 0xff */
46 /* Fill the buffer with non-zero bytes. */
48 fill_buf(char *buf
, size_t len
, u32 seed
)
52 for (i
= 0; i
< len
; i
++) {
53 seed
= xorshift(seed
);
54 buf
[i
] = mod255(seed
);
59 * Test the various integer hash functions. h64 (or its low-order bits)
60 * is the integer to hash. hash_or accumulates the OR of the hash values,
61 * which are later checked to see that they cover all the requested bits.
63 * Because these functions (as opposed to the string hashes) are all
64 * inline, the code being tested is actually in the module, and you can
65 * recompile and re-test the module without rebooting.
68 test_int_hash(unsigned long long h64
, u32 hash_or
[2][33])
71 u32 h0
= (u32
)h64
, h1
, h2
;
74 hash_or
[0][0] |= h1
= __hash_32(h0
);
75 #ifdef HAVE_ARCH__HASH_32
76 hash_or
[1][0] |= h2
= __hash_32_generic(h0
);
77 #if HAVE_ARCH__HASH_32 == 1
79 pr_err("__hash_32(%#x) = %#x != __hash_32_generic() = %#x",
86 /* Test k = 1..32 bits */
87 for (k
= 1; k
<= 32; k
++) {
88 u32
const m
= ((u32
)2 << (k
-1)) - 1; /* Low k bits set */
91 hash_or
[0][k
] |= h1
= hash_32(h0
, k
);
93 pr_err("hash_32(%#x, %d) = %#x > %#x", h0
, k
, h1
, m
);
96 #ifdef HAVE_ARCH_HASH_32
97 h2
= hash_32_generic(h0
, k
);
98 #if HAVE_ARCH_HASH_32 == 1
100 pr_err("hash_32(%#x, %d) = %#x != hash_32_generic() "
101 " = %#x", h0
, k
, h1
, h2
);
106 pr_err("hash_32_generic(%#x, %d) = %#x > %#x",
113 hash_or
[1][k
] |= h1
= hash_64(h64
, k
);
115 pr_err("hash_64(%#llx, %d) = %#x > %#x", h64
, k
, h1
, m
);
118 #ifdef HAVE_ARCH_HASH_64
119 h2
= hash_64_generic(h64
, k
);
120 #if HAVE_ARCH_HASH_64 == 1
122 pr_err("hash_64(%#llx, %d) = %#x != hash_64_generic() "
123 "= %#x", h64
, k
, h1
, h2
);
128 pr_err("hash_64_generic(%#llx, %d) = %#x > %#x",
136 (void)h2
; /* Suppress unused variable warning */
140 #define SIZE 256 /* Run time is cubic in SIZE */
146 u32 string_or
= 0, hash_or
[2][33] = { { 0, } };
148 unsigned long long h64
= 0;
151 fill_buf(buf
, SIZE
, 1);
153 /* Test every possible non-empty substring in the buffer. */
154 for (j
= SIZE
; j
> 0; --j
) {
157 for (i
= 0; i
<= j
; i
++) {
158 u64 hashlen
= hashlen_string(buf
+i
, buf
+i
);
159 u32 h0
= full_name_hash(buf
+i
, buf
+i
, j
-i
);
161 /* Check that hashlen_string gets the length right */
162 if (hashlen_len(hashlen
) != j
-i
) {
163 pr_err("hashlen_string(%d..%d) returned length"
165 i
, j
, hashlen_len(hashlen
), j
-i
);
168 /* Check that the hashes match */
169 if (hashlen_hash(hashlen
) != h0
) {
170 pr_err("hashlen_string(%d..%d) = %08x != "
171 "full_name_hash() = %08x",
172 i
, j
, hashlen_hash(hashlen
), h0
);
177 h64
= h64
<< 32 | h0
; /* For use with hash_64 */
178 if (!test_int_hash(h64
, hash_or
))
184 /* The OR of all the hash values should cover all the bits */
186 pr_err("OR of all string hash results = %#x != %#x",
190 if (~hash_or
[0][0]) {
191 pr_err("OR of all __hash_32 results = %#x != %#x",
195 #ifdef HAVE_ARCH__HASH_32
196 #if HAVE_ARCH__HASH_32 != 1 /* Test is pointless if results match */
197 if (~hash_or
[1][0]) {
198 pr_err("OR of all __hash_32_generic results = %#x != %#x",
205 /* Likewise for all the i-bit hash values */
206 for (i
= 1; i
<= 32; i
++) {
207 u32
const m
= ((u32
)2 << (i
-1)) - 1; /* Low i bits set */
209 if (hash_or
[0][i
] != m
) {
210 pr_err("OR of all hash_32(%d) results = %#x "
211 "(%#x expected)", i
, hash_or
[0][i
], m
);
214 if (hash_or
[1][i
] != m
) {
215 pr_err("OR of all hash_64(%d) results = %#x "
216 "(%#x expected)", i
, hash_or
[1][i
], m
);
221 /* Issue notices about skipped tests. */
222 #ifdef HAVE_ARCH__HASH_32
223 #if HAVE_ARCH__HASH_32 != 1
224 pr_info("__hash_32() is arch-specific; not compared to generic.");
227 pr_info("__hash_32() has no arch implementation to test.");
229 #ifdef HAVE_ARCH_HASH_32
230 #if HAVE_ARCH_HASH_32 != 1
231 pr_info("hash_32() is arch-specific; not compared to generic.");
234 pr_info("hash_32() has no arch implementation to test.");
236 #ifdef HAVE_ARCH_HASH_64
237 #if HAVE_ARCH_HASH_64 != 1
238 pr_info("hash_64() is arch-specific; not compared to generic.");
241 pr_info("hash_64() has no arch implementation to test.");
244 pr_notice("%u tests passed.", tests
);
249 static void __exit
test_hash_exit(void)
253 module_init(test_hash_init
); /* Does everything */
254 module_exit(test_hash_exit
); /* Does nothing */
256 MODULE_LICENSE("GPL");