blob: c24f41c816b33f22b7e31ffb0b53e963b296f8c1 [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>
Patrick McHardycc4723c2014-02-05 15:03:38 +000019#include <net/netfilter/ipv4/nf_reject.h>
20#include <net/netfilter/nft_reject.h>
21
Florian Westphal56768642014-11-13 10:04:16 +010022static void nft_reject_ipv4_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);
27
28 switch (priv->type) {
29 case NFT_REJECT_ICMP_UNREACH:
Eric W. Biederman6aa187f2015-09-18 14:32:57 -050030 nf_send_unreach(pkt->skb, priv->icmp_code, pkt->hook);
Patrick McHardycc4723c2014-02-05 15:03:38 +000031 break;
32 case NFT_REJECT_TCP_RST:
Eric W. Biederman372892e2015-09-25 15:07:27 -050033 nf_send_reset(pkt->net, pkt->skb, pkt->hook);
Patrick McHardycc4723c2014-02-05 15:03:38 +000034 break;
David Millerc1f86672015-04-07 23:05:42 -040035 default:
36 break;
Patrick McHardycc4723c2014-02-05 15:03:38 +000037 }
38
Patrick McHardya55e22e2015-04-11 02:27:31 +010039 regs->verdict.code = NF_DROP;
Patrick McHardycc4723c2014-02-05 15:03:38 +000040}
Patrick McHardycc4723c2014-02-05 15:03:38 +000041
42static struct nft_expr_type nft_reject_ipv4_type;
43static const struct nft_expr_ops nft_reject_ipv4_ops = {
44 .type = &nft_reject_ipv4_type,
45 .size = NFT_EXPR_SIZE(sizeof(struct nft_reject)),
46 .eval = nft_reject_ipv4_eval,
47 .init = nft_reject_init,
48 .dump = nft_reject_dump,
49};
50
51static struct nft_expr_type nft_reject_ipv4_type __read_mostly = {
52 .family = NFPROTO_IPV4,
53 .name = "reject",
54 .ops = &nft_reject_ipv4_ops,
55 .policy = nft_reject_policy,
56 .maxattr = NFTA_REJECT_MAX,
57 .owner = THIS_MODULE,
58};
59
60static int __init nft_reject_ipv4_module_init(void)
61{
62 return nft_register_expr(&nft_reject_ipv4_type);
63}
64
65static void __exit nft_reject_ipv4_module_exit(void)
66{
67 nft_unregister_expr(&nft_reject_ipv4_type);
68}
69
70module_init(nft_reject_ipv4_module_init);
71module_exit(nft_reject_ipv4_module_exit);
72
73MODULE_LICENSE("GPL");
74MODULE_AUTHOR("Patrick McHardy <kaber@trash.net>");
75MODULE_ALIAS_NFT_AF_EXPR(AF_INET, "reject");