From: Andrew Morton <akpm@linux-foundation.org>
To: spock@gentoo.org
Cc: linux-kernel@vger.kernel.org
Subject: Re: [PATCH] vt: fix a potential race in the VT_WAITACTIVE handler
Date: Mon, 19 Mar 2007 22:40:39 -0800 [thread overview]
Message-ID: <20070319224039.d99f8275.akpm@linux-foundation.org> (raw)
In-Reply-To: <20070315141023.GA9757@spock.one.pl>
On Thu, 15 Mar 2007 15:10:23 +0100 Michal Januszewski <spock@gentoo.org> wrote:
> On a multiprocessor machine the VT_WAITACTIVE ioctl call may return 0
> if fg_console has already been updated in redraw_screen(), but the
> console switch itself hasn't been completed. Fix this by checking
> fg_console in vt_waitactive() with the console sem held.
>
> Signed-off-by: Michal Januszewski <spock@gentoo.org>
>
> ---
> diff --git a/drivers/char/vt_ioctl.c b/drivers/char/vt_ioctl.c
> index 3a5d301..00b5b34 100644
> --- a/drivers/char/vt_ioctl.c
> +++ b/drivers/char/vt_ioctl.c
> @@ -1041,8 +1041,12 @@ int vt_waitactive(int vt)
> for (;;) {
> set_current_state(TASK_INTERRUPTIBLE);
> retval = 0;
> - if (vt == fg_console)
> + acquire_console_sem();
> + if (vt == fg_console) {
> + release_console_sem();
> break;
> + }
> + release_console_sem();
> retval = -EINTR;
> if (signal_pending(current))
> break;
>
OK. I think. It's hard to tell. I assume that the acquire_console_sem()
in here is to synchronise against some other function which also takes
acquire_console_sem(), but it is not clear which.
So could you please redo this with a comment which tells the reader exactly
what's being protected against what, and why?
Also, I always feel a bit worried by:
set_current_state(TASK_INTERRUPTIBLE);
down(...);
because if it hits contention, the down() will undo the
set_curremt_state(). Now that's normally OK because we loop, and because
the semaphore won't normally be 100% contended all the time. Unless
someone reimplements down() so it happens to return in state TASK_RUNNING
all the time, which they could legitimately do (although this would
probably break stuff such as the above).
But still, it is nicer to do
down(...);
set_current_state(TASK_INTERRUPTIBLE);
if possible, and I think it is possible here.
Thanks.
prev parent reply other threads:[~2007-03-20 6:40 UTC|newest]
Thread overview: 2+ messages / expand[flat|nested] mbox.gz Atom feed top
2007-03-15 14:10 Michal Januszewski
2007-03-20 6:40 ` Andrew Morton [this message]
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=20070319224039.d99f8275.akpm@linux-foundation.org \
--to=akpm@linux-foundation.org \
--cc=linux-kernel@vger.kernel.org \
--cc=spock@gentoo.org \
/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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox
all inboxes | Powered by JetHome®