2 * IP6 tables REJECT target module
3 * Linux INET6 implementation
5 * Copyright (C)2003 USAGI/WIDE Project
12 * Based on net/ipv4/netfilter/ipt_REJECT.c
14 * This program is free software; you can redistribute it and/or
15 * modify it under the terms of the GNU General Public License
16 * as published by the Free Software Foundation; either version
17 * 2 of the License, or (at your option) any later version.
19 #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
21 #include <linux/gfp.h>
22 #include <linux/module.h>
23 #include <linux/skbuff.h>
24 #include <linux/icmpv6.h>
25 #include <linux/netdevice.h>
28 #include <linux/netfilter/x_tables.h>
29 #include <linux/netfilter_ipv6/ip6_tables.h>
30 #include <linux/netfilter_ipv6/ip6t_REJECT.h>
32 #include <net/netfilter/ipv6/nf_reject.h>
35 MODULE_DESCRIPTION("Xtables: packet \"rejection\" target for IPv6");
36 MODULE_LICENSE("GPL");
40 reject_tg6(struct sk_buff *skb, const struct xt_action_param *par)
42 const struct ip6t_reject_info *reject = par->targinfo;
43 struct net *net = dev_net((par->in != NULL) ? par->in : par->out);
45 pr_debug("%s: medium point\n", __func__);
46 switch (reject->with) {
47 case IP6T_ICMP6_NO_ROUTE:
48 nf_send_unreach6(net, skb, ICMPV6_NOROUTE, par->hooknum);
50 case IP6T_ICMP6_ADM_PROHIBITED:
51 nf_send_unreach6(net, skb, ICMPV6_ADM_PROHIBITED, par->hooknum);
53 case IP6T_ICMP6_NOT_NEIGHBOUR:
54 nf_send_unreach6(net, skb, ICMPV6_NOT_NEIGHBOUR, par->hooknum);
56 case IP6T_ICMP6_ADDR_UNREACH:
57 nf_send_unreach6(net, skb, ICMPV6_ADDR_UNREACH, par->hooknum);
59 case IP6T_ICMP6_PORT_UNREACH:
60 nf_send_unreach6(net, skb, ICMPV6_PORT_UNREACH, par->hooknum);
62 case IP6T_ICMP6_ECHOREPLY:
66 nf_send_reset6(net, skb, par->hooknum);
69 net_info_ratelimited("case %u not handled yet\n", reject->with);
76 static int reject_tg6_check(const struct xt_tgchk_param *par)
78 const struct ip6t_reject_info *rejinfo = par->targinfo;
79 const struct ip6t_entry *e = par->entryinfo;
81 if (rejinfo->with == IP6T_ICMP6_ECHOREPLY) {
82 pr_info("ECHOREPLY is not supported.\n");
84 } else if (rejinfo->with == IP6T_TCP_RESET) {
85 /* Must specify that it's a TCP packet */
86 if (e->ipv6.proto != IPPROTO_TCP ||
87 (e->ipv6.invflags & XT_INV_PROTO)) {
88 pr_info("TCP_RESET illegal for non-tcp\n");
95 static struct xt_target reject_tg6_reg __read_mostly = {
97 .family = NFPROTO_IPV6,
99 .targetsize = sizeof(struct ip6t_reject_info),
101 .hooks = (1 << NF_INET_LOCAL_IN) | (1 << NF_INET_FORWARD) |
102 (1 << NF_INET_LOCAL_OUT),
103 .checkentry = reject_tg6_check,
107 static int __init reject_tg6_init(void)
109 return xt_register_target(&reject_tg6_reg);
112 static void __exit reject_tg6_exit(void)
114 xt_unregister_target(&reject_tg6_reg);
117 module_init(reject_tg6_init);
118 module_exit(reject_tg6_exit);