From: Jiri Slaby <jirislaby@kernel.org>
To: Xiaomeng Tong <xiam0nd.tong@gmail.com>, gregkh@linuxfoundation.org
Cc: linux-kernel@vger.kernel.org
Subject: Re: [PATCH v1] vt_ioctl: fix potential spectre v1 in VT_DISALLOCATE
Date: Tue, 22 Feb 2022 09:00:08 +0100 [thread overview]
Message-ID: <d83ae2d5-ac46-a3b8-ee9a-12615a48e9d9@kernel.org> (raw)
In-Reply-To: <20220222073954.20212-1-xiam0nd.tong@gmail.com>
On 22. 02. 22, 8:39, Xiaomeng Tong wrote:
> In VT_ACTIVATE an almost identical code path has been patched
> with array_index_nospec. In the VT_DISALLOCATE path, the arg is
> the user input from a system call argument and lately used as a index
> for vc_cons[index].d access, which can be reached through path like
> vt_disallocate->vc_busy or vt_disallocate->vc_deallocate.
> For consistency both code paths should have the same mitigations
> applied. Also, the code style is adjusted as suggested by Jiri.
>
> Signed-off-by: Xiaomeng Tong <xiam0nd.tong@gmail.com>
Reviewed-by: Jiri Slaby <jirislaby@kernel.org>
> ---
> drivers/tty/vt/vt_ioctl.c | 10 ++++++----
> 1 file changed, 6 insertions(+), 4 deletions(-)
>
> diff --git a/drivers/tty/vt/vt_ioctl.c b/drivers/tty/vt/vt_ioctl.c
> index 580136986..8c685b501 100644
> --- a/drivers/tty/vt/vt_ioctl.c
> +++ b/drivers/tty/vt/vt_ioctl.c
> @@ -898,11 +898,13 @@ int vt_ioctl(struct tty_struct *tty,
> if (arg > MAX_NR_CONSOLES)
> return -ENXIO;
>
> - if (arg == 0)
> + if (arg == 0) {
> vt_disallocate_all();
> - else
> - return vt_disallocate(--arg);
> - break;
> + break;
> + }
> +
> + arg = array_index_nospec(arg - 1, MAX_NR_CONSOLES);
> + return vt_disallocate(arg);
>
> case VT_RESIZE:
> {
--
js
suse labs
next prev parent reply other threads:[~2022-02-22 8:00 UTC|newest]
Thread overview: 3+ messages / expand[flat|nested] mbox.gz Atom feed top
2022-02-22 7:39 Xiaomeng Tong
2022-02-22 8:00 ` Jiri Slaby [this message]
2022-02-23 7:01 ` Xiaomeng Tong
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=d83ae2d5-ac46-a3b8-ee9a-12615a48e9d9@kernel.org \
--to=jirislaby@kernel.org \
--cc=gregkh@linuxfoundation.org \
--cc=linux-kernel@vger.kernel.org \
--cc=xiam0nd.tong@gmail.com \
/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®