+++ /dev/null
-From 56b843f0a75f0c950cc23e642e8789bec27b949c Mon Sep 17 00:00:00 2001
-From: Sasha Levin <sashal@kernel.org>
-Date: Tue, 24 Jan 2023 02:47:19 +0100
-Subject: netfilter: conntrack: fix bug in for_each_sctp_chunk
-
-From: Sriram Yagnaraman <sriram.yagnaraman@est.tech>
-
-[ Upstream commit 98ee0077452527f971567db01386de3c3d97ce13 ]
-
-skb_header_pointer() will return NULL if offset + sizeof(_sch) exceeds
-skb->len, so this offset < skb->len test is redundant.
-
-if sch->length == 0, this will end up in an infinite loop, add a check
-for sch->length > 0
-
-Fixes: 9fb9cbb1082d ("[NETFILTER]: Add nf_conntrack subsystem.")
-Suggested-by: Florian Westphal <fw@strlen.de>
-Signed-off-by: Sriram Yagnaraman <sriram.yagnaraman@est.tech>
-Signed-off-by: Pablo Neira Ayuso <pablo@netfilter.org>
-Signed-off-by: Sasha Levin <sashal@kernel.org>
----
- net/netfilter/nf_conntrack_proto_sctp.c | 4 ++--
- 1 file changed, 2 insertions(+), 2 deletions(-)
-
-diff --git a/net/netfilter/nf_conntrack_proto_sctp.c b/net/netfilter/nf_conntrack_proto_sctp.c
-index 1278b27c625a..cffd37f56c5c 100644
---- a/net/netfilter/nf_conntrack_proto_sctp.c
-+++ b/net/netfilter/nf_conntrack_proto_sctp.c
-@@ -184,8 +184,8 @@ static void sctp_print_conntrack(struct seq_file *s, struct nf_conn *ct)
-
- #define for_each_sctp_chunk(skb, sch, _sch, offset, dataoff, count) \
- for ((offset) = (dataoff) + sizeof(struct sctphdr), (count) = 0; \
-- (offset) < (skb)->len && \
-- ((sch) = skb_header_pointer((skb), (offset), sizeof(_sch), &(_sch))); \
-+ ((sch) = skb_header_pointer((skb), (offset), sizeof(_sch), &(_sch))) && \
-+ (sch)->length; \
- (offset) += (ntohs((sch)->length) + 3) & ~3, (count)++)
-
- /* Some validity checks to make sure the chunks are fine */
---
-2.39.0
-
netlink-annotate-data-races-around-dst_portid-and-ds.patch
netlink-annotate-data-races-around-sk_state.patch
netfilter-conntrack-fix-vtag-checks-for-abort-shutdo.patch
-netfilter-conntrack-fix-bug-in-for_each_sctp_chunk.patch
netrom-fix-use-after-free-of-a-listening-socket.patch
sctp-fail-if-no-bound-addresses-can-be-used-for-a-gi.patch
net-ravb-fix-possible-hang-if-ris2_qff1-happen.patch
+++ /dev/null
-From c2dfaed5a7e97a50275d89aaf4ee79c650abeeeb Mon Sep 17 00:00:00 2001
-From: Sasha Levin <sashal@kernel.org>
-Date: Tue, 24 Jan 2023 02:47:19 +0100
-Subject: netfilter: conntrack: fix bug in for_each_sctp_chunk
-
-From: Sriram Yagnaraman <sriram.yagnaraman@est.tech>
-
-[ Upstream commit 98ee0077452527f971567db01386de3c3d97ce13 ]
-
-skb_header_pointer() will return NULL if offset + sizeof(_sch) exceeds
-skb->len, so this offset < skb->len test is redundant.
-
-if sch->length == 0, this will end up in an infinite loop, add a check
-for sch->length > 0
-
-Fixes: 9fb9cbb1082d ("[NETFILTER]: Add nf_conntrack subsystem.")
-Suggested-by: Florian Westphal <fw@strlen.de>
-Signed-off-by: Sriram Yagnaraman <sriram.yagnaraman@est.tech>
-Signed-off-by: Pablo Neira Ayuso <pablo@netfilter.org>
-Signed-off-by: Sasha Levin <sashal@kernel.org>
----
- net/netfilter/nf_conntrack_proto_sctp.c | 4 ++--
- 1 file changed, 2 insertions(+), 2 deletions(-)
-
-diff --git a/net/netfilter/nf_conntrack_proto_sctp.c b/net/netfilter/nf_conntrack_proto_sctp.c
-index cadeb22a48f2..08ed6402ba1e 100644
---- a/net/netfilter/nf_conntrack_proto_sctp.c
-+++ b/net/netfilter/nf_conntrack_proto_sctp.c
-@@ -163,8 +163,8 @@ static void sctp_print_conntrack(struct seq_file *s, struct nf_conn *ct)
-
- #define for_each_sctp_chunk(skb, sch, _sch, offset, dataoff, count) \
- for ((offset) = (dataoff) + sizeof(struct sctphdr), (count) = 0; \
-- (offset) < (skb)->len && \
-- ((sch) = skb_header_pointer((skb), (offset), sizeof(_sch), &(_sch))); \
-+ ((sch) = skb_header_pointer((skb), (offset), sizeof(_sch), &(_sch))) && \
-+ (sch)->length; \
- (offset) += (ntohs((sch)->length) + 3) & ~3, (count)++)
-
- /* Some validity checks to make sure the chunks are fine */
---
-2.39.0
-
netlink-annotate-data-races-around-sk_state.patch
ipv4-prevent-potential-spectre-v1-gadget-in-ip_metri.patch
netfilter-conntrack-fix-vtag-checks-for-abort-shutdo.patch
-netfilter-conntrack-fix-bug-in-for_each_sctp_chunk.patch
netrom-fix-use-after-free-of-a-listening-socket.patch
sctp-fail-if-no-bound-addresses-can-be-used-for-a-gi.patch
net-ravb-fix-possible-hang-if-ris2_qff1-happen.patch
+++ /dev/null
-From 07139657761a88eee6f967790f87aef0324c9e1f Mon Sep 17 00:00:00 2001
-From: Sasha Levin <sashal@kernel.org>
-Date: Tue, 24 Jan 2023 02:47:19 +0100
-Subject: netfilter: conntrack: fix bug in for_each_sctp_chunk
-
-From: Sriram Yagnaraman <sriram.yagnaraman@est.tech>
-
-[ Upstream commit 98ee0077452527f971567db01386de3c3d97ce13 ]
-
-skb_header_pointer() will return NULL if offset + sizeof(_sch) exceeds
-skb->len, so this offset < skb->len test is redundant.
-
-if sch->length == 0, this will end up in an infinite loop, add a check
-for sch->length > 0
-
-Fixes: 9fb9cbb1082d ("[NETFILTER]: Add nf_conntrack subsystem.")
-Suggested-by: Florian Westphal <fw@strlen.de>
-Signed-off-by: Sriram Yagnaraman <sriram.yagnaraman@est.tech>
-Signed-off-by: Pablo Neira Ayuso <pablo@netfilter.org>
-Signed-off-by: Sasha Levin <sashal@kernel.org>
----
- net/netfilter/nf_conntrack_proto_sctp.c | 4 ++--
- 1 file changed, 2 insertions(+), 2 deletions(-)
-
-diff --git a/net/netfilter/nf_conntrack_proto_sctp.c b/net/netfilter/nf_conntrack_proto_sctp.c
-index 72d0aa603cd6..c0264bbc8466 100644
---- a/net/netfilter/nf_conntrack_proto_sctp.c
-+++ b/net/netfilter/nf_conntrack_proto_sctp.c
-@@ -155,8 +155,8 @@ static void sctp_print_conntrack(struct seq_file *s, struct nf_conn *ct)
-
- #define for_each_sctp_chunk(skb, sch, _sch, offset, dataoff, count) \
- for ((offset) = (dataoff) + sizeof(struct sctphdr), (count) = 0; \
-- (offset) < (skb)->len && \
-- ((sch) = skb_header_pointer((skb), (offset), sizeof(_sch), &(_sch))); \
-+ ((sch) = skb_header_pointer((skb), (offset), sizeof(_sch), &(_sch))) && \
-+ (sch)->length; \
- (offset) += (ntohs((sch)->length) + 3) & ~3, (count)++)
-
- /* Some validity checks to make sure the chunks are fine */
---
-2.39.0
-
ipv4-prevent-potential-spectre-v1-gadget-in-ip_metri.patch
ipv4-prevent-potential-spectre-v1-gadget-in-fib_metr.patch
netfilter-conntrack-fix-vtag-checks-for-abort-shutdo.patch
-netfilter-conntrack-fix-bug-in-for_each_sctp_chunk.patch
netrom-fix-use-after-free-of-a-listening-socket.patch
net-sched-sch_taprio-do-not-schedule-in-taprio_reset.patch
sctp-fail-if-no-bound-addresses-can-be-used-for-a-gi.patch
+++ /dev/null
-From 95321a183d8e02fdb31af7bdbb6a006a9b9c98b0 Mon Sep 17 00:00:00 2001
-From: Sasha Levin <sashal@kernel.org>
-Date: Tue, 24 Jan 2023 02:47:19 +0100
-Subject: netfilter: conntrack: fix bug in for_each_sctp_chunk
-
-From: Sriram Yagnaraman <sriram.yagnaraman@est.tech>
-
-[ Upstream commit 98ee0077452527f971567db01386de3c3d97ce13 ]
-
-skb_header_pointer() will return NULL if offset + sizeof(_sch) exceeds
-skb->len, so this offset < skb->len test is redundant.
-
-if sch->length == 0, this will end up in an infinite loop, add a check
-for sch->length > 0
-
-Fixes: 9fb9cbb1082d ("[NETFILTER]: Add nf_conntrack subsystem.")
-Suggested-by: Florian Westphal <fw@strlen.de>
-Signed-off-by: Sriram Yagnaraman <sriram.yagnaraman@est.tech>
-Signed-off-by: Pablo Neira Ayuso <pablo@netfilter.org>
-Signed-off-by: Sasha Levin <sashal@kernel.org>
----
- net/netfilter/nf_conntrack_proto_sctp.c | 4 ++--
- 1 file changed, 2 insertions(+), 2 deletions(-)
-
-diff --git a/net/netfilter/nf_conntrack_proto_sctp.c b/net/netfilter/nf_conntrack_proto_sctp.c
-index 3704d1c7d3c2..ee317f9a22e5 100644
---- a/net/netfilter/nf_conntrack_proto_sctp.c
-+++ b/net/netfilter/nf_conntrack_proto_sctp.c
-@@ -155,8 +155,8 @@ static void sctp_print_conntrack(struct seq_file *s, struct nf_conn *ct)
-
- #define for_each_sctp_chunk(skb, sch, _sch, offset, dataoff, count) \
- for ((offset) = (dataoff) + sizeof(struct sctphdr), (count) = 0; \
-- (offset) < (skb)->len && \
-- ((sch) = skb_header_pointer((skb), (offset), sizeof(_sch), &(_sch))); \
-+ ((sch) = skb_header_pointer((skb), (offset), sizeof(_sch), &(_sch))) && \
-+ (sch)->length; \
- (offset) += (ntohs((sch)->length) + 3) & ~3, (count)++)
-
- /* Some validity checks to make sure the chunks are fine */
---
-2.39.0
-
ipv4-prevent-potential-spectre-v1-gadget-in-ip_metri.patch
ipv4-prevent-potential-spectre-v1-gadget-in-fib_metr.patch
netfilter-conntrack-fix-vtag-checks-for-abort-shutdo.patch
-netfilter-conntrack-fix-bug-in-for_each_sctp_chunk.patch
netrom-fix-use-after-free-of-a-listening-socket.patch
net-sched-sch_taprio-do-not-schedule-in-taprio_reset.patch
sctp-fail-if-no-bound-addresses-can-be-used-for-a-gi.patch
+++ /dev/null
-From c2c3a7a150f040ed17c41b906c11d609ec5096ef Mon Sep 17 00:00:00 2001
-From: Sasha Levin <sashal@kernel.org>
-Date: Tue, 24 Jan 2023 02:47:19 +0100
-Subject: netfilter: conntrack: fix bug in for_each_sctp_chunk
-
-From: Sriram Yagnaraman <sriram.yagnaraman@est.tech>
-
-[ Upstream commit 98ee0077452527f971567db01386de3c3d97ce13 ]
-
-skb_header_pointer() will return NULL if offset + sizeof(_sch) exceeds
-skb->len, so this offset < skb->len test is redundant.
-
-if sch->length == 0, this will end up in an infinite loop, add a check
-for sch->length > 0
-
-Fixes: 9fb9cbb1082d ("[NETFILTER]: Add nf_conntrack subsystem.")
-Suggested-by: Florian Westphal <fw@strlen.de>
-Signed-off-by: Sriram Yagnaraman <sriram.yagnaraman@est.tech>
-Signed-off-by: Pablo Neira Ayuso <pablo@netfilter.org>
-Signed-off-by: Sasha Levin <sashal@kernel.org>
----
- net/netfilter/nf_conntrack_proto_sctp.c | 4 ++--
- 1 file changed, 2 insertions(+), 2 deletions(-)
-
-diff --git a/net/netfilter/nf_conntrack_proto_sctp.c b/net/netfilter/nf_conntrack_proto_sctp.c
-index 72d0aa603cd6..c0264bbc8466 100644
---- a/net/netfilter/nf_conntrack_proto_sctp.c
-+++ b/net/netfilter/nf_conntrack_proto_sctp.c
-@@ -155,8 +155,8 @@ static void sctp_print_conntrack(struct seq_file *s, struct nf_conn *ct)
-
- #define for_each_sctp_chunk(skb, sch, _sch, offset, dataoff, count) \
- for ((offset) = (dataoff) + sizeof(struct sctphdr), (count) = 0; \
-- (offset) < (skb)->len && \
-- ((sch) = skb_header_pointer((skb), (offset), sizeof(_sch), &(_sch))); \
-+ ((sch) = skb_header_pointer((skb), (offset), sizeof(_sch), &(_sch))) && \
-+ (sch)->length; \
- (offset) += (ntohs((sch)->length) + 3) & ~3, (count)++)
-
- /* Some validity checks to make sure the chunks are fine */
---
-2.39.0
-
ipv4-prevent-potential-spectre-v1-gadget-in-ip_metri.patch
ipv4-prevent-potential-spectre-v1-gadget-in-fib_metr.patch
netfilter-conntrack-fix-vtag-checks-for-abort-shutdo.patch
-netfilter-conntrack-fix-bug-in-for_each_sctp_chunk.patch
netrom-fix-use-after-free-of-a-listening-socket.patch
net-sched-sch_taprio-do-not-schedule-in-taprio_reset.patch
sctp-fail-if-no-bound-addresses-can-be-used-for-a-gi.patch
+++ /dev/null
-From 099acc3ff752a5871df012b0698db0d6bfc1c4c0 Mon Sep 17 00:00:00 2001
-From: Sasha Levin <sashal@kernel.org>
-Date: Tue, 24 Jan 2023 02:47:19 +0100
-Subject: netfilter: conntrack: fix bug in for_each_sctp_chunk
-
-From: Sriram Yagnaraman <sriram.yagnaraman@est.tech>
-
-[ Upstream commit 98ee0077452527f971567db01386de3c3d97ce13 ]
-
-skb_header_pointer() will return NULL if offset + sizeof(_sch) exceeds
-skb->len, so this offset < skb->len test is redundant.
-
-if sch->length == 0, this will end up in an infinite loop, add a check
-for sch->length > 0
-
-Fixes: 9fb9cbb1082d ("[NETFILTER]: Add nf_conntrack subsystem.")
-Suggested-by: Florian Westphal <fw@strlen.de>
-Signed-off-by: Sriram Yagnaraman <sriram.yagnaraman@est.tech>
-Signed-off-by: Pablo Neira Ayuso <pablo@netfilter.org>
-Signed-off-by: Sasha Levin <sashal@kernel.org>
----
- net/netfilter/nf_conntrack_proto_sctp.c | 4 ++--
- 1 file changed, 2 insertions(+), 2 deletions(-)
-
-diff --git a/net/netfilter/nf_conntrack_proto_sctp.c b/net/netfilter/nf_conntrack_proto_sctp.c
-index 3704d1c7d3c2..ee317f9a22e5 100644
---- a/net/netfilter/nf_conntrack_proto_sctp.c
-+++ b/net/netfilter/nf_conntrack_proto_sctp.c
-@@ -155,8 +155,8 @@ static void sctp_print_conntrack(struct seq_file *s, struct nf_conn *ct)
-
- #define for_each_sctp_chunk(skb, sch, _sch, offset, dataoff, count) \
- for ((offset) = (dataoff) + sizeof(struct sctphdr), (count) = 0; \
-- (offset) < (skb)->len && \
-- ((sch) = skb_header_pointer((skb), (offset), sizeof(_sch), &(_sch))); \
-+ ((sch) = skb_header_pointer((skb), (offset), sizeof(_sch), &(_sch))) && \
-+ (sch)->length; \
- (offset) += (ntohs((sch)->length) + 3) & ~3, (count)++)
-
- /* Some validity checks to make sure the chunks are fine */
---
-2.39.0
-
net-dsa-microchip-fix-probe-of-i2c-connected-ksz8563.patch
net-ethernet-adi-adin1110-fix-multicast-offloading.patch
netfilter-conntrack-fix-vtag-checks-for-abort-shutdo.patch
-netfilter-conntrack-fix-bug-in-for_each_sctp_chunk.patch
netrom-fix-use-after-free-of-a-listening-socket.patch
platform-x86-asus-wmi-fix-kbd_dock_devid-tablet-swit.patch
platform-x86-apple-gmux-move-port-defines-to-apple-g.patch