Skip to content

Commit f975237

Browse files
sergey-senozhatskypmladek
authored andcommitted
printk: use printk_safe buffers in printk
Use printk_safe per-CPU buffers in printk recursion-prone blocks: -- around logbuf_lock protected sections in vprintk_emit() and console_unlock() -- around down_trylock_console_sem() and up_console_sem() Note that this solution addresses deadlocks caused by printk() recursive calls only. That is vprintk_emit() and console_unlock(). The rest will be converted in a followup patch. Another thing to note is that we now keep lockdep enabled in printk, because we are protected against the printk recursion caused by lockdep in vprintk_emit() by the printk-safe mechanism - we first switch to per-CPU buffers and only then access the deadlock-prone locks. Examples: 1) printk() from logbuf_lock spin_lock section Assume the following code: printk() raw_spin_lock(&logbuf_lock); WARN_ON(1); raw_spin_unlock(&logbuf_lock); which now produces: ------------[ cut here ]------------ WARNING: CPU: 0 PID: 366 at kernel/printk/printk.c:1811 vprintk_emit CPU: 0 PID: 366 Comm: bash Call Trace: warn_slowpath_null+0x1d/0x1f vprintk_emit+0x1cd/0x438 vprintk_default+0x1d/0x1f printk+0x48/0x50 [..] 2) printk() from semaphore sem->lock spin_lock section Assume the following code printk() console_trylock() down_trylock() raw_spin_lock_irqsave(&sem->lock, flags); WARN_ON(1); raw_spin_unlock_irqrestore(&sem->lock, flags); which now produces: ------------[ cut here ]------------ WARNING: CPU: 1 PID: 363 at kernel/locking/semaphore.c:141 down_trylock CPU: 1 PID: 363 Comm: bash Call Trace: warn_slowpath_null+0x1d/0x1f down_trylock+0x3d/0x62 ? vprintk_emit+0x3f9/0x414 console_trylock+0x31/0xeb vprintk_emit+0x3f9/0x414 vprintk_default+0x1d/0x1f printk+0x48/0x50 [..] 3) printk() from console_unlock() Assume the following code: printk() console_unlock() raw_spin_lock(&logbuf_lock); WARN_ON(1); raw_spin_unlock(&logbuf_lock); which now produces: ------------[ cut here ]------------ WARNING: CPU: 1 PID: 329 at kernel/printk/printk.c:2384 console_unlock CPU: 1 PID: 329 Comm: bash Call Trace: warn_slowpath_null+0x18/0x1a console_unlock+0x12d/0x559 ? trace_hardirqs_on_caller+0x16d/0x189 ? trace_hardirqs_on+0xd/0xf vprintk_emit+0x363/0x374 vprintk_default+0x18/0x1a printk+0x43/0x4b [..] 4) printk() from try_to_wake_up() Assume the following code: printk() console_unlock() up() try_to_wake_up() raw_spin_lock_irqsave(&p->pi_lock, flags); WARN_ON(1); raw_spin_unlock_irqrestore(&p->pi_lock, flags); which now produces: ------------[ cut here ]------------ WARNING: CPU: 3 PID: 363 at kernel/sched/core.c:2028 try_to_wake_up CPU: 3 PID: 363 Comm: bash Call Trace: warn_slowpath_null+0x1d/0x1f try_to_wake_up+0x7f/0x4f7 wake_up_process+0x15/0x17 __up.isra.0+0x56/0x63 up+0x32/0x42 __up_console_sem+0x37/0x55 console_unlock+0x21e/0x4c2 vprintk_emit+0x41c/0x462 vprintk_default+0x1d/0x1f printk+0x48/0x50 [..] 5) printk() from call_console_drivers() Assume the following code: printk() console_unlock() call_console_drivers() ... WARN_ON(1); which now produces: ------------[ cut here ]------------ WARNING: CPU: 2 PID: 305 at kernel/printk/printk.c:1604 call_console_drivers CPU: 2 PID: 305 Comm: bash Call Trace: warn_slowpath_null+0x18/0x1a call_console_drivers.isra.6.constprop.16+0x3a/0xb0 console_unlock+0x471/0x48e vprintk_emit+0x1f4/0x206 vprintk_default+0x18/0x1a vprintk_func+0x6e/0x70 printk+0x3e/0x46 [..] 6) unsupported placeholder in printk() format now prints an actual warning from vscnprintf(), instead of 'BUG: recent printk recursion!'. ------------[ cut here ]------------ WARNING: CPU: 5 PID: 337 at lib/vsprintf.c:1900 format_decode Please remove unsupported % in format string CPU: 5 PID: 337 Comm: bash Call Trace: dump_stack+0x4f/0x65 __warn+0xc2/0xdd warn_slowpath_fmt+0x4b/0x53 format_decode+0x22c/0x308 vsnprintf+0x89/0x3b7 vscnprintf+0xd/0x26 vprintk_emit+0xb4/0x238 vprintk_default+0x1d/0x1f vprintk_func+0x6c/0x73 printk+0x43/0x4b [..] Link: http://lkml.kernel.org/r/20161227141611.940-7-sergey.senozhatsky@gmail.com Cc: Andrew Morton <akpm@linux-foundation.org> Cc: Linus Torvalds <torvalds@linux-foundation.org> Cc: Jan Kara <jack@suse.cz> Cc: Tejun Heo <tj@kernel.org> Cc: Calvin Owens <calvinowens@fb.com> Cc: Ingo Molnar <mingo@redhat.com> Cc: Peter Zijlstra <peterz@infradead.org> Cc: Andy Lutomirski <luto@kernel.org> Cc: Peter Hurley <peter@hurleysoftware.com> Cc: linux-kernel@vger.kernel.org Signed-off-by: Sergey Senozhatsky <sergey.senozhatsky@gmail.com> Signed-off-by: Petr Mladek <pmladek@suse.com> Reviewed-by: Steven Rostedt (VMware) <rostedt@goodmis.org>
1 parent ddb9baa commit f975237

File tree

1 file changed

+32
-15
lines changed

1 file changed

+32
-15
lines changed

kernel/printk/printk.c

Lines changed: 32 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -213,17 +213,36 @@ static int nr_ext_console_drivers;
213213

214214
static int __down_trylock_console_sem(unsigned long ip)
215215
{
216-
if (down_trylock(&console_sem))
216+
int lock_failed;
217+
unsigned long flags;
218+
219+
/*
220+
* Here and in __up_console_sem() we need to be in safe mode,
221+
* because spindump/WARN/etc from under console ->lock will
222+
* deadlock in printk()->down_trylock_console_sem() otherwise.
223+
*/
224+
printk_safe_enter_irqsave(flags);
225+
lock_failed = down_trylock(&console_sem);
226+
printk_safe_exit_irqrestore(flags);
227+
228+
if (lock_failed)
217229
return 1;
218230
mutex_acquire(&console_lock_dep_map, 0, 1, ip);
219231
return 0;
220232
}
221233
#define down_trylock_console_sem() __down_trylock_console_sem(_RET_IP_)
222234

223-
#define up_console_sem() do { \
224-
mutex_release(&console_lock_dep_map, 1, _RET_IP_);\
225-
up(&console_sem);\
226-
} while (0)
235+
static void __up_console_sem(unsigned long ip)
236+
{
237+
unsigned long flags;
238+
239+
mutex_release(&console_lock_dep_map, 1, ip);
240+
241+
printk_safe_enter_irqsave(flags);
242+
up(&console_sem);
243+
printk_safe_exit_irqrestore(flags);
244+
}
245+
#define up_console_sem() __up_console_sem(_RET_IP_)
227246

228247
/*
229248
* This is used for debugging the mess that is the VT code by
@@ -1689,7 +1708,7 @@ asmlinkage int vprintk_emit(int facility, int level,
16891708
boot_delay_msec(level);
16901709
printk_delay();
16911710

1692-
local_irq_save(flags);
1711+
printk_safe_enter_irqsave(flags);
16931712
this_cpu = smp_processor_id();
16941713

16951714
/*
@@ -1705,13 +1724,12 @@ asmlinkage int vprintk_emit(int facility, int level,
17051724
*/
17061725
if (!oops_in_progress && !lockdep_recursing(current)) {
17071726
recursion_bug = true;
1708-
local_irq_restore(flags);
1727+
printk_safe_exit_irqrestore(flags);
17091728
return 0;
17101729
}
17111730
zap_locks();
17121731
}
17131732

1714-
lockdep_off();
17151733
/* This stops the holder of console_sem just where we want him */
17161734
raw_spin_lock(&logbuf_lock);
17171735
logbuf_cpu = this_cpu;
@@ -1771,20 +1789,17 @@ asmlinkage int vprintk_emit(int facility, int level,
17711789

17721790
logbuf_cpu = UINT_MAX;
17731791
raw_spin_unlock(&logbuf_lock);
1774-
lockdep_on();
1775-
local_irq_restore(flags);
1792+
printk_safe_exit_irqrestore(flags);
17761793

17771794
/* If called from the scheduler, we can not call up(). */
17781795
if (!in_sched) {
1779-
lockdep_off();
17801796
/*
17811797
* Try to acquire and then immediately release the console
17821798
* semaphore. The release will print out buffers and wake up
17831799
* /dev/kmsg and syslog() users.
17841800
*/
17851801
if (console_trylock())
17861802
console_unlock();
1787-
lockdep_on();
17881803
}
17891804

17901805
return printed_len;
@@ -2209,7 +2224,8 @@ void console_unlock(void)
22092224
size_t len;
22102225
int level;
22112226

2212-
raw_spin_lock_irqsave(&logbuf_lock, flags);
2227+
printk_safe_enter_irqsave(flags);
2228+
raw_spin_lock(&logbuf_lock);
22132229
if (seen_seq != log_next_seq) {
22142230
wake_klogd = true;
22152231
seen_seq = log_next_seq;
@@ -2259,7 +2275,7 @@ void console_unlock(void)
22592275
stop_critical_timings(); /* don't trace print latency */
22602276
call_console_drivers(level, ext_text, ext_len, text, len);
22612277
start_critical_timings();
2262-
local_irq_restore(flags);
2278+
printk_safe_exit_irqrestore(flags);
22632279

22642280
if (do_cond_resched)
22652281
cond_resched();
@@ -2282,7 +2298,8 @@ void console_unlock(void)
22822298
*/
22832299
raw_spin_lock(&logbuf_lock);
22842300
retry = console_seq != log_next_seq;
2285-
raw_spin_unlock_irqrestore(&logbuf_lock, flags);
2301+
raw_spin_unlock(&logbuf_lock);
2302+
printk_safe_exit_irqrestore(flags);
22862303

22872304
if (retry && console_trylock())
22882305
goto again;

0 commit comments

Comments
 (0)