2 * Resizable, Scalable, Concurrent Hash Table
4 * Copyright (c) 2014-2015 Thomas Graf <tgraf@suug.ch>
5 * Copyright (c) 2008-2014 Patrick McHardy <kaber@trash.net>
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License version 2 as
9 * published by the Free Software Foundation.
12 /**************************************************************************
14 **************************************************************************/
16 #include <linux/init.h>
17 #include <linux/jhash.h>
18 #include <linux/kernel.h>
19 #include <linux/kthread.h>
20 #include <linux/module.h>
21 #include <linux/rcupdate.h>
22 #include <linux/rhashtable.h>
23 #include <linux/semaphore.h>
24 #include <linux/slab.h>
25 #include <linux/sched.h>
26 #include <linux/random.h>
27 #include <linux/vmalloc.h>
29 #define MAX_ENTRIES 1000000
30 #define TEST_INSERT_FAIL INT_MAX
32 static int parm_entries = 50000;
33 module_param(parm_entries, int, 0);
34 MODULE_PARM_DESC(parm_entries, "Number of entries to add (default: 50000)");
37 module_param(runs, int, 0);
38 MODULE_PARM_DESC(runs, "Number of test runs per variant (default: 4)");
40 static int max_size = 0;
41 module_param(max_size, int, 0);
42 MODULE_PARM_DESC(max_size, "Maximum table size (default: calculated)");
44 static bool shrinking = false;
45 module_param(shrinking, bool, 0);
46 MODULE_PARM_DESC(shrinking, "Enable automatic shrinking (default: off)");
49 module_param(size, int, 0);
50 MODULE_PARM_DESC(size, "Initial size hint of table (default: 8)");
52 static int tcount = 10;
53 module_param(tcount, int, 0);
54 MODULE_PARM_DESC(tcount, "Number of threads to spawn (default: 10)");
56 static bool enomem_retry = false;
57 module_param(enomem_retry, bool, 0);
58 MODULE_PARM_DESC(enomem_retry, "Retry insert even if -ENOMEM was returned (default: off)");
66 struct test_obj_val value;
67 struct rhash_head node;
71 struct test_obj_val value;
72 struct rhlist_head list_node;
78 struct task_struct *task;
79 struct test_obj *objs;
82 static struct rhashtable_params test_rht_params = {
83 .head_offset = offsetof(struct test_obj, node),
84 .key_offset = offsetof(struct test_obj, value),
85 .key_len = sizeof(struct test_obj_val),
87 .nulls_base = (3U << RHT_BASE_SHIFT),
90 static struct semaphore prestart_sem;
91 static struct semaphore startup_sem = __SEMAPHORE_INITIALIZER(startup_sem, 0);
93 static int insert_retry(struct rhashtable *ht, struct test_obj *obj,
94 const struct rhashtable_params params)
96 int err, retries = -1, enomem_retries = 0;
101 err = rhashtable_insert_fast(ht, &obj->node, params);
102 if (err == -ENOMEM && enomem_retry) {
106 } while (err == -EBUSY);
109 pr_info(" %u insertions retried after -ENOMEM\n",
112 return err ? : retries;
115 static int __init test_rht_lookup(struct rhashtable *ht, struct test_obj *array,
116 unsigned int entries)
120 for (i = 0; i < entries; i++) {
121 struct test_obj *obj;
122 bool expected = !(i % 2);
123 struct test_obj_val key = {
127 if (array[i / 2].value.id == TEST_INSERT_FAIL)
130 obj = rhashtable_lookup_fast(ht, &key, test_rht_params);
132 if (expected && !obj) {
133 pr_warn("Test failed: Could not find key %u\n", key.id);
135 } else if (!expected && obj) {
136 pr_warn("Test failed: Unexpected entry found for key %u\n",
139 } else if (expected && obj) {
140 if (obj->value.id != i) {
141 pr_warn("Test failed: Lookup value mismatch %u!=%u\n",
153 static void test_bucket_stats(struct rhashtable *ht, unsigned int entries)
155 unsigned int err, total = 0, chain_len = 0;
156 struct rhashtable_iter hti;
157 struct rhash_head *pos;
159 err = rhashtable_walk_init(ht, &hti, GFP_KERNEL);
161 pr_warn("Test failed: allocation error");
165 rhashtable_walk_start(&hti);
167 while ((pos = rhashtable_walk_next(&hti))) {
168 if (PTR_ERR(pos) == -EAGAIN) {
169 pr_info("Info: encountered resize\n");
172 } else if (IS_ERR(pos)) {
173 pr_warn("Test failed: rhashtable_walk_next() error: %ld\n",
181 rhashtable_walk_stop(&hti);
182 rhashtable_walk_exit(&hti);
184 pr_info(" Traversal complete: counted=%u, nelems=%u, entries=%d, table-jumps=%u\n",
185 total, atomic_read(&ht->nelems), entries, chain_len);
187 if (total != atomic_read(&ht->nelems) || total != entries)
188 pr_warn("Test failed: Total count mismatch ^^^");
191 static s64 __init test_rhashtable(struct rhashtable *ht, struct test_obj *array,
192 unsigned int entries)
194 struct test_obj *obj;
196 unsigned int i, insert_retries = 0;
201 * Insert entries into table with all keys even numbers
203 pr_info(" Adding %d keys\n", entries);
204 start = ktime_get_ns();
205 for (i = 0; i < entries; i++) {
206 struct test_obj *obj = &array[i];
208 obj->value.id = i * 2;
209 err = insert_retry(ht, obj, test_rht_params);
211 insert_retries += err;
217 pr_info(" %u insertions retried due to memory pressure\n",
220 test_bucket_stats(ht, entries);
222 test_rht_lookup(ht, array, entries);
225 test_bucket_stats(ht, entries);
227 pr_info(" Deleting %d keys\n", entries);
228 for (i = 0; i < entries; i++) {
229 struct test_obj_val key = {
233 if (array[i].value.id != TEST_INSERT_FAIL) {
234 obj = rhashtable_lookup_fast(ht, &key, test_rht_params);
237 rhashtable_remove_fast(ht, &obj->node, test_rht_params);
243 end = ktime_get_ns();
244 pr_info(" Duration of test: %lld ns\n", end - start);
249 static struct rhashtable ht;
250 static struct rhltable rhlt;
252 static int __init test_rhltable(unsigned int entries)
254 struct test_obj_rhl *rhl_test_objects;
255 unsigned long *obj_in_table;
256 unsigned int i, j, k;
262 rhl_test_objects = vzalloc(sizeof(*rhl_test_objects) * entries);
263 if (!rhl_test_objects)
267 obj_in_table = vzalloc(BITS_TO_LONGS(entries) * sizeof(unsigned long));
271 /* nulls_base not supported in rhlist interface */
272 test_rht_params.nulls_base = 0;
273 err = rhltable_init(&rhlt, &test_rht_params);
279 for (i = 0; i < entries; i++) {
280 rhl_test_objects[i].value.id = k;
281 err = rhltable_insert(&rhlt, &rhl_test_objects[i].list_node,
283 if (WARN(err, "error %d on element %d\n", err, i))
286 set_bit(i, obj_in_table);
292 pr_info("test %d add/delete pairs into rhlist\n", entries);
293 for (i = 0; i < entries; i++) {
294 struct rhlist_head *h, *pos;
295 struct test_obj_rhl *obj;
296 struct test_obj_val key = {
302 h = rhltable_lookup(&rhlt, &key, test_rht_params);
303 if (WARN(!h, "key not found during iteration %d of %d", i, entries)) {
310 rhl_for_each_entry_rcu(obj, pos, h, list_node) {
311 if (WARN(pos == &rhl_test_objects[j].list_node, "old element found, should be gone"))
320 rhl_for_each_entry_rcu(obj, pos, h, list_node) {
321 if (pos == &rhl_test_objects[i].list_node) {
329 if (WARN(!found, "element %d not found", i))
332 err = rhltable_remove(&rhlt, &rhl_test_objects[i].list_node, test_rht_params);
333 WARN(err, "rhltable_remove: err %d for iteration %d\n", err, i);
335 clear_bit(i, obj_in_table);
341 for (i = 0; i < entries; i++) {
342 WARN(test_bit(i, obj_in_table), "elem %d allegedly still present", i);
344 err = rhltable_insert(&rhlt, &rhl_test_objects[i].list_node,
346 if (WARN(err, "error %d on element %d\n", err, i))
349 set_bit(i, obj_in_table);
352 pr_info("test %d random rhlist add/delete operations\n", entries);
353 for (j = 0; j < entries; j++) {
354 u32 i = prandom_u32_max(entries);
355 u32 prand = prandom_u32();
360 prand = prandom_u32();
367 err = rhltable_remove(&rhlt, &rhl_test_objects[i].list_node, test_rht_params);
368 if (test_bit(i, obj_in_table)) {
369 clear_bit(i, obj_in_table);
370 if (WARN(err, "cannot remove element at slot %d", i))
373 if (WARN(err != -ENOENT, "removed non-existant element %d, error %d not %d",
383 err = rhltable_insert(&rhlt, &rhl_test_objects[i].list_node, test_rht_params);
385 if (WARN(test_and_set_bit(i, obj_in_table), "succeeded to insert same object %d", i))
388 if (WARN(!test_bit(i, obj_in_table), "failed to insert object %d", i))
397 i = prandom_u32_max(entries);
398 if (test_bit(i, obj_in_table)) {
399 err = rhltable_remove(&rhlt, &rhl_test_objects[i].list_node, test_rht_params);
400 WARN(err, "cannot remove element at slot %d", i);
402 clear_bit(i, obj_in_table);
404 err = rhltable_insert(&rhlt, &rhl_test_objects[i].list_node, test_rht_params);
405 WARN(err, "failed to insert object %d", i);
407 set_bit(i, obj_in_table);
411 for (i = 0; i < entries; i++) {
413 err = rhltable_remove(&rhlt, &rhl_test_objects[i].list_node, test_rht_params);
414 if (test_bit(i, obj_in_table)) {
415 if (WARN(err, "cannot remove element at slot %d", i))
418 if (WARN(err != -ENOENT, "removed non-existant element, error %d not %d",
424 rhltable_destroy(&rhlt);
426 vfree(rhl_test_objects);
431 static int __init test_rhashtable_max(struct test_obj *array,
432 unsigned int entries)
434 unsigned int i, insert_retries = 0;
437 test_rht_params.max_size = roundup_pow_of_two(entries / 8);
438 err = rhashtable_init(&ht, &test_rht_params);
442 for (i = 0; i < ht.max_elems; i++) {
443 struct test_obj *obj = &array[i];
445 obj->value.id = i * 2;
446 err = insert_retry(&ht, obj, test_rht_params);
448 insert_retries += err;
453 err = insert_retry(&ht, &array[ht.max_elems], test_rht_params);
457 pr_info("insert element %u should have failed with %d, got %d\n",
458 ht.max_elems, -E2BIG, err);
463 rhashtable_destroy(&ht);
468 static int thread_lookup_test(struct thread_data *tdata)
470 unsigned int entries = tdata->entries;
473 for (i = 0; i < entries; i++) {
474 struct test_obj *obj;
475 struct test_obj_val key = {
480 obj = rhashtable_lookup_fast(&ht, &key, test_rht_params);
481 if (obj && (tdata->objs[i].value.id == TEST_INSERT_FAIL)) {
482 pr_err(" found unexpected object %d-%d\n", key.tid, key.id);
484 } else if (!obj && (tdata->objs[i].value.id != TEST_INSERT_FAIL)) {
485 pr_err(" object %d-%d not found!\n", key.tid, key.id);
487 } else if (obj && memcmp(&obj->value, &key, sizeof(key))) {
488 pr_err(" wrong object returned (got %d-%d, expected %d-%d)\n",
489 obj->value.tid, obj->value.id, key.tid, key.id);
498 static int threadfunc(void *data)
500 int i, step, err = 0, insert_retries = 0;
501 struct thread_data *tdata = data;
504 if (down_interruptible(&startup_sem))
505 pr_err(" thread[%d]: down_interruptible failed\n", tdata->id);
507 for (i = 0; i < tdata->entries; i++) {
508 tdata->objs[i].value.id = i;
509 tdata->objs[i].value.tid = tdata->id;
510 err = insert_retry(&ht, &tdata->objs[i], test_rht_params);
512 insert_retries += err;
514 pr_err(" thread[%d]: rhashtable_insert_fast failed\n",
520 pr_info(" thread[%d]: %u insertions retried due to memory pressure\n",
521 tdata->id, insert_retries);
523 err = thread_lookup_test(tdata);
525 pr_err(" thread[%d]: rhashtable_lookup_test failed\n",
530 for (step = 10; step > 0; step--) {
531 for (i = 0; i < tdata->entries; i += step) {
532 if (tdata->objs[i].value.id == TEST_INSERT_FAIL)
534 err = rhashtable_remove_fast(&ht, &tdata->objs[i].node,
537 pr_err(" thread[%d]: rhashtable_remove_fast failed\n",
541 tdata->objs[i].value.id = TEST_INSERT_FAIL;
545 err = thread_lookup_test(tdata);
547 pr_err(" thread[%d]: rhashtable_lookup_test (2) failed\n",
553 while (!kthread_should_stop()) {
554 set_current_state(TASK_INTERRUPTIBLE);
560 static int __init test_rht_init(void)
562 unsigned int entries;
563 int i, err, started_threads = 0, failed_threads = 0;
565 struct thread_data *tdata;
566 struct test_obj *objs;
568 if (parm_entries < 0)
571 entries = min(parm_entries, MAX_ENTRIES);
573 test_rht_params.automatic_shrinking = shrinking;
574 test_rht_params.max_size = max_size ? : roundup_pow_of_two(entries);
575 test_rht_params.nelem_hint = size;
577 objs = vzalloc((test_rht_params.max_size + 1) * sizeof(struct test_obj));
581 pr_info("Running rhashtable test nelem=%d, max_size=%d, shrinking=%d\n",
582 size, max_size, shrinking);
584 for (i = 0; i < runs; i++) {
587 pr_info("Test %02d:\n", i);
588 memset(objs, 0, test_rht_params.max_size * sizeof(struct test_obj));
590 err = rhashtable_init(&ht, &test_rht_params);
592 pr_warn("Test failed: Unable to initialize hashtable: %d\n",
597 time = test_rhashtable(&ht, objs, entries);
598 rhashtable_destroy(&ht);
601 pr_warn("Test failed: return code %lld\n", time);
608 pr_info("test if its possible to exceed max_size %d: %s\n",
609 test_rht_params.max_size, test_rhashtable_max(objs, entries) == 0 ?
610 "no, ok" : "YES, failed");
613 do_div(total_time, runs);
614 pr_info("Average test time: %llu\n", total_time);
619 pr_info("Testing concurrent rhashtable access from %d threads\n",
621 sema_init(&prestart_sem, 1 - tcount);
622 tdata = vzalloc(tcount * sizeof(struct thread_data));
625 objs = vzalloc(tcount * entries * sizeof(struct test_obj));
631 test_rht_params.max_size = max_size ? :
632 roundup_pow_of_two(tcount * entries);
633 err = rhashtable_init(&ht, &test_rht_params);
635 pr_warn("Test failed: Unable to initialize hashtable: %d\n",
641 for (i = 0; i < tcount; i++) {
643 tdata[i].entries = entries;
644 tdata[i].objs = objs + i * entries;
645 tdata[i].task = kthread_run(threadfunc, &tdata[i],
646 "rhashtable_thrad[%d]", i);
647 if (IS_ERR(tdata[i].task))
648 pr_err(" kthread_run failed for thread %d\n", i);
652 if (down_interruptible(&prestart_sem))
653 pr_err(" down interruptible failed\n");
654 for (i = 0; i < tcount; i++)
656 for (i = 0; i < tcount; i++) {
657 if (IS_ERR(tdata[i].task))
659 if ((err = kthread_stop(tdata[i].task))) {
660 pr_warn("Test failed: thread %d returned: %d\n",
665 rhashtable_destroy(&ht);
670 * rhltable_remove is very expensive, default values can cause test
671 * to run for 2 minutes or more, use a smaller number instead.
673 err = test_rhltable(entries / 16);
674 pr_info("Started %d threads, %d failed, rhltable test returns %d\n",
675 started_threads, failed_threads, err);
679 static void __exit test_rht_exit(void)
683 module_init(test_rht_init);
684 module_exit(test_rht_exit);
686 MODULE_LICENSE("GPL v2");