Add search begin key test
[userspace-rcu.git] / tests / test_urcu_rbtree.c
1 /*
2 * test_urcu_rbtree.c
3 *
4 * Userspace RCU library - test program for RB tree
5 *
6 * Copyright February 2010 - Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
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 #ifndef DYNAMIC_LINK_TEST
25 #define _LGPL_SOURCE
26 #else
27 #define debug_yield_read()
28 #endif
29 #include "../config.h"
30 #include <stdio.h>
31 #include <pthread.h>
32 #include <stdlib.h>
33 #include <string.h>
34 #include <sys/types.h>
35 #include <sys/wait.h>
36 #include <unistd.h>
37 #include <stdio.h>
38 #include <assert.h>
39 #include <sys/syscall.h>
40 #include <sched.h>
41 #include <errno.h>
42 #include <time.h>
43
44 #include <urcu/arch.h>
45
46 extern int __thread disable_debug;
47
48 /* hardcoded number of CPUs */
49 #define NR_CPUS 16384
50
51 /* number of insert/delete */
52 #define NR_RAND 6
53 //#define NR_RAND 7
54
55 #if defined(_syscall0)
56 _syscall0(pid_t, gettid)
57 #elif defined(__NR_gettid)
58 static inline pid_t gettid(void)
59 {
60 return syscall(__NR_gettid);
61 }
62 #else
63 #warning "use pid as tid"
64 static inline pid_t gettid(void)
65 {
66 return getpid();
67 }
68 #endif
69
70 #include <urcu.h>
71 #include <urcu/rcurbtree.h>
72 #include <urcu-defer.h>
73
74 /* TODO: error handling testing for -ENOMEM */
75 struct rcu_rbtree_node *rbtree_alloc(void)
76 {
77 return calloc(1, sizeof(struct rcu_rbtree_node));
78 }
79
80 void rbtree_free(struct rcu_head *head)
81 {
82 struct rcu_rbtree_node *node =
83 caa_container_of(head, struct rcu_rbtree_node, head);
84 free(node);
85 }
86
87 int tree_comp(void *a, void *b)
88 {
89 if ((unsigned long)a < (unsigned long)b)
90 return -1;
91 else if ((unsigned long)a > (unsigned long)b)
92 return 1;
93 else
94 return 0;
95 }
96
97 static DEFINE_RCU_RBTREE(rbtree, tree_comp, rbtree_alloc, rbtree_free);
98
99 static volatile int test_go, test_stop;
100
101 static unsigned long wdelay;
102
103 static unsigned long duration;
104
105 /* read-side C.S. duration, in loops */
106 static unsigned long rduration;
107
108 /* write-side C.S. duration, in loops */
109 static unsigned long wduration;
110
111 static inline void loop_sleep(unsigned long l)
112 {
113 while(l-- != 0)
114 caa_cpu_relax();
115 }
116
117 static int verbose_mode;
118
119 #define printf_verbose(fmt, args...) \
120 do { \
121 if (verbose_mode) \
122 printf(fmt, args); \
123 } while (0)
124
125 static unsigned int cpu_affinities[NR_CPUS];
126 static unsigned int next_aff = 0;
127 static int use_affinity = 0;
128
129 pthread_mutex_t affinity_mutex = PTHREAD_MUTEX_INITIALIZER;
130
131 #ifndef HAVE_CPU_SET_T
132 typedef unsigned long cpu_set_t;
133 # define CPU_ZERO(cpuset) do { *(cpuset) = 0; } while(0)
134 # define CPU_SET(cpu, cpuset) do { *(cpuset) |= (1UL << (cpu)); } while(0)
135 #endif
136
137 static void set_affinity(void)
138 {
139 cpu_set_t mask;
140 int cpu;
141 int ret;
142
143 if (!use_affinity)
144 return;
145
146 #if HAVE_SCHED_SETAFFINITY
147 ret = pthread_mutex_lock(&affinity_mutex);
148 if (ret) {
149 perror("Error in pthread mutex lock");
150 exit(-1);
151 }
152 cpu = cpu_affinities[next_aff++];
153 ret = pthread_mutex_unlock(&affinity_mutex);
154 if (ret) {
155 perror("Error in pthread mutex unlock");
156 exit(-1);
157 }
158
159 CPU_ZERO(&mask);
160 CPU_SET(cpu, &mask);
161 #if SCHED_SETAFFINITY_ARGS == 2
162 sched_setaffinity(0, &mask);
163 #else
164 sched_setaffinity(0, sizeof(mask), &mask);
165 #endif
166 #endif /* HAVE_SCHED_SETAFFINITY */
167 }
168
169 /*
170 * returns 0 if test should end.
171 */
172 static int test_duration_write(void)
173 {
174 return !test_stop;
175 }
176
177 static int test_duration_read(void)
178 {
179 return !test_stop;
180 }
181
182 static unsigned long long __thread nr_writes;
183 static unsigned long long __thread nr_reads;
184
185 static unsigned int nr_readers;
186 static unsigned int nr_writers;
187
188 static unsigned long global_items;
189 static void **global_key = NULL;
190
191 pthread_mutex_t rcu_copy_mutex = PTHREAD_MUTEX_INITIALIZER;
192
193 void rcu_copy_mutex_lock(void)
194 {
195 int ret;
196 ret = pthread_mutex_lock(&rcu_copy_mutex);
197 if (ret) {
198 perror("Error in pthread mutex lock");
199 exit(-1);
200 }
201 }
202
203 void rcu_copy_mutex_unlock(void)
204 {
205 int ret;
206
207 ret = pthread_mutex_unlock(&rcu_copy_mutex);
208 if (ret) {
209 perror("Error in pthread mutex unlock");
210 exit(-1);
211 }
212 }
213
214 static
215 void set_lookup_index(struct rcu_rbtree_node *node,
216 char *lookup_hit)
217 {
218 int i;
219
220 for (i = 0; i < global_items; i++) {
221 if (node->begin == global_key[i]
222 && !lookup_hit[i]) {
223 lookup_hit[i] = 1;
224 break;
225 }
226 }
227 }
228
229 void *thr_reader(void *_count)
230 {
231 unsigned long long *count = _count;
232 struct rcu_rbtree_node *node;
233 int i, index;
234 char *lookup_hit;
235
236 printf_verbose("thread_begin %s, thread id : %lx, tid %lu\n",
237 "reader", pthread_self(), (unsigned long)gettid());
238
239 set_affinity();
240
241 rcu_register_thread();
242
243 lookup_hit = malloc(sizeof(*lookup_hit) * global_items);
244
245 while (!test_go)
246 {
247 }
248 cmm_smp_mb();
249
250 for (;;) {
251 /* search */
252 for (i = 0; i < global_items; i++) {
253 rcu_read_lock();
254 node = rcu_rbtree_search(&rbtree,
255 rcu_dereference(rbtree.root),
256 global_key[i]);
257 assert(!rcu_rbtree_is_nil(&rbtree, node));
258 rcu_read_unlock();
259 }
260
261 /* search range */
262 for (i = 0; i < global_items; i++) {
263 rcu_read_lock();
264 node = rcu_rbtree_search_range(&rbtree,
265 rcu_dereference(rbtree.root),
266 global_key[i],
267 (void*) ((unsigned long) global_key[i] + 1));
268 assert(!rcu_rbtree_is_nil(&rbtree, node));
269 rcu_read_unlock();
270 }
271
272 /* search begin key */
273 for (i = 0; i < global_items; i++) {
274 rcu_read_lock();
275 node = rcu_rbtree_search_begin_key(&rbtree,
276 rcu_dereference(rbtree.root),
277 global_key[i]);
278 assert(!rcu_rbtree_is_nil(&rbtree, node));
279 rcu_read_unlock();
280 }
281
282 /* min + next */
283 memset(lookup_hit, 0, sizeof(*lookup_hit) * global_items);
284
285 rcu_read_lock();
286 node = rcu_rbtree_min(&rbtree,
287 rcu_dereference(rbtree.root));
288 while (!rcu_rbtree_is_nil(&rbtree, node)) {
289 set_lookup_index(node, lookup_hit);
290 node = rcu_rbtree_next(&rbtree, node);
291 }
292 rcu_read_unlock();
293
294 for (i = 0; i < global_items; i++)
295 assert(lookup_hit[i]);
296
297 /* max + prev */
298 memset(lookup_hit, 0, sizeof(*lookup_hit) * global_items);
299
300 rcu_read_lock();
301 node = rcu_rbtree_max(&rbtree,
302 rcu_dereference(rbtree.root));
303 while (!rcu_rbtree_is_nil(&rbtree, node)) {
304 set_lookup_index(node, lookup_hit);
305 node = rcu_rbtree_prev(&rbtree, node);
306 }
307 rcu_read_unlock();
308
309 for (i = 0; i < global_items; i++)
310 assert(lookup_hit[i]);
311
312 debug_yield_read();
313 if (unlikely(rduration))
314 loop_sleep(rduration);
315 nr_reads++;
316 if (unlikely(!test_duration_read()))
317 break;
318 }
319
320 rcu_unregister_thread();
321
322 /* test extra thread registration */
323 rcu_register_thread();
324 rcu_unregister_thread();
325
326 free(lookup_hit);
327
328 *count = nr_reads;
329 printf_verbose("thread_end %s, thread id : %lx, tid %lu\n",
330 "reader", pthread_self(), (unsigned long)gettid());
331 return ((void*)1);
332
333 }
334
335 void *thr_writer(void *_count)
336 {
337 unsigned long long *count = _count;
338 struct rcu_rbtree_node *node;
339 void *key[NR_RAND];
340 int i;
341
342 printf_verbose("thread_begin %s, thread id : %lx, tid %lu\n",
343 "writer", pthread_self(), (unsigned long)gettid());
344
345 set_affinity();
346
347 //disable_debug = 1;
348
349 rcu_register_thread();
350
351 while (!test_go)
352 {
353 }
354 cmm_smp_mb();
355
356 for (;;) {
357 rcu_copy_mutex_lock();
358
359 for (i = 0; i < NR_RAND; i++) {
360 node = rbtree_alloc();
361 //key[i] = (void *)(unsigned long)(rand() % 2048);
362 key[i] = (void *)(unsigned long)(rand() % 6);
363 node->begin = key[i];
364 node->end = (void *)((unsigned long) key[i] + 1);
365 rcu_read_lock();
366 rcu_rbtree_insert(&rbtree, node);
367 rcu_read_unlock();
368 }
369 rcu_copy_mutex_unlock();
370
371 if (unlikely(wduration))
372 loop_sleep(wduration);
373
374 rcu_copy_mutex_lock();
375 for (i = 0; i < NR_RAND; i++) {
376 #if 0
377 node = rcu_rbtree_min(rbtree, rbtree->root);
378 while (!rcu_rbtree_is_nil(&rbtree, node)) {
379 printf("{ 0x%lX p:%lX r:%lX l:%lX %s %s %s} ",
380 (unsigned long)node->key,
381 node->p->key,
382 node->right->key,
383 node->left->key,
384 node->color ? "red" : "black",
385 node->pos ? "right" : "left",
386 node->nil ? "nil" : "");
387 node = rcu_rbtree_next(rbtree, node);
388 }
389 printf("\n");
390 #endif
391 rcu_read_lock();
392 node = rcu_rbtree_search(&rbtree, rbtree.root, key[i]);
393 assert(!rcu_rbtree_is_nil(&rbtree, node));
394 rcu_rbtree_remove(&rbtree, node);
395 rcu_read_unlock();
396 call_rcu(&node->head, rbtree_free);
397 }
398
399 rcu_copy_mutex_unlock();
400 nr_writes++;
401 if (unlikely(!test_duration_write()))
402 break;
403 if (unlikely(wdelay))
404 loop_sleep(wdelay);
405 }
406
407 rcu_unregister_thread();
408
409 printf_verbose("thread_end %s, thread id : %lx, tid %lu\n",
410 "writer", pthread_self(), (unsigned long)gettid());
411 *count = nr_writes;
412 return ((void*)2);
413 }
414
415 void show_usage(int argc, char **argv)
416 {
417 printf("Usage : %s nr_readers nr_writers duration (s)", argv[0]);
418 #ifdef DEBUG_YIELD
419 printf(" [-r] [-w] (yield reader and/or writer)");
420 #endif
421 printf(" [-d delay] (writer period (us))");
422 printf(" [-c duration] (reader C.S. duration (in loops))");
423 printf(" [-e duration] (writer C.S. duration (in loops))");
424 printf(" [-v] (verbose output)");
425 printf(" [-a cpu#] [-a cpu#]... (affinity)");
426 printf("\n");
427 }
428
429 int main(int argc, char **argv)
430 {
431 int err;
432 pthread_t *tid_reader, *tid_writer;
433 void *tret;
434 unsigned long long *count_reader, *count_writer;
435 unsigned long long tot_reads = 0, tot_writes = 0;
436 int i, a;
437 struct rcu_rbtree_node *node;
438
439 if (argc < 4) {
440 show_usage(argc, argv);
441 return -1;
442 }
443
444 err = sscanf(argv[1], "%u", &nr_readers);
445 if (err != 1) {
446 show_usage(argc, argv);
447 return -1;
448 }
449
450 err = sscanf(argv[2], "%u", &nr_writers);
451 if (err != 1) {
452 show_usage(argc, argv);
453 return -1;
454 }
455
456 err = sscanf(argv[3], "%lu", &duration);
457 if (err != 1) {
458 show_usage(argc, argv);
459 return -1;
460 }
461
462 for (i = 4; i < argc; i++) {
463 if (argv[i][0] != '-')
464 continue;
465 switch (argv[i][1]) {
466 #ifdef DEBUG_YIELD
467 case 'r':
468 yield_active |= YIELD_READ;
469 break;
470 case 'w':
471 yield_active |= YIELD_WRITE;
472 break;
473 #endif
474 case 'a':
475 if (argc < i + 2) {
476 show_usage(argc, argv);
477 return -1;
478 }
479 a = atoi(argv[++i]);
480 cpu_affinities[next_aff++] = a;
481 use_affinity = 1;
482 printf_verbose("Adding CPU %d affinity\n", a);
483 break;
484 case 'c':
485 if (argc < i + 2) {
486 show_usage(argc, argv);
487 return -1;
488 }
489 rduration = atol(argv[++i]);
490 break;
491 case 'd':
492 if (argc < i + 2) {
493 show_usage(argc, argv);
494 return -1;
495 }
496 wdelay = atol(argv[++i]);
497 break;
498 case 'e':
499 if (argc < i + 2) {
500 show_usage(argc, argv);
501 return -1;
502 }
503 wduration = atol(argv[++i]);
504 break;
505 case 'v':
506 verbose_mode = 1;
507 break;
508 case 'g':
509 if (argc < i + 2) {
510 show_usage(argc, argv);
511 return -1;
512 }
513 global_items = atol(argv[++i]);
514 break;
515 }
516 }
517
518 printf_verbose("running test for %lu seconds, %u readers, %u writers.\n",
519 duration, nr_readers, nr_writers);
520 printf_verbose("Writer delay : %lu loops.\n", wdelay);
521 printf_verbose("Reader duration : %lu loops.\n", rduration);
522 printf_verbose("thread %-6s, thread id : %lx, tid %lu\n",
523 "main", pthread_self(), (unsigned long)gettid());
524
525 tid_reader = malloc(sizeof(*tid_reader) * nr_readers);
526 tid_writer = malloc(sizeof(*tid_writer) * nr_writers);
527 count_reader = malloc(sizeof(*count_reader) * nr_readers);
528 count_writer = malloc(sizeof(*count_writer) * nr_writers);
529 global_key = malloc(sizeof(*global_key) * global_items);
530
531 srand(time(NULL));
532
533 next_aff = 0;
534
535 for (i = 0; i < nr_readers; i++) {
536 err = pthread_create(&tid_reader[i], NULL, thr_reader,
537 &count_reader[i]);
538 if (err != 0)
539 exit(1);
540 }
541 for (i = 0; i < nr_writers; i++) {
542 err = pthread_create(&tid_writer[i], NULL, thr_writer,
543 &count_writer[i]);
544 if (err != 0)
545 exit(1);
546 }
547
548 rcu_register_thread();
549 rcu_read_lock();
550 /* Insert items looked up by readers */
551 for (i = 0; i < global_items; i++) {
552 node = rbtree_alloc();
553 global_key[i] = (void *)(unsigned long)(rand() % 6);
554 node->begin = global_key[i];
555 node->end = (void *)((unsigned long) global_key[i] + 1);
556 rcu_rbtree_insert(&rbtree, node);
557 }
558 rcu_read_unlock();
559
560 cmm_smp_mb();
561
562 test_go = 1;
563
564 sleep(duration);
565
566 test_stop = 1;
567
568 for (i = 0; i < nr_readers; i++) {
569 err = pthread_join(tid_reader[i], &tret);
570 if (err != 0)
571 exit(1);
572 tot_reads += count_reader[i];
573 }
574 for (i = 0; i < nr_writers; i++) {
575 err = pthread_join(tid_writer[i], &tret);
576 if (err != 0)
577 exit(1);
578 tot_writes += count_writer[i];
579 }
580
581 rcu_read_lock();
582 for (i = 0; i < global_items; i++) {
583 node = rcu_rbtree_search(&rbtree, rbtree.root, global_key[i]);
584 assert(!rcu_rbtree_is_nil(&rbtree, node));
585 rcu_rbtree_remove(&rbtree, node);
586 call_rcu(&node->head, rbtree_free);
587 }
588 rcu_read_unlock();
589 rcu_unregister_thread();
590
591 printf_verbose("total number of reads : %llu, writes %llu\n", tot_reads,
592 tot_writes);
593 printf("SUMMARY %-25s testdur %4lu nr_readers %3u rdur %6lu wdur %6lu "
594 "nr_writers %3u "
595 "wdelay %6lu nr_reads %12llu nr_writes %12llu nr_ops %12llu "
596 "global_items %6lu\n",
597 argv[0], duration, nr_readers, rduration, wduration,
598 nr_writers, wdelay, tot_reads, tot_writes,
599 tot_reads + tot_writes, global_items);
600 free(tid_reader);
601 free(tid_writer);
602 free(count_reader);
603 free(count_writer);
604 free(global_key);
605 return 0;
606 }
This page took 0.041267 seconds and 5 git commands to generate.