[PATCH net-next 00/10] pull request for net-next: ovpn 2025-05-09
From: Antonio Quartulli <antonio@openvpn.net>
Date: 2025-05-09 14:27:35
Hi Jakub, here is my first pull request for the ovpn kernel module! As you can see in the patches, we have various tags from Gert Döring, the main maintainer of openvpn userspace, who was eager to test and report malfunctionings. He reported bugs, stared at fixes and tested them, hence the Reported/Acked/Tested-by tags. If you think such combination of tags is not truly appropriate, please let me know. Please pull or let me know if something should be changed. Thanks a lot, Antonio The following changes since commit 3e52667a9c328b3d1a1ddbbb6b8fbf63a217bda3: Merge branch 'lan78xx-phylink-prep' (2025-05-07 12:57:06 +0100) are available in the Git repository at: https://github.com/OpenVPN/ovpn-net-next.git tags/ovpn-net-next-20250509 for you to fetch changes up to 476148af4e28f498bf769eeed81ef99728544c56: ovpn: ensure sk is still valid during cleanup (2025-05-09 15:37:31 +0200) ---------------------------------------------------------------- This patchset contains the following: - update MAINTAINERS entry for ovpn - extend selftest with more cases - fix ndo_start_xmit return value on error - set ignore_df flag for IPv6 packets - drop useless reg_state check in keepalive worker - avoid crash during concurrent peer timeout and iface deletion ---------------------------------------------------------------- Antonio Quartulli (10): MAINTAINERS: add Sabrina as official reviewer for ovpn MAINTAINERS: update git URL for ovpn ovpn: set skb->ignore_df = 1 before sending IPv6 packets out ovpn: don't drop skb's dst when xmitting packet selftest/net/ovpn: fix crash in case of getaddrinfo() failure ovpn: fix ndo_start_xmit return value on error selftest/net/ovpn: extend coverage with more test cases ovpn: drop useless reg_state check in keepalive worker ovpn: improve 'no route to host' debug message ovpn: ensure sk is still valid during cleanup MAINTAINERS | 3 ++- drivers/net/ovpn/io.c | 18 +++++++++++++++--- drivers/net/ovpn/main.c | 5 +++++ drivers/net/ovpn/peer.c | 5 ++--- drivers/net/ovpn/socket.c | 21 ++++++++++++--------- drivers/net/ovpn/udp.c | 10 ++++++++++ tools/testing/selftests/net/ovpn/Makefile | 1 + tools/testing/selftests/net/ovpn/common.sh | 18 +++++++++++++++++- tools/testing/selftests/net/ovpn/ovpn-cli.c | 19 +++++++++++++------ tools/testing/selftests/net/ovpn/test.sh | 6 +++++- tools/testing/selftests/net/ovpn/udp_peers.txt | 11 ++++++----- 11 files changed, 88 insertions(+), 29 deletions(-)