blob: f3448c2964468abc08d2b3630be18953820e1aff [file] [log] [blame]
Patrick McHardy96518512013-10-14 11:00:02 +02001/*
Patrick McHardyef1f7df2013-10-10 11:41:20 +02002 * Copyright (c) 2008-2009 Patrick McHardy <kaber@trash.net>
Eric Leblondbee11dc2013-12-29 12:28:14 +01003 * Copyright (c) 2013 Eric Leblond <eric@regit.org>
Patrick McHardy96518512013-10-14 11:00:02 +02004 *
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/nft_reject.h>
Eric Leblondbee11dc2013-12-29 12:28:14 +010020
Patrick McHardycc4723c2014-02-05 15:03:38 +000021const struct nla_policy nft_reject_policy[NFTA_REJECT_MAX + 1] = {
Patrick McHardy96518512013-10-14 11:00:02 +020022 [NFTA_REJECT_TYPE] = { .type = NLA_U32 },
23 [NFTA_REJECT_ICMP_CODE] = { .type = NLA_U8 },
24};
Patrick McHardycc4723c2014-02-05 15:03:38 +000025EXPORT_SYMBOL_GPL(nft_reject_policy);
Patrick McHardy96518512013-10-14 11:00:02 +020026
Patrick McHardycc4723c2014-02-05 15:03:38 +000027int nft_reject_init(const struct nft_ctx *ctx,
28 const struct nft_expr *expr,
29 const struct nlattr * const tb[])
Patrick McHardy96518512013-10-14 11:00:02 +020030{
31 struct nft_reject *priv = nft_expr_priv(expr);
32
33 if (tb[NFTA_REJECT_TYPE] == NULL)
34 return -EINVAL;
35
36 priv->type = ntohl(nla_get_be32(tb[NFTA_REJECT_TYPE]));
37 switch (priv->type) {
38 case NFT_REJECT_ICMP_UNREACH:
39 if (tb[NFTA_REJECT_ICMP_CODE] == NULL)
40 return -EINVAL;
41 priv->icmp_code = nla_get_u8(tb[NFTA_REJECT_ICMP_CODE]);
42 case NFT_REJECT_TCP_RST:
43 break;
44 default:
45 return -EINVAL;
46 }
47
48 return 0;
49}
Patrick McHardycc4723c2014-02-05 15:03:38 +000050EXPORT_SYMBOL_GPL(nft_reject_init);
Patrick McHardy96518512013-10-14 11:00:02 +020051
Patrick McHardycc4723c2014-02-05 15:03:38 +000052int nft_reject_dump(struct sk_buff *skb, const struct nft_expr *expr)
Patrick McHardy96518512013-10-14 11:00:02 +020053{
54 const struct nft_reject *priv = nft_expr_priv(expr);
55
Eric Leblondbee11dc2013-12-29 12:28:14 +010056 if (nla_put_be32(skb, NFTA_REJECT_TYPE, htonl(priv->type)))
Patrick McHardy96518512013-10-14 11:00:02 +020057 goto nla_put_failure;
58
59 switch (priv->type) {
60 case NFT_REJECT_ICMP_UNREACH:
61 if (nla_put_u8(skb, NFTA_REJECT_ICMP_CODE, priv->icmp_code))
62 goto nla_put_failure;
63 break;
64 }
65
66 return 0;
67
68nla_put_failure:
69 return -1;
70}
Patrick McHardycc4723c2014-02-05 15:03:38 +000071EXPORT_SYMBOL_GPL(nft_reject_dump);
Patrick McHardy96518512013-10-14 11:00:02 +020072
73MODULE_LICENSE("GPL");
74MODULE_AUTHOR("Patrick McHardy <kaber@trash.net>");