rculfhash,test: add max_hash_buckets_size argument
[urcu.git] / tests / test_urcu_hash.c
CommitLineData
ab7d5fc6 1/*
cd1ae16a 2 * test_urcu_hash.c
ab7d5fc6
MD
3 *
4 * Userspace RCU library - test program
5 *
6 * Copyright February 2009 - Mathieu Desnoyers <mathieu.desnoyers@polymtl.ca>
7 *
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License as published by
10 * the Free Software Foundation; either version 2 of the License, or
11 * (at your option) any later version.
12 *
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
17 *
18 * You should have received a copy of the GNU General Public License along
19 * with this program; if not, write to the Free Software Foundation, Inc.,
20 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
21 */
22
23#define _GNU_SOURCE
24#include <stdio.h>
25#include <pthread.h>
26#include <stdlib.h>
27#include <string.h>
28#include <sys/types.h>
29#include <sys/wait.h>
30#include <unistd.h>
31#include <stdio.h>
32#include <assert.h>
ab7d5fc6 33#include <sched.h>
5e28c532 34#include <errno.h>
ab7d5fc6 35
abc490a1
MD
36#ifdef __linux__
37#include <syscall.h>
38#endif
ab7d5fc6 39
6d5c0ca9 40#define DEFAULT_HASH_SIZE 32
32becef6 41#define DEFAULT_MIN_ALLOC_SIZE 1
6d5c0ca9 42#define DEFAULT_RAND_POOL 1000000
5e28c532 43
0422d92c
MD
44#define TEST_HASH_SEED 0x42UL
45
ab7d5fc6
MD
46/* Make this big enough to include the POWER5+ L3 cacheline size of 256B */
47#define CACHE_LINE_SIZE 4096
48
49/* hardcoded number of CPUs */
50#define NR_CPUS 16384
51
98808fb1
MD
52#ifdef POISON_FREE
53#define poison_free(ptr) \
54 do { \
55 memset(ptr, 0x42, sizeof(*(ptr))); \
56 free(ptr); \
57 } while (0)
58#else
59#define poison_free(ptr) free(ptr)
60#endif
61
62
63
ab7d5fc6
MD
64#if defined(_syscall0)
65_syscall0(pid_t, gettid)
66#elif defined(__NR_gettid)
67static inline pid_t gettid(void)
68{
69 return syscall(__NR_gettid);
70}
71#else
72#warning "use pid as tid"
73static inline pid_t gettid(void)
74{
75 return getpid();
76}
77#endif
78
79#ifndef DYNAMIC_LINK_TEST
80#define _LGPL_SOURCE
81#else
82#define debug_yield_read()
83#endif
5567839e 84#include <urcu-qsbr.h>
abc490a1
MD
85#include <urcu/rculfhash.h>
86#include <urcu-call-rcu.h>
ab7d5fc6 87
b8e1907c
MD
88struct wr_count {
89 unsigned long update_ops;
90 unsigned long add;
3c16bf4b 91 unsigned long add_exist;
b8e1907c
MD
92 unsigned long remove;
93};
94
5e28c532
MD
95static unsigned int __thread rand_lookup;
96static unsigned long __thread nr_add;
97static unsigned long __thread nr_addexist;
98static unsigned long __thread nr_del;
99static unsigned long __thread nr_delnoent;
100static unsigned long __thread lookup_fail;
101static unsigned long __thread lookup_ok;
102
14044b37 103static struct cds_lfht *test_ht;
ab7d5fc6 104
5e28c532 105struct test_data {
ab7d5fc6 106 int a;
5e28c532 107 int b;
ab7d5fc6
MD
108};
109
3c692076
LJ
110struct lfht_test_node {
111 struct cds_lfht_node node;
04db56f8
LJ
112 void *key;
113 unsigned int key_len;
81d91005
LJ
114 /* cache-cold for iteration */
115 struct rcu_head head;
3c692076
LJ
116};
117
118static inline struct lfht_test_node *
119to_test_node(struct cds_lfht_node *node)
120{
121 return caa_container_of(node, struct lfht_test_node, node);
122}
123
124static inline
125void lfht_test_node_init(struct lfht_test_node *node, void *key,
126 size_t key_len)
127{
04db56f8
LJ
128 cds_lfht_node_init(&node->node);
129 node->key = key;
130 node->key_len = key_len;
3c692076
LJ
131}
132
133static inline struct lfht_test_node *
134cds_lfht_iter_get_test_node(struct cds_lfht_iter *iter)
135{
136 return to_test_node(cds_lfht_iter_get_node(iter));
137}
138
ab7d5fc6
MD
139static volatile int test_go, test_stop;
140
141static unsigned long wdelay;
142
ab7d5fc6
MD
143static unsigned long duration;
144
145/* read-side C.S. duration, in loops */
146static unsigned long rduration;
147
6d5c0ca9 148static unsigned long init_hash_size = DEFAULT_HASH_SIZE;
32becef6 149static unsigned long min_hash_alloc_size = DEFAULT_MIN_ALLOC_SIZE;
b99436d7 150static unsigned long max_hash_buckets_size = (1UL << 20);
cd1ae16a 151static unsigned long init_populate;
151e7a93 152static int opt_auto_resize;
48ed1c18 153static int add_only, add_unique, add_replace;
6d5c0ca9 154
8008a032 155static unsigned long init_pool_offset, lookup_pool_offset, write_pool_offset;
d837911d
MD
156static unsigned long init_pool_size = DEFAULT_RAND_POOL,
157 lookup_pool_size = DEFAULT_RAND_POOL,
158 write_pool_size = DEFAULT_RAND_POOL;
59b10634 159static int validate_lookup;
8008a032 160
7ed7682f
MD
161static int count_pipe[2];
162
ab7d5fc6
MD
163static inline void loop_sleep(unsigned long l)
164{
165 while(l-- != 0)
abc490a1 166 caa_cpu_relax();
ab7d5fc6
MD
167}
168
169static int verbose_mode;
170
171#define printf_verbose(fmt, args...) \
172 do { \
173 if (verbose_mode) \
33c7c748 174 printf(fmt, ## args); \
ab7d5fc6
MD
175 } while (0)
176
177static unsigned int cpu_affinities[NR_CPUS];
178static unsigned int next_aff = 0;
179static int use_affinity = 0;
180
181pthread_mutex_t affinity_mutex = PTHREAD_MUTEX_INITIALIZER;
182
183static void set_affinity(void)
184{
185 cpu_set_t mask;
186 int cpu;
187 int ret;
188
189 if (!use_affinity)
190 return;
191
192 ret = pthread_mutex_lock(&affinity_mutex);
193 if (ret) {
194 perror("Error in pthread mutex lock");
195 exit(-1);
196 }
197 cpu = cpu_affinities[next_aff++];
198 ret = pthread_mutex_unlock(&affinity_mutex);
199 if (ret) {
200 perror("Error in pthread mutex unlock");
201 exit(-1);
202 }
203 CPU_ZERO(&mask);
204 CPU_SET(cpu, &mask);
205 sched_setaffinity(0, sizeof(mask), &mask);
206}
207
3967a8a8
MD
208static enum {
209 AR_RANDOM = 0,
210 AR_ADD = 1,
211 AR_REMOVE = -1,
212} addremove; /* 1: add, -1 remove, 0: random */
213
214static
215void sigusr1_handler(int signo)
216{
217 switch (addremove) {
218 case AR_ADD:
219 printf("Add/Remove: random.\n");
220 addremove = AR_RANDOM;
221 break;
222 case AR_RANDOM:
223 printf("Add/Remove: remove only.\n");
224 addremove = AR_REMOVE;
225 break;
226 case AR_REMOVE:
227 printf("Add/Remove: add only.\n");
228 addremove = AR_ADD;
229 break;
230 }
231}
232
973e5e1b
MD
233static
234void sigusr2_handler(int signo)
235{
7ed7682f 236 char msg[1] = { 0x42 };
3fb1173c
MD
237 ssize_t ret;
238
239 do {
240 ret = write(count_pipe[1], msg, 1); /* wakeup thread */
241 } while (ret == -1L && errno == EINTR);
973e5e1b
MD
242}
243
ab7d5fc6
MD
244/*
245 * returns 0 if test should end.
246 */
247static int test_duration_write(void)
248{
249 return !test_stop;
250}
251
252static int test_duration_read(void)
253{
254 return !test_stop;
255}
256
257static unsigned long long __thread nr_writes;
258static unsigned long long __thread nr_reads;
259
260static unsigned int nr_readers;
261static unsigned int nr_writers;
262
263pthread_mutex_t rcu_copy_mutex = PTHREAD_MUTEX_INITIALIZER;
264
265void rcu_copy_mutex_lock(void)
266{
267 int ret;
268 ret = pthread_mutex_lock(&rcu_copy_mutex);
269 if (ret) {
270 perror("Error in pthread mutex lock");
271 exit(-1);
272 }
273}
274
275void rcu_copy_mutex_unlock(void)
276{
277 int ret;
278
279 ret = pthread_mutex_unlock(&rcu_copy_mutex);
280 if (ret) {
281 perror("Error in pthread mutex unlock");
282 exit(-1);
283 }
284}
285
732ad076
MD
286/*
287 * Hash function
288 * Source: http://burtleburtle.net/bob/c/lookup3.c
289 * Originally Public Domain
290 */
291
292#define rot(x, k) (((x) << (k)) | ((x) >> (32 - (k))))
293
294#define mix(a, b, c) \
295do { \
296 a -= c; a ^= rot(c, 4); c += b; \
297 b -= a; b ^= rot(a, 6); a += c; \
298 c -= b; c ^= rot(b, 8); b += a; \
299 a -= c; a ^= rot(c, 16); c += b; \
300 b -= a; b ^= rot(a, 19); a += c; \
301 c -= b; c ^= rot(b, 4); b += a; \
302} while (0)
303
304#define final(a, b, c) \
305{ \
306 c ^= b; c -= rot(b, 14); \
307 a ^= c; a -= rot(c, 11); \
308 b ^= a; b -= rot(a, 25); \
309 c ^= b; c -= rot(b, 16); \
310 a ^= c; a -= rot(c, 4);\
311 b ^= a; b -= rot(a, 14); \
312 c ^= b; c -= rot(b, 24); \
313}
314
315static __attribute__((unused))
316uint32_t hash_u32(
317 const uint32_t *k, /* the key, an array of uint32_t values */
318 size_t length, /* the length of the key, in uint32_ts */
319 uint32_t initval) /* the previous hash, or an arbitrary value */
320{
321 uint32_t a, b, c;
322
323 /* Set up the internal state */
324 a = b = c = 0xdeadbeef + (((uint32_t) length) << 2) + initval;
325
326 /*----------------------------------------- handle most of the key */
327 while (length > 3) {
328 a += k[0];
329 b += k[1];
330 c += k[2];
331 mix(a, b, c);
332 length -= 3;
333 k += 3;
334 }
335
336 /*----------------------------------- handle the last 3 uint32_t's */
337 switch (length) { /* all the case statements fall through */
338 case 3: c += k[2];
339 case 2: b += k[1];
340 case 1: a += k[0];
341 final(a, b, c);
342 case 0: /* case 0: nothing left to add */
343 break;
344 }
345 /*---------------------------------------------- report the result */
346 return c;
347}
348
349static
350void hashword2(
351 const uint32_t *k, /* the key, an array of uint32_t values */
352 size_t length, /* the length of the key, in uint32_ts */
353 uint32_t *pc, /* IN: seed OUT: primary hash value */
354 uint32_t *pb) /* IN: more seed OUT: secondary hash value */
355{
356 uint32_t a, b, c;
357
358 /* Set up the internal state */
359 a = b = c = 0xdeadbeef + ((uint32_t) (length << 2)) + *pc;
360 c += *pb;
361
362 /*----------------------------------------- handle most of the key */
363 while (length > 3) {
364 a += k[0];
365 b += k[1];
366 c += k[2];
367 mix(a, b, c);
368 length -= 3;
369 k += 3;
370 }
371
372 /*----------------------------------- handle the last 3 uint32_t's */
373 switch (length) { /* all the case statements fall through */
374 case 3: c += k[2];
375 case 2: b += k[1];
376 case 1: a += k[0];
377 final(a, b, c);
378 case 0: /* case 0: nothing left to add */
379 break;
380 }
381 /*---------------------------------------------- report the result */
382 *pc = c;
383 *pb = b;
384}
385
386#if (CAA_BITS_PER_LONG == 32)
abc490a1 387static
996ff57c 388unsigned long test_hash(const void *_key, size_t length, unsigned long seed)
abc490a1 389{
f542a7ee 390 unsigned int key = (unsigned int) _key;
abc490a1 391
f542a7ee 392 assert(length == sizeof(unsigned int));
bda21126 393 return hash_u32(&key, 1, seed);
732ad076
MD
394}
395#else
396static
996ff57c 397unsigned long test_hash(const void *_key, size_t length, unsigned long seed)
732ad076
MD
398{
399 union {
400 uint64_t v64;
401 uint32_t v32[2];
402 } v;
403 union {
404 uint64_t v64;
405 uint32_t v32[2];
406 } key;
407
408 assert(length == sizeof(unsigned long));
409 v.v64 = (uint64_t) seed;
410 key.v64 = (uint64_t) _key;
411 hashword2(key.v32, 2, &v.v32[0], &v.v32[1]);
412 return v.v64;
413}
414#endif
abc490a1 415
732ad076 416static
996ff57c
MD
417unsigned long test_compare(const void *key1, size_t key1_len,
418 const void *key2, size_t key2_len)
732ad076 419{
8ed51e04 420 if (caa_unlikely(key1_len != key2_len))
732ad076
MD
421 return -1;
422 assert(key1_len == sizeof(unsigned long));
423 if (key1 == key2)
424 return 0;
425 else
426 return 1;
abc490a1 427}
ab7d5fc6 428
0422d92c 429static
996ff57c 430int test_match(struct cds_lfht_node *node, const void *key)
0422d92c 431{
04db56f8
LJ
432 struct lfht_test_node *test_node = to_test_node(node);
433
434 return !test_compare(test_node->key, test_node->key_len,
435 key, sizeof(unsigned long));
0422d92c
MD
436}
437
b99436d7 438static inline
0422d92c
MD
439void cds_lfht_test_lookup(struct cds_lfht *ht, void *key, size_t key_len,
440 struct cds_lfht_iter *iter)
441{
442 assert(key_len == sizeof(unsigned long));
443
6f554439
LJ
444 cds_lfht_lookup(ht, test_hash(key, key_len, TEST_HASH_SEED),
445 test_match, key, iter);
0422d92c
MD
446}
447
7ed7682f
MD
448void *thr_count(void *arg)
449{
450 printf_verbose("thread_begin %s, thread id : %lx, tid %lu\n",
451 "counter", pthread_self(), (unsigned long)gettid());
452
453 rcu_register_thread();
454
455 for (;;) {
d933dd0e
MD
456 unsigned long count, removed;
457 long approx_before, approx_after;
7ed7682f
MD
458 ssize_t len;
459 char buf[1];
460
461 rcu_thread_offline();
462 len = read(count_pipe[0], buf, 1);
463 rcu_thread_online();
8ed51e04 464 if (caa_unlikely(!test_duration_read()))
7ed7682f
MD
465 break;
466 if (len != 1)
467 continue;
468 /* Accounting */
469 printf("Counting nodes... ");
470 fflush(stdout);
471 rcu_read_lock();
472 cds_lfht_count_nodes(test_ht, &approx_before, &count, &removed,
473 &approx_after);
474 rcu_read_unlock();
475 printf("done.\n");
d933dd0e 476 printf("Approximation before node accounting: %ld nodes.\n",
7ed7682f
MD
477 approx_before);
478 printf("Accounting of nodes in the hash table: "
479 "%lu nodes + %lu logically removed.\n",
480 count, removed);
d933dd0e 481 printf("Approximation after node accounting: %ld nodes.\n",
7ed7682f
MD
482 approx_after);
483 }
484 rcu_unregister_thread();
485 return NULL;
486}
487
ab7d5fc6
MD
488void *thr_reader(void *_count)
489{
490 unsigned long long *count = _count;
3c692076 491 struct lfht_test_node *node;
adc0de68 492 struct cds_lfht_iter iter;
ab7d5fc6
MD
493
494 printf_verbose("thread_begin %s, thread id : %lx, tid %lu\n",
495 "reader", pthread_self(), (unsigned long)gettid());
496
497 set_affinity();
498
499 rcu_register_thread();
500
501 while (!test_go)
502 {
503 }
abc490a1 504 cmm_smp_mb();
ab7d5fc6
MD
505
506 for (;;) {
507 rcu_read_lock();
0422d92c 508 cds_lfht_test_lookup(test_ht,
c8f5b384 509 (void *)(((unsigned long) rand_r(&rand_lookup) % lookup_pool_size) + lookup_pool_offset),
adc0de68 510 sizeof(void *), &iter);
3c692076 511 node = cds_lfht_iter_get_test_node(&iter);
59b10634
MD
512 if (node == NULL) {
513 if (validate_lookup) {
514 printf("[ERROR] Lookup cannot find initial node.\n");
46834ba6 515 exit(-1);
59b10634 516 }
5e28c532 517 lookup_fail++;
59b10634 518 } else {
5e28c532 519 lookup_ok++;
59b10634 520 }
ab7d5fc6 521 debug_yield_read();
8ed51e04 522 if (caa_unlikely(rduration))
ab7d5fc6
MD
523 loop_sleep(rduration);
524 rcu_read_unlock();
525 nr_reads++;
8ed51e04 526 if (caa_unlikely(!test_duration_read()))
ab7d5fc6 527 break;
8ed51e04 528 if (caa_unlikely((nr_reads & ((1 << 10) - 1)) == 0))
5567839e 529 rcu_quiescent_state();
ab7d5fc6
MD
530 }
531
532 rcu_unregister_thread();
533
534 *count = nr_reads;
535 printf_verbose("thread_end %s, thread id : %lx, tid %lu\n",
536 "reader", pthread_self(), (unsigned long)gettid());
5e28c532
MD
537 printf_verbose("readid : %lx, lookupfail %lu, lookupok %lu\n",
538 pthread_self(), lookup_fail, lookup_ok);
ab7d5fc6
MD
539 return ((void*)1);
540
541}
542
abc490a1
MD
543static
544void free_node_cb(struct rcu_head *head)
545{
3c692076 546 struct lfht_test_node *node =
81d91005 547 caa_container_of(head, struct lfht_test_node, head);
abc490a1
MD
548 free(node);
549}
550
ab7d5fc6
MD
551void *thr_writer(void *_count)
552{
3c692076
LJ
553 struct lfht_test_node *node;
554 struct cds_lfht_node *ret_node;
adc0de68 555 struct cds_lfht_iter iter;
b8e1907c 556 struct wr_count *count = _count;
5e28c532 557 int ret;
ab7d5fc6
MD
558
559 printf_verbose("thread_begin %s, thread id : %lx, tid %lu\n",
560 "writer", pthread_self(), (unsigned long)gettid());
561
562 set_affinity();
563
5e28c532 564 rcu_register_thread();
5e28c532 565
ab7d5fc6
MD
566 while (!test_go)
567 {
568 }
abc490a1 569 cmm_smp_mb();
ab7d5fc6
MD
570
571 for (;;) {
3967a8a8
MD
572 if ((addremove == AR_ADD || add_only)
573 || (addremove == AR_RANDOM && rand_r(&rand_lookup) & 1)) {
3c692076
LJ
574 node = malloc(sizeof(struct lfht_test_node));
575 lfht_test_node_init(node,
c8f5b384 576 (void *)(((unsigned long) rand_r(&rand_lookup) % write_pool_size) + write_pool_offset),
cb233752 577 sizeof(void *));
6b262fd7 578 rcu_read_lock();
48ed1c18 579 if (add_unique) {
6f554439 580 ret_node = cds_lfht_add_unique(test_ht,
04db56f8 581 test_hash(node->key, node->key_len, TEST_HASH_SEED),
6f554439 582 test_match, node->key, &node->node);
48ed1c18
MD
583 } else {
584 if (add_replace)
6f554439 585 ret_node = cds_lfht_add_replace(test_ht,
04db56f8 586 test_hash(node->key, node->key_len, TEST_HASH_SEED),
6f554439 587 test_match, node->key, &node->node);
48ed1c18 588 else
0422d92c 589 cds_lfht_add(test_ht,
04db56f8 590 test_hash(node->key, node->key_len, TEST_HASH_SEED),
0422d92c 591 &node->node);
48ed1c18 592 }
abc490a1 593 rcu_read_unlock();
3c692076 594 if (add_unique && ret_node != &node->node) {
742aa1db 595 free(node);
3eca1b8c 596 nr_addexist++;
48ed1c18
MD
597 } else {
598 if (add_replace && ret_node) {
81d91005 599 call_rcu(&to_test_node(ret_node)->head,
3c692076 600 free_node_cb);
48ed1c18
MD
601 nr_addexist++;
602 } else {
603 nr_add++;
604 }
605 }
5e28c532
MD
606 } else {
607 /* May delete */
abc490a1 608 rcu_read_lock();
0422d92c 609 cds_lfht_test_lookup(test_ht,
c8f5b384 610 (void *)(((unsigned long) rand_r(&rand_lookup) % write_pool_size) + write_pool_offset),
adc0de68 611 sizeof(void *), &iter);
9357c415 612 ret = cds_lfht_del(test_ht, &iter);
abc490a1
MD
613 rcu_read_unlock();
614 if (ret == 0) {
3c692076 615 node = cds_lfht_iter_get_test_node(&iter);
81d91005 616 call_rcu(&node->head, free_node_cb);
5e28c532 617 nr_del++;
abc490a1
MD
618 } else
619 nr_delnoent++;
44395fb7 620 }
abc490a1 621#if 0
44395fb7
MD
622 //if (nr_writes % 100000 == 0) {
623 if (nr_writes % 1000 == 0) {
abc490a1 624 rcu_read_lock();
44395fb7
MD
625 if (rand_r(&rand_lookup) & 1) {
626 ht_resize(test_ht, 1);
627 } else {
628 ht_resize(test_ht, -1);
629 }
abc490a1 630 rcu_read_unlock();
5e28c532 631 }
abc490a1 632#endif //0
ab7d5fc6 633 nr_writes++;
8ed51e04 634 if (caa_unlikely(!test_duration_write()))
ab7d5fc6 635 break;
8ed51e04 636 if (caa_unlikely(wdelay))
ab7d5fc6 637 loop_sleep(wdelay);
8ed51e04 638 if (caa_unlikely((nr_writes & ((1 << 10) - 1)) == 0))
5567839e 639 rcu_quiescent_state();
ab7d5fc6
MD
640 }
641
5e28c532
MD
642 rcu_unregister_thread();
643
ab7d5fc6
MD
644 printf_verbose("thread_end %s, thread id : %lx, tid %lu\n",
645 "writer", pthread_self(), (unsigned long)gettid());
5e28c532
MD
646 printf_verbose("info id %lx: nr_add %lu, nr_addexist %lu, nr_del %lu, "
647 "nr_delnoent %lu\n", pthread_self(), nr_add,
648 nr_addexist, nr_del, nr_delnoent);
b8e1907c
MD
649 count->update_ops = nr_writes;
650 count->add = nr_add;
3c16bf4b 651 count->add_exist = nr_addexist;
b8e1907c 652 count->remove = nr_del;
ab7d5fc6
MD
653 return ((void*)2);
654}
655
5dc45f25 656static int populate_hash(void)
cd1ae16a 657{
3c692076
LJ
658 struct lfht_test_node *node;
659 struct cds_lfht_node *ret_node;
cd1ae16a
MD
660
661 if (!init_populate)
5dc45f25
MD
662 return 0;
663
48ed1c18 664 if ((add_unique || add_replace) && init_populate * 10 > init_pool_size) {
5dc45f25 665 printf("WARNING: required to populate %lu nodes (-k), but random "
48ed1c18 666"pool is quite small (%lu values) and we are in add_unique (-u) or add_replace (-s) mode. Try with a "
d837911d 667"larger random pool (-p option). This may take a while...\n", init_populate, init_pool_size);
5dc45f25 668 }
cd1ae16a
MD
669
670 while (nr_add < init_populate) {
3c692076
LJ
671 node = malloc(sizeof(struct lfht_test_node));
672 lfht_test_node_init(node,
c8f5b384 673 (void *)(((unsigned long) rand_r(&rand_lookup) % init_pool_size) + init_pool_offset),
cd1ae16a 674 sizeof(void *));
48ed1c18
MD
675 rcu_read_lock();
676 if (add_unique) {
6f554439 677 ret_node = cds_lfht_add_unique(test_ht,
04db56f8 678 test_hash(node->key, node->key_len, TEST_HASH_SEED),
6f554439 679 test_match, node->key, &node->node);
48ed1c18
MD
680 } else {
681 if (add_replace)
6f554439 682 ret_node = cds_lfht_add_replace(test_ht,
04db56f8 683 test_hash(node->key, node->key_len, TEST_HASH_SEED),
6f554439 684 test_match, node->key, &node->node);
48ed1c18 685 else
0422d92c 686 cds_lfht_add(test_ht,
04db56f8 687 test_hash(node->key, node->key_len, TEST_HASH_SEED),
0422d92c 688 &node->node);
48ed1c18
MD
689 }
690 rcu_read_unlock();
3c692076 691 if (add_unique && ret_node != &node->node) {
cd1ae16a
MD
692 free(node);
693 nr_addexist++;
48ed1c18
MD
694 } else {
695 if (add_replace && ret_node) {
81d91005 696 call_rcu(&to_test_node(ret_node)->head, free_node_cb);
48ed1c18
MD
697 nr_addexist++;
698 } else {
699 nr_add++;
700 }
701 }
cd1ae16a
MD
702 nr_writes++;
703 }
5dc45f25 704 return 0;
cd1ae16a
MD
705}
706
175ec0eb
MD
707static
708void test_delete_all_nodes(struct cds_lfht *ht)
709{
710 struct cds_lfht_iter iter;
3c692076 711 struct lfht_test_node *node;
175ec0eb
MD
712 unsigned long count = 0;
713
6d320126 714 cds_lfht_for_each_entry(ht, &iter, node, node) {
175ec0eb
MD
715 int ret;
716
717 ret = cds_lfht_del(test_ht, &iter);
718 assert(!ret);
81d91005 719 call_rcu(&node->head, free_node_cb);
175ec0eb
MD
720 count++;
721 }
722 printf("deleted %lu nodes.\n", count);
723}
724
ab7d5fc6
MD
725void show_usage(int argc, char **argv)
726{
48ed1c18 727 printf("Usage : %s nr_readers nr_writers duration (s)\n", argv[0]);
ab7d5fc6 728#ifdef DEBUG_YIELD
48ed1c18 729 printf(" [-r] [-w] (yield reader and/or writer)\n");
ab7d5fc6 730#endif
48ed1c18
MD
731 printf(" [-d delay] (writer period (us))\n");
732 printf(" [-c duration] (reader C.S. duration (in loops))\n");
733 printf(" [-v] (verbose output)\n");
734 printf(" [-a cpu#] [-a cpu#]... (affinity)\n");
b99436d7
LJ
735 printf(" [-h size] (initial number of buckets)\n");
736 printf(" [-m size] (minimum number of allocated buckets)\n");
737 printf(" [-n size] (maximum number of buckets)\n");
48ed1c18
MD
738 printf(" [not -u nor -s] Add entries (supports redundant keys).\n");
739 printf(" [-u] Uniquify add (no redundant keys).\n");
740 printf(" [-s] Replace (swap) entries.\n");
741 printf(" [-i] Add only (no removal).\n");
742 printf(" [-k nr_nodes] Number of nodes to insert initially.\n");
743 printf(" [-A] Automatically resize hash table.\n");
744 printf(" [-R offset] Lookup pool offset.\n");
745 printf(" [-S offset] Write pool offset.\n");
746 printf(" [-T offset] Init pool offset.\n");
747 printf(" [-M size] Lookup pool size.\n");
748 printf(" [-N size] Write pool size.\n");
749 printf(" [-O size] Init pool size.\n");
750 printf(" [-V] Validate lookups of init values (use with filled init pool, same lookup range, with different write range).\n");
751 printf("\n\n");
ab7d5fc6
MD
752}
753
754int main(int argc, char **argv)
755{
756 int err;
757 pthread_t *tid_reader, *tid_writer;
7ed7682f 758 pthread_t tid_count;
ab7d5fc6 759 void *tret;
b8e1907c
MD
760 unsigned long long *count_reader;
761 struct wr_count *count_writer;
762 unsigned long long tot_reads = 0, tot_writes = 0,
3c16bf4b 763 tot_add = 0, tot_add_exist = 0, tot_remove = 0;
d933dd0e
MD
764 unsigned long count, removed;
765 long approx_before, approx_after;
5e28c532 766 int i, a, ret;
3967a8a8
MD
767 struct sigaction act;
768 unsigned int remain;
ab7d5fc6
MD
769
770 if (argc < 4) {
771 show_usage(argc, argv);
772 return -1;
773 }
774
775 err = sscanf(argv[1], "%u", &nr_readers);
776 if (err != 1) {
777 show_usage(argc, argv);
778 return -1;
779 }
780
781 err = sscanf(argv[2], "%u", &nr_writers);
782 if (err != 1) {
783 show_usage(argc, argv);
784 return -1;
785 }
786
787 err = sscanf(argv[3], "%lu", &duration);
788 if (err != 1) {
789 show_usage(argc, argv);
790 return -1;
791 }
792
793 for (i = 4; i < argc; i++) {
794 if (argv[i][0] != '-')
795 continue;
796 switch (argv[i][1]) {
797#ifdef DEBUG_YIELD
798 case 'r':
799 yield_active |= YIELD_READ;
800 break;
801 case 'w':
802 yield_active |= YIELD_WRITE;
803 break;
804#endif
805 case 'a':
806 if (argc < i + 2) {
807 show_usage(argc, argv);
808 return -1;
809 }
810 a = atoi(argv[++i]);
811 cpu_affinities[next_aff++] = a;
812 use_affinity = 1;
813 printf_verbose("Adding CPU %d affinity\n", a);
814 break;
815 case 'c':
816 if (argc < i + 2) {
817 show_usage(argc, argv);
818 return -1;
819 }
820 rduration = atol(argv[++i]);
821 break;
822 case 'd':
823 if (argc < i + 2) {
824 show_usage(argc, argv);
825 return -1;
826 }
827 wdelay = atol(argv[++i]);
828 break;
829 case 'v':
830 verbose_mode = 1;
831 break;
6d5c0ca9
MD
832 case 'h':
833 if (argc < i + 2) {
834 show_usage(argc, argv);
835 return -1;
836 }
837 init_hash_size = atol(argv[++i]);
838 break;
32becef6
LJ
839 case 'm':
840 if (argc < i + 2) {
841 show_usage(argc, argv);
842 return -1;
843 }
844 min_hash_alloc_size = atol(argv[++i]);
845 break;
b99436d7
LJ
846 case 'n':
847 if (argc < i + 2) {
848 show_usage(argc, argv);
849 return -1;
850 }
851 max_hash_buckets_size = atol(argv[++i]);
852 break;
6d5c0ca9 853 case 'u':
48ed1c18
MD
854 if (add_replace) {
855 printf("Please specify at most one of -s or -u.\n");
856 exit(-1);
857 }
6d5c0ca9
MD
858 add_unique = 1;
859 break;
48ed1c18
MD
860 case 's':
861 if (add_unique) {
862 printf("Please specify at most one of -s or -u.\n");
863 exit(-1);
864 }
865 add_replace = 1;
866 break;
6d5c0ca9
MD
867 case 'i':
868 add_only = 1;
869 break;
cd1ae16a
MD
870 case 'k':
871 init_populate = atol(argv[++i]);
872 break;
151e7a93
MD
873 case 'A':
874 opt_auto_resize = 1;
875 break;
8008a032
MD
876 case 'R':
877 lookup_pool_offset = atol(argv[++i]);
878 break;
879 case 'S':
880 write_pool_offset = atol(argv[++i]);
881 break;
882 case 'T':
883 init_pool_offset = atol(argv[++i]);
884 break;
d837911d
MD
885 case 'M':
886 lookup_pool_size = atol(argv[++i]);
887 break;
888 case 'N':
889 write_pool_size = atol(argv[++i]);
890 break;
891 case 'O':
892 init_pool_size = atol(argv[++i]);
893 break;
59b10634
MD
894 case 'V':
895 validate_lookup = 1;
896 break;
8008a032 897
ab7d5fc6
MD
898 }
899 }
900
6d5c0ca9
MD
901 /* Check if hash size is power of 2 */
902 if (init_hash_size && init_hash_size & (init_hash_size - 1)) {
b99436d7 903 printf("Error: Initial number of buckets (%lu) is not a power of 2.\n",
6d5c0ca9
MD
904 init_hash_size);
905 return -1;
906 }
907
d0d8f9aa 908 if (min_hash_alloc_size && min_hash_alloc_size & (min_hash_alloc_size - 1)) {
b99436d7 909 printf("Error: Minimum number of allocated buckets (%lu) is not a power of 2.\n",
32becef6
LJ
910 min_hash_alloc_size);
911 return -1;
912 }
913
b99436d7
LJ
914 if (max_hash_buckets_size && max_hash_buckets_size & (max_hash_buckets_size - 1)) {
915 printf("Error: Maximum number of buckets (%lu) is not a power of 2.\n",
916 max_hash_buckets_size);
917 return -1;
918 }
919
3967a8a8
MD
920 memset(&act, 0, sizeof(act));
921 ret = sigemptyset(&act.sa_mask);
922 if (ret == -1) {
923 perror("sigemptyset");
924 return -1;
925 }
926 act.sa_handler = sigusr1_handler;
927 act.sa_flags = SA_RESTART;
928 ret = sigaction(SIGUSR1, &act, NULL);
929 if (ret == -1) {
930 perror("sigaction");
931 return -1;
932 }
7ed7682f
MD
933
934 ret = pipe(count_pipe);
935 if (ret == -1) {
936 perror("pipe");
937 return -1;
938 }
939
940 /* spawn counter thread */
941 err = pthread_create(&tid_count, NULL, thr_count,
942 NULL);
943 if (err != 0)
944 exit(1);
945
973e5e1b
MD
946 act.sa_handler = sigusr2_handler;
947 act.sa_flags = SA_RESTART;
948 ret = sigaction(SIGUSR2, &act, NULL);
949 if (ret == -1) {
950 perror("sigaction");
951 return -1;
952 }
3967a8a8 953
ab7d5fc6
MD
954 printf_verbose("running test for %lu seconds, %u readers, %u writers.\n",
955 duration, nr_readers, nr_writers);
956 printf_verbose("Writer delay : %lu loops.\n", wdelay);
957 printf_verbose("Reader duration : %lu loops.\n", rduration);
6d5c0ca9
MD
958 printf_verbose("Mode:%s%s.\n",
959 add_only ? " add only" : " add/remove",
48ed1c18 960 add_unique ? " uniquify" : ( add_replace ? " replace" : " insert"));
b99436d7
LJ
961 printf_verbose("Initial number of buckets: %lu buckets.\n", init_hash_size);
962 printf_verbose("Minimum number of allocated buckets: %lu buckets.\n", min_hash_alloc_size);
963 printf_verbose("Maximum number of buckets: %lu buckets.\n", max_hash_buckets_size);
5dc00396
MD
964 printf_verbose("Init pool size offset %lu size %lu.\n",
965 init_pool_offset, init_pool_size);
966 printf_verbose("Lookup pool size offset %lu size %lu.\n",
967 lookup_pool_offset, lookup_pool_size);
968 printf_verbose("Update pool size offset %lu size %lu.\n",
969 write_pool_offset, write_pool_size);
ab7d5fc6
MD
970 printf_verbose("thread %-6s, thread id : %lx, tid %lu\n",
971 "main", pthread_self(), (unsigned long)gettid());
972
ab7d5fc6
MD
973 tid_reader = malloc(sizeof(*tid_reader) * nr_readers);
974 tid_writer = malloc(sizeof(*tid_writer) * nr_writers);
975 count_reader = malloc(sizeof(*count_reader) * nr_readers);
976 count_writer = malloc(sizeof(*count_writer) * nr_writers);
48ed1c18
MD
977
978 err = create_all_cpu_call_rcu_data(0);
979 assert(!err);
980
981 /*
982 * Hash creation and population needs to be seen as a RCU reader
983 * thread from the point of view of resize.
984 */
985 rcu_register_thread();
b99436d7
LJ
986 test_ht = cds_lfht_new(init_hash_size, min_hash_alloc_size,
987 max_hash_buckets_size,
5afadd12
LJ
988 (opt_auto_resize ? CDS_LFHT_AUTO_RESIZE : 0) |
989 CDS_LFHT_ACCOUNTING, NULL);
48ed1c18 990 ret = populate_hash();
5dc45f25 991 assert(!ret);
59e371e3
MD
992
993 rcu_thread_offline();
14756542 994
ab7d5fc6
MD
995 next_aff = 0;
996
997 for (i = 0; i < nr_readers; i++) {
998 err = pthread_create(&tid_reader[i], NULL, thr_reader,
999 &count_reader[i]);
1000 if (err != 0)
1001 exit(1);
1002 }
1003 for (i = 0; i < nr_writers; i++) {
1004 err = pthread_create(&tid_writer[i], NULL, thr_writer,
1005 &count_writer[i]);
1006 if (err != 0)
1007 exit(1);
1008 }
1009
abc490a1 1010 cmm_smp_mb();
ab7d5fc6
MD
1011
1012 test_go = 1;
1013
3967a8a8
MD
1014 remain = duration;
1015 do {
1016 remain = sleep(remain);
1017 } while (remain > 0);
ab7d5fc6
MD
1018
1019 test_stop = 1;
1020
1021 for (i = 0; i < nr_readers; i++) {
1022 err = pthread_join(tid_reader[i], &tret);
1023 if (err != 0)
1024 exit(1);
1025 tot_reads += count_reader[i];
1026 }
1027 for (i = 0; i < nr_writers; i++) {
1028 err = pthread_join(tid_writer[i], &tret);
1029 if (err != 0)
1030 exit(1);
b8e1907c
MD
1031 tot_writes += count_writer[i].update_ops;
1032 tot_add += count_writer[i].add;
3c16bf4b 1033 tot_add_exist += count_writer[i].add_exist;
b8e1907c 1034 tot_remove += count_writer[i].remove;
ab7d5fc6 1035 }
7ed7682f
MD
1036
1037 /* teardown counter thread */
1038 act.sa_handler = SIG_IGN;
1039 act.sa_flags = SA_RESTART;
1040 ret = sigaction(SIGUSR2, &act, NULL);
1041 if (ret == -1) {
1042 perror("sigaction");
1043 return -1;
1044 }
1045 {
1046 char msg[1] = { 0x42 };
3fb1173c
MD
1047 ssize_t ret;
1048
1049 do {
1050 ret = write(count_pipe[1], msg, 1); /* wakeup thread */
1051 } while (ret == -1L && errno == EINTR);
7ed7682f
MD
1052 }
1053 err = pthread_join(tid_count, &tret);
1054 if (err != 0)
1055 exit(1);
1056
33c7c748 1057 fflush(stdout);
59e371e3
MD
1058 rcu_thread_online();
1059 rcu_read_lock();
175ec0eb 1060 printf("Counting nodes... ");
973e5e1b
MD
1061 cds_lfht_count_nodes(test_ht, &approx_before, &count, &removed,
1062 &approx_after);
175ec0eb
MD
1063 printf("done.\n");
1064 test_delete_all_nodes(test_ht);
59e371e3
MD
1065 rcu_read_unlock();
1066 rcu_thread_offline();
973e5e1b 1067 if (count || removed) {
d933dd0e 1068 printf("Approximation before node accounting: %ld nodes.\n",
973e5e1b 1069 approx_before);
175ec0eb 1070 printf("Nodes deleted from hash table before destroy: "
973e5e1b
MD
1071 "%lu nodes + %lu logically removed.\n",
1072 count, removed);
d933dd0e 1073 printf("Approximation after node accounting: %ld nodes.\n",
973e5e1b
MD
1074 approx_after);
1075 }
b7d619b0 1076 ret = cds_lfht_destroy(test_ht, NULL);
33c7c748
MD
1077 if (ret)
1078 printf_verbose("final delete aborted\n");
1079 else
1080 printf_verbose("final delete success\n");
ab7d5fc6
MD
1081 printf_verbose("total number of reads : %llu, writes %llu\n", tot_reads,
1082 tot_writes);
1083 printf("SUMMARY %-25s testdur %4lu nr_readers %3u rdur %6lu "
1084 "nr_writers %3u "
d837911d 1085 "wdelay %6lu nr_reads %12llu nr_writes %12llu nr_ops %12llu "
cd1ae16a 1086 "nr_add %12llu nr_add_fail %12llu nr_remove %12llu nr_leaked %12lld\n",
ab7d5fc6 1087 argv[0], duration, nr_readers, rduration,
d837911d 1088 nr_writers, wdelay, tot_reads, tot_writes,
3c16bf4b 1089 tot_reads + tot_writes, tot_add, tot_add_exist, tot_remove,
cd1ae16a 1090 (long long) tot_add + init_populate - tot_remove - count);
59e371e3 1091 rcu_unregister_thread();
3a22f1dd 1092 free_all_cpu_call_rcu_data();
ab7d5fc6
MD
1093 free(tid_reader);
1094 free(tid_writer);
1095 free(count_reader);
1096 free(count_writer);
1097 return 0;
1098}
This page took 0.075481 seconds and 4 git commands to generate.