2 * IP6 tables REJECT target module
3 * Linux INET6 implementation
5 * Copyright (C)2003 USAGI/WIDE Project
8 * Yasuyuki Kozakai <yasuyuki.kozakai@toshiba.co.jp>
10 * Based on net/ipv4/netfilter/ipt_REJECT.c
12 * This program is free software; you can redistribute it and/or
13 * modify it under the terms of the GNU General Public License
14 * as published by the Free Software Foundation; either version
15 * 2 of the License, or (at your option) any later version.
18 #include <linux/module.h>
19 #include <linux/skbuff.h>
20 #include <linux/icmpv6.h>
21 #include <linux/netdevice.h>
25 #include <net/ip6_checksum.h>
26 #include <net/ip6_fib.h>
27 #include <net/ip6_route.h>
29 #include <linux/netfilter/x_tables.h>
30 #include <linux/netfilter_ipv6/ip6_tables.h>
31 #include <linux/netfilter_ipv6/ip6t_REJECT.h>
33 MODULE_AUTHOR("Yasuyuki KOZAKAI <yasuyuki.kozakai@toshiba.co.jp>");
34 MODULE_DESCRIPTION("IP6 tables REJECT target module");
35 MODULE_LICENSE("GPL");
38 static void send_reset(struct sk_buff *oldskb)
41 struct tcphdr otcph, *tcph;
42 unsigned int otcplen, hh_len;
43 int tcphoff, needs_ack;
44 struct ipv6hdr *oip6h = ipv6_hdr(oldskb), *ip6h;
45 struct dst_entry *dst = NULL;
49 if ((!(ipv6_addr_type(&oip6h->saddr) & IPV6_ADDR_UNICAST)) ||
50 (!(ipv6_addr_type(&oip6h->daddr) & IPV6_ADDR_UNICAST))) {
51 pr_debug("ip6t_REJECT: addr is not unicast.\n");
55 proto = oip6h->nexthdr;
56 tcphoff = ipv6_skip_exthdr(oldskb, ((u8*)(oip6h+1) - oldskb->data), &proto);
58 if ((tcphoff < 0) || (tcphoff > oldskb->len)) {
59 pr_debug("ip6t_REJECT: Can't get TCP header.\n");
63 otcplen = oldskb->len - tcphoff;
65 /* IP header checks: fragment, too short. */
66 if (proto != IPPROTO_TCP || otcplen < sizeof(struct tcphdr)) {
67 pr_debug("ip6t_REJECT: proto(%d) != IPPROTO_TCP, "
68 "or too short. otcplen = %d\n",
73 if (skb_copy_bits(oldskb, tcphoff, &otcph, sizeof(struct tcphdr)))
78 pr_debug("ip6t_REJECT: RST is set\n");
83 if (csum_ipv6_magic(&oip6h->saddr, &oip6h->daddr, otcplen, IPPROTO_TCP,
84 skb_checksum(oldskb, tcphoff, otcplen, 0))) {
85 pr_debug("ip6t_REJECT: TCP checksum is invalid\n");
89 memset(&fl, 0, sizeof(fl));
90 fl.proto = IPPROTO_TCP;
91 ipv6_addr_copy(&fl.fl6_src, &oip6h->daddr);
92 ipv6_addr_copy(&fl.fl6_dst, &oip6h->saddr);
93 fl.fl_ip_sport = otcph.dest;
94 fl.fl_ip_dport = otcph.source;
95 security_skb_classify_flow(oldskb, &fl);
96 dst = ip6_route_output(NULL, &fl);
99 if (dst->error || xfrm_lookup(&dst, &fl, NULL, 0))
102 hh_len = (dst->dev->hard_header_len + 15)&~15;
103 nskb = alloc_skb(hh_len + 15 + dst->header_len + sizeof(struct ipv6hdr)
104 + sizeof(struct tcphdr) + dst->trailer_len,
109 printk("ip6t_REJECT: Can't alloc skb\n");
116 skb_reserve(nskb, hh_len + dst->header_len);
118 skb_put(nskb, sizeof(struct ipv6hdr));
119 skb_reset_network_header(nskb);
120 ip6h = ipv6_hdr(nskb);
122 ip6h->hop_limit = dst_metric(dst, RTAX_HOPLIMIT);
123 ip6h->nexthdr = IPPROTO_TCP;
124 ip6h->payload_len = htons(sizeof(struct tcphdr));
125 ipv6_addr_copy(&ip6h->saddr, &oip6h->daddr);
126 ipv6_addr_copy(&ip6h->daddr, &oip6h->saddr);
128 tcph = (struct tcphdr *)skb_put(nskb, sizeof(struct tcphdr));
129 /* Truncate to length (no data) */
130 tcph->doff = sizeof(struct tcphdr)/4;
131 tcph->source = otcph.dest;
132 tcph->dest = otcph.source;
136 tcph->seq = otcph.ack_seq;
140 tcph->ack_seq = htonl(ntohl(otcph.seq) + otcph.syn + otcph.fin
141 + otcplen - (otcph.doff<<2));
146 ((u_int8_t *)tcph)[13] = 0;
148 tcph->ack = needs_ack;
153 /* Adjust TCP checksum */
154 tcph->check = csum_ipv6_magic(&ipv6_hdr(nskb)->saddr,
155 &ipv6_hdr(nskb)->daddr,
156 sizeof(struct tcphdr), IPPROTO_TCP,
158 sizeof(struct tcphdr), 0));
160 nf_ct_attach(nskb, oldskb);
162 NF_HOOK(PF_INET6, NF_IP6_LOCAL_OUT, nskb, NULL, nskb->dst->dev,
167 send_unreach(struct sk_buff *skb_in, unsigned char code, unsigned int hooknum)
169 if (hooknum == NF_IP6_LOCAL_OUT && skb_in->dev == NULL)
170 skb_in->dev = init_net.loopback_dev;
172 icmpv6_send(skb_in, ICMPV6_DEST_UNREACH, code, 0, NULL);
175 static unsigned int reject6_target(struct sk_buff **pskb,
176 const struct net_device *in,
177 const struct net_device *out,
178 unsigned int hooknum,
179 const struct xt_target *target,
180 const void *targinfo)
182 const struct ip6t_reject_info *reject = targinfo;
184 pr_debug("%s: medium point\n", __FUNCTION__);
185 /* WARNING: This code causes reentry within ip6tables.
186 This means that the ip6tables jump stack is now crap. We
187 must return an absolute verdict. --RR */
188 switch (reject->with) {
189 case IP6T_ICMP6_NO_ROUTE:
190 send_unreach(*pskb, ICMPV6_NOROUTE, hooknum);
192 case IP6T_ICMP6_ADM_PROHIBITED:
193 send_unreach(*pskb, ICMPV6_ADM_PROHIBITED, hooknum);
195 case IP6T_ICMP6_NOT_NEIGHBOUR:
196 send_unreach(*pskb, ICMPV6_NOT_NEIGHBOUR, hooknum);
198 case IP6T_ICMP6_ADDR_UNREACH:
199 send_unreach(*pskb, ICMPV6_ADDR_UNREACH, hooknum);
201 case IP6T_ICMP6_PORT_UNREACH:
202 send_unreach(*pskb, ICMPV6_PORT_UNREACH, hooknum);
204 case IP6T_ICMP6_ECHOREPLY:
212 printk(KERN_WARNING "ip6t_REJECT: case %u not handled yet\n", reject->with);
219 static bool check(const char *tablename,
221 const struct xt_target *target,
223 unsigned int hook_mask)
225 const struct ip6t_reject_info *rejinfo = targinfo;
226 const struct ip6t_entry *e = entry;
228 if (rejinfo->with == IP6T_ICMP6_ECHOREPLY) {
229 printk("ip6t_REJECT: ECHOREPLY is not supported.\n");
231 } else if (rejinfo->with == IP6T_TCP_RESET) {
232 /* Must specify that it's a TCP packet */
233 if (e->ipv6.proto != IPPROTO_TCP
234 || (e->ipv6.invflags & XT_INV_PROTO)) {
235 printk("ip6t_REJECT: TCP_RESET illegal for non-tcp\n");
242 static struct xt_target ip6t_reject_reg __read_mostly = {
245 .target = reject6_target,
246 .targetsize = sizeof(struct ip6t_reject_info),
248 .hooks = (1 << NF_IP6_LOCAL_IN) | (1 << NF_IP6_FORWARD) |
249 (1 << NF_IP6_LOCAL_OUT),
254 static int __init ip6t_reject_init(void)
256 return xt_register_target(&ip6t_reject_reg);
259 static void __exit ip6t_reject_fini(void)
261 xt_unregister_target(&ip6t_reject_reg);
264 module_init(ip6t_reject_init);
265 module_exit(ip6t_reject_fini);