blob: e4a1ddb386a731dfb0090a36d89d8ed4d6835fe3 [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;
Patrick McHardy6150bac2005-06-21 14:03:46 -070046 struct iphdr *iph = oldskb->nh.iph;
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. */
54 if (oldskb->nh.iph->frag_off & htons(IP_OFFSET))
55 return;
56
57 oth = skb_header_pointer(oldskb, oldskb->nh.iph->ihl * 4,
58 sizeof(_otcph), &_otcph);
59 if (oth == NULL)
60 return;
61
62 /* No RST for RST. */
63 if (oth->rst)
64 return;
65
Patrick McHardy6150bac2005-06-21 14:03:46 -070066 /* Check checksum */
Patrick McHardy96f6bf82006-04-06 14:19:24 -070067 if (nf_ip_checksum(oldskb, hook, iph->ihl * 4, 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
83 tcph = (struct tcphdr *)((u_int32_t*)nskb->nh.iph + nskb->nh.iph->ihl);
84
85 /* Swap source and dest */
86 tmp_addr = nskb->nh.iph->saddr;
87 nskb->nh.iph->saddr = nskb->nh.iph->daddr;
88 nskb->nh.iph->daddr = tmp_addr;
89 tmp_port = tcph->source;
90 tcph->source = tcph->dest;
91 tcph->dest = tmp_port;
92
93 /* Truncate to length (no data) */
94 tcph->doff = sizeof(struct tcphdr)/4;
95 skb_trim(nskb, nskb->nh.iph->ihl*4 + sizeof(struct tcphdr));
96 nskb->nh.iph->tot_len = htons(nskb->len);
97
98 if (tcph->ack) {
99 needs_ack = 0;
100 tcph->seq = oth->ack_seq;
101 tcph->ack_seq = 0;
102 } else {
103 needs_ack = 1;
104 tcph->ack_seq = htonl(ntohl(oth->seq) + oth->syn + oth->fin
105 + oldskb->len - oldskb->nh.iph->ihl*4
106 - (oth->doff<<2));
107 tcph->seq = 0;
108 }
109
110 /* Reset flags */
111 ((u_int8_t *)tcph)[13] = 0;
112 tcph->rst = 1;
113 tcph->ack = needs_ack;
114
115 tcph->window = 0;
116 tcph->urg_ptr = 0;
117
Patrick McHardyaf443b62006-11-28 20:10:21 -0800118 /* Adjust TCP checksum */
119 tcph->check = 0;
Frederik Deweerdtba7808e2007-02-04 20:15:27 -0800120 tcph->check = tcp_v4_check(sizeof(struct tcphdr),
Patrick McHardyaf443b62006-11-28 20:10:21 -0800121 nskb->nh.iph->saddr,
122 nskb->nh.iph->daddr,
123 csum_partial((char *)tcph,
124 sizeof(struct tcphdr), 0));
125
Patrick McHardy9d020022006-10-02 16:12:20 -0700126 /* Set DF, id = 0 */
127 nskb->nh.iph->frag_off = htons(IP_DF);
128 nskb->nh.iph->id = 0;
129
130 addr_type = RTN_UNSPEC;
131 if (hook != NF_IP_FORWARD
132#ifdef CONFIG_BRIDGE_NETFILTER
133 || (nskb->nf_bridge && nskb->nf_bridge->mask & BRNF_BRIDGED)
134#endif
135 )
136 addr_type = RTN_LOCAL;
137
138 if (ip_route_me_harder(&nskb, addr_type))
139 goto free_nskb;
140
Patrick McHardy4cf411d2006-08-05 00:58:33 -0700141 nskb->ip_summed = CHECKSUM_NONE;
Patrick McHardyaf443b62006-11-28 20:10:21 -0800142
Patrick McHardy9d020022006-10-02 16:12:20 -0700143 /* Adjust IP TTL */
Yasuyuki Kozakaie8eaedf2006-01-05 12:28:57 -0800144 nskb->nh.iph->ttl = dst_metric(nskb->dst, RTAX_HOPLIMIT);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700145
146 /* Adjust IP checksum */
147 nskb->nh.iph->check = 0;
148 nskb->nh.iph->check = ip_fast_csum((unsigned char *)nskb->nh.iph,
149 nskb->nh.iph->ihl);
150
151 /* "Never happens" */
152 if (nskb->len > dst_mtu(nskb->dst))
153 goto free_nskb;
154
155 nf_ct_attach(nskb, oldskb);
156
157 NF_HOOK(PF_INET, NF_IP_LOCAL_OUT, nskb, NULL, nskb->dst->dev,
158 dst_output);
159 return;
160
161 free_nskb:
162 kfree_skb(nskb);
163}
164
165static inline void send_unreach(struct sk_buff *skb_in, int code)
166{
167 icmp_send(skb_in, ICMP_DEST_UNREACH, code, 0);
168}
169
170static unsigned int reject(struct sk_buff **pskb,
171 const struct net_device *in,
172 const struct net_device *out,
173 unsigned int hooknum,
Patrick McHardyc4986732006-03-20 18:02:56 -0800174 const struct xt_target *target,
Patrick McHardyfe1cb102006-08-22 00:35:47 -0700175 const void *targinfo)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700176{
177 const struct ipt_reject_info *reject = targinfo;
178
179 /* Our naive response construction doesn't deal with IP
180 options, and probably shouldn't try. */
181 if ((*pskb)->nh.iph->ihl<<2 != sizeof(struct iphdr))
182 return NF_DROP;
183
184 /* WARNING: This code causes reentry within iptables.
185 This means that the iptables jump stack is now crap. We
186 must return an absolute verdict. --RR */
187 switch (reject->with) {
188 case IPT_ICMP_NET_UNREACHABLE:
189 send_unreach(*pskb, ICMP_NET_UNREACH);
190 break;
191 case IPT_ICMP_HOST_UNREACHABLE:
192 send_unreach(*pskb, ICMP_HOST_UNREACH);
193 break;
194 case IPT_ICMP_PROT_UNREACHABLE:
195 send_unreach(*pskb, ICMP_PROT_UNREACH);
196 break;
197 case IPT_ICMP_PORT_UNREACHABLE:
198 send_unreach(*pskb, ICMP_PORT_UNREACH);
199 break;
200 case IPT_ICMP_NET_PROHIBITED:
201 send_unreach(*pskb, ICMP_NET_ANO);
202 break;
203 case IPT_ICMP_HOST_PROHIBITED:
204 send_unreach(*pskb, ICMP_HOST_ANO);
205 break;
206 case IPT_ICMP_ADMIN_PROHIBITED:
207 send_unreach(*pskb, ICMP_PKT_FILTERED);
208 break;
209 case IPT_TCP_RESET:
210 send_reset(*pskb, hooknum);
211 case IPT_ICMP_ECHOREPLY:
212 /* Doesn't happen. */
213 break;
214 }
215
216 return NF_DROP;
217}
218
219static int check(const char *tablename,
Harald Welte2e4e6a12006-01-12 13:30:04 -0800220 const void *e_void,
Patrick McHardyc4986732006-03-20 18:02:56 -0800221 const struct xt_target *target,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700222 void *targinfo,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700223 unsigned int hook_mask)
224{
225 const struct ipt_reject_info *rejinfo = targinfo;
Harald Welte2e4e6a12006-01-12 13:30:04 -0800226 const struct ipt_entry *e = e_void;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700227
Linus Torvalds1da177e2005-04-16 15:20:36 -0700228 if (rejinfo->with == IPT_ICMP_ECHOREPLY) {
229 printk("REJECT: ECHOREPLY no longer supported.\n");
230 return 0;
231 } else if (rejinfo->with == IPT_TCP_RESET) {
232 /* Must specify that it's a TCP packet */
233 if (e->ip.proto != IPPROTO_TCP
Jan Engelhardt6709dbb2007-02-07 15:11:19 -0800234 || (e->ip.invflags & XT_INV_PROTO)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700235 DEBUGP("REJECT: TCP_RESET invalid for non-tcp\n");
236 return 0;
237 }
238 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700239 return 1;
240}
241
Jan Engelhardt6709dbb2007-02-07 15:11:19 -0800242static struct xt_target ipt_reject_reg = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700243 .name = "REJECT",
Jan Engelhardt6709dbb2007-02-07 15:11:19 -0800244 .family = AF_INET,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700245 .target = reject,
Patrick McHardy1d5cd902006-03-20 18:01:14 -0800246 .targetsize = sizeof(struct ipt_reject_info),
247 .table = "filter",
248 .hooks = (1 << NF_IP_LOCAL_IN) | (1 << NF_IP_FORWARD) |
249 (1 << NF_IP_LOCAL_OUT),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700250 .checkentry = check,
251 .me = THIS_MODULE,
252};
253
Andrew Morton65b4b4e2006-03-28 16:37:06 -0800254static int __init ipt_reject_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700255{
Jan Engelhardt6709dbb2007-02-07 15:11:19 -0800256 return xt_register_target(&ipt_reject_reg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700257}
258
Andrew Morton65b4b4e2006-03-28 16:37:06 -0800259static void __exit ipt_reject_fini(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700260{
Jan Engelhardt6709dbb2007-02-07 15:11:19 -0800261 xt_unregister_target(&ipt_reject_reg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700262}
263
Andrew Morton65b4b4e2006-03-28 16:37:06 -0800264module_init(ipt_reject_init);
265module_exit(ipt_reject_fini);