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