4 * Userspace RCU library - test program
6 * Copyright 2009-2012 - Mathieu Desnoyers <mathieu.desnoyers@polymtl.ca>
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.
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.
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.
23 #include "test_urcu_hash.h"
31 void (*sigusr1
)(int signo
);
32 void (*sigusr2
)(int signo
);
33 void *(*thr_reader
)(void *_count
);
34 void *(*thr_writer
)(void *_count
);
35 int (*populate_hash
)(void);
39 struct test_hash_cb test_hash_cb
[] = {
41 test_hash_rw_sigusr1_handler
,
42 test_hash_rw_sigusr2_handler
,
43 test_hash_rw_thr_reader
,
44 test_hash_rw_thr_writer
,
45 test_hash_rw_populate_hash
,
47 [TEST_HASH_UNIQUE
] = {
48 test_hash_unique_sigusr1_handler
,
49 test_hash_unique_sigusr2_handler
,
50 test_hash_unique_thr_reader
,
51 test_hash_unique_thr_writer
,
52 test_hash_unique_populate_hash
,
57 static enum test_hash test_choice
= TEST_HASH_RW
;
60 void (*get_sigusr1_cb(void))(int)
62 return test_hash_cb
[test_choice
].sigusr1
;
66 void (*get_sigusr2_cb(void))(int)
68 return test_hash_cb
[test_choice
].sigusr2
;
72 void *(*get_thr_reader_cb(void))(void *)
74 return test_hash_cb
[test_choice
].thr_reader
;
78 void *(*get_thr_writer_cb(void))(void *)
80 return test_hash_cb
[test_choice
].thr_writer
;
84 int (*get_populate_hash_cb(void))(void)
86 return test_hash_cb
[test_choice
].populate_hash
;
89 DEFINE_URCU_TLS(unsigned int, rand_lookup
);
90 DEFINE_URCU_TLS(unsigned long, nr_add
);
91 DEFINE_URCU_TLS(unsigned long, nr_addexist
);
92 DEFINE_URCU_TLS(unsigned long, nr_del
);
93 DEFINE_URCU_TLS(unsigned long, nr_delnoent
);
94 DEFINE_URCU_TLS(unsigned long, lookup_fail
);
95 DEFINE_URCU_TLS(unsigned long, lookup_ok
);
97 struct cds_lfht
*test_ht
;
99 volatile int test_go
, test_stop
;
101 unsigned long wdelay
;
103 unsigned long duration
;
105 /* read-side C.S. duration, in loops */
106 unsigned long rduration
;
108 unsigned long init_hash_size
= DEFAULT_HASH_SIZE
;
109 unsigned long min_hash_alloc_size
= DEFAULT_MIN_ALLOC_SIZE
;
110 unsigned long max_hash_buckets_size
= (1UL << 20);
111 unsigned long init_populate
;
113 int add_only
, add_unique
, add_replace
;
114 const struct cds_lfht_mm_type
*memory_backend
;
116 unsigned long init_pool_offset
, lookup_pool_offset
, write_pool_offset
;
117 unsigned long init_pool_size
= DEFAULT_RAND_POOL
,
118 lookup_pool_size
= DEFAULT_RAND_POOL
,
119 write_pool_size
= DEFAULT_RAND_POOL
;
121 unsigned long nr_hash_chains
; /* 0: normal table, other: number of hash chains */
127 unsigned int cpu_affinities
[NR_CPUS
];
128 unsigned int next_aff
= 0;
129 int use_affinity
= 0;
131 pthread_mutex_t affinity_mutex
= PTHREAD_MUTEX_INITIALIZER
;
133 DEFINE_URCU_TLS(unsigned long long, nr_writes
);
134 DEFINE_URCU_TLS(unsigned long long, nr_reads
);
136 unsigned int nr_readers
;
137 unsigned int nr_writers
;
139 static pthread_mutex_t rcu_copy_mutex
= PTHREAD_MUTEX_INITIALIZER
;
141 void set_affinity(void)
143 #ifdef HAVE_SCHED_SETAFFINITY
146 #endif /* HAVE_SCHED_SETAFFINITY */
151 #ifdef HAVE_SCHED_SETAFFINITY
152 ret
= pthread_mutex_lock(&affinity_mutex
);
154 perror("Error in pthread mutex lock");
157 cpu
= cpu_affinities
[next_aff
++];
158 ret
= pthread_mutex_unlock(&affinity_mutex
);
160 perror("Error in pthread mutex unlock");
165 sched_setaffinity(0, sizeof(mask
), &mask
);
166 #endif /* HAVE_SCHED_SETAFFINITY */
169 void rcu_copy_mutex_lock(void)
172 ret
= pthread_mutex_lock(&rcu_copy_mutex
);
174 perror("Error in pthread mutex lock");
179 void rcu_copy_mutex_unlock(void)
183 ret
= pthread_mutex_unlock(&rcu_copy_mutex
);
185 perror("Error in pthread mutex unlock");
190 unsigned long test_compare(const void *key1
, size_t key1_len
,
191 const void *key2
, size_t key2_len
)
193 if (caa_unlikely(key1_len
!= key2_len
))
195 urcu_posix_assert(key1_len
== sizeof(unsigned long));
203 void *thr_count(void *arg
__attribute__((unused
)))
205 printf_verbose("thread_begin %s, tid %lu\n",
206 "counter", urcu_get_thread_id());
208 rcu_register_thread();
212 long approx_before
, approx_after
;
216 rcu_thread_offline();
217 len
= read(count_pipe
[0], buf
, 1);
219 if (caa_unlikely(!test_duration_read()))
224 printf("Counting nodes... ");
227 cds_lfht_count_nodes(test_ht
, &approx_before
, &count
,
231 printf("Approximation before node accounting: %ld nodes.\n",
233 printf("Accounting of nodes in the hash table: "
236 printf("Approximation after node accounting: %ld nodes.\n",
239 rcu_unregister_thread();
243 void free_node_cb(struct rcu_head
*head
)
245 struct lfht_test_node
*node
=
246 caa_container_of(head
, struct lfht_test_node
, head
);
251 void test_delete_all_nodes(struct cds_lfht
*ht
)
253 struct cds_lfht_iter iter
;
254 struct lfht_test_node
*node
;
255 unsigned long count
= 0;
257 cds_lfht_for_each_entry(ht
, &iter
, node
, node
) {
260 ret
= cds_lfht_del(test_ht
, cds_lfht_iter_get_node(&iter
));
261 urcu_posix_assert(!ret
);
262 call_rcu(&node
->head
, free_node_cb
);
265 printf("deleted %lu nodes.\n", count
);
269 void show_usage(char **argv
)
271 printf("Usage : %s nr_readers nr_writers duration (s) <OPTIONS>\n",
273 printf("OPTIONS:\n");
274 printf(" [-r] [-w] (yield reader and/or writer)\n");
275 printf(" [-d delay] (writer period (us))\n");
276 printf(" [-c duration] (reader C.S. duration (in loops))\n");
277 printf(" [-v] (verbose output)\n");
278 printf(" [-a cpu#] [-a cpu#]... (affinity)\n");
279 printf(" [-h size] (initial number of buckets)\n");
280 printf(" [-m size] (minimum number of allocated buckets)\n");
281 printf(" [-n size] (maximum number of buckets)\n");
282 printf(" [not -u nor -s] Add entries (supports redundant keys).\n");
283 printf(" [-u] Uniquify add (no redundant keys).\n");
284 printf(" [-s] Replace (swap) entries.\n");
285 printf(" [-i] Add only (no removal).\n");
286 printf(" [-k nr_nodes] Number of nodes to insert initially.\n");
287 printf(" [-A] Automatically resize hash table.\n");
288 printf(" [-B order|chunk|mmap] Specify the memory backend.\n");
289 printf(" [-R offset] Lookup pool offset.\n");
290 printf(" [-S offset] Write pool offset.\n");
291 printf(" [-T offset] Init pool offset.\n");
292 printf(" [-M size] Lookup pool size.\n");
293 printf(" [-N size] Write pool size.\n");
294 printf(" [-O size] Init pool size.\n");
295 printf(" [-V] Validate lookups of init values.\n");
296 printf(" (use with filled init pool, same lookup range,\n");
297 printf(" with different write range)\n");
298 printf(" [-U] Uniqueness test.\n");
299 printf(" [-C] Number of hash chains.\n");
303 int main(int argc
, char **argv
)
305 pthread_t
*tid_reader
, *tid_writer
;
308 unsigned long long *count_reader
;
309 struct wr_count
*count_writer
;
310 unsigned long long tot_reads
= 0, tot_writes
= 0,
311 tot_add
= 0, tot_add_exist
= 0, tot_remove
= 0;
313 long approx_before
, approx_after
;
314 int i
, a
, ret
, err
, mainret
= 0;
316 struct sigaction act
;
318 unsigned int nr_readers_created
= 0, nr_writers_created
= 0;
327 err
= sscanf(argv
[1], "%u", &nr_readers
);
334 err
= sscanf(argv
[2], "%u", &nr_writers
);
341 err
= sscanf(argv
[3], "%lu", &duration
);
348 for (i
= 4; i
< argc
; i
++) {
349 if (argv
[i
][0] != '-')
351 switch (argv
[i
][1]) {
353 rcu_debug_yield_enable(RCU_YIELD_READ
);
356 rcu_debug_yield_enable(RCU_YIELD_WRITE
);
365 cpu_affinities
[next_aff
++] = a
;
367 printf_verbose("Adding CPU %d affinity\n", a
);
375 rduration
= atol(argv
[++i
]);
383 wdelay
= atol(argv
[++i
]);
394 init_hash_size
= atol(argv
[++i
]);
402 min_hash_alloc_size
= atol(argv
[++i
]);
410 max_hash_buckets_size
= atol(argv
[++i
]);
414 printf("Please specify at most one of -s or -u.\n");
421 printf("Please specify at most one of -s or -u.\n");
430 init_populate
= atol(argv
[++i
]);
442 if (!strcmp("order", argv
[i
]))
443 memory_backend
= &cds_lfht_mm_order
;
444 else if (!strcmp("chunk", argv
[i
]))
445 memory_backend
= &cds_lfht_mm_chunk
;
446 else if (!strcmp("mmap", argv
[i
]))
447 memory_backend
= &cds_lfht_mm_mmap
;
449 printf("Please specify memory backend with order|chunk|mmap.\n");
455 lookup_pool_offset
= atol(argv
[++i
]);
458 write_pool_offset
= atol(argv
[++i
]);
461 init_pool_offset
= atol(argv
[++i
]);
464 lookup_pool_size
= atol(argv
[++i
]);
467 write_pool_size
= atol(argv
[++i
]);
470 init_pool_size
= atol(argv
[++i
]);
476 test_choice
= TEST_HASH_UNIQUE
;
479 nr_hash_chains
= atol(argv
[++i
]);
484 /* Check if hash size is power of 2 */
485 if (init_hash_size
&& init_hash_size
& (init_hash_size
- 1)) {
486 printf("Error: Initial number of buckets (%lu) is not a power of 2.\n",
492 if (min_hash_alloc_size
&& min_hash_alloc_size
& (min_hash_alloc_size
- 1)) {
493 printf("Error: Minimum number of allocated buckets (%lu) is not a power of 2.\n",
494 min_hash_alloc_size
);
499 if (max_hash_buckets_size
&& max_hash_buckets_size
& (max_hash_buckets_size
- 1)) {
500 printf("Error: Maximum number of buckets (%lu) is not a power of 2.\n",
501 max_hash_buckets_size
);
506 memset(&act
, 0, sizeof(act
));
507 ret
= sigemptyset(&act
.sa_mask
);
509 perror("sigemptyset");
513 act
.sa_handler
= get_sigusr1_cb();
514 act
.sa_flags
= SA_RESTART
;
515 ret
= sigaction(SIGUSR1
, &act
, NULL
);
522 act
.sa_handler
= get_sigusr2_cb();
523 act
.sa_flags
= SA_RESTART
;
524 ret
= sigaction(SIGUSR2
, &act
, NULL
);
531 printf_verbose("running test for %lu seconds, %u readers, %u writers.\n",
532 duration
, nr_readers
, nr_writers
);
533 printf_verbose("Writer delay : %lu loops.\n", wdelay
);
534 printf_verbose("Reader duration : %lu loops.\n", rduration
);
535 printf_verbose("Mode:%s%s.\n",
536 add_only
? " add only" : " add/remove",
537 add_unique
? " uniquify" : ( add_replace
? " replace" : " insert"));
538 printf_verbose("Initial number of buckets: %lu buckets.\n", init_hash_size
);
539 printf_verbose("Minimum number of allocated buckets: %lu buckets.\n", min_hash_alloc_size
);
540 printf_verbose("Maximum number of buckets: %lu buckets.\n", max_hash_buckets_size
);
541 printf_verbose("Init pool size offset %lu size %lu.\n",
542 init_pool_offset
, init_pool_size
);
543 printf_verbose("Lookup pool size offset %lu size %lu.\n",
544 lookup_pool_offset
, lookup_pool_size
);
545 printf_verbose("Update pool size offset %lu size %lu.\n",
546 write_pool_offset
, write_pool_size
);
547 printf_verbose("Number of hash chains: %lu.\n",
549 printf_verbose("thread %-6s, tid %lu\n",
550 "main", urcu_get_thread_id());
552 tid_reader
= calloc(nr_readers
, sizeof(*tid_reader
));
557 tid_writer
= calloc(nr_writers
, sizeof(*tid_writer
));
560 goto end_free_tid_reader
;
562 count_reader
= calloc(nr_readers
, sizeof(*count_reader
));
565 goto end_free_tid_writer
;
567 count_writer
= calloc(nr_writers
, sizeof(*count_writer
));
570 goto end_free_count_reader
;
573 err
= create_all_cpu_call_rcu_data(0);
575 printf("Per-CPU call_rcu() worker threads unavailable. Using default global worker thread.\n");
578 if (memory_backend
) {
579 test_ht
= _cds_lfht_new(init_hash_size
, min_hash_alloc_size
,
580 max_hash_buckets_size
,
581 (opt_auto_resize
? CDS_LFHT_AUTO_RESIZE
: 0) |
582 CDS_LFHT_ACCOUNTING
, memory_backend
,
585 test_ht
= cds_lfht_new(init_hash_size
, min_hash_alloc_size
,
586 max_hash_buckets_size
,
587 (opt_auto_resize
? CDS_LFHT_AUTO_RESIZE
: 0) |
588 CDS_LFHT_ACCOUNTING
, NULL
);
591 printf("Error allocating hash table.\n");
593 goto end_free_call_rcu_data
;
597 * Hash Population needs to be seen as a RCU reader
598 * thread from the point of view of resize.
600 rcu_register_thread();
601 ret
= (get_populate_hash_cb())();
602 urcu_posix_assert(!ret
);
604 rcu_thread_offline();
608 ret
= pipe(count_pipe
);
615 /* spawn counter thread */
616 err
= pthread_create(&tid_count
, NULL
, thr_count
,
621 perror("pthread_create");
625 for (i_thr
= 0; i_thr
< nr_readers
; i_thr
++) {
626 err
= pthread_create(&tid_reader
[i_thr
],
627 NULL
, get_thr_reader_cb(),
628 &count_reader
[i_thr
]);
632 perror("pthread_create");
633 goto end_pthread_join
;
635 nr_readers_created
++;
637 for (i_thr
= 0; i_thr
< nr_writers
; i_thr
++) {
638 err
= pthread_create(&tid_writer
[i_thr
],
639 NULL
, get_thr_writer_cb(),
640 &count_writer
[i_thr
]);
644 perror("pthread_create");
645 goto end_pthread_join
;
647 nr_writers_created
++;
656 remain
= sleep(remain
);
657 } while (remain
> 0);
662 for (i_thr
= 0; i_thr
< nr_readers_created
; i_thr
++) {
663 err
= pthread_join(tid_reader
[i_thr
], &tret
);
667 perror("pthread_join");
669 tot_reads
+= count_reader
[i_thr
];
671 for (i_thr
= 0; i_thr
< nr_writers_created
; i_thr
++) {
672 err
= pthread_join(tid_writer
[i_thr
], &tret
);
676 perror("pthread_join");
678 tot_writes
+= count_writer
[i_thr
].update_ops
;
679 tot_add
+= count_writer
[i_thr
].add
;
680 tot_add_exist
+= count_writer
[i_thr
].add_exist
;
681 tot_remove
+= count_writer
[i_thr
].remove
;
684 /* teardown counter thread */
685 act
.sa_handler
= SIG_IGN
;
686 act
.sa_flags
= SA_RESTART
;
687 ret
= sigaction(SIGUSR2
, &act
, NULL
);
693 char msg
[1] = { 0x42 };
697 sret
= write(count_pipe
[1], msg
, 1); /* wakeup thread */
698 } while (sret
== -1L && errno
== EINTR
);
700 err
= pthread_join(tid_count
, &tret
);
704 perror("pthread_join");
708 for (i
= 0; i
< 2; i
++) {
709 err
= close(count_pipe
[i
]);
712 perror("close pipe");
719 printf("Counting nodes... ");
720 cds_lfht_count_nodes(test_ht
, &approx_before
, &count
, &approx_after
);
722 test_delete_all_nodes(test_ht
);
724 rcu_thread_offline();
726 printf("Approximation before node accounting: %ld nodes.\n",
728 printf("Nodes deleted from hash table before destroy: "
731 printf("Approximation after node accounting: %ld nodes.\n",
735 ret
= cds_lfht_destroy(test_ht
, NULL
);
737 printf_verbose("final delete aborted\n");
740 printf_verbose("final delete success\n");
742 printf_verbose("total number of reads : %llu, writes %llu\n", tot_reads
,
744 nr_leaked
= (long long) tot_add
+ init_populate
- tot_remove
- count
;
745 printf("SUMMARY %-25s testdur %4lu nr_readers %3u rdur %6lu "
747 "wdelay %6lu nr_reads %12llu nr_writes %12llu nr_ops %12llu "
748 "nr_add %12llu nr_add_fail %12llu nr_remove %12llu nr_leaked %12lld\n",
749 argv
[0], duration
, nr_readers
, rduration
,
750 nr_writers
, wdelay
, tot_reads
, tot_writes
,
751 tot_reads
+ tot_writes
, tot_add
, tot_add_exist
, tot_remove
,
753 if (nr_leaked
!= 0) {
755 printf("WARNING: %lld nodes were leaked!\n", nr_leaked
);
758 rcu_unregister_thread();
759 end_free_call_rcu_data
:
760 free_all_cpu_call_rcu_data();
762 end_free_count_reader
: