From: Greg KH <gregkh@linuxfoundation.org>
To: Yi Yang <yiyang13@huawei.com>
Cc: jirislaby@kernel.org, jannh@google.com,
linux-serial@vger.kernel.org, guozihua@huawei.com
Subject: Re: [PATCH V3 RESEND] tty: tty_jobctrl: fix pid memleak in disassociate_ctty()
Date: Wed, 16 Aug 2023 16:43:49 +0200 [thread overview]
Message-ID: <2023081639-ambitious-seventeen-9537@gregkh> (raw)
In-Reply-To: <20230816025700.179769-1-yiyang13@huawei.com>
On Wed, Aug 16, 2023 at 10:57:00AM +0800, Yi Yang wrote:
> There is a pid leakage:
> ------------------------------
> unreferenced object 0xffff88810c181940 (size 224):
> comm "sshd", pid 8191, jiffies 4294946950 (age 524.570s)
> hex dump (first 32 bytes):
> 01 00 00 00 00 00 00 00 00 00 00 00 ad 4e ad de .............N..
> ff ff ff ff 6b 6b 6b 6b ff ff ff ff ff ff ff ff ....kkkk........
> backtrace:
> [<ffffffff814774e6>] kmem_cache_alloc+0x5c6/0x9b0
> [<ffffffff81177342>] alloc_pid+0x72/0x570
> [<ffffffff81140ac4>] copy_process+0x1374/0x2470
> [<ffffffff81141d77>] kernel_clone+0xb7/0x900
> [<ffffffff81142645>] __se_sys_clone+0x85/0xb0
> [<ffffffff8114269b>] __x64_sys_clone+0x2b/0x30
> [<ffffffff83965a72>] do_syscall_64+0x32/0x80
> [<ffffffff83a00085>] entry_SYSCALL_64_after_hwframe+0x61/0xc6
>
> It turns out that there is a race condition between disassociate_ctty() and
> tty_signal_session_leader(), which caused this leakage.
>
> The pid memleak is triggered by the following race:
> task[sshd] task[bash]
> ----------------------- -----------------------
> disassociate_ctty();
> spin_lock_irq(¤t->sighand->siglock);
> put_pid(current->signal->tty_old_pgrp);
> current->signal->tty_old_pgrp = NULL;
> tty = tty_kref_get(current->signal->tty);
> spin_unlock_irq(¤t->sighand->siglock);
> tty_vhangup();
> tty_lock(tty);
> ...
> tty_signal_session_leader();
> spin_lock_irq(&p->sighand->siglock);
> ...
> if (tty->ctrl.pgrp) //tty->ctrl.pgrp is not NULL
> p->signal->tty_old_pgrp = get_pid(tty->ctrl.pgrp); //An extra get
> spin_unlock_irq(&p->sighand->siglock);
> ...
> tty_unlock(tty);
> if (tty) {
> tty_lock(tty);
> ...
> put_pid(tty->ctrl.pgrp);
> tty->ctrl.pgrp = NULL; //It's too late
> ...
> tty_unlock(tty);
> }
>
> The issue is believed to be introduced by commit c8bcd9c5be24 ("tty:
> Fix ->session locking") who moves the unlock of siglock in
> disassociate_ctty() above "if (tty)", making a small window allowing
> tty_signal_session_leader() to kick in. It can be easily reproduced by
> adding a delay before "if (tty)" and at the entrance of
> tty_signal_session_leader().
>
> To fix this issue, we move "put_pid(current->signal->tty_old_pgrp)" after
> "tty->ctrl.pgrp = NULL".
>
> Fixes: c8bcd9c5be24 ("tty: Fix ->session locking")
> Signed-off-by: Yi Yang <yiyang13@huawei.com>
> Co-developed-by: GUO Zihua <guozihua@huawei.com>
> Signed-off-by: GUO Zihua <guozihua@huawei.com>
> ---
> drivers/tty/tty_jobctrl.c | 17 +++++++++++------
> 1 file changed, 11 insertions(+), 6 deletions(-)
>
> diff --git a/drivers/tty/tty_jobctrl.c b/drivers/tty/tty_jobctrl.c
> index 0d04287da098..ef8741c3e662 100644
> --- a/drivers/tty/tty_jobctrl.c
> +++ b/drivers/tty/tty_jobctrl.c
> @@ -300,12 +300,7 @@ void disassociate_ctty(int on_exit)
> return;
> }
>
> - spin_lock_irq(¤t->sighand->siglock);
> - put_pid(current->signal->tty_old_pgrp);
> - current->signal->tty_old_pgrp = NULL;
> - tty = tty_kref_get(current->signal->tty);
> - spin_unlock_irq(¤t->sighand->siglock);
> -
> + tty = get_current_tty();
> if (tty) {
> unsigned long flags;
>
> @@ -320,6 +315,16 @@ void disassociate_ctty(int on_exit)
> tty_kref_put(tty);
> }
>
> + /* If tty->ctrl.pgrp is not NULL, it may be assigned to
> + * current->signal->tty_old_pgrp in a race condition, and
> + * cause pid memleak. Release current->signal->tty_old_pgrp
> + * after tty->ctrl.pgrp set to NULL.
> + */
> + spin_lock_irq(¤t->sighand->siglock);
> + put_pid(current->signal->tty_old_pgrp);
> + current->signal->tty_old_pgrp = NULL;
> + spin_unlock_irq(¤t->sighand->siglock);
> +
> /* Now clear signal->tty under the lock */
> read_lock(&tasklist_lock);
> session_clear_tty(task_session(current));
> --
> 2.17.1
>
Hi,
This is the friendly patch-bot of Greg Kroah-Hartman. You have sent him
a patch that has triggered this response. He used to manually respond
to these common problems, but in order to save his sanity (he kept
writing the same thing over and over, yet to different people), I was
created. Hopefully you will not take offence and will fix the problem
in your patch and resubmit it so that it can be accepted into the Linux
kernel tree.
You are receiving this message because of the following common error(s)
as indicated below:
- This looks like a new version of a previously submitted patch, but you
did not list below the --- line any changes from the previous version.
Please read the section entitled "The canonical patch format" in the
kernel file, Documentation/process/submitting-patches.rst for what
needs to be done here to properly describe this.
If you wish to discuss this problem further, or you have questions about
how to resolve this issue, please feel free to respond to this email and
Greg will reply once he has dug out from the pending patches received
from other developers.
thanks,
greg k-h's patch email bot
next prev parent reply other threads:[~2023-08-16 14:45 UTC|newest]
Thread overview: 3+ messages / expand[flat|nested] mbox.gz Atom feed top
2023-08-16 2:57 [PATCH V3 RESEND] tty: tty_jobctrl: fix pid memleak in disassociate_ctty() Yi Yang
2023-08-16 14:43 ` Greg KH [this message]
-- strict thread matches above, loose matches on Subject: below --
2023-08-31 2:33 Yi Yang
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=2023081639-ambitious-seventeen-9537@gregkh \
--to=gregkh@linuxfoundation.org \
--cc=guozihua@huawei.com \
--cc=jannh@google.com \
--cc=jirislaby@kernel.org \
--cc=linux-serial@vger.kernel.org \
--cc=yiyang13@huawei.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