Skip to content

Commit d26e2c9

Browse files
bthalerummakynes
authored andcommitted
Revert "netfilter: ensure number of counters is >0 in do_replace()"
This partially reverts commit 1086bbe ("netfilter: ensure number of counters is >0 in do_replace()") in net/bridge/netfilter/ebtables.c. Setting rules with ebtables does not work any more with 1086bbe place. There is an error message and no rules set in the end. e.g. ~# ebtables -t nat -A POSTROUTING --src 12:34:56:78:9a:bc -j DROP Unable to update the kernel. Two possible causes: 1. Multiple ebtables programs were executing simultaneously. The ebtables userspace tool doesn't by default support multiple ebtables programs running Reverting the ebtables part of 1086bbe makes this work again. Signed-off-by: Bernhard Thaler <bernhard.thaler@wvnet.at> Signed-off-by: Pablo Neira Ayuso <pablo@netfilter.org>
1 parent 9302d7b commit d26e2c9

File tree

1 file changed

+0
-4
lines changed

1 file changed

+0
-4
lines changed

net/bridge/netfilter/ebtables.c

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1117,8 +1117,6 @@ static int do_replace(struct net *net, const void __user *user,
11171117
return -ENOMEM;
11181118
if (tmp.num_counters >= INT_MAX / sizeof(struct ebt_counter))
11191119
return -ENOMEM;
1120-
if (tmp.num_counters == 0)
1121-
return -EINVAL;
11221120

11231121
tmp.name[sizeof(tmp.name) - 1] = 0;
11241122

@@ -2161,8 +2159,6 @@ static int compat_copy_ebt_replace_from_user(struct ebt_replace *repl,
21612159
return -ENOMEM;
21622160
if (tmp.num_counters >= INT_MAX / sizeof(struct ebt_counter))
21632161
return -ENOMEM;
2164-
if (tmp.num_counters == 0)
2165-
return -EINVAL;
21662162

21672163
memcpy(repl, &tmp, offsetof(struct ebt_replace, hook_entry));
21682164

0 commit comments

Comments
 (0)