mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-13 14:24:11 +08:00
netfilter: ebtables: fix memory leak when blob is malformed
[ Upstream commit62ce44c4ff
] The bug fix was incomplete, it "replaced" crash with a memory leak. The old code had an assignment to "ret" embedded into the conditional, restore this. Fixes:7997eff828
("netfilter: ebtables: reject blobs that don't provide all entry points") Reported-and-tested-by: syzbot+a24c5252f3e3ab733464@syzkaller.appspotmail.com Signed-off-by: Florian Westphal <fw@strlen.de> Signed-off-by: Sasha Levin <sashal@kernel.org>
This commit is contained in:
parent
a5d862f333
commit
1e98318af2
@ -1003,8 +1003,10 @@ static int do_replace_finish(struct net *net, struct ebt_replace *repl,
|
||||
goto free_iterate;
|
||||
}
|
||||
|
||||
if (repl->valid_hooks != t->valid_hooks)
|
||||
if (repl->valid_hooks != t->valid_hooks) {
|
||||
ret = -EINVAL;
|
||||
goto free_unlock;
|
||||
}
|
||||
|
||||
if (repl->num_counters && repl->num_counters != t->private->nentries) {
|
||||
ret = -EINVAL;
|
||||
|
Loading…
Reference in New Issue
Block a user