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