blob: 1399e7c183baa13582f360fcb1a26952c628ed30 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * This is a module which is used for rejecting packets.
3 * Added support for customized reject packets (Jozsef Kadlecsik).
4 * Added support for ICMP type-3-code-13 (Maciej Soltysiak). [RFC 1812]
5 */
6
7/* (C) 1999-2001 Paul `Rusty' Russell
8 * (C) 2002-2004 Netfilter Core Team <coreteam@netfilter.org>
9 *
10 * This program is free software; you can redistribute it and/or modify
11 * it under the terms of the GNU General Public License version 2 as
12 * published by the Free Software Foundation.
13 */
14
Linus Torvalds1da177e2005-04-16 15:20:36 -070015#include <linux/module.h>
16#include <linux/skbuff.h>
17#include <linux/ip.h>
18#include <linux/udp.h>
19#include <linux/icmp.h>
20#include <net/icmp.h>
21#include <net/ip.h>
22#include <net/tcp.h>
23#include <net/route.h>
24#include <net/dst.h>
Jan Engelhardt6709dbb2007-02-07 15:11:19 -080025#include <linux/netfilter/x_tables.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070026#include <linux/netfilter_ipv4/ip_tables.h>
27#include <linux/netfilter_ipv4/ipt_REJECT.h>
28#ifdef CONFIG_BRIDGE_NETFILTER
29#include <linux/netfilter_bridge.h>
30#endif
31
32MODULE_LICENSE("GPL");
33MODULE_AUTHOR("Netfilter Core Team <coreteam@netfilter.org>");
34MODULE_DESCRIPTION("iptables REJECT target module");
35
36#if 0
37#define DEBUGP printk
38#else
39#define DEBUGP(format, args...)
40#endif
41
Linus Torvalds1da177e2005-04-16 15:20:36 -070042/* Send RST reply */
43static void send_reset(struct sk_buff *oldskb, int hook)
44{
45 struct sk_buff *nskb;
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -070046 struct iphdr *niph;
Linus Torvalds1da177e2005-04-16 15:20:36 -070047 struct tcphdr _otcph, *oth, *tcph;
Al Viro6a19d612006-09-28 14:22:24 -070048 __be16 tmp_port;
49 __be32 tmp_addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -070050 int needs_ack;
Patrick McHardy9d020022006-10-02 16:12:20 -070051 unsigned int addr_type;
Linus Torvalds1da177e2005-04-16 15:20:36 -070052
53 /* IP header checks: fragment. */
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -070054 if (ip_hdr(oldskb)->frag_off & htons(IP_OFFSET))
Linus Torvalds1da177e2005-04-16 15:20:36 -070055 return;
56
Arnaldo Carvalho de Meloc9bdd4b2007-03-12 20:09:15 -030057 oth = skb_header_pointer(oldskb, ip_hdrlen(oldskb),
Linus Torvalds1da177e2005-04-16 15:20:36 -070058 sizeof(_otcph), &_otcph);
59 if (oth == NULL)
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +090060 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -070061
62 /* No RST for RST. */
63 if (oth->rst)
64 return;
65
Patrick McHardy6150bac2005-06-21 14:03:46 -070066 /* Check checksum */
Arnaldo Carvalho de Meloc9bdd4b2007-03-12 20:09:15 -030067 if (nf_ip_checksum(oldskb, hook, ip_hdrlen(oldskb), IPPROTO_TCP))
Patrick McHardy6150bac2005-06-21 14:03:46 -070068 return;
69
Linus Torvalds1da177e2005-04-16 15:20:36 -070070 /* We need a linear, writeable skb. We also need to expand
71 headroom in case hh_len of incoming interface < hh_len of
72 outgoing interface */
Patrick McHardy9d020022006-10-02 16:12:20 -070073 nskb = skb_copy_expand(oldskb, LL_MAX_HEADER, skb_tailroom(oldskb),
Linus Torvalds1da177e2005-04-16 15:20:36 -070074 GFP_ATOMIC);
Patrick McHardy9d020022006-10-02 16:12:20 -070075 if (!nskb)
Linus Torvalds1da177e2005-04-16 15:20:36 -070076 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -070077
78 /* This packet will not be the same as the other: clear nf fields */
79 nf_reset(nskb);
Thomas Graf82e91ff2006-11-09 15:19:14 -080080 nskb->mark = 0;
James Morris984bc162006-06-09 00:29:17 -070081 skb_init_secmark(nskb);
Linus Torvalds1da177e2005-04-16 15:20:36 -070082
Herbert Xubbf4a6b2007-02-13 12:32:58 -080083 skb_shinfo(nskb)->gso_size = 0;
84 skb_shinfo(nskb)->gso_segs = 0;
85 skb_shinfo(nskb)->gso_type = 0;
86
Arnaldo Carvalho de Meloc9bdd4b2007-03-12 20:09:15 -030087 tcph = (struct tcphdr *)(skb_network_header(nskb) + ip_hdrlen(nskb));
Linus Torvalds1da177e2005-04-16 15:20:36 -070088
89 /* Swap source and dest */
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -070090 niph = ip_hdr(nskb);
91 tmp_addr = niph->saddr;
92 niph->saddr = niph->daddr;
93 niph->daddr = tmp_addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -070094 tmp_port = tcph->source;
95 tcph->source = tcph->dest;
96 tcph->dest = tmp_port;
97
98 /* Truncate to length (no data) */
99 tcph->doff = sizeof(struct tcphdr)/4;
Arnaldo Carvalho de Meloc9bdd4b2007-03-12 20:09:15 -0300100 skb_trim(nskb, ip_hdrlen(nskb) + sizeof(struct tcphdr));
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -0700101 niph->tot_len = htons(nskb->len);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700102
103 if (tcph->ack) {
104 needs_ack = 0;
105 tcph->seq = oth->ack_seq;
106 tcph->ack_seq = 0;
107 } else {
108 needs_ack = 1;
Arnaldo Carvalho de Meloc9bdd4b2007-03-12 20:09:15 -0300109 tcph->ack_seq = htonl(ntohl(oth->seq) + oth->syn + oth->fin +
110 oldskb->len - ip_hdrlen(oldskb) -
111 (oth->doff << 2));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700112 tcph->seq = 0;
113 }
114
115 /* Reset flags */
116 ((u_int8_t *)tcph)[13] = 0;
117 tcph->rst = 1;
118 tcph->ack = needs_ack;
119
120 tcph->window = 0;
121 tcph->urg_ptr = 0;
122
Patrick McHardyaf443b62006-11-28 20:10:21 -0800123 /* Adjust TCP checksum */
124 tcph->check = 0;
Frederik Deweerdtba7808e2007-02-04 20:15:27 -0800125 tcph->check = tcp_v4_check(sizeof(struct tcphdr),
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -0700126 niph->saddr, niph->daddr,
Patrick McHardyaf443b62006-11-28 20:10:21 -0800127 csum_partial((char *)tcph,
128 sizeof(struct tcphdr), 0));
129
Patrick McHardy9d020022006-10-02 16:12:20 -0700130 /* Set DF, id = 0 */
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -0700131 niph->frag_off = htons(IP_DF);
132 niph->id = 0;
Patrick McHardy9d020022006-10-02 16:12:20 -0700133
134 addr_type = RTN_UNSPEC;
135 if (hook != NF_IP_FORWARD
136#ifdef CONFIG_BRIDGE_NETFILTER
137 || (nskb->nf_bridge && nskb->nf_bridge->mask & BRNF_BRIDGED)
138#endif
139 )
140 addr_type = RTN_LOCAL;
141
142 if (ip_route_me_harder(&nskb, addr_type))
143 goto free_nskb;
144
Patrick McHardy4cf411d2006-08-05 00:58:33 -0700145 nskb->ip_summed = CHECKSUM_NONE;
Patrick McHardyaf443b62006-11-28 20:10:21 -0800146
Patrick McHardy9d020022006-10-02 16:12:20 -0700147 /* Adjust IP TTL */
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -0700148 niph->ttl = dst_metric(nskb->dst, RTAX_HOPLIMIT);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700149
150 /* Adjust IP checksum */
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -0700151 niph->check = 0;
152 niph->check = ip_fast_csum(skb_network_header(nskb), niph->ihl);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700153
154 /* "Never happens" */
155 if (nskb->len > dst_mtu(nskb->dst))
156 goto free_nskb;
157
158 nf_ct_attach(nskb, oldskb);
159
160 NF_HOOK(PF_INET, NF_IP_LOCAL_OUT, nskb, NULL, nskb->dst->dev,
161 dst_output);
162 return;
163
164 free_nskb:
165 kfree_skb(nskb);
166}
167
168static inline void send_unreach(struct sk_buff *skb_in, int code)
169{
170 icmp_send(skb_in, ICMP_DEST_UNREACH, code, 0);
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +0900171}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700172
173static unsigned int reject(struct sk_buff **pskb,
174 const struct net_device *in,
175 const struct net_device *out,
176 unsigned int hooknum,
Patrick McHardyc4986732006-03-20 18:02:56 -0800177 const struct xt_target *target,
Patrick McHardyfe1cb102006-08-22 00:35:47 -0700178 const void *targinfo)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700179{
180 const struct ipt_reject_info *reject = targinfo;
181
182 /* Our naive response construction doesn't deal with IP
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +0900183 options, and probably shouldn't try. */
Arnaldo Carvalho de Meloc9bdd4b2007-03-12 20:09:15 -0300184 if (ip_hdrlen(*pskb) != sizeof(struct iphdr))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700185 return NF_DROP;
186
187 /* WARNING: This code causes reentry within iptables.
188 This means that the iptables jump stack is now crap. We
189 must return an absolute verdict. --RR */
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +0900190 switch (reject->with) {
191 case IPT_ICMP_NET_UNREACHABLE:
192 send_unreach(*pskb, ICMP_NET_UNREACH);
193 break;
194 case IPT_ICMP_HOST_UNREACHABLE:
195 send_unreach(*pskb, ICMP_HOST_UNREACH);
196 break;
197 case IPT_ICMP_PROT_UNREACHABLE:
198 send_unreach(*pskb, ICMP_PROT_UNREACH);
199 break;
200 case IPT_ICMP_PORT_UNREACHABLE:
201 send_unreach(*pskb, ICMP_PORT_UNREACH);
202 break;
203 case IPT_ICMP_NET_PROHIBITED:
204 send_unreach(*pskb, ICMP_NET_ANO);
205 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700206 case IPT_ICMP_HOST_PROHIBITED:
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +0900207 send_unreach(*pskb, ICMP_HOST_ANO);
208 break;
209 case IPT_ICMP_ADMIN_PROHIBITED:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700210 send_unreach(*pskb, ICMP_PKT_FILTERED);
211 break;
212 case IPT_TCP_RESET:
213 send_reset(*pskb, hooknum);
214 case IPT_ICMP_ECHOREPLY:
215 /* Doesn't happen. */
216 break;
217 }
218
219 return NF_DROP;
220}
221
222static int check(const char *tablename,
Harald Welte2e4e6a12006-01-12 13:30:04 -0800223 const void *e_void,
Patrick McHardyc4986732006-03-20 18:02:56 -0800224 const struct xt_target *target,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700225 void *targinfo,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700226 unsigned int hook_mask)
227{
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +0900228 const struct ipt_reject_info *rejinfo = targinfo;
Harald Welte2e4e6a12006-01-12 13:30:04 -0800229 const struct ipt_entry *e = e_void;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700230
Linus Torvalds1da177e2005-04-16 15:20:36 -0700231 if (rejinfo->with == IPT_ICMP_ECHOREPLY) {
232 printk("REJECT: ECHOREPLY no longer supported.\n");
233 return 0;
234 } else if (rejinfo->with == IPT_TCP_RESET) {
235 /* Must specify that it's a TCP packet */
236 if (e->ip.proto != IPPROTO_TCP
Jan Engelhardt6709dbb2007-02-07 15:11:19 -0800237 || (e->ip.invflags & XT_INV_PROTO)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700238 DEBUGP("REJECT: TCP_RESET invalid for non-tcp\n");
239 return 0;
240 }
241 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700242 return 1;
243}
244
Jan Engelhardt6709dbb2007-02-07 15:11:19 -0800245static struct xt_target ipt_reject_reg = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700246 .name = "REJECT",
Jan Engelhardt6709dbb2007-02-07 15:11:19 -0800247 .family = AF_INET,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700248 .target = reject,
Patrick McHardy1d5cd902006-03-20 18:01:14 -0800249 .targetsize = sizeof(struct ipt_reject_info),
250 .table = "filter",
251 .hooks = (1 << NF_IP_LOCAL_IN) | (1 << NF_IP_FORWARD) |
252 (1 << NF_IP_LOCAL_OUT),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700253 .checkentry = check,
254 .me = THIS_MODULE,
255};
256
Andrew Morton65b4b4e2006-03-28 16:37:06 -0800257static int __init ipt_reject_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700258{
Jan Engelhardt6709dbb2007-02-07 15:11:19 -0800259 return xt_register_target(&ipt_reject_reg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700260}
261
Andrew Morton65b4b4e2006-03-28 16:37:06 -0800262static void __exit ipt_reject_fini(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700263{
Jan Engelhardt6709dbb2007-02-07 15:11:19 -0800264 xt_unregister_target(&ipt_reject_reg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700265}
266
Andrew Morton65b4b4e2006-03-28 16:37:06 -0800267module_init(ipt_reject_init);
268module_exit(ipt_reject_fini);