Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1681976
| From | Sergey Senozhatsky <sergey.senozhatsky.work@gmail.com> |
|---|---|
| Newsgroups | linux.kernel |
| Subject | Re: [GIT PULL] printk for 4.13 |
| Date | 2017-07-06 02:50 +0200 |
| Message-ID | <u039v-5kK-3@gated-at.bofh.it> (permalink) |
| References | <tZawq-2Ha-17@gated-at.bofh.it> <tZXdM-1mP-13@gated-at.bofh.it> |
| Organization | linux.* mail to news gateway |
Hello, On (07/05/17 11:23), Linus Torvalds wrote: > On Mon, Jul 3, 2017 at 7:24 AM, Petr Mladek <pmladek@suse.com> wrote: > > > > - Store printk() messages into the main log buffer directly even in NMI > > when the lock is available. It is the best effort to print even large > > chunk of text. It is handy, for example, when all ftrace messages > > are printed during the system panic in NMI. > > No, this is entirely buggered. > > You can't just do > > raw_spin_is_locked(&logbuf_lock) > > to test whether you can get the logbuf_lock and then call vprintk_default(). > > It's not just about deadlock avoidance, the code will call things like > down_trylock() on the console semaphore, and that operation is > fundamentally not NMI-safe. The semaphore count is literally protected > by a irq-safe (BUT NOT NMI-SAFE!) semaphore spinlock. > > So now you can instead deadlock just on the internal console semaphore > spinlock (ie somebody is doing "console_lock()", NMI comes in, *BOOM*. you are right. but PRINTK_NMI_DEFERRED_CONTEXT_MASK calls into vprintk_deferred(), which does vprintk_emit(0, LOGLEVEL_SCHED, NULL, 0, fmt, args). and vprintk_emit() LOGLEVEL_SCHED is nothing, but printk_deferred(), which never calls into the scheduler and does not even try to lock console_sem. the only lock it takes is logbuf_lock, and the idea behind those checks in printk_nmi_enter() is to make sure that we can safely call vprintk_deferred() from NMI on that CPU. printk_safe context is per-CPU, so if we see at NMI entry that this_cpu has PRINTK_SAFE_CONTEXT_MASK set, then it means that NMI is preempting printk-safe context on this_cpu, which is already alarming, because we switch to printk-safe context *mostly* in places where printk recursion can deadlock us (console_sem up/down/try_down and logbuf_lock lock/unlock). why *mostly*... because we are also in printk-safe context during the call_console_drivers() call. so this is why we also check raw_spin_is_locked(&logbuf_lock). by the time we do raw_spin_is_locked(&logbuf_lock) we already know that this_cpu is in printk-safe, so it is _potentially_ unsafe to call vprintk_emit(), unless we are printk-safe for call_console_drivers(), which means that logbuf_lock is not lockde by this_cpu. so what printk_nmi_enter() does - this_cpu_read(printk_context) & PRINTK_SAFE_CONTEXT_MASK if we are NOT in printk-safe then we know that from this CPU we can call printk_deferred(). otherwise, we need to make sure that it is safe to call printk_deferred(). - raw_spin_is_locked(&logbuf_lock) if the lock is not locked -- we can printk_deferred() from that CPU. otherwise, we use printk-nmi buffer and flush the messages to logbuf later from irq_work. does this make sense? -ss
Back to linux.kernel | Previous | Next — Previous in thread | Next in thread | Find similar | Unroll thread
[GIT PULL] printk for 4.13 Petr Mladek <pmladek@suse.com> - 2017-07-03 16:30 +0200
Re: [GIT PULL] printk for 4.13 Linus Torvalds <torvalds@linux-foundation.org> - 2017-07-05 20:30 +0200
Re: [GIT PULL] printk for 4.13 Sergey Senozhatsky <sergey.senozhatsky.work@gmail.com> - 2017-07-06 02:50 +0200
Re: [GIT PULL] printk for 4.13 Sergey Senozhatsky <sergey.senozhatsky.work@gmail.com> - 2017-07-06 03:00 +0200
Re: [GIT PULL] printk for 4.13 Linus Torvalds <torvalds@linux-foundation.org> - 2017-07-06 03:20 +0200
Re: [GIT PULL] printk for 4.13 Sergey Senozhatsky <sergey.senozhatsky.work@gmail.com> - 2017-07-06 03:20 +0200
csiph-web