Commit 86e31d7
Guillaume Nault
ppp: fix memory leak in pad_compress_skb
JIRA: https://issues.redhat.com/browse/RHEL-115633
Upstream Status: linux.git
commit 4844123
Author: Qingfang Deng <dqfext@gmail.com>
Date: Wed Sep 3 18:07:26 2025 +0800
ppp: fix memory leak in pad_compress_skb
If alloc_skb() fails in pad_compress_skb(), it returns NULL without
releasing the old skb. The caller does:
skb = pad_compress_skb(ppp, skb);
if (!skb)
goto drop;
drop:
kfree_skb(skb);
When pad_compress_skb() returns NULL, the reference to the old skb is
lost and kfree_skb(skb) ends up doing nothing, leading to a memory leak.
Align pad_compress_skb() semantics with realloc(): only free the old
skb if allocation and compression succeed. At the call site, use the
new_skb variable so the original skb is not lost when pad_compress_skb()
fails.
Fixes: b3f9b92 ("[PPP]: add PPP MPPE encryption module")
Signed-off-by: Qingfang Deng <dqfext@gmail.com>
Reviewed-by: Eric Dumazet <edumazet@google.com>
Reviewed-by: Yue Haibing <yuehaibing@huawei.com>
Link: https://patch.msgid.link/20250903100726.269839-1-dqfext@gmail.com
Signed-off-by: Jakub Kicinski <kuba@kernel.org>
Signed-off-by: Guillaume Nault <gnault@redhat.com>1 parent e370d95 commit 86e31d7
1 file changed
+3
-3
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
1749 | 1749 | | |
1750 | 1750 | | |
1751 | 1751 | | |
1752 | | - | |
1753 | 1752 | | |
1754 | 1753 | | |
1755 | 1754 | | |
| |||
1849 | 1848 | | |
1850 | 1849 | | |
1851 | 1850 | | |
1852 | | - | |
1853 | | - | |
| 1851 | + | |
| 1852 | + | |
1854 | 1853 | | |
| 1854 | + | |
1855 | 1855 | | |
1856 | 1856 | | |
1857 | 1857 | | |
| |||
0 commit comments