From: Paolo Abeni <pabeni@redhat.com>
To: James Chapman <jchapman@katalix.com>, Hillf Danton <hdanton@sina.com>
Cc: netdev@vger.kernel.org, linux-kernel@vger.kernel.org,
syzkaller-bugs@googlegroups.com, tparkin@katalix.com,
syzbot+b471b7c936301a59745b@syzkaller.appspotmail.com,
syzbot+c041b4ce3a6dfd1e63e2@syzkaller.appspotmail.com
Subject: Re: [PATCH net-next v2] l2tp: fix possible UAF when cleaning up tunnels
Date: Tue, 09 Jul 2024 11:03:36 +0200 [thread overview]
Message-ID: <ce5973fe2017177e6f4c1f577fa8309fe7258612.camel@redhat.com> (raw)
In-Reply-To: <a65127e4-544b-27e6-a1e1-e20e5fb4d480@katalix.com>
On Mon, 2024-07-08 at 14:57 +0100, James Chapman wrote:
> On 08/07/2024 12:59, Hillf Danton wrote:
> > On Mon, 8 Jul 2024 11:06:25 +0100 James Chapman <jchapman@katalix.com>
> > > On 05/07/2024 11:32, Hillf Danton wrote:
> > > > On Thu, 4 Jul 2024 16:25:08 +0100 James Chapman <jchapman@katalix.com>
> > > > > --- a/net/l2tp/l2tp_core.c
> > > > > +++ b/net/l2tp/l2tp_core.c
> > > > > @@ -1290,17 +1290,20 @@ static void l2tp_session_unhash(struct l2tp_session *session)
> > > > > static void l2tp_tunnel_closeall(struct l2tp_tunnel *tunnel)
> > > > > {
> > > > > struct l2tp_session *session;
> > > > > - struct list_head *pos;
> > > > > - struct list_head *tmp;
> > > > >
> > > > > spin_lock_bh(&tunnel->list_lock);
> > > > > tunnel->acpt_newsess = false;
> > > > > - list_for_each_safe(pos, tmp, &tunnel->session_list) {
> > > > > - session = list_entry(pos, struct l2tp_session, list);
> > > > > + for (;;) {
> > > > > + session = list_first_entry_or_null(&tunnel->session_list,
> > > > > + struct l2tp_session, list);
> > > > > + if (!session)
> > > > > + break;
> > > > > + l2tp_session_inc_refcount(session);
> > > > > list_del_init(&session->list);
> > > > > spin_unlock_bh(&tunnel->list_lock);
> > > > > l2tp_session_delete(session);
> > > > > spin_lock_bh(&tunnel->list_lock);
> > > > > + l2tp_session_dec_refcount(session);
> > > >
> > > > Bumping refcount up makes it safe for the current cpu to go thru race
> > > > after releasing lock, and if it wins the race, dropping refcount makes
> > > > the peer head on uaf.
> > >
> > > Thanks for reviewing this. Can you elaborate on what you mean by "makes
> > > the peer head on uaf", please?
> > >
> > Given race, there are winner and loser. If the current cpu wins the race,
> > the loser hits uaf once winner drops refcount.
>
> I think the session's dead flag would protect against threads racing in
> l2tp_session_delete to delete the same session.
> Any thread with a pointer to a session should hold a reference on it to
> prevent the session going away while it is accessed. Am I missing a
> codepath where that's not the case?
AFAICS this patch is safe, as the session refcount can't be 0 at
l2tp_session_inc_refcount() time and will drop to 0 after
l2tp_session_dec_refcount() only if no other entity/thread is owning
any reference to the session.
@James: the patch has a formal issue, you should avoid any empty line
in the tag area, specifically between the 'Fixes' and SoB tags.
I'll exceptionally fix this while applying the patch, but please run
checkpatch before your next submission.
Also somewhat related, I think there is still a race condition in
l2tp_tunnel_get_session():
rcu_read_lock_bh();
hlist_for_each_entry_rcu(session, session_list, hlist)
if (session->session_id == session_id) {
l2tp_session_inc_refcount(session);
I think that at l2tp_session_inc_refcount(), the session refcount could
be 0 due to a concurrent tunnel cleanup. l2tp_session_inc_refcount()
should likely be refcount_inc_not_zero() and the caller should check
the return value.
In any case the latter is a separate issue.
Thanks,
Paolo
next prev parent reply other threads:[~2024-07-09 9:03 UTC|newest]
Thread overview: 8+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-07-04 15:25 James Chapman
2024-07-05 10:32 ` Hillf Danton
2024-07-08 10:06 ` James Chapman
2024-07-08 11:59 ` Hillf Danton
2024-07-08 13:57 ` James Chapman
2024-07-09 9:03 ` Paolo Abeni [this message]
2024-07-09 9:29 ` James Chapman
2024-07-09 9:40 ` patchwork-bot+netdevbpf
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=ce5973fe2017177e6f4c1f577fa8309fe7258612.camel@redhat.com \
--to=pabeni@redhat.com \
--cc=hdanton@sina.com \
--cc=jchapman@katalix.com \
--cc=linux-kernel@vger.kernel.org \
--cc=netdev@vger.kernel.org \
--cc=syzbot+b471b7c936301a59745b@syzkaller.appspotmail.com \
--cc=syzbot+c041b4ce3a6dfd1e63e2@syzkaller.appspotmail.com \
--cc=syzkaller-bugs@googlegroups.com \
--cc=tparkin@katalix.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®