netfilter: nft_reject: introduce icmp code abstraction for inet and bridge
[deliverable/linux.git] / net / ipv4 / netfilter / nft_reject_ipv4.c
CommitLineData
cc4723ca
PM
1/*
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>
cc4723ca
PM
19#include <net/netfilter/ipv4/nf_reject.h>
20#include <net/netfilter/nft_reject.h>
21
05513e9e
PM
22void nft_reject_ipv4_eval(const struct nft_expr *expr,
23 struct nft_data data[NFT_REG_MAX + 1],
24 const struct nft_pktinfo *pkt)
cc4723ca
PM
25{
26 struct nft_reject *priv = nft_expr_priv(expr);
27
28 switch (priv->type) {
29 case NFT_REJECT_ICMP_UNREACH:
30 nf_send_unreach(pkt->skb, priv->icmp_code);
31 break;
32 case NFT_REJECT_TCP_RST:
33 nf_send_reset(pkt->skb, pkt->ops->hooknum);
34 break;
35 }
36
37 data[NFT_REG_VERDICT].verdict = NF_DROP;
38}
05513e9e 39EXPORT_SYMBOL_GPL(nft_reject_ipv4_eval);
cc4723ca
PM
40
41static struct nft_expr_type nft_reject_ipv4_type;
42static const struct nft_expr_ops nft_reject_ipv4_ops = {
43 .type = &nft_reject_ipv4_type,
44 .size = NFT_EXPR_SIZE(sizeof(struct nft_reject)),
45 .eval = nft_reject_ipv4_eval,
46 .init = nft_reject_init,
47 .dump = nft_reject_dump,
48};
49
50static struct nft_expr_type nft_reject_ipv4_type __read_mostly = {
51 .family = NFPROTO_IPV4,
52 .name = "reject",
53 .ops = &nft_reject_ipv4_ops,
54 .policy = nft_reject_policy,
55 .maxattr = NFTA_REJECT_MAX,
56 .owner = THIS_MODULE,
57};
58
59static int __init nft_reject_ipv4_module_init(void)
60{
61 return nft_register_expr(&nft_reject_ipv4_type);
62}
63
64static void __exit nft_reject_ipv4_module_exit(void)
65{
66 nft_unregister_expr(&nft_reject_ipv4_type);
67}
68
69module_init(nft_reject_ipv4_module_init);
70module_exit(nft_reject_ipv4_module_exit);
71
72MODULE_LICENSE("GPL");
73MODULE_AUTHOR("Patrick McHardy <kaber@trash.net>");
74MODULE_ALIAS_NFT_AF_EXPR(AF_INET, "reject");
This page took 0.05859 seconds and 5 git commands to generate.