rculfhash test: add options
[urcu.git] / tests / test_urcu_hash.c
1 /*
2 * test_ht.c
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>
33 #include <sched.h>
34 #include <errno.h>
35
36 #ifdef __linux__
37 #include <syscall.h>
38 #endif
39
40 #define DEFAULT_HASH_SIZE 32
41 #define DEFAULT_RAND_POOL 1000000
42
43 /* Make this big enough to include the POWER5+ L3 cacheline size of 256B */
44 #define CACHE_LINE_SIZE 4096
45
46 /* hardcoded number of CPUs */
47 #define NR_CPUS 16384
48
49 #if defined(_syscall0)
50 _syscall0(pid_t, gettid)
51 #elif defined(__NR_gettid)
52 static inline pid_t gettid(void)
53 {
54 return syscall(__NR_gettid);
55 }
56 #else
57 #warning "use pid as tid"
58 static inline pid_t gettid(void)
59 {
60 return getpid();
61 }
62 #endif
63
64 #ifndef DYNAMIC_LINK_TEST
65 #define _LGPL_SOURCE
66 #else
67 #define debug_yield_read()
68 #endif
69 #include <urcu.h>
70 #include <urcu/rculfhash.h>
71 #include <urcu-call-rcu.h>
72
73 struct wr_count {
74 unsigned long update_ops;
75 unsigned long add;
76 unsigned long remove;
77 };
78
79 static unsigned int __thread rand_lookup;
80 static unsigned long __thread nr_add;
81 static unsigned long __thread nr_addexist;
82 static unsigned long __thread nr_del;
83 static unsigned long __thread nr_delnoent;
84 static unsigned long __thread lookup_fail;
85 static unsigned long __thread lookup_ok;
86
87 static struct rcu_ht *test_ht;
88
89 struct test_data {
90 int a;
91 int b;
92 };
93
94 static volatile int test_go, test_stop;
95
96 static unsigned long wdelay;
97
98 static unsigned long duration;
99
100 /* read-side C.S. duration, in loops */
101 static unsigned long rduration;
102
103 static unsigned long init_hash_size = DEFAULT_HASH_SIZE;
104 static unsigned long rand_pool = DEFAULT_RAND_POOL;
105 static int add_only, add_unique;
106
107 static inline void loop_sleep(unsigned long l)
108 {
109 while(l-- != 0)
110 caa_cpu_relax();
111 }
112
113 static int verbose_mode;
114
115 #define printf_verbose(fmt, args...) \
116 do { \
117 if (verbose_mode) \
118 printf(fmt, args); \
119 } while (0)
120
121 static unsigned int cpu_affinities[NR_CPUS];
122 static unsigned int next_aff = 0;
123 static int use_affinity = 0;
124
125 pthread_mutex_t affinity_mutex = PTHREAD_MUTEX_INITIALIZER;
126
127 static void set_affinity(void)
128 {
129 cpu_set_t mask;
130 int cpu;
131 int ret;
132
133 if (!use_affinity)
134 return;
135
136 ret = pthread_mutex_lock(&affinity_mutex);
137 if (ret) {
138 perror("Error in pthread mutex lock");
139 exit(-1);
140 }
141 cpu = cpu_affinities[next_aff++];
142 ret = pthread_mutex_unlock(&affinity_mutex);
143 if (ret) {
144 perror("Error in pthread mutex unlock");
145 exit(-1);
146 }
147 CPU_ZERO(&mask);
148 CPU_SET(cpu, &mask);
149 sched_setaffinity(0, sizeof(mask), &mask);
150 }
151
152 /*
153 * returns 0 if test should end.
154 */
155 static int test_duration_write(void)
156 {
157 return !test_stop;
158 }
159
160 static int test_duration_read(void)
161 {
162 return !test_stop;
163 }
164
165 static unsigned long long __thread nr_writes;
166 static unsigned long long __thread nr_reads;
167
168 static unsigned int nr_readers;
169 static unsigned int nr_writers;
170
171 pthread_mutex_t rcu_copy_mutex = PTHREAD_MUTEX_INITIALIZER;
172
173 void rcu_copy_mutex_lock(void)
174 {
175 int ret;
176 ret = pthread_mutex_lock(&rcu_copy_mutex);
177 if (ret) {
178 perror("Error in pthread mutex lock");
179 exit(-1);
180 }
181 }
182
183 void rcu_copy_mutex_unlock(void)
184 {
185 int ret;
186
187 ret = pthread_mutex_unlock(&rcu_copy_mutex);
188 if (ret) {
189 perror("Error in pthread mutex unlock");
190 exit(-1);
191 }
192 }
193
194 /*
195 * Hash function
196 * Source: http://burtleburtle.net/bob/c/lookup3.c
197 * Originally Public Domain
198 */
199
200 #define rot(x, k) (((x) << (k)) | ((x) >> (32 - (k))))
201
202 #define mix(a, b, c) \
203 do { \
204 a -= c; a ^= rot(c, 4); c += b; \
205 b -= a; b ^= rot(a, 6); a += c; \
206 c -= b; c ^= rot(b, 8); b += a; \
207 a -= c; a ^= rot(c, 16); c += b; \
208 b -= a; b ^= rot(a, 19); a += c; \
209 c -= b; c ^= rot(b, 4); b += a; \
210 } while (0)
211
212 #define final(a, b, c) \
213 { \
214 c ^= b; c -= rot(b, 14); \
215 a ^= c; a -= rot(c, 11); \
216 b ^= a; b -= rot(a, 25); \
217 c ^= b; c -= rot(b, 16); \
218 a ^= c; a -= rot(c, 4);\
219 b ^= a; b -= rot(a, 14); \
220 c ^= b; c -= rot(b, 24); \
221 }
222
223 static __attribute__((unused))
224 uint32_t hash_u32(
225 const uint32_t *k, /* the key, an array of uint32_t values */
226 size_t length, /* the length of the key, in uint32_ts */
227 uint32_t initval) /* the previous hash, or an arbitrary value */
228 {
229 uint32_t a, b, c;
230
231 /* Set up the internal state */
232 a = b = c = 0xdeadbeef + (((uint32_t) length) << 2) + initval;
233
234 /*----------------------------------------- handle most of the key */
235 while (length > 3) {
236 a += k[0];
237 b += k[1];
238 c += k[2];
239 mix(a, b, c);
240 length -= 3;
241 k += 3;
242 }
243
244 /*----------------------------------- handle the last 3 uint32_t's */
245 switch (length) { /* all the case statements fall through */
246 case 3: c += k[2];
247 case 2: b += k[1];
248 case 1: a += k[0];
249 final(a, b, c);
250 case 0: /* case 0: nothing left to add */
251 break;
252 }
253 /*---------------------------------------------- report the result */
254 return c;
255 }
256
257 static
258 void hashword2(
259 const uint32_t *k, /* the key, an array of uint32_t values */
260 size_t length, /* the length of the key, in uint32_ts */
261 uint32_t *pc, /* IN: seed OUT: primary hash value */
262 uint32_t *pb) /* IN: more seed OUT: secondary hash value */
263 {
264 uint32_t a, b, c;
265
266 /* Set up the internal state */
267 a = b = c = 0xdeadbeef + ((uint32_t) (length << 2)) + *pc;
268 c += *pb;
269
270 /*----------------------------------------- handle most of the key */
271 while (length > 3) {
272 a += k[0];
273 b += k[1];
274 c += k[2];
275 mix(a, b, c);
276 length -= 3;
277 k += 3;
278 }
279
280 /*----------------------------------- handle the last 3 uint32_t's */
281 switch (length) { /* all the case statements fall through */
282 case 3: c += k[2];
283 case 2: b += k[1];
284 case 1: a += k[0];
285 final(a, b, c);
286 case 0: /* case 0: nothing left to add */
287 break;
288 }
289 /*---------------------------------------------- report the result */
290 *pc = c;
291 *pb = b;
292 }
293
294 #if (CAA_BITS_PER_LONG == 32)
295 static
296 unsigned long test_hash(void *_key, size_t length, unsigned long seed)
297 {
298 unsigned long key = (unsigned long) _key;
299 unsigned long v;
300
301 assert(length == sizeof(unsigned long));
302 return hash_u32(&v, 1, seed);
303 }
304 #else
305 static
306 unsigned long test_hash(void *_key, size_t length, unsigned long seed)
307 {
308 union {
309 uint64_t v64;
310 uint32_t v32[2];
311 } v;
312 union {
313 uint64_t v64;
314 uint32_t v32[2];
315 } key;
316
317 assert(length == sizeof(unsigned long));
318 v.v64 = (uint64_t) seed;
319 key.v64 = (uint64_t) _key;
320 hashword2(key.v32, 2, &v.v32[0], &v.v32[1]);
321 return v.v64;
322 }
323 #endif
324
325 static
326 unsigned long test_compare(void *key1, size_t key1_len,
327 void *key2, size_t key2_len)
328 {
329 if (unlikely(key1_len != key2_len))
330 return -1;
331 assert(key1_len == sizeof(unsigned long));
332 if (key1 == key2)
333 return 0;
334 else
335 return 1;
336 }
337
338 void *thr_reader(void *_count)
339 {
340 unsigned long long *count = _count;
341 struct rcu_ht_node *node;
342
343 printf_verbose("thread_begin %s, thread id : %lx, tid %lu\n",
344 "reader", pthread_self(), (unsigned long)gettid());
345
346 set_affinity();
347
348 rcu_register_thread();
349
350 while (!test_go)
351 {
352 }
353 cmm_smp_mb();
354
355 for (;;) {
356 rcu_read_lock();
357 node = ht_lookup(test_ht,
358 (void *)(unsigned long)(rand_r(&rand_lookup) % rand_pool),
359 sizeof(void *));
360 if (node == NULL)
361 lookup_fail++;
362 else
363 lookup_ok++;
364 debug_yield_read();
365 if (unlikely(rduration))
366 loop_sleep(rduration);
367 rcu_read_unlock();
368 nr_reads++;
369 if (unlikely(!test_duration_read()))
370 break;
371 }
372
373 rcu_unregister_thread();
374
375 *count = nr_reads;
376 printf_verbose("thread_end %s, thread id : %lx, tid %lu\n",
377 "reader", pthread_self(), (unsigned long)gettid());
378 printf_verbose("readid : %lx, lookupfail %lu, lookupok %lu\n",
379 pthread_self(), lookup_fail, lookup_ok);
380 return ((void*)1);
381
382 }
383
384 static
385 void free_node_cb(struct rcu_head *head)
386 {
387 struct rcu_ht_node *node =
388 caa_container_of(head, struct rcu_ht_node, head);
389 free(node);
390 }
391
392 void *thr_writer(void *_count)
393 {
394 struct rcu_ht_node *node, *ret_node;
395 struct wr_count *count = _count;
396 int ret;
397
398 printf_verbose("thread_begin %s, thread id : %lx, tid %lu\n",
399 "writer", pthread_self(), (unsigned long)gettid());
400
401 set_affinity();
402
403 rcu_register_thread();
404
405 while (!test_go)
406 {
407 }
408 cmm_smp_mb();
409
410 for (;;) {
411 if (add_only || rand_r(&rand_lookup) & 1) {
412 node = malloc(sizeof(struct rcu_ht_node));
413 rcu_read_lock();
414 ht_node_init(node,
415 (void *)(unsigned long)(rand_r(&rand_lookup) % rand_pool),
416 sizeof(void *));
417 if (add_unique)
418 ret_node = ht_add_unique(test_ht, node);
419 else
420 ht_add(test_ht, node);
421 rcu_read_unlock();
422 if (add_unique && ret_node != node) {
423 free(node);
424 nr_addexist++;
425 } else
426 nr_add++;
427 } else {
428 /* May delete */
429 rcu_read_lock();
430 node = ht_lookup(test_ht,
431 (void *)(unsigned long)(rand_r(&rand_lookup) % rand_pool),
432 sizeof(void *));
433 if (node)
434 ret = ht_remove(test_ht, node);
435 else
436 ret = -ENOENT;
437 rcu_read_unlock();
438 if (ret == 0) {
439 call_rcu(&node->head, free_node_cb);
440 nr_del++;
441 } else
442 nr_delnoent++;
443 }
444 #if 0
445 //if (nr_writes % 100000 == 0) {
446 if (nr_writes % 1000 == 0) {
447 rcu_read_lock();
448 if (rand_r(&rand_lookup) & 1) {
449 ht_resize(test_ht, 1);
450 } else {
451 ht_resize(test_ht, -1);
452 }
453 rcu_read_unlock();
454 }
455 #endif //0
456 nr_writes++;
457 if (unlikely(!test_duration_write()))
458 break;
459 if (unlikely(wdelay))
460 loop_sleep(wdelay);
461 }
462
463 rcu_unregister_thread();
464
465 printf_verbose("thread_end %s, thread id : %lx, tid %lu\n",
466 "writer", pthread_self(), (unsigned long)gettid());
467 printf_verbose("info id %lx: nr_add %lu, nr_addexist %lu, nr_del %lu, "
468 "nr_delnoent %lu\n", pthread_self(), nr_add,
469 nr_addexist, nr_del, nr_delnoent);
470 count->update_ops = nr_writes;
471 count->add = nr_add;
472 count->remove = nr_del;
473 return ((void*)2);
474 }
475
476 void show_usage(int argc, char **argv)
477 {
478 printf("Usage : %s nr_readers nr_writers duration (s)", argv[0]);
479 #ifdef DEBUG_YIELD
480 printf(" [-r] [-w] (yield reader and/or writer)");
481 #endif
482 printf(" [-d delay] (writer period (us))");
483 printf(" [-c duration] (reader C.S. duration (in loops))");
484 printf(" [-v] (verbose output)");
485 printf(" [-a cpu#] [-a cpu#]... (affinity)");
486 printf(" [-p size] (random key value pool size)");
487 printf(" [-h size] (initial hash table size)");
488 printf(" [-u] Uniquify add.");
489 printf(" [-i] Add only (no removal).");
490 printf("\n");
491 }
492
493 int main(int argc, char **argv)
494 {
495 int err;
496 pthread_t *tid_reader, *tid_writer;
497 void *tret;
498 unsigned long long *count_reader;
499 struct wr_count *count_writer;
500 unsigned long long tot_reads = 0, tot_writes = 0,
501 tot_add = 0, tot_remove = 0;
502 unsigned long count, removed;
503 int i, a, ret;
504
505 if (argc < 4) {
506 show_usage(argc, argv);
507 return -1;
508 }
509
510 err = sscanf(argv[1], "%u", &nr_readers);
511 if (err != 1) {
512 show_usage(argc, argv);
513 return -1;
514 }
515
516 err = sscanf(argv[2], "%u", &nr_writers);
517 if (err != 1) {
518 show_usage(argc, argv);
519 return -1;
520 }
521
522 err = sscanf(argv[3], "%lu", &duration);
523 if (err != 1) {
524 show_usage(argc, argv);
525 return -1;
526 }
527
528 for (i = 4; i < argc; i++) {
529 if (argv[i][0] != '-')
530 continue;
531 switch (argv[i][1]) {
532 #ifdef DEBUG_YIELD
533 case 'r':
534 yield_active |= YIELD_READ;
535 break;
536 case 'w':
537 yield_active |= YIELD_WRITE;
538 break;
539 #endif
540 case 'a':
541 if (argc < i + 2) {
542 show_usage(argc, argv);
543 return -1;
544 }
545 a = atoi(argv[++i]);
546 cpu_affinities[next_aff++] = a;
547 use_affinity = 1;
548 printf_verbose("Adding CPU %d affinity\n", a);
549 break;
550 case 'c':
551 if (argc < i + 2) {
552 show_usage(argc, argv);
553 return -1;
554 }
555 rduration = atol(argv[++i]);
556 break;
557 case 'd':
558 if (argc < i + 2) {
559 show_usage(argc, argv);
560 return -1;
561 }
562 wdelay = atol(argv[++i]);
563 break;
564 case 'v':
565 verbose_mode = 1;
566 break;
567 case 'p':
568 if (argc < i + 2) {
569 show_usage(argc, argv);
570 return -1;
571 }
572 rand_pool = atol(argv[++i]);
573 break;
574 case 'h':
575 if (argc < i + 2) {
576 show_usage(argc, argv);
577 return -1;
578 }
579 init_hash_size = atol(argv[++i]);
580 break;
581 case 'u':
582 add_unique = 1;
583 break;
584 case 'i':
585 add_only = 1;
586 break;
587 }
588 }
589
590 /* Check if hash size is power of 2 */
591 if (init_hash_size && init_hash_size & (init_hash_size - 1)) {
592 printf("Error: Hash table size %lu is not a power of 2.\n",
593 init_hash_size);
594 return -1;
595 }
596
597 printf_verbose("running test for %lu seconds, %u readers, %u writers.\n",
598 duration, nr_readers, nr_writers);
599 printf_verbose("Writer delay : %lu loops.\n", wdelay);
600 printf_verbose("Reader duration : %lu loops.\n", rduration);
601 printf_verbose("Random pool size : %lu.\n", rand_pool);
602 printf_verbose("Mode:%s%s.\n",
603 add_only ? " add only" : " add/remove",
604 add_unique ? " uniquify" : "");
605 printf_verbose("Initial hash table size: %lu buckets.\n", init_hash_size);
606 printf_verbose("thread %-6s, thread id : %lx, tid %lu\n",
607 "main", pthread_self(), (unsigned long)gettid());
608
609 tid_reader = malloc(sizeof(*tid_reader) * nr_readers);
610 tid_writer = malloc(sizeof(*tid_writer) * nr_writers);
611 count_reader = malloc(sizeof(*count_reader) * nr_readers);
612 count_writer = malloc(sizeof(*count_writer) * nr_writers);
613 test_ht = ht_new(test_hash, test_compare, 0x42UL,
614 init_hash_size, call_rcu);
615
616 err = create_all_cpu_call_rcu_data(0);
617 assert(!err);
618
619 next_aff = 0;
620
621 for (i = 0; i < nr_readers; i++) {
622 err = pthread_create(&tid_reader[i], NULL, thr_reader,
623 &count_reader[i]);
624 if (err != 0)
625 exit(1);
626 }
627 for (i = 0; i < nr_writers; i++) {
628 err = pthread_create(&tid_writer[i], NULL, thr_writer,
629 &count_writer[i]);
630 if (err != 0)
631 exit(1);
632 }
633
634 cmm_smp_mb();
635
636 test_go = 1;
637
638 sleep(duration);
639
640 test_stop = 1;
641
642 for (i = 0; i < nr_readers; i++) {
643 err = pthread_join(tid_reader[i], &tret);
644 if (err != 0)
645 exit(1);
646 tot_reads += count_reader[i];
647 }
648 for (i = 0; i < nr_writers; i++) {
649 err = pthread_join(tid_writer[i], &tret);
650 if (err != 0)
651 exit(1);
652 tot_writes += count_writer[i].update_ops;
653 tot_add += count_writer[i].add;
654 tot_remove += count_writer[i].remove;
655 }
656 ht_count_nodes(test_ht, &count, &removed);
657 if (count || removed)
658 printf("WARNING: nodes left in the hash table upon destroy: "
659 "%lu nodes + %lu logically removed.\n", count, removed);
660 (void) ht_destroy(test_ht);
661
662 printf_verbose("final delete: %d items\n", ret);
663 printf_verbose("total number of reads : %llu, writes %llu\n", tot_reads,
664 tot_writes);
665 printf("SUMMARY %-25s testdur %4lu nr_readers %3u rdur %6lu "
666 "nr_writers %3u "
667 "wdelay %6lu rand_pool %12llu nr_reads %12llu nr_writes %12llu nr_ops %12llu "
668 "nr_add %12llu nr_remove %12llu nr_leaked %12llu\n",
669 argv[0], duration, nr_readers, rduration,
670 nr_writers, wdelay, rand_pool, tot_reads, tot_writes,
671 tot_reads + tot_writes, tot_add, tot_remove,
672 tot_add - tot_remove - count);
673 free(tid_reader);
674 free(tid_writer);
675 free(count_reader);
676 free(count_writer);
677 return 0;
678 }
This page took 0.042503 seconds and 4 git commands to generate.