Wang Hai
096f9d35ca
wireguard: socket: free skb in send6 when ipv6 is disabled
commit bbbf962d9460194993ee1943a793a0a0af4a7fbf upstream.
I got a memory leak report:
unreferenced object 0xffff8881191fc040 (size 232):
comm "kworker/u17:0", pid 23193, jiffies 4295238848 (age 3464.870s)
hex dump (first 32 bytes):
00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................
00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................
backtrace:
[<ffffffff814c3ef4>] slab_post_alloc_hook+0x84/0x3b0
[<ffffffff814c8977>] kmem_cache_alloc_node+0x167/0x340
[<ffffffff832974fb>] __alloc_skb+0x1db/0x200
[<ffffffff82612b5d>] wg_socket_send_buffer_to_peer+0x3d/0xc0
[<ffffffff8260e94a>] wg_packet_send_handshake_initiation+0xfa/0x110
[<ffffffff8260ec81>] wg_packet_handshake_send_worker+0x21/0x30
[<ffffffff8119c558>] process_one_work+0x2e8/0x770
[<ffffffff8119ca2a>] worker_thread+0x4a/0x4b0
[<ffffffff811a88e0>] kthread+0x120/0x160
[<ffffffff8100242f>] ret_from_fork+0x1f/0x30
In function wg_socket_send_buffer_as_reply_to_skb() or wg_socket_send_
buffer_to_peer(), the semantics of send6() is required to free skb. But
when CONFIG_IPV6 is disable, kfree_skb() is missing. This patch adds it
to fix this bug.
Signed-off-by: Wang Hai <wanghai38@huawei.com>
Fixes: e7096c131e
("net: WireGuard secure network tunnel")
Signed-off-by: Jason A. Donenfeld <Jason@zx2c4.com>
Signed-off-by: Jakub Kicinski <kuba@kernel.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
2022-04-08 14:40:40 +02:00
..
2021-06-16 12:01:37 +02:00
2022-03-08 19:09:35 +01:00
2022-02-23 12:01:02 +01:00
2021-06-30 08:47:21 -04:00
2022-04-08 14:40:20 +02:00
2022-04-08 14:40:30 +02:00
2022-04-08 14:40:29 +02:00
2021-07-25 14:36:20 +02:00
2021-12-29 12:25:57 +01:00
2022-04-08 14:39:55 +02:00
2022-03-23 09:13:28 +01:00
2022-02-23 12:01:02 +01:00
2022-02-05 12:37:55 +01:00
2022-02-16 12:54:26 +01:00
2021-12-22 09:30:55 +01:00
2022-04-08 14:40:29 +02:00
2022-01-27 10:54:01 +01:00
2022-03-23 09:13:29 +01:00
2021-11-18 14:03:43 +01:00
2021-05-14 09:50:29 +02:00
2021-05-11 14:47:16 +02:00
2022-04-08 14:40:40 +02:00
2022-04-08 14:40:20 +02:00
2022-03-16 14:16:00 +01:00
2022-04-08 14:40:22 +02:00
2021-05-14 09:50:43 +02:00
2021-11-18 14:03:49 +01:00
2021-11-18 14:03:46 +01:00
2022-02-08 18:30:38 +01:00
2021-11-26 10:39:18 +01:00
2022-02-16 12:54:26 +01:00
2021-08-26 08:35:48 -04:00
2021-12-14 11:32:36 +01:00
2021-07-14 16:56:25 +02:00
2022-03-11 12:11:55 +01:00