From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from smtp.kernel.org (aws-us-west-2-korg-mail-alma10-1.taild15c8.ts.net [100.103.45.18]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.subspace.kernel.org (Postfix) with ESMTPS id 3C52349620; Tue, 21 Jul 2026 20:46:48 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=100.103.45.18 ARC-Seal:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1784666809; cv=none; b=npfLVFSiUsq4A73KisTYkI3zwNosvLk63lfb3FUSpy6Zu+OqzhSdDd6iS9U1z4Sp1z0xsH+2uMqY1lUA8OL30LaKTSwEsfBRjzGBSWrCF7etyrsfVUR/wRmp28a4RX022yF2xEiIBfnhmbkdRJnLrqw/bcieF3vGh6vFJz+dhK4= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1784666809; c=relaxed/simple; bh=0pvdQw9khHkgCkk7M6uxs4ttu5aPst9tSXfhFJIJxu4=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version; b=NbyXaIeJ4ckLwRTH3R9hOgxoDggkin7ZvotwG4kJdTJWKtiKULPA6E9Tu7YqgAvsUdlD/bxlZQwVfrF9EZLrzQL4y2sbFhjeAvlraTL+tV7YCh7Bf8ZFRIefYQOqP+X4p79RNJRwAy26f2M34QLAvQmvQulLYpO6B8NSxjfRo5k= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b=VGLBxH+O; arc=none smtp.client-ip=100.103.45.18 Authentication-Results: smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b="VGLBxH+O" Received: by smtp.kernel.org (Postfix) with ESMTPSA id 914E91F000E9; Tue, 21 Jul 2026 20:46:47 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=linuxfoundation.org; s=korg; t=1784666808; bh=dc05PrYpUk/E/ujU7B/DPJ72iRM9GcqvYby8JJNvzHM=; h=From:To:Cc:Subject:Date:In-Reply-To:References; b=VGLBxH+OE8wCf7yYyeG9KB0VmwVc5GlRn8byiugBGmHyM4S8Uaz5NG0uDRpO4n9ka Z+7/mfBYahrriUc5ya4zdHTQpUfv++gKh2TtExEqzxZZE6P9KGM2wrwZ9TFEGKP2gB 9ySs7t553Ud5vdnz4JBWH/5oPw17TxslTNHODoug= From: Greg Kroah-Hartman To: stable@vger.kernel.org Cc: Greg Kroah-Hartman , patches@lists.linux.dev, Sechang Lim , Amery Hung , Jakub Kicinski , Sasha Levin Subject: [PATCH 6.6 0821/1266] net/sched: act_bpf: use rcu_dereference_bh() to read the filter Date: Tue, 21 Jul 2026 17:20:58 +0200 Message-ID: <20260721152500.229644470@linuxfoundation.org> X-Mailer: git-send-email 2.55.0 In-Reply-To: <20260721152441.786066624@linuxfoundation.org> References: <20260721152441.786066624@linuxfoundation.org> User-Agent: quilt/0.69 X-stable: review X-Patchwork-Hint: ignore Precedence: bulk X-Mailing-List: patches@lists.linux.dev List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Transfer-Encoding: 8bit 6.6-stable review patch. If anyone has any objections, please let me know. ------------------ From: Sechang Lim [ Upstream commit adc49c7ba690c9b33b8392ec27397456b65d0893 ] tcf_bpf_act() can run from the tc egress path, which holds only rcu_read_lock_bh(), but reads prog->filter with rcu_dereference() and trips lockdep: WARNING: suspicious RCU usage net/sched/act_bpf.c:47 suspicious rcu_dereference_check() usage! 1 lock held by syz.2.1588/12756: #0: (rcu_read_lock_bh){....}-{1:3}, at: __dev_queue_xmit net/core/dev.c:4792 tcf_bpf_act+0x6ae/0x940 net/sched/act_bpf.c:47 tcf_classify+0x6e4/0x1080 net/sched/cls_api.c:1860 sch_handle_egress net/core/dev.c:4545 [inline] __dev_queue_xmit+0x2185/0x2c00 net/core/dev.c:4808 packet_sendmsg+0x3dfa/0x5120 net/packet/af_packet.c:3114 The other tc actions and cls_bpf already use rcu_dereference_bh() here. Do the same. Fixes: 1f211a1b929c ("net, sched: add clsact qdisc") Signed-off-by: Sechang Lim Reviewed-by: Amery Hung Link: https://patch.msgid.link/20260629154112.1164986-1-rhkrqnwk98@gmail.com Signed-off-by: Jakub Kicinski Signed-off-by: Sasha Levin --- net/sched/act_bpf.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/net/sched/act_bpf.c b/net/sched/act_bpf.c index a1c0e8a9fc8c2f..305c3c7d2d5fdd 100644 --- a/net/sched/act_bpf.c +++ b/net/sched/act_bpf.c @@ -44,7 +44,7 @@ TC_INDIRECT_SCOPE int tcf_bpf_act(struct sk_buff *skb, tcf_lastuse_update(&prog->tcf_tm); bstats_update(this_cpu_ptr(prog->common.cpu_bstats), skb); - filter = rcu_dereference(prog->filter); + filter = rcu_dereference_bh(prog->filter); if (at_ingress) { __skb_push(skb, skb->mac_len); filter_res = bpf_prog_run_data_pointers(filter, skb); -- 2.53.0