2 * RT-Mutex-tester: scriptable tester for rt mutexes
4 * started by Thomas Gleixner:
6 * Copyright (C) 2006, Timesys Corp., Thomas Gleixner <tglx@timesys.com>
9 #include <linux/kthread.h>
10 #include <linux/module.h>
11 #include <linux/sched.h>
12 #include <linux/smp_lock.h>
13 #include <linux/spinlock.h>
14 #include <linux/sysdev.h>
15 #include <linux/timer.h>
16 #include <linux/freezer.h>
20 #define MAX_RT_TEST_THREADS 8
21 #define MAX_RT_TEST_MUTEXES 8
23 static spinlock_t rttest_lock
;
24 static atomic_t rttest_event
;
26 struct test_thread_data
{
29 int mutexes
[MAX_RT_TEST_MUTEXES
];
32 struct sys_device sysdev
;
35 static struct test_thread_data thread_data
[MAX_RT_TEST_THREADS
];
36 static struct task_struct
*threads
[MAX_RT_TEST_THREADS
];
37 static struct rt_mutex mutexes
[MAX_RT_TEST_MUTEXES
];
41 RTTEST_SCHEDOT
, /* 1 Sched other, data = nice */
42 RTTEST_SCHEDRT
, /* 2 Sched fifo, data = prio */
43 RTTEST_LOCK
, /* 3 Lock uninterruptible, data = lockindex */
44 RTTEST_LOCKNOWAIT
, /* 4 Lock uninterruptible no wait in wakeup, data = lockindex */
45 RTTEST_LOCKINT
, /* 5 Lock interruptible, data = lockindex */
46 RTTEST_LOCKINTNOWAIT
, /* 6 Lock interruptible no wait in wakeup, data = lockindex */
47 RTTEST_LOCKCONT
, /* 7 Continue locking after the wakeup delay */
48 RTTEST_UNLOCK
, /* 8 Unlock, data = lockindex */
49 RTTEST_LOCKBKL
, /* 9 Lock BKL */
50 RTTEST_UNLOCKBKL
, /* 10 Unlock BKL */
51 RTTEST_SIGNAL
, /* 11 Signal other test thread, data = thread id */
52 RTTEST_RESETEVENT
= 98, /* 98 Reset event counter */
53 RTTEST_RESET
= 99, /* 99 Reset all pending operations */
56 static int handle_op(struct test_thread_data
*td
, int lockwakeup
)
58 int i
, id
, ret
= -EINVAL
;
66 td
->mutexes
[td
->opdata
] = 1;
67 td
->event
= atomic_add_return(1, &rttest_event
);
71 for (i
= 0; i
< MAX_RT_TEST_MUTEXES
; i
++) {
72 if (td
->mutexes
[i
] == 4) {
73 rt_mutex_unlock(&mutexes
[i
]);
78 if (!lockwakeup
&& td
->bkl
== 4) {
79 #ifdef CONFIG_LOCK_KERNEL
86 case RTTEST_RESETEVENT
:
87 atomic_set(&rttest_event
, 0);
98 case RTTEST_LOCKNOWAIT
:
100 if (id
< 0 || id
>= MAX_RT_TEST_MUTEXES
)
104 td
->event
= atomic_add_return(1, &rttest_event
);
105 rt_mutex_lock(&mutexes
[id
]);
106 td
->event
= atomic_add_return(1, &rttest_event
);
111 case RTTEST_LOCKINTNOWAIT
:
113 if (id
< 0 || id
>= MAX_RT_TEST_MUTEXES
)
117 td
->event
= atomic_add_return(1, &rttest_event
);
118 ret
= rt_mutex_lock_interruptible(&mutexes
[id
], 0);
119 td
->event
= atomic_add_return(1, &rttest_event
);
120 td
->mutexes
[id
] = ret
? 0 : 4;
121 return ret
? -EINTR
: 0;
125 if (id
< 0 || id
>= MAX_RT_TEST_MUTEXES
|| td
->mutexes
[id
] != 4)
128 td
->event
= atomic_add_return(1, &rttest_event
);
129 rt_mutex_unlock(&mutexes
[id
]);
130 td
->event
= atomic_add_return(1, &rttest_event
);
138 #ifdef CONFIG_LOCK_KERNEL
144 case RTTEST_UNLOCKBKL
:
147 #ifdef CONFIG_LOCK_KERNEL
160 * Schedule replacement for rtsem_down(). Only called for threads with
161 * PF_MUTEX_TESTER set.
163 * This allows us to have finegrained control over the event flow.
166 void schedule_rt_mutex_test(struct rt_mutex
*mutex
)
169 struct test_thread_data
*td
;
171 /* We have to lookup the task */
172 for (tid
= 0; tid
< MAX_RT_TEST_THREADS
; tid
++) {
173 if (threads
[tid
] == current
)
177 BUG_ON(tid
== MAX_RT_TEST_THREADS
);
179 td
= &thread_data
[tid
];
187 case RTTEST_LOCKNOWAIT
:
188 case RTTEST_LOCKINTNOWAIT
:
189 if (mutex
!= &mutexes
[dat
])
192 if (td
->mutexes
[dat
] != 1)
195 td
->mutexes
[dat
] = 2;
196 td
->event
= atomic_add_return(1, &rttest_event
);
210 if (mutex
!= &mutexes
[dat
])
213 if (td
->mutexes
[dat
] != 2)
216 td
->mutexes
[dat
] = 3;
217 td
->event
= atomic_add_return(1, &rttest_event
);
220 case RTTEST_LOCKNOWAIT
:
221 case RTTEST_LOCKINTNOWAIT
:
222 if (mutex
!= &mutexes
[dat
])
225 if (td
->mutexes
[dat
] != 2)
228 td
->mutexes
[dat
] = 1;
229 td
->event
= atomic_add_return(1, &rttest_event
);
241 set_current_state(TASK_INTERRUPTIBLE
);
243 if (td
->opcode
> 0) {
246 set_current_state(TASK_RUNNING
);
247 ret
= handle_op(td
, 1);
248 set_current_state(TASK_INTERRUPTIBLE
);
249 if (td
->opcode
== RTTEST_LOCKCONT
)
254 /* Wait for the next command to be executed */
258 /* Restore previous command and data */
263 static int test_func(void *data
)
265 struct test_thread_data
*td
= data
;
268 current
->flags
|= PF_MUTEX_TESTER
;
270 allow_signal(SIGHUP
);
274 set_current_state(TASK_INTERRUPTIBLE
);
276 if (td
->opcode
> 0) {
277 set_current_state(TASK_RUNNING
);
278 ret
= handle_op(td
, 0);
279 set_current_state(TASK_INTERRUPTIBLE
);
283 /* Wait for the next command to be executed */
287 if (signal_pending(current
))
288 flush_signals(current
);
290 if(kthread_should_stop())
297 * sysfs_test_command - interface for test commands
298 * @dev: thread reference
299 * @buf: command for actual step
300 * @count: length of buffer
306 static ssize_t
sysfs_test_command(struct sys_device
*dev
, struct sysdev_attribute
*attr
,
307 const char *buf
, size_t count
)
309 struct sched_param schedpar
;
310 struct test_thread_data
*td
;
312 int op
, dat
, tid
, ret
;
314 td
= container_of(dev
, struct test_thread_data
, sysdev
);
317 /* strings from sysfs write are not 0 terminated! */
318 if (count
>= sizeof(cmdbuf
))
322 if (buf
[count
-1] == '\n')
327 memcpy(cmdbuf
, buf
, count
);
330 if (sscanf(cmdbuf
, "%d:%d", &op
, &dat
) != 2)
335 schedpar
.sched_priority
= 0;
336 ret
= sched_setscheduler(threads
[tid
], SCHED_NORMAL
, &schedpar
);
339 set_user_nice(current
, 0);
343 schedpar
.sched_priority
= dat
;
344 ret
= sched_setscheduler(threads
[tid
], SCHED_FIFO
, &schedpar
);
350 send_sig(SIGHUP
, threads
[tid
], 0);
358 wake_up_process(threads
[tid
]);
365 * sysfs_test_status - sysfs interface for rt tester
366 * @dev: thread to query
367 * @buf: char buffer to be filled with thread status info
369 static ssize_t
sysfs_test_status(struct sys_device
*dev
, struct sysdev_attribute
*attr
,
372 struct test_thread_data
*td
;
373 struct task_struct
*tsk
;
377 td
= container_of(dev
, struct test_thread_data
, sysdev
);
378 tsk
= threads
[td
->sysdev
.id
];
380 spin_lock(&rttest_lock
);
382 curr
+= sprintf(curr
,
383 "O: %4d, E:%8d, S: 0x%08lx, P: %4d, N: %4d, B: %p, K: %d, M:",
384 td
->opcode
, td
->event
, tsk
->state
,
385 (MAX_RT_PRIO
- 1) - tsk
->prio
,
386 (MAX_RT_PRIO
- 1) - tsk
->normal_prio
,
387 tsk
->pi_blocked_on
, td
->bkl
);
389 for (i
= MAX_RT_TEST_MUTEXES
- 1; i
>=0 ; i
--)
390 curr
+= sprintf(curr
, "%d", td
->mutexes
[i
]);
392 spin_unlock(&rttest_lock
);
394 curr
+= sprintf(curr
, ", T: %p, R: %p\n", tsk
,
395 mutexes
[td
->sysdev
.id
].owner
);
400 static SYSDEV_ATTR(status
, 0600, sysfs_test_status
, NULL
);
401 static SYSDEV_ATTR(command
, 0600, NULL
, sysfs_test_command
);
403 static struct sysdev_class rttest_sysclass
= {
407 static int init_test_thread(int id
)
409 thread_data
[id
].sysdev
.cls
= &rttest_sysclass
;
410 thread_data
[id
].sysdev
.id
= id
;
412 threads
[id
] = kthread_run(test_func
, &thread_data
[id
], "rt-test-%d", id
);
413 if (IS_ERR(threads
[id
]))
414 return PTR_ERR(threads
[id
]);
416 return sysdev_register(&thread_data
[id
].sysdev
);
419 static int init_rttest(void)
423 spin_lock_init(&rttest_lock
);
425 for (i
= 0; i
< MAX_RT_TEST_MUTEXES
; i
++)
426 rt_mutex_init(&mutexes
[i
]);
428 ret
= sysdev_class_register(&rttest_sysclass
);
432 for (i
= 0; i
< MAX_RT_TEST_THREADS
; i
++) {
433 ret
= init_test_thread(i
);
436 ret
= sysdev_create_file(&thread_data
[i
].sysdev
, &attr_status
);
439 ret
= sysdev_create_file(&thread_data
[i
].sysdev
, &attr_command
);
444 printk("Initializing RT-Tester: %s\n", ret
? "Failed" : "OK" );
449 device_initcall(init_rttest
);