blob: b5a2aa58a03acf828fd0eb0247dfafef09335969 [file] [log] [blame]
Patrick McHardy764d8a92005-08-21 23:31:06 -07001/*
2 * IP6 tables REJECT target module
3 * Linux INET6 implementation
4 *
5 * Copyright (C)2003 USAGI/WIDE Project
6 *
7 * Authors:
8 * Yasuyuki Kozakai <yasuyuki.kozakai@toshiba.co.jp>
9 *
10 * Based on net/ipv4/netfilter/ipt_REJECT.c
11 *
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.
16 */
Jan Engelhardtff67e4e2010-03-19 21:08:16 +010017#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
Patrick McHardy764d8a92005-08-21 23:31:06 -070018
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090019#include <linux/gfp.h>
Patrick McHardy764d8a92005-08-21 23:31:06 -070020#include <linux/module.h>
21#include <linux/skbuff.h>
22#include <linux/icmpv6.h>
23#include <linux/netdevice.h>
24#include <net/ipv6.h>
25#include <net/tcp.h>
26#include <net/icmp.h>
27#include <net/ip6_checksum.h>
28#include <net/ip6_fib.h>
29#include <net/ip6_route.h>
30#include <net/flow.h>
Jan Engelhardt6709dbb2007-02-07 15:11:19 -080031#include <linux/netfilter/x_tables.h>
Patrick McHardy764d8a92005-08-21 23:31:06 -070032#include <linux/netfilter_ipv6/ip6_tables.h>
33#include <linux/netfilter_ipv6/ip6t_REJECT.h>
34
35MODULE_AUTHOR("Yasuyuki KOZAKAI <yasuyuki.kozakai@toshiba.co.jp>");
Jan Engelhardt2ae15b62008-01-14 23:42:28 -080036MODULE_DESCRIPTION("Xtables: packet \"rejection\" target for IPv6");
Patrick McHardy764d8a92005-08-21 23:31:06 -070037MODULE_LICENSE("GPL");
38
Patrick McHardy764d8a92005-08-21 23:31:06 -070039/* Send RST reply */
Alexey Dobriyane10aad92008-10-08 11:35:02 +020040static void send_reset(struct net *net, struct sk_buff *oldskb)
Patrick McHardy764d8a92005-08-21 23:31:06 -070041{
42 struct sk_buff *nskb;
43 struct tcphdr otcph, *tcph;
44 unsigned int otcplen, hh_len;
45 int tcphoff, needs_ack;
Jan Engelhardt3cf93c92008-04-14 09:56:05 +020046 const struct ipv6hdr *oip6h = ipv6_hdr(oldskb);
47 struct ipv6hdr *ip6h;
Fernando Luis Vazquez Cao4319cc02011-05-10 09:55:44 +020048#define DEFAULT_TOS_VALUE 0x0U
49 const __u8 tclass = DEFAULT_TOS_VALUE;
Patrick McHardy764d8a92005-08-21 23:31:06 -070050 struct dst_entry *dst = NULL;
51 u8 proto;
David S. Miller4c9483b2011-03-12 16:22:43 -050052 struct flowi6 fl6;
Patrick McHardy764d8a92005-08-21 23:31:06 -070053
54 if ((!(ipv6_addr_type(&oip6h->saddr) & IPV6_ADDR_UNICAST)) ||
55 (!(ipv6_addr_type(&oip6h->daddr) & IPV6_ADDR_UNICAST))) {
Jan Engelhardtff67e4e2010-03-19 21:08:16 +010056 pr_debug("addr is not unicast.\n");
Patrick McHardy764d8a92005-08-21 23:31:06 -070057 return;
58 }
59
60 proto = oip6h->nexthdr;
61 tcphoff = ipv6_skip_exthdr(oldskb, ((u8*)(oip6h+1) - oldskb->data), &proto);
62
63 if ((tcphoff < 0) || (tcphoff > oldskb->len)) {
Jan Engelhardtff67e4e2010-03-19 21:08:16 +010064 pr_debug("Cannot get TCP header.\n");
Patrick McHardy764d8a92005-08-21 23:31:06 -070065 return;
66 }
67
68 otcplen = oldskb->len - tcphoff;
69
70 /* IP header checks: fragment, too short. */
Jan Engelhardt7c4e36b2007-07-07 22:19:08 -070071 if (proto != IPPROTO_TCP || otcplen < sizeof(struct tcphdr)) {
Jan Engelhardtff67e4e2010-03-19 21:08:16 +010072 pr_debug("proto(%d) != IPPROTO_TCP, "
Patrick McHardy0d537782007-07-07 22:39:38 -070073 "or too short. otcplen = %d\n",
74 proto, otcplen);
Patrick McHardy764d8a92005-08-21 23:31:06 -070075 return;
76 }
77
78 if (skb_copy_bits(oldskb, tcphoff, &otcph, sizeof(struct tcphdr)))
79 BUG();
80
81 /* No RST for RST. */
82 if (otcph.rst) {
Jan Engelhardtff67e4e2010-03-19 21:08:16 +010083 pr_debug("RST is set\n");
Patrick McHardy764d8a92005-08-21 23:31:06 -070084 return;
85 }
86
87 /* Check checksum. */
88 if (csum_ipv6_magic(&oip6h->saddr, &oip6h->daddr, otcplen, IPPROTO_TCP,
89 skb_checksum(oldskb, tcphoff, otcplen, 0))) {
Jan Engelhardtff67e4e2010-03-19 21:08:16 +010090 pr_debug("TCP checksum is invalid\n");
Patrick McHardy764d8a92005-08-21 23:31:06 -070091 return;
92 }
93
David S. Miller4c9483b2011-03-12 16:22:43 -050094 memset(&fl6, 0, sizeof(fl6));
95 fl6.flowi6_proto = IPPROTO_TCP;
Alexey Dobriyan4e3fd7a2011-11-21 03:39:03 +000096 fl6.saddr = oip6h->daddr;
97 fl6.daddr = oip6h->saddr;
David S. Miller1958b852011-03-12 16:36:19 -050098 fl6.fl6_sport = otcph.dest;
99 fl6.fl6_dport = otcph.source;
David S. Miller4c9483b2011-03-12 16:22:43 -0500100 security_skb_classify_flow(oldskb, flowi6_to_flowi(&fl6));
101 dst = ip6_route_output(net, NULL, &fl6);
Eric Dumazet499031a2010-07-02 10:05:01 +0200102 if (dst == NULL || dst->error) {
103 dst_release(dst);
Patrick McHardy764d8a92005-08-21 23:31:06 -0700104 return;
Eric Dumazet499031a2010-07-02 10:05:01 +0200105 }
David S. Miller4c9483b2011-03-12 16:22:43 -0500106 dst = xfrm_lookup(net, dst, flowi6_to_flowi(&fl6), NULL, 0);
David S. Miller452edd52011-03-02 13:27:41 -0800107 if (IS_ERR(dst))
Patrick McHardy764d8a92005-08-21 23:31:06 -0700108 return;
Patrick McHardy764d8a92005-08-21 23:31:06 -0700109
110 hh_len = (dst->dev->hard_header_len + 15)&~15;
111 nskb = alloc_skb(hh_len + 15 + dst->header_len + sizeof(struct ipv6hdr)
112 + sizeof(struct tcphdr) + dst->trailer_len,
113 GFP_ATOMIC);
114
115 if (!nskb) {
116 if (net_ratelimit())
Jan Engelhardtff67e4e2010-03-19 21:08:16 +0100117 pr_debug("cannot alloc skb\n");
Patrick McHardy764d8a92005-08-21 23:31:06 -0700118 dst_release(dst);
119 return;
120 }
121
Eric Dumazetadf30902009-06-02 05:19:30 +0000122 skb_dst_set(nskb, dst);
Patrick McHardy764d8a92005-08-21 23:31:06 -0700123
124 skb_reserve(nskb, hh_len + dst->header_len);
125
Arnaldo Carvalho de Melo1ced98e2007-03-10 19:57:15 -0300126 skb_put(nskb, sizeof(struct ipv6hdr));
127 skb_reset_network_header(nskb);
Arnaldo Carvalho de Melo0660e032007-04-25 17:54:47 -0700128 ip6h = ipv6_hdr(nskb);
Fernando Luis Vazquez Cao4319cc02011-05-10 09:55:44 +0200129 *(__be32 *)ip6h = htonl(0x60000000 | (tclass << 20));
David S. Millerabbf46a2010-12-12 21:14:46 -0800130 ip6h->hop_limit = ip6_dst_hoplimit(dst);
Patrick McHardy764d8a92005-08-21 23:31:06 -0700131 ip6h->nexthdr = IPPROTO_TCP;
Alexey Dobriyan4e3fd7a2011-11-21 03:39:03 +0000132 ip6h->saddr = oip6h->daddr;
133 ip6h->daddr = oip6h->saddr;
Patrick McHardy764d8a92005-08-21 23:31:06 -0700134
135 tcph = (struct tcphdr *)skb_put(nskb, sizeof(struct tcphdr));
136 /* Truncate to length (no data) */
137 tcph->doff = sizeof(struct tcphdr)/4;
138 tcph->source = otcph.dest;
139 tcph->dest = otcph.source;
140
141 if (otcph.ack) {
142 needs_ack = 0;
143 tcph->seq = otcph.ack_seq;
144 tcph->ack_seq = 0;
145 } else {
146 needs_ack = 1;
147 tcph->ack_seq = htonl(ntohl(otcph.seq) + otcph.syn + otcph.fin
148 + otcplen - (otcph.doff<<2));
149 tcph->seq = 0;
150 }
151
152 /* Reset flags */
153 ((u_int8_t *)tcph)[13] = 0;
154 tcph->rst = 1;
155 tcph->ack = needs_ack;
156 tcph->window = 0;
157 tcph->urg_ptr = 0;
158 tcph->check = 0;
159
160 /* Adjust TCP checksum */
Arnaldo Carvalho de Melo0660e032007-04-25 17:54:47 -0700161 tcph->check = csum_ipv6_magic(&ipv6_hdr(nskb)->saddr,
162 &ipv6_hdr(nskb)->daddr,
Patrick McHardy764d8a92005-08-21 23:31:06 -0700163 sizeof(struct tcphdr), IPPROTO_TCP,
Jan Engelhardta47362a2007-07-07 22:16:55 -0700164 csum_partial(tcph,
Patrick McHardy764d8a92005-08-21 23:31:06 -0700165 sizeof(struct tcphdr), 0));
166
Yasuyuki Kozakai08857fa2006-02-15 15:23:28 -0800167 nf_ct_attach(nskb, oldskb);
168
Herbert Xuef76bc22008-01-11 19:15:08 -0800169 ip6_local_out(nskb);
Patrick McHardy764d8a92005-08-21 23:31:06 -0700170}
171
172static inline void
Alexey Dobriyane10aad92008-10-08 11:35:02 +0200173send_unreach(struct net *net, struct sk_buff *skb_in, unsigned char code,
174 unsigned int hooknum)
Patrick McHardy764d8a92005-08-21 23:31:06 -0700175{
Patrick McHardy6e23ae22007-11-19 18:53:30 -0800176 if (hooknum == NF_INET_LOCAL_OUT && skb_in->dev == NULL)
Alexey Dobriyane10aad92008-10-08 11:35:02 +0200177 skb_in->dev = net->loopback_dev;
Patrick McHardy764d8a92005-08-21 23:31:06 -0700178
Alexey Dobriyan3ffe5332010-02-18 08:25:24 +0000179 icmpv6_send(skb_in, ICMPV6_DEST_UNREACH, code, 0);
Patrick McHardy764d8a92005-08-21 23:31:06 -0700180}
181
Jan Engelhardtd3c5ee62007-12-04 23:24:03 -0800182static unsigned int
Jan Engelhardt4b560b42009-07-05 19:43:26 +0200183reject_tg6(struct sk_buff *skb, const struct xt_action_param *par)
Patrick McHardy764d8a92005-08-21 23:31:06 -0700184{
Jan Engelhardt7eb35582008-10-08 11:35:19 +0200185 const struct ip6t_reject_info *reject = par->targinfo;
186 struct net *net = dev_net((par->in != NULL) ? par->in : par->out);
Patrick McHardy764d8a92005-08-21 23:31:06 -0700187
Harvey Harrison0dc47872008-03-05 20:47:47 -0800188 pr_debug("%s: medium point\n", __func__);
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900189 switch (reject->with) {
190 case IP6T_ICMP6_NO_ROUTE:
Jan Engelhardt7eb35582008-10-08 11:35:19 +0200191 send_unreach(net, skb, ICMPV6_NOROUTE, par->hooknum);
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900192 break;
193 case IP6T_ICMP6_ADM_PROHIBITED:
Jan Engelhardt7eb35582008-10-08 11:35:19 +0200194 send_unreach(net, skb, ICMPV6_ADM_PROHIBITED, par->hooknum);
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900195 break;
196 case IP6T_ICMP6_NOT_NEIGHBOUR:
Jan Engelhardt7eb35582008-10-08 11:35:19 +0200197 send_unreach(net, skb, ICMPV6_NOT_NEIGHBOUR, par->hooknum);
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900198 break;
199 case IP6T_ICMP6_ADDR_UNREACH:
Jan Engelhardt7eb35582008-10-08 11:35:19 +0200200 send_unreach(net, skb, ICMPV6_ADDR_UNREACH, par->hooknum);
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900201 break;
202 case IP6T_ICMP6_PORT_UNREACH:
Jan Engelhardt7eb35582008-10-08 11:35:19 +0200203 send_unreach(net, skb, ICMPV6_PORT_UNREACH, par->hooknum);
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900204 break;
205 case IP6T_ICMP6_ECHOREPLY:
Patrick McHardy764d8a92005-08-21 23:31:06 -0700206 /* Do nothing */
207 break;
208 case IP6T_TCP_RESET:
Alexey Dobriyane10aad92008-10-08 11:35:02 +0200209 send_reset(net, skb);
Patrick McHardy764d8a92005-08-21 23:31:06 -0700210 break;
211 default:
212 if (net_ratelimit())
Jan Engelhardtff67e4e2010-03-19 21:08:16 +0100213 pr_info("case %u not handled yet\n", reject->with);
Patrick McHardy764d8a92005-08-21 23:31:06 -0700214 break;
215 }
216
217 return NF_DROP;
218}
219
Jan Engelhardt135367b2010-03-19 17:16:42 +0100220static int reject_tg6_check(const struct xt_tgchk_param *par)
Patrick McHardy764d8a92005-08-21 23:31:06 -0700221{
Jan Engelhardtaf5d6dc2008-10-08 11:35:19 +0200222 const struct ip6t_reject_info *rejinfo = par->targinfo;
223 const struct ip6t_entry *e = par->entryinfo;
Patrick McHardy764d8a92005-08-21 23:31:06 -0700224
Patrick McHardy764d8a92005-08-21 23:31:06 -0700225 if (rejinfo->with == IP6T_ICMP6_ECHOREPLY) {
Jan Engelhardtff67e4e2010-03-19 21:08:16 +0100226 pr_info("ECHOREPLY is not supported.\n");
Jan Engelhardtd6b00a52010-03-25 16:34:45 +0100227 return -EINVAL;
Patrick McHardy764d8a92005-08-21 23:31:06 -0700228 } else if (rejinfo->with == IP6T_TCP_RESET) {
229 /* Must specify that it's a TCP packet */
Joe Perches3666ed12009-11-23 23:17:06 +0100230 if (e->ipv6.proto != IPPROTO_TCP ||
231 (e->ipv6.invflags & XT_INV_PROTO)) {
Jan Engelhardtff67e4e2010-03-19 21:08:16 +0100232 pr_info("TCP_RESET illegal for non-tcp\n");
Jan Engelhardtd6b00a52010-03-25 16:34:45 +0100233 return -EINVAL;
Patrick McHardy764d8a92005-08-21 23:31:06 -0700234 }
235 }
Jan Engelhardtd6b00a52010-03-25 16:34:45 +0100236 return 0;
Patrick McHardy764d8a92005-08-21 23:31:06 -0700237}
238
Jan Engelhardtd3c5ee62007-12-04 23:24:03 -0800239static struct xt_target reject_tg6_reg __read_mostly = {
Patrick McHardy764d8a92005-08-21 23:31:06 -0700240 .name = "REJECT",
Jan Engelhardtee999d82008-10-08 11:35:01 +0200241 .family = NFPROTO_IPV6,
Jan Engelhardtd3c5ee62007-12-04 23:24:03 -0800242 .target = reject_tg6,
Patrick McHardy7f939712006-03-20 18:01:43 -0800243 .targetsize = sizeof(struct ip6t_reject_info),
244 .table = "filter",
Patrick McHardy6e23ae22007-11-19 18:53:30 -0800245 .hooks = (1 << NF_INET_LOCAL_IN) | (1 << NF_INET_FORWARD) |
246 (1 << NF_INET_LOCAL_OUT),
Jan Engelhardtd3c5ee62007-12-04 23:24:03 -0800247 .checkentry = reject_tg6_check,
Patrick McHardy764d8a92005-08-21 23:31:06 -0700248 .me = THIS_MODULE
249};
250
Jan Engelhardtd3c5ee62007-12-04 23:24:03 -0800251static int __init reject_tg6_init(void)
Patrick McHardy764d8a92005-08-21 23:31:06 -0700252{
Jan Engelhardtd3c5ee62007-12-04 23:24:03 -0800253 return xt_register_target(&reject_tg6_reg);
Patrick McHardy764d8a92005-08-21 23:31:06 -0700254}
255
Jan Engelhardtd3c5ee62007-12-04 23:24:03 -0800256static void __exit reject_tg6_exit(void)
Patrick McHardy764d8a92005-08-21 23:31:06 -0700257{
Jan Engelhardtd3c5ee62007-12-04 23:24:03 -0800258 xt_unregister_target(&reject_tg6_reg);
Patrick McHardy764d8a92005-08-21 23:31:06 -0700259}
260
Jan Engelhardtd3c5ee62007-12-04 23:24:03 -0800261module_init(reject_tg6_init);
262module_exit(reject_tg6_exit);