aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTom Parkin <tparkin@katalix.com>2024-02-20 12:21:56 +0000
committerPaolo Abeni <pabeni@redhat.com>2024-02-22 10:42:17 +0100
commit359e54a93ab43d32ee1bff3c2f9f10cb9f6b6e79 (patch)
tree6c268c27eb84c99869ee93ebb0715ec815c0b968
parent9ff27943060c0282ca14e40f05c2b907edc85a42 (diff)
downloadlinux-359e54a93ab43d32ee1bff3c2f9f10cb9f6b6e79.tar.gz
l2tp: pass correct message length to ip6_append_data
l2tp_ip6_sendmsg needs to avoid accounting for the transport header twice when splicing more data into an already partially-occupied skbuff. To manage this, we check whether the skbuff contains data using skb_queue_empty when deciding how much data to append using ip6_append_data. However, the code which performed the calculation was incorrect: ulen = len + skb_queue_empty(&sk->sk_write_queue) ? transhdrlen : 0; ...due to C operator precedence, this ends up setting ulen to transhdrlen for messages with a non-zero length, which results in corrupted packets on the wire. Add parentheses to correct the calculation in line with the original intent. Fixes: 9d4c75800f61 ("ipv4, ipv6: Fix handling of transhdrlen in __ip{,6}_append_data()") Cc: David Howells <dhowells@redhat.com> Cc: stable@vger.kernel.org Signed-off-by: Tom Parkin <tparkin@katalix.com> Reviewed-by: Simon Horman <horms@kernel.org> Link: https://lore.kernel.org/r/20240220122156.43131-1-tparkin@katalix.com Signed-off-by: Paolo Abeni <pabeni@redhat.com>
Notes
Fixes: 9d4c75800f61 ("ipv4, ipv6: Fix handling of transhdrlen in __ip{,6}_append_data()") # v6.6-rc5 Fixes-stable: f6a7182179c0 ("ipv4, ipv6: Fix handling of transhdrlen in __ip{,6}_append_data()") # v6.1.57 Fixes-stable: cd1189956393 ("ipv4, ipv6: Fix handling of transhdrlen in __ip{,6}_append_data()") # v5.15.135 Fixes-stable: 96b2e1090397 ("ipv4, ipv6: Fix handling of transhdrlen in __ip{,6}_append_data()") # v5.10.198 Fixes-stable: 1fc793d68d50 ("ipv4, ipv6: Fix handling of transhdrlen in __ip{,6}_append_data()") # v5.4.258 Fixes-stable: 559d697c5d07 ("ipv4, ipv6: Fix handling of transhdrlen in __ip{,6}_append_data()") # v4.19.296 Fixes-stable: 7626b9fed530 ("ipv4, ipv6: Fix handling of transhdrlen in __ip{,6}_append_data()") # v4.14.327 Stable: 804bd8650a3a # v6.6.19 Stable: 13cd1daeea84 # v6.1.80 Stable: 0da15a703951 # v5.15.150 Stable: dcb4d1426859 # v5.10.211 Stable: c1d3a84a67db # v5.4.270 Stable: 4c3ce64bc9d3 # v4.19.308 Lore: https://lore.kernel.org/r/20240220122132.42990-1-tparkin@katalix.com # stable Lore: https://lore.kernel.org/r/20240220122156.43131-1-tparkin@katalix.com # netdev, stable Lore: https://lore.kernel.org/r/20240227131549.552470778@linuxfoundation.org # linux-patches, stable Lore: https://lore.kernel.org/r/20240227131554.726924165@linuxfoundation.org # linux-patches, stable Lore: https://lore.kernel.org/r/20240227131601.356528459@linuxfoundation.org # linux-patches, stable Lore: https://lore.kernel.org/r/20240227131614.095491115@linuxfoundation.org # linux-patches, stable Lore: https://lore.kernel.org/r/20240227131618.023052691@linuxfoundation.org # linux-patches, stable Lore: https://lore.kernel.org/r/20240227131631.508246819@linuxfoundation.org # linux-patches, stable Lore: https://lore.kernel.org/r/20240227131637.067433745@linuxfoundation.org # linux-patches, stable
-rw-r--r--net/l2tp/l2tp_ip6.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/net/l2tp/l2tp_ip6.c b/net/l2tp/l2tp_ip6.c
index dd3153966173db..7bf14cf9ffaa96 100644
--- a/net/l2tp/l2tp_ip6.c
+++ b/net/l2tp/l2tp_ip6.c
@@ -627,7 +627,7 @@ static int l2tp_ip6_sendmsg(struct sock *sk, struct msghdr *msg, size_t len)
back_from_confirm:
lock_sock(sk);
- ulen = len + skb_queue_empty(&sk->sk_write_queue) ? transhdrlen : 0;
+ ulen = len + (skb_queue_empty(&sk->sk_write_queue) ? transhdrlen : 0);
err = ip6_append_data(sk, ip_generic_getfrag, msg,
ulen, transhdrlen, &ipc6,
&fl6, (struct rt6_info *)dst,