blob: 92bda9908bb9a354e701fab450549b43e2f22bfa [file] [log] [blame]
Patrick McHardycc4723c2014-02-05 15:03:38 +00001/*
2 * Copyright (c) 2008-2009 Patrick McHardy <kaber@trash.net>
3 * Copyright (c) 2013 Eric Leblond <eric@regit.org>
4 *
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License version 2 as
7 * published by the Free Software Foundation.
8 *
9 * Development of this code funded by Astaro AG (http://www.astaro.com/)
10 */
11
12#include <linux/kernel.h>
13#include <linux/init.h>
14#include <linux/module.h>
15#include <linux/netlink.h>
16#include <linux/netfilter.h>
17#include <linux/netfilter/nf_tables.h>
18#include <net/netfilter/nf_tables.h>
19#include <net/netfilter/nft_reject.h>
20#include <net/netfilter/ipv6/nf_reject.h>
21
Florian Westphal56768642014-11-13 10:04:16 +010022static void nft_reject_ipv6_eval(const struct nft_expr *expr,
Patrick McHardya55e22e2015-04-11 02:27:31 +010023 struct nft_regs *regs,
Florian Westphal56768642014-11-13 10:04:16 +010024 const struct nft_pktinfo *pkt)
Patrick McHardycc4723c2014-02-05 15:03:38 +000025{
26 struct nft_reject *priv = nft_expr_priv(expr);
Patrick McHardycc4723c2014-02-05 15:03:38 +000027
28 switch (priv->type) {
29 case NFT_REJECT_ICMP_UNREACH:
Eric W. Biederman88182a02015-09-18 14:33:01 -050030 nf_send_unreach6(pkt->net, pkt->skb, priv->icmp_code,
31 pkt->hook);
Patrick McHardycc4723c2014-02-05 15:03:38 +000032 break;
33 case NFT_REJECT_TCP_RST:
Eric W. Biederman88182a02015-09-18 14:33:01 -050034 nf_send_reset6(pkt->net, pkt->skb, pkt->hook);
Patrick McHardycc4723c2014-02-05 15:03:38 +000035 break;
David Millerc1f86672015-04-07 23:05:42 -040036 default:
37 break;
Patrick McHardycc4723c2014-02-05 15:03:38 +000038 }
39
Patrick McHardya55e22e2015-04-11 02:27:31 +010040 regs->verdict.code = NF_DROP;
Patrick McHardycc4723c2014-02-05 15:03:38 +000041}
Patrick McHardycc4723c2014-02-05 15:03:38 +000042
43static struct nft_expr_type nft_reject_ipv6_type;
44static const struct nft_expr_ops nft_reject_ipv6_ops = {
45 .type = &nft_reject_ipv6_type,
46 .size = NFT_EXPR_SIZE(sizeof(struct nft_reject)),
47 .eval = nft_reject_ipv6_eval,
48 .init = nft_reject_init,
49 .dump = nft_reject_dump,
Liping Zhang89e1f6d2016-08-22 01:02:18 +080050 .validate = nft_reject_validate,
Patrick McHardycc4723c2014-02-05 15:03:38 +000051};
52
53static struct nft_expr_type nft_reject_ipv6_type __read_mostly = {
54 .family = NFPROTO_IPV6,
55 .name = "reject",
56 .ops = &nft_reject_ipv6_ops,
57 .policy = nft_reject_policy,
58 .maxattr = NFTA_REJECT_MAX,
59 .owner = THIS_MODULE,
60};
61
62static int __init nft_reject_ipv6_module_init(void)
63{
64 return nft_register_expr(&nft_reject_ipv6_type);
65}
66
67static void __exit nft_reject_ipv6_module_exit(void)
68{
69 nft_unregister_expr(&nft_reject_ipv6_type);
70}
71
72module_init(nft_reject_ipv6_module_init);
73module_exit(nft_reject_ipv6_module_exit);
74
75MODULE_LICENSE("GPL");
76MODULE_AUTHOR("Patrick McHardy <kaber@trash.net>");
77MODULE_ALIAS_NFT_AF_EXPR(AF_INET6, "reject");