12346c3cea2d0701cf6c3ab45afc30ba61fb7f32
[urcu.git] / tests / test_qsbr.c
1 /*
2 * test_urcu.c
3 *
4 * Userspace RCU library - test program
5 *
6 * Copyright February 2009 - 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 #include "../config.h"
25 #include <stdio.h>
26 #include <pthread.h>
27 #include <stdlib.h>
28 #include <string.h>
29 #include <sys/types.h>
30 #include <sys/wait.h>
31 #include <unistd.h>
32 #include <stdio.h>
33 #include <assert.h>
34 #include <sched.h>
35 #include <errno.h>
36
37 #include <urcu/arch.h>
38
39 #ifdef __linux__
40 #include <syscall.h>
41 #endif
42
43 /* hardcoded number of CPUs */
44 #define NR_CPUS 16384
45
46 #if defined(_syscall0)
47 _syscall0(pid_t, gettid)
48 #elif defined(__NR_gettid)
49 static inline pid_t gettid(void)
50 {
51 return syscall(__NR_gettid);
52 }
53 #else
54 #warning "use pid as tid"
55 static inline pid_t gettid(void)
56 {
57 return getpid();
58 }
59 #endif
60
61 #ifndef DYNAMIC_LINK_TEST
62 #define _LGPL_SOURCE
63 #else
64 #define debug_yield_read()
65 #endif
66 #include "urcu-qsbr.h"
67
68 struct test_array {
69 int a;
70 };
71
72 static volatile int test_go, test_stop;
73
74 static unsigned long wdelay;
75
76 static struct test_array *test_rcu_pointer;
77
78 static unsigned long duration;
79
80 /* read-side C.S. duration, in loops */
81 static unsigned long rduration;
82
83 /* write-side C.S. duration, in loops */
84 static unsigned long wduration;
85
86 static inline void loop_sleep(unsigned long l)
87 {
88 while(l-- != 0)
89 caa_cpu_relax();
90 }
91
92 static int verbose_mode;
93
94 #define printf_verbose(fmt, args...) \
95 do { \
96 if (verbose_mode) \
97 printf(fmt, args); \
98 } while (0)
99
100 static unsigned int cpu_affinities[NR_CPUS];
101 static unsigned int next_aff = 0;
102 static int use_affinity = 0;
103
104 pthread_mutex_t affinity_mutex = PTHREAD_MUTEX_INITIALIZER;
105
106 #ifndef HAVE_CPU_SET_T
107 typedef unsigned long cpu_set_t;
108 # define CPU_ZERO(cpuset) do { *(cpuset) = 0; } while(0)
109 # define CPU_SET(cpu, cpuset) do { *(cpuset) |= (1UL << (cpu)); } while(0)
110 #endif
111
112 static void set_affinity(void)
113 {
114 cpu_set_t mask;
115 int cpu;
116 int ret;
117
118 if (!use_affinity)
119 return;
120
121 #if HAVE_SCHED_SETAFFINITY
122 ret = pthread_mutex_lock(&affinity_mutex);
123 if (ret) {
124 perror("Error in pthread mutex lock");
125 exit(-1);
126 }
127 cpu = cpu_affinities[next_aff++];
128 ret = pthread_mutex_unlock(&affinity_mutex);
129 if (ret) {
130 perror("Error in pthread mutex unlock");
131 exit(-1);
132 }
133 CPU_ZERO(&mask);
134 CPU_SET(cpu, &mask);
135 #if SCHED_SETAFFINITY_ARGS == 2
136 sched_setaffinity(0, &mask);
137 #else
138 sched_setaffinity(0, sizeof(mask), &mask);
139 #endif
140 #endif /* HAVE_SCHED_SETAFFINITY */
141 }
142
143 /*
144 * returns 0 if test should end.
145 */
146 static int test_duration_write(void)
147 {
148 return !test_stop;
149 }
150
151 static int test_duration_read(void)
152 {
153 return !test_stop;
154 }
155
156 static unsigned long long __thread nr_writes;
157 static unsigned long long __thread nr_reads;
158
159 static unsigned int nr_readers;
160 static unsigned int nr_writers;
161
162 pthread_mutex_t rcu_copy_mutex = PTHREAD_MUTEX_INITIALIZER;
163
164 void rcu_copy_mutex_lock(void)
165 {
166 int ret;
167 ret = pthread_mutex_lock(&rcu_copy_mutex);
168 if (ret) {
169 perror("Error in pthread mutex lock");
170 exit(-1);
171 }
172 }
173
174 void rcu_copy_mutex_unlock(void)
175 {
176 int ret;
177
178 ret = pthread_mutex_unlock(&rcu_copy_mutex);
179 if (ret) {
180 perror("Error in pthread mutex unlock");
181 exit(-1);
182 }
183 }
184
185 /*
186 * malloc/free are reusing memory areas too quickly, which does not let us
187 * test races appropriately. Use a large circular array for allocations.
188 * ARRAY_SIZE is larger than nr_writers, which insures we never run over our tail.
189 */
190 #define ARRAY_SIZE (1048576 * nr_writers)
191 #define ARRAY_POISON 0xDEADBEEF
192 static int array_index;
193 static struct test_array *test_array;
194
195 static struct test_array *test_array_alloc(void)
196 {
197 struct test_array *ret;
198 int index;
199
200 rcu_copy_mutex_lock();
201 index = array_index % ARRAY_SIZE;
202 assert(test_array[index].a == ARRAY_POISON ||
203 test_array[index].a == 0);
204 ret = &test_array[index];
205 array_index++;
206 if (array_index == ARRAY_SIZE)
207 array_index = 0;
208 rcu_copy_mutex_unlock();
209 return ret;
210 }
211
212 static void test_array_free(struct test_array *ptr)
213 {
214 if (!ptr)
215 return;
216 rcu_copy_mutex_lock();
217 ptr->a = ARRAY_POISON;
218 rcu_copy_mutex_unlock();
219 }
220
221 void *thr_reader(void *_count)
222 {
223 unsigned long long *count = _count;
224 struct test_array *local_ptr;
225
226 printf_verbose("thread_begin %s, thread id : %lx, tid %lu\n",
227 "reader", pthread_self(), (unsigned long)gettid());
228
229 set_affinity();
230
231 rcu_register_thread();
232
233 while (!test_go)
234 {
235 }
236 cmm_smp_mb();
237
238 for (;;) {
239 rcu_read_lock();
240 local_ptr = rcu_dereference(test_rcu_pointer);
241 debug_yield_read();
242 if (local_ptr)
243 assert(local_ptr->a == 8);
244 if (unlikely(rduration))
245 loop_sleep(rduration);
246 rcu_read_unlock();
247 nr_reads++;
248 /* QS each 1024 reads */
249 if (unlikely((nr_reads & ((1 << 10) - 1)) == 0))
250 rcu_quiescent_state();
251 if (unlikely(!test_duration_read()))
252 break;
253 }
254
255 rcu_unregister_thread();
256
257 /* test extra thread registration */
258 rcu_register_thread();
259 rcu_unregister_thread();
260
261 *count = nr_reads;
262 printf_verbose("thread_end %s, thread id : %lx, tid %lu\n",
263 "reader", pthread_self(), (unsigned long)gettid());
264 return ((void*)1);
265
266 }
267
268 void *thr_writer(void *_count)
269 {
270 unsigned long long *count = _count;
271 struct test_array *new, *old;
272
273 printf_verbose("thread_begin %s, thread id : %lx, tid %lu\n",
274 "writer", pthread_self(), (unsigned long)gettid());
275
276 set_affinity();
277
278 while (!test_go)
279 {
280 }
281 cmm_smp_mb();
282
283 for (;;) {
284 new = test_array_alloc();
285 new->a = 8;
286 old = rcu_xchg_pointer(&test_rcu_pointer, new);
287 if (unlikely(wduration))
288 loop_sleep(wduration);
289 synchronize_rcu();
290 /* can be done after unlock */
291 if (old)
292 old->a = 0;
293 test_array_free(old);
294 nr_writes++;
295 if (unlikely(!test_duration_write()))
296 break;
297 if (unlikely(wdelay))
298 loop_sleep(wdelay);
299 }
300
301 printf_verbose("thread_end %s, thread id : %lx, tid %lu\n",
302 "writer", pthread_self(), (unsigned long)gettid());
303 *count = nr_writes;
304 return ((void*)2);
305 }
306
307 void show_usage(int argc, char **argv)
308 {
309 printf("Usage : %s nr_readers nr_writers duration (s)", argv[0]);
310 #ifdef DEBUG_YIELD
311 printf(" [-r] [-w] (yield reader and/or writer)");
312 #endif
313 printf(" [-d delay] (writer period (us))");
314 printf(" [-c duration] (reader C.S. duration (in loops))");
315 printf(" [-e duration] (writer C.S. duration (in loops))");
316 printf(" [-v] (verbose output)");
317 printf(" [-a cpu#] [-a cpu#]... (affinity)");
318 printf("\n");
319 }
320
321 int main(int argc, char **argv)
322 {
323 int err;
324 pthread_t *tid_reader, *tid_writer;
325 void *tret;
326 unsigned long long *count_reader, *count_writer;
327 unsigned long long tot_reads = 0, tot_writes = 0;
328 int i, a;
329
330 if (argc < 4) {
331 show_usage(argc, argv);
332 return -1;
333 }
334
335 err = sscanf(argv[1], "%u", &nr_readers);
336 if (err != 1) {
337 show_usage(argc, argv);
338 return -1;
339 }
340
341 err = sscanf(argv[2], "%u", &nr_writers);
342 if (err != 1) {
343 show_usage(argc, argv);
344 return -1;
345 }
346
347 err = sscanf(argv[3], "%lu", &duration);
348 if (err != 1) {
349 show_usage(argc, argv);
350 return -1;
351 }
352
353 for (i = 4; i < argc; i++) {
354 if (argv[i][0] != '-')
355 continue;
356 switch (argv[i][1]) {
357 #ifdef DEBUG_YIELD
358 case 'r':
359 yield_active |= YIELD_READ;
360 break;
361 case 'w':
362 yield_active |= YIELD_WRITE;
363 break;
364 #endif
365 case 'a':
366 if (argc < i + 2) {
367 show_usage(argc, argv);
368 return -1;
369 }
370 a = atoi(argv[++i]);
371 cpu_affinities[next_aff++] = a;
372 use_affinity = 1;
373 printf_verbose("Adding CPU %d affinity\n", a);
374 break;
375 case 'c':
376 if (argc < i + 2) {
377 show_usage(argc, argv);
378 return -1;
379 }
380 rduration = atol(argv[++i]);
381 break;
382 case 'd':
383 if (argc < i + 2) {
384 show_usage(argc, argv);
385 return -1;
386 }
387 wdelay = atol(argv[++i]);
388 break;
389 case 'e':
390 if (argc < i + 2) {
391 show_usage(argc, argv);
392 return -1;
393 }
394 wduration = atol(argv[++i]);
395 break;
396 case 'v':
397 verbose_mode = 1;
398 break;
399 }
400 }
401
402 printf_verbose("running test for %lu seconds, %u readers, %u writers.\n",
403 duration, nr_readers, nr_writers);
404 printf_verbose("Writer delay : %lu loops.\n", wdelay);
405 printf_verbose("Reader duration : %lu loops.\n", rduration);
406 printf_verbose("thread %-6s, thread id : %lx, tid %lu\n",
407 "main", pthread_self(), (unsigned long)gettid());
408
409 test_array = calloc(1, sizeof(*test_array) * ARRAY_SIZE);
410 tid_reader = malloc(sizeof(*tid_reader) * nr_readers);
411 tid_writer = malloc(sizeof(*tid_writer) * nr_writers);
412 count_reader = malloc(sizeof(*count_reader) * nr_readers);
413 count_writer = malloc(sizeof(*count_writer) * nr_writers);
414
415 next_aff = 0;
416
417 for (i = 0; i < nr_readers; i++) {
418 err = pthread_create(&tid_reader[i], NULL, thr_reader,
419 &count_reader[i]);
420 if (err != 0)
421 exit(1);
422 }
423 for (i = 0; i < nr_writers; i++) {
424 err = pthread_create(&tid_writer[i], NULL, thr_writer,
425 &count_writer[i]);
426 if (err != 0)
427 exit(1);
428 }
429
430 cmm_smp_mb();
431
432 test_go = 1;
433
434 sleep(duration);
435
436 test_stop = 1;
437
438 for (i = 0; i < nr_readers; i++) {
439 err = pthread_join(tid_reader[i], &tret);
440 if (err != 0)
441 exit(1);
442 tot_reads += count_reader[i];
443 }
444 for (i = 0; i < nr_writers; i++) {
445 err = pthread_join(tid_writer[i], &tret);
446 if (err != 0)
447 exit(1);
448 tot_writes += count_writer[i];
449 }
450
451 printf_verbose("total number of reads : %llu, writes %llu\n", tot_reads,
452 tot_writes);
453 printf("SUMMARY %-25s testdur %4lu nr_readers %3u rdur %6lu wdur %6lu "
454 "nr_writers %3u "
455 "wdelay %6lu nr_reads %12llu nr_writes %12llu nr_ops %12llu\n",
456 argv[0], duration, nr_readers, rduration, wduration,
457 nr_writers, wdelay, tot_reads, tot_writes,
458 tot_reads + tot_writes);
459 test_array_free(test_rcu_pointer);
460 free(test_array);
461 free(tid_reader);
462 free(tid_writer);
463 free(count_reader);
464 free(count_writer);
465 return 0;
466 }
This page took 0.040335 seconds and 4 git commands to generate.