mirror of
https://github.com/openwrt/openwrt.git
synced 2024-12-22 06:57:57 +00:00
93cca95434
Changelog: https://cdn.kernel.org/pub/linux/kernel/v6.x/ChangeLog-6.6.48 Removed upstreamed: generic/backport-6.6/752-04-v6.6-net-ethernet-mtk_wed-check-update_wo_rx_stats-in-mtk.patch[1] generic/pending-6.6/601-udp-fix-receiving-fraglist-GSO_packets.patch[2] mediatek/patches-6.6/951-net-ethernet-mtk_wed-fix-use-after-free-panic-in-mtk.patch[3] rockchip/patches-6.6/302-mmc-allow-probe-to-defer-if-clock-is-not-ready.patch[4] Manually rebased: bcm27xx/patches-6.6/950-0058-Revert-Bluetooth-Always-request-for-user-confirmatio.patch All other patches automatically rebased. 1. https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git/commit/?h=v6.6.48&id=7ede6ef04c9ffc466844a297d3d68bea8a06093d 2. https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git/commit/?h=v6.6.48&id=cfa692e7e71b22d35174a796d10b9111bafa0686 3. https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git/commit/?h=v6.6.48&id=326a89321f9d5fe399fe6f9ff7c0fc766582a6a0 4. https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git/commit/?h=v6.6.48&id=7bbf8f8b8861dd2a6215f1aded425c66e6c376a0 Build system: x86/64 Build-tested: x86/64/AMD Cezanne, flogic/xiaomi_redmi-router-ax6000-ubootmod, ramips/tplink_archer-a6-v3 Run-tested: x86/64/AMD Cezanne, flogic/xiaomi_redmi-router-ax6000-ubootmod, ramips/tplink_archer-a6-v3 Signed-off-by: John Audia <therealgraysky@proton.me> Link: https://github.com/openwrt/openwrt/pull/16282 Signed-off-by: Hauke Mehrtens <hauke@hauke-m.de>
95 lines
3.4 KiB
Diff
95 lines
3.4 KiB
Diff
From: Jakub Sitnicki <jakub@cloudflare.com>
|
|
Date: Wed, 26 Jun 2024 19:51:26 +0200
|
|
Subject: [PATCH] udp: Allow GSO transmit from devices with no checksum offload
|
|
|
|
Today sending a UDP GSO packet from a TUN device results in an EIO error:
|
|
|
|
import fcntl, os, struct
|
|
from socket import *
|
|
|
|
TUNSETIFF = 0x400454CA
|
|
IFF_TUN = 0x0001
|
|
IFF_NO_PI = 0x1000
|
|
UDP_SEGMENT = 103
|
|
|
|
tun_fd = os.open("/dev/net/tun", os.O_RDWR)
|
|
ifr = struct.pack("16sH", b"tun0", IFF_TUN | IFF_NO_PI)
|
|
fcntl.ioctl(tun_fd, TUNSETIFF, ifr)
|
|
|
|
os.system("ip addr add 192.0.2.1/24 dev tun0")
|
|
os.system("ip link set dev tun0 up")
|
|
|
|
s = socket(AF_INET, SOCK_DGRAM)
|
|
s.setsockopt(SOL_UDP, UDP_SEGMENT, 1200)
|
|
s.sendto(b"x" * 3000, ("192.0.2.2", 9)) # EIO
|
|
|
|
This is due to a check in the udp stack if the egress device offers
|
|
checksum offload. While TUN/TAP devices, by default, don't advertise this
|
|
capability because it requires support from the TUN/TAP reader.
|
|
|
|
However, the GSO stack has a software fallback for checksum calculation,
|
|
which we can use. This way we don't force UDP_SEGMENT users to handle the
|
|
EIO error and implement a segmentation fallback.
|
|
|
|
Lift the restriction so that UDP_SEGMENT can be used with any egress
|
|
device. We also need to adjust the UDP GSO code to match the GSO stack
|
|
expectation about ip_summed field, as set in commit 8d63bee643f1 ("net:
|
|
avoid skb_warn_bad_offload false positives on UFO"). Otherwise we will hit
|
|
the bad offload check.
|
|
|
|
Users should, however, expect a potential performance impact when
|
|
batch-sending packets with UDP_SEGMENT without checksum offload on the
|
|
egress device. In such case the packet payload is read twice: first during
|
|
the sendmsg syscall when copying data from user memory, and then in the GSO
|
|
stack for checksum computation. This double memory read can be less
|
|
efficient than a regular sendmsg where the checksum is calculated during
|
|
the initial data copy from user memory.
|
|
|
|
Signed-off-by: Jakub Sitnicki <jakub@cloudflare.com>
|
|
Reviewed-by: Willem de Bruijn <willemb@google.com>
|
|
Link: https://patch.msgid.link/20240626-linux-udpgso-v2-1-422dfcbd6b48@cloudflare.com
|
|
Signed-off-by: Jakub Kicinski <kuba@kernel.org>
|
|
---
|
|
|
|
--- a/net/ipv4/udp.c
|
|
+++ b/net/ipv4/udp.c
|
|
@@ -942,8 +942,7 @@ static int udp_send_skb(struct sk_buff *
|
|
kfree_skb(skb);
|
|
return -EINVAL;
|
|
}
|
|
- if (skb->ip_summed != CHECKSUM_PARTIAL || is_udplite ||
|
|
- dst_xfrm(skb_dst(skb))) {
|
|
+ if (is_udplite || dst_xfrm(skb_dst(skb))) {
|
|
kfree_skb(skb);
|
|
return -EIO;
|
|
}
|
|
--- a/net/ipv4/udp_offload.c
|
|
+++ b/net/ipv4/udp_offload.c
|
|
@@ -362,6 +362,14 @@ struct sk_buff *__udp_gso_segment(struct
|
|
else
|
|
uh->check = gso_make_checksum(seg, ~check) ? : CSUM_MANGLED_0;
|
|
|
|
+ /* On the TX path, CHECKSUM_NONE and CHECKSUM_UNNECESSARY have the same
|
|
+ * meaning. However, check for bad offloads in the GSO stack expects the
|
|
+ * latter, if the checksum was calculated in software. To vouch for the
|
|
+ * segment skbs we actually need to set it on the gso_skb.
|
|
+ */
|
|
+ if (gso_skb->ip_summed == CHECKSUM_NONE)
|
|
+ gso_skb->ip_summed = CHECKSUM_UNNECESSARY;
|
|
+
|
|
/* update refcount for the packet */
|
|
if (copy_dtor) {
|
|
int delta = sum_truesize - gso_skb->truesize;
|
|
--- a/net/ipv6/udp.c
|
|
+++ b/net/ipv6/udp.c
|
|
@@ -1261,8 +1261,7 @@ static int udp_v6_send_skb(struct sk_buf
|
|
kfree_skb(skb);
|
|
return -EINVAL;
|
|
}
|
|
- if (skb->ip_summed != CHECKSUM_PARTIAL || is_udplite ||
|
|
- dst_xfrm(skb_dst(skb))) {
|
|
+ if (is_udplite || dst_xfrm(skb_dst(skb))) {
|
|
kfree_skb(skb);
|
|
return -EIO;
|
|
}
|