aboutsummaryrefslogtreecommitdiffstats
path: root/net/ipv4/netfilter/ip_tables.c
diff options
context:
space:
mode:
authorFlorian Westphal <fw@strlen.de>2018-07-04 20:25:32 +0200
committerPablo Neira Ayuso <pablo@netfilter.org>2018-07-05 11:45:11 +0200
commitd376bef9c29b3c65aeee4e785fffcd97ef0a9a81 (patch)
treeb7ddb7061489c1845d195e1201c8e140ffe94a66 /net/ipv4/netfilter/ip_tables.c
parentsmsc75xx: Add workaround for gigabit link up hardware errata. (diff)
downloadlinux-dev-d376bef9c29b3c65aeee4e785fffcd97ef0a9a81.tar.xz
linux-dev-d376bef9c29b3c65aeee4e785fffcd97ef0a9a81.zip
netfilter: x_tables: set module owner for icmp(6) matches
nft_compat relies on xt_request_find_match to increment refcount of the module that provides the match/target. The (builtin) icmp matches did't set the module owner so it was possible to rmmod ip(6)tables while icmp extensions were still in use. Signed-off-by: Florian Westphal <fw@strlen.de> Signed-off-by: Pablo Neira Ayuso <pablo@netfilter.org>
Diffstat (limited to 'net/ipv4/netfilter/ip_tables.c')
-rw-r--r--net/ipv4/netfilter/ip_tables.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/net/ipv4/netfilter/ip_tables.c b/net/ipv4/netfilter/ip_tables.c
index ca0dad90803a..e77872c93c20 100644
--- a/net/ipv4/netfilter/ip_tables.c
+++ b/net/ipv4/netfilter/ip_tables.c
@@ -1898,6 +1898,7 @@ static struct xt_match ipt_builtin_mt[] __read_mostly = {
.checkentry = icmp_checkentry,
.proto = IPPROTO_ICMP,
.family = NFPROTO_IPV4,
+ .me = THIS_MODULE,
},
};