From: Hillf Danton <hdanton@sina.com>
To: syzbot <syzbot+b471b7c936301a59745b@syzkaller.appspotmail.com>
Cc: linux-kernel@vger.kernel.org, syzkaller-bugs@googlegroups.com
Subject: Re: [syzbot] [net?] KASAN: slab-use-after-free Read in l2tp_tunnel_del_work
Date: Fri, 28 Jun 2024 18:28:59 +0800 [thread overview]
Message-ID: <20240628102859.2379-1-hdanton@sina.com> (raw)
In-Reply-To: <000000000000454110061bb48619@google.com>
On Tue, 25 Jun 2024 03:40:20 -0700
> syzbot found the following issue on:
>
> HEAD commit: b0d3969d2b4d net: ethernet: rtsn: Add support for Renesas ..
> git tree: net-next
> syz repro: https://syzkaller.appspot.com/x/repro.syz?x=14a90fb1980000
#syz test https://git.kernel.org/pub/scm/linux/kernel/git/netdev/net-next.git 185d72112b95
--- x/net/l2tp/l2tp_core.c
+++ y/net/l2tp/l2tp_core.c
@@ -1298,8 +1298,10 @@ static void l2tp_tunnel_closeall(struct
list_for_each_safe(pos, tmp, &tunnel->session_list) {
session = list_entry(pos, struct l2tp_session, list);
list_del_init(&session->list);
+ l2tp_session_inc_refcount(session);
spin_unlock_bh(&tunnel->list_lock);
l2tp_session_delete(session);
+ l2tp_session_dec_refcount(session);
spin_lock_bh(&tunnel->list_lock);
}
spin_unlock_bh(&tunnel->list_lock);
--- x/net/l2tp/l2tp_ppp.c
+++ y/net/l2tp/l2tp_ppp.c
@@ -393,14 +393,6 @@ abort:
* Session (and tunnel control) socket create/destroy.
*****************************************************************************/
-static void pppol2tp_put_sk(struct rcu_head *head)
-{
- struct pppol2tp_session *ps;
-
- ps = container_of(head, typeof(*ps), rcu);
- sock_put(ps->__sk);
-}
-
/* Really kill the session socket. (Called from sock_put() if
* refcnt == 0.)
*/
@@ -444,22 +436,8 @@ static int pppol2tp_release(struct socke
session = pppol2tp_sock_to_session(sk);
if (session) {
- struct pppol2tp_session *ps;
-
l2tp_session_delete(session);
-
- ps = l2tp_session_priv(session);
- mutex_lock(&ps->sk_lock);
- ps->__sk = rcu_dereference_protected(ps->sk,
- lockdep_is_held(&ps->sk_lock));
- RCU_INIT_POINTER(ps->sk, NULL);
- mutex_unlock(&ps->sk_lock);
- call_rcu(&ps->rcu, pppol2tp_put_sk);
-
- /* Rely on the sock_put() call at the end of the function for
- * dropping the reference held by pppol2tp_sock_to_session().
- * The last reference will be dropped by pppol2tp_put_sk().
- */
+ l2tp_session_dec_refcount(session);
}
release_sock(sk);
@@ -831,6 +809,7 @@ static int pppol2tp_connect(struct socke
out_no_ppp:
/* This is how we get the session context from the socket. */
sk->sk_user_data = session;
+ l2tp_session_inc_refcount(session);
rcu_assign_pointer(ps->sk, sk);
mutex_unlock(&ps->sk_lock);
--
next prev parent reply other threads:[~2024-06-28 10:29 UTC|newest]
Thread overview: 6+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-06-25 10:40 syzbot
2024-06-28 10:28 ` Hillf Danton [this message]
2024-06-28 12:20 ` syzbot
2024-07-01 16:12 ` syzbot
2024-07-01 16:51 ` James Chapman
2024-07-02 22:51 ` syzbot
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=20240628102859.2379-1-hdanton@sina.com \
--to=hdanton@sina.com \
--cc=linux-kernel@vger.kernel.org \
--cc=syzbot+b471b7c936301a59745b@syzkaller.appspotmail.com \
--cc=syzkaller-bugs@googlegroups.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®