netfilter: ebtables: CONFIG_COMPAT: reject trailing data after last rule
commit680f6af533upstream. If userspace provides a rule blob with trailing data after last target, we trigger a splat, then convert ruleset to 64bit format (with trailing data), then pass that to do_replace_finish() which then returns -EINVAL. Erroring out right away avoids the splat plus unneeded translation and error unwind. Fixes:81e675c227("netfilter: ebtables: add CONFIG_COMPAT support") Reported-by: Tetsuo Handa <penguin-kernel@i-love.sakura.ne.jp> Signed-off-by: Florian Westphal <fw@strlen.de> Signed-off-by: Pablo Neira Ayuso <pablo@netfilter.org> Signed-off-by: Ben Hutchings <ben@decadent.org.uk>
This commit is contained in:
parent
e9895779b8
commit
c140ca37d8
1 changed files with 3 additions and 1 deletions
|
|
@ -2139,7 +2139,9 @@ static int compat_copy_entries(unsigned char *data, unsigned int size_user,
|
|||
if (ret < 0)
|
||||
return ret;
|
||||
|
||||
WARN_ON(size_remaining);
|
||||
if (size_remaining)
|
||||
return -EINVAL;
|
||||
|
||||
return state->buf_kern_offset;
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue