Ingo Molnar | e7eebaf | 2006-06-27 02:54:55 -0700 | [diff] [blame] | 1 | /* |
| 2 | * RT-Mutexes: blocking mutual exclusion locks with PI support |
| 3 | * |
| 4 | * started by Ingo Molnar and Thomas Gleixner: |
| 5 | * |
| 6 | * Copyright (C) 2004-2006 Red Hat, Inc., Ingo Molnar <mingo@redhat.com> |
| 7 | * Copyright (C) 2006 Timesys Corp., Thomas Gleixner <tglx@timesys.com> |
| 8 | * |
| 9 | * This code is based on the rt.c implementation in the preempt-rt tree. |
| 10 | * Portions of said code are |
| 11 | * |
| 12 | * Copyright (C) 2004 LynuxWorks, Inc., Igor Manyilov, Bill Huey |
| 13 | * Copyright (C) 2006 Esben Nielsen |
| 14 | * Copyright (C) 2006 Kihon Technologies Inc., |
| 15 | * Steven Rostedt <rostedt@goodmis.org> |
| 16 | * |
| 17 | * See rt.c in preempt-rt for proper credits and further information |
| 18 | */ |
Ingo Molnar | e7eebaf | 2006-06-27 02:54:55 -0700 | [diff] [blame] | 19 | #include <linux/sched.h> |
| 20 | #include <linux/delay.h> |
Paul Gortmaker | 9984de1 | 2011-05-23 14:51:41 -0400 | [diff] [blame^] | 21 | #include <linux/export.h> |
Ingo Molnar | e7eebaf | 2006-06-27 02:54:55 -0700 | [diff] [blame] | 22 | #include <linux/spinlock.h> |
| 23 | #include <linux/kallsyms.h> |
| 24 | #include <linux/syscalls.h> |
| 25 | #include <linux/interrupt.h> |
| 26 | #include <linux/plist.h> |
| 27 | #include <linux/fs.h> |
Ingo Molnar | 9a11b49a | 2006-07-03 00:24:33 -0700 | [diff] [blame] | 28 | #include <linux/debug_locks.h> |
Ingo Molnar | e7eebaf | 2006-06-27 02:54:55 -0700 | [diff] [blame] | 29 | |
| 30 | #include "rtmutex_common.h" |
| 31 | |
Ingo Molnar | 36c8b58 | 2006-07-03 00:25:41 -0700 | [diff] [blame] | 32 | static void printk_task(struct task_struct *p) |
Ingo Molnar | e7eebaf | 2006-06-27 02:54:55 -0700 | [diff] [blame] | 33 | { |
| 34 | if (p) |
Pavel Emelyanov | ba25f9d | 2007-10-18 23:40:40 -0700 | [diff] [blame] | 35 | printk("%16s:%5d [%p, %3d]", p->comm, task_pid_nr(p), p, p->prio); |
Ingo Molnar | e7eebaf | 2006-06-27 02:54:55 -0700 | [diff] [blame] | 36 | else |
| 37 | printk("<none>"); |
| 38 | } |
| 39 | |
Ingo Molnar | e7eebaf | 2006-06-27 02:54:55 -0700 | [diff] [blame] | 40 | static void printk_lock(struct rt_mutex *lock, int print_owner) |
| 41 | { |
| 42 | if (lock->name) |
| 43 | printk(" [%p] {%s}\n", |
| 44 | lock, lock->name); |
| 45 | else |
| 46 | printk(" [%p] {%s:%d}\n", |
| 47 | lock, lock->file, lock->line); |
| 48 | |
| 49 | if (print_owner && rt_mutex_owner(lock)) { |
| 50 | printk(".. ->owner: %p\n", lock->owner); |
| 51 | printk(".. held by: "); |
| 52 | printk_task(rt_mutex_owner(lock)); |
| 53 | printk("\n"); |
| 54 | } |
Ingo Molnar | e7eebaf | 2006-06-27 02:54:55 -0700 | [diff] [blame] | 55 | } |
| 56 | |
| 57 | void rt_mutex_debug_task_free(struct task_struct *task) |
| 58 | { |
Thomas Gleixner | 0fa914c | 2011-06-08 09:58:38 +0200 | [diff] [blame] | 59 | DEBUG_LOCKS_WARN_ON(!plist_head_empty(&task->pi_waiters)); |
| 60 | DEBUG_LOCKS_WARN_ON(task->pi_blocked_on); |
Ingo Molnar | e7eebaf | 2006-06-27 02:54:55 -0700 | [diff] [blame] | 61 | } |
| 62 | |
| 63 | /* |
| 64 | * We fill out the fields in the waiter to store the information about |
| 65 | * the deadlock. We print when we return. act_waiter can be NULL in |
| 66 | * case of a remove waiter operation. |
| 67 | */ |
| 68 | void debug_rt_mutex_deadlock(int detect, struct rt_mutex_waiter *act_waiter, |
| 69 | struct rt_mutex *lock) |
| 70 | { |
| 71 | struct task_struct *task; |
| 72 | |
Thomas Gleixner | 0fa914c | 2011-06-08 09:58:38 +0200 | [diff] [blame] | 73 | if (!debug_locks || detect || !act_waiter) |
Ingo Molnar | e7eebaf | 2006-06-27 02:54:55 -0700 | [diff] [blame] | 74 | return; |
| 75 | |
| 76 | task = rt_mutex_owner(act_waiter->lock); |
| 77 | if (task && task != current) { |
Pavel Emelyanov | 48d13e4 | 2008-02-08 04:21:53 -0800 | [diff] [blame] | 78 | act_waiter->deadlock_task_pid = get_pid(task_pid(task)); |
Ingo Molnar | e7eebaf | 2006-06-27 02:54:55 -0700 | [diff] [blame] | 79 | act_waiter->deadlock_lock = lock; |
| 80 | } |
| 81 | } |
| 82 | |
| 83 | void debug_rt_mutex_print_deadlock(struct rt_mutex_waiter *waiter) |
| 84 | { |
| 85 | struct task_struct *task; |
| 86 | |
Thomas Gleixner | 0fa914c | 2011-06-08 09:58:38 +0200 | [diff] [blame] | 87 | if (!waiter->deadlock_lock || !debug_locks) |
Ingo Molnar | e7eebaf | 2006-06-27 02:54:55 -0700 | [diff] [blame] | 88 | return; |
| 89 | |
Pavel Emelyanov | 48d13e4 | 2008-02-08 04:21:53 -0800 | [diff] [blame] | 90 | rcu_read_lock(); |
| 91 | task = pid_task(waiter->deadlock_task_pid, PIDTYPE_PID); |
| 92 | if (!task) { |
| 93 | rcu_read_unlock(); |
Ingo Molnar | e7eebaf | 2006-06-27 02:54:55 -0700 | [diff] [blame] | 94 | return; |
Pavel Emelyanov | 48d13e4 | 2008-02-08 04:21:53 -0800 | [diff] [blame] | 95 | } |
Ingo Molnar | e7eebaf | 2006-06-27 02:54:55 -0700 | [diff] [blame] | 96 | |
Thomas Gleixner | 68cc399 | 2011-10-05 13:20:24 +0200 | [diff] [blame] | 97 | if (!debug_locks_off()) { |
| 98 | rcu_read_unlock(); |
Thomas Gleixner | 0fa914c | 2011-06-08 09:58:38 +0200 | [diff] [blame] | 99 | return; |
Thomas Gleixner | 68cc399 | 2011-10-05 13:20:24 +0200 | [diff] [blame] | 100 | } |
Ingo Molnar | e7eebaf | 2006-06-27 02:54:55 -0700 | [diff] [blame] | 101 | |
| 102 | printk("\n============================================\n"); |
| 103 | printk( "[ BUG: circular locking deadlock detected! ]\n"); |
| 104 | printk( "--------------------------------------------\n"); |
| 105 | printk("%s/%d is deadlocking current task %s/%d\n\n", |
Pavel Emelyanov | ba25f9d | 2007-10-18 23:40:40 -0700 | [diff] [blame] | 106 | task->comm, task_pid_nr(task), |
| 107 | current->comm, task_pid_nr(current)); |
Ingo Molnar | e7eebaf | 2006-06-27 02:54:55 -0700 | [diff] [blame] | 108 | |
| 109 | printk("\n1) %s/%d is trying to acquire this lock:\n", |
Pavel Emelyanov | ba25f9d | 2007-10-18 23:40:40 -0700 | [diff] [blame] | 110 | current->comm, task_pid_nr(current)); |
Ingo Molnar | e7eebaf | 2006-06-27 02:54:55 -0700 | [diff] [blame] | 111 | printk_lock(waiter->lock, 1); |
| 112 | |
Pavel Emelyanov | ba25f9d | 2007-10-18 23:40:40 -0700 | [diff] [blame] | 113 | printk("\n2) %s/%d is blocked on this lock:\n", |
| 114 | task->comm, task_pid_nr(task)); |
Ingo Molnar | e7eebaf | 2006-06-27 02:54:55 -0700 | [diff] [blame] | 115 | printk_lock(waiter->deadlock_lock, 1); |
| 116 | |
Ingo Molnar | 9a11b49a | 2006-07-03 00:24:33 -0700 | [diff] [blame] | 117 | debug_show_held_locks(current); |
| 118 | debug_show_held_locks(task); |
Ingo Molnar | e7eebaf | 2006-06-27 02:54:55 -0700 | [diff] [blame] | 119 | |
Pavel Emelyanov | ba25f9d | 2007-10-18 23:40:40 -0700 | [diff] [blame] | 120 | printk("\n%s/%d's [blocked] stackdump:\n\n", |
| 121 | task->comm, task_pid_nr(task)); |
Ingo Molnar | e7eebaf | 2006-06-27 02:54:55 -0700 | [diff] [blame] | 122 | show_stack(task, NULL); |
| 123 | printk("\n%s/%d's [current] stackdump:\n\n", |
Pavel Emelyanov | ba25f9d | 2007-10-18 23:40:40 -0700 | [diff] [blame] | 124 | current->comm, task_pid_nr(current)); |
Ingo Molnar | e7eebaf | 2006-06-27 02:54:55 -0700 | [diff] [blame] | 125 | dump_stack(); |
Ingo Molnar | 9a11b49a | 2006-07-03 00:24:33 -0700 | [diff] [blame] | 126 | debug_show_all_locks(); |
Pavel Emelyanov | 48d13e4 | 2008-02-08 04:21:53 -0800 | [diff] [blame] | 127 | rcu_read_unlock(); |
Ingo Molnar | 9a11b49a | 2006-07-03 00:24:33 -0700 | [diff] [blame] | 128 | |
Ingo Molnar | e7eebaf | 2006-06-27 02:54:55 -0700 | [diff] [blame] | 129 | printk("[ turning off deadlock detection." |
| 130 | "Please report this trace. ]\n\n"); |
Ingo Molnar | e7eebaf | 2006-06-27 02:54:55 -0700 | [diff] [blame] | 131 | } |
| 132 | |
Ingo Molnar | 9a11b49a | 2006-07-03 00:24:33 -0700 | [diff] [blame] | 133 | void debug_rt_mutex_lock(struct rt_mutex *lock) |
Ingo Molnar | e7eebaf | 2006-06-27 02:54:55 -0700 | [diff] [blame] | 134 | { |
Ingo Molnar | e7eebaf | 2006-06-27 02:54:55 -0700 | [diff] [blame] | 135 | } |
| 136 | |
| 137 | void debug_rt_mutex_unlock(struct rt_mutex *lock) |
| 138 | { |
Thomas Gleixner | 0fa914c | 2011-06-08 09:58:38 +0200 | [diff] [blame] | 139 | DEBUG_LOCKS_WARN_ON(rt_mutex_owner(lock) != current); |
Ingo Molnar | e7eebaf | 2006-06-27 02:54:55 -0700 | [diff] [blame] | 140 | } |
| 141 | |
Ingo Molnar | 9a11b49a | 2006-07-03 00:24:33 -0700 | [diff] [blame] | 142 | void |
| 143 | debug_rt_mutex_proxy_lock(struct rt_mutex *lock, struct task_struct *powner) |
Ingo Molnar | e7eebaf | 2006-06-27 02:54:55 -0700 | [diff] [blame] | 144 | { |
Ingo Molnar | e7eebaf | 2006-06-27 02:54:55 -0700 | [diff] [blame] | 145 | } |
| 146 | |
| 147 | void debug_rt_mutex_proxy_unlock(struct rt_mutex *lock) |
| 148 | { |
Thomas Gleixner | 0fa914c | 2011-06-08 09:58:38 +0200 | [diff] [blame] | 149 | DEBUG_LOCKS_WARN_ON(!rt_mutex_owner(lock)); |
Ingo Molnar | e7eebaf | 2006-06-27 02:54:55 -0700 | [diff] [blame] | 150 | } |
| 151 | |
| 152 | void debug_rt_mutex_init_waiter(struct rt_mutex_waiter *waiter) |
| 153 | { |
| 154 | memset(waiter, 0x11, sizeof(*waiter)); |
| 155 | plist_node_init(&waiter->list_entry, MAX_PRIO); |
| 156 | plist_node_init(&waiter->pi_list_entry, MAX_PRIO); |
Pavel Emelyanov | 48d13e4 | 2008-02-08 04:21:53 -0800 | [diff] [blame] | 157 | waiter->deadlock_task_pid = NULL; |
Ingo Molnar | e7eebaf | 2006-06-27 02:54:55 -0700 | [diff] [blame] | 158 | } |
| 159 | |
| 160 | void debug_rt_mutex_free_waiter(struct rt_mutex_waiter *waiter) |
| 161 | { |
Pavel Emelyanov | 48d13e4 | 2008-02-08 04:21:53 -0800 | [diff] [blame] | 162 | put_pid(waiter->deadlock_task_pid); |
Thomas Gleixner | 0fa914c | 2011-06-08 09:58:38 +0200 | [diff] [blame] | 163 | DEBUG_LOCKS_WARN_ON(!plist_node_empty(&waiter->list_entry)); |
| 164 | DEBUG_LOCKS_WARN_ON(!plist_node_empty(&waiter->pi_list_entry)); |
Ingo Molnar | e7eebaf | 2006-06-27 02:54:55 -0700 | [diff] [blame] | 165 | memset(waiter, 0x22, sizeof(*waiter)); |
| 166 | } |
| 167 | |
| 168 | void debug_rt_mutex_init(struct rt_mutex *lock, const char *name) |
| 169 | { |
Ingo Molnar | 9a11b49a | 2006-07-03 00:24:33 -0700 | [diff] [blame] | 170 | /* |
| 171 | * Make sure we are not reinitializing a held lock: |
| 172 | */ |
| 173 | debug_check_no_locks_freed((void *)lock, sizeof(*lock)); |
| 174 | lock->name = name; |
Ingo Molnar | e7eebaf | 2006-06-27 02:54:55 -0700 | [diff] [blame] | 175 | } |
| 176 | |
Ingo Molnar | 36c8b58 | 2006-07-03 00:25:41 -0700 | [diff] [blame] | 177 | void |
| 178 | rt_mutex_deadlock_account_lock(struct rt_mutex *lock, struct task_struct *task) |
Ingo Molnar | e7eebaf | 2006-06-27 02:54:55 -0700 | [diff] [blame] | 179 | { |
| 180 | } |
| 181 | |
| 182 | void rt_mutex_deadlock_account_unlock(struct task_struct *task) |
| 183 | { |
| 184 | } |
| 185 | |