All of lore.kernel.org
 help / color / mirror / Atom feed
From: Petr Mladek <pmladek@suse.com>
To: John Ogness <john.ogness@linutronix.de>
Cc: Sergey Senozhatsky <senozhatsky@chromium.org>,
	Steven Rostedt <rostedt@goodmis.org>,
	Thomas Gleixner <tglx@linutronix.de>,
	linux-kernel@vger.kernel.org, kernel test robot <lkp@intel.com>,
	stable@vger.kernel.org
Subject: Re: [PATCH v2] printk/console: Check consistent sequence number when handling race in console_unlock()
Date: Wed, 7 Jul 2021 14:26:02 +0200	[thread overview]
Message-ID: <YOWdWs8foEWKbgXy@alley> (raw)
In-Reply-To: <87y2an7w1x.fsf@jogness.linutronix.de>

On Sat 2021-07-03 08:32:02, John Ogness wrote:
> On 2021-07-02, Petr Mladek <pmladek@suse.com> wrote:
> > The standard printk() tries to flush the message to the console
> > immediately. It tries to take the console lock. If the lock is
> > already taken then the current owner is responsible for flushing
> > even the new message.
> >
> > There is a small race window between checking whether a new message is
> > available and releasing the console lock. It is solved by re-checking
> > the state after releasing the console lock. If the check is positive
> > then console_unlock() tries to take the lock again and process the new
> > message as well.
> >
> > The commit 996e966640ddea7b535c ("printk: remove logbuf_lock") causes that
> > console_seq is not longer read atomically. As a result, the re-check might
> > be done with an inconsistent 64-bit index.
> >
> > Solve it by using the last sequence number that has been checked under
> > the console lock. In the worst case, it will take the lock again only
> > to realized that the new message has already been proceed. But it
> > was possible even before.
> >
> > The variable next_seq is marked as __maybe_unused to call down compiler
> > warning when CONFIG_PRINTK is not defined.
> 
> As Sergey already pointed out, this patch is not fixing a real
> problem. An inconsistent value (or an increased consistent value) would
> mean that another printer is actively printing, and thus a retry is not
> necessary anyway.

Ah, I misunderstood that part. You are right. CPU_X might see wrong
console_seq only when CPU_Y incremented console_seq. If CPU_X does not do
retry because of racy console_seq. Then CPU_Y would do retry when
yet another CPU added yet another new message in the meantime.

> But this patch will avoid a KASAN message about an unmarked
> (although safe) data race.

Yup.

OK, I am going to queue the patch for-5.15. There is no need to
rush it for-4.14.

Best Regards,
Petr

  reply	other threads:[~2021-07-07 12:26 UTC|newest]

Thread overview: 4+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2021-07-02 15:06 [PATCH v2] printk/console: Check consistent sequence number when handling race in console_unlock() Petr Mladek
2021-07-03  6:26 ` John Ogness
2021-07-07 12:26   ` Petr Mladek [this message]
2021-07-09  9:12     ` Petr Mladek

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=YOWdWs8foEWKbgXy@alley \
    --to=pmladek@suse.com \
    --cc=john.ogness@linutronix.de \
    --cc=linux-kernel@vger.kernel.org \
    --cc=lkp@intel.com \
    --cc=rostedt@goodmis.org \
    --cc=senozhatsky@chromium.org \
    --cc=stable@vger.kernel.org \
    --cc=tglx@linutronix.de \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.