blob: dd5432c3f36531706e22db44e641f0b1c69251f8 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * This is a module which is used for rejecting packets.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003 */
4
5/* (C) 1999-2001 Paul `Rusty' Russell
6 * (C) 2002-2004 Netfilter Core Team <coreteam@netfilter.org>
7 *
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License version 2 as
10 * published by the Free Software Foundation.
11 */
12
Linus Torvalds1da177e2005-04-16 15:20:36 -070013#include <linux/module.h>
14#include <linux/skbuff.h>
15#include <linux/ip.h>
16#include <linux/udp.h>
17#include <linux/icmp.h>
18#include <net/icmp.h>
19#include <net/ip.h>
20#include <net/tcp.h>
21#include <net/route.h>
22#include <net/dst.h>
Jan Engelhardt6709dbb2007-02-07 15:11:19 -080023#include <linux/netfilter/x_tables.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070024#include <linux/netfilter_ipv4/ip_tables.h>
25#include <linux/netfilter_ipv4/ipt_REJECT.h>
26#ifdef CONFIG_BRIDGE_NETFILTER
27#include <linux/netfilter_bridge.h>
28#endif
29
30MODULE_LICENSE("GPL");
31MODULE_AUTHOR("Netfilter Core Team <coreteam@netfilter.org>");
32MODULE_DESCRIPTION("iptables REJECT target module");
33
34#if 0
35#define DEBUGP printk
36#else
37#define DEBUGP(format, args...)
38#endif
39
Linus Torvalds1da177e2005-04-16 15:20:36 -070040/* Send RST reply */
41static void send_reset(struct sk_buff *oldskb, int hook)
42{
43 struct sk_buff *nskb;
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -070044 struct iphdr *niph;
Linus Torvalds1da177e2005-04-16 15:20:36 -070045 struct tcphdr _otcph, *oth, *tcph;
Al Viro6a19d612006-09-28 14:22:24 -070046 __be16 tmp_port;
47 __be32 tmp_addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -070048 int needs_ack;
Patrick McHardy9d020022006-10-02 16:12:20 -070049 unsigned int addr_type;
Linus Torvalds1da177e2005-04-16 15:20:36 -070050
51 /* IP header checks: fragment. */
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -070052 if (ip_hdr(oldskb)->frag_off & htons(IP_OFFSET))
Linus Torvalds1da177e2005-04-16 15:20:36 -070053 return;
54
Arnaldo Carvalho de Meloc9bdd4b2007-03-12 20:09:15 -030055 oth = skb_header_pointer(oldskb, ip_hdrlen(oldskb),
Linus Torvalds1da177e2005-04-16 15:20:36 -070056 sizeof(_otcph), &_otcph);
57 if (oth == NULL)
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +090058 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -070059
60 /* No RST for RST. */
61 if (oth->rst)
62 return;
63
Patrick McHardy6150bac2005-06-21 14:03:46 -070064 /* Check checksum */
Arnaldo Carvalho de Meloc9bdd4b2007-03-12 20:09:15 -030065 if (nf_ip_checksum(oldskb, hook, ip_hdrlen(oldskb), IPPROTO_TCP))
Patrick McHardy6150bac2005-06-21 14:03:46 -070066 return;
67
Linus Torvalds1da177e2005-04-16 15:20:36 -070068 /* We need a linear, writeable skb. We also need to expand
69 headroom in case hh_len of incoming interface < hh_len of
70 outgoing interface */
Patrick McHardy9d020022006-10-02 16:12:20 -070071 nskb = skb_copy_expand(oldskb, LL_MAX_HEADER, skb_tailroom(oldskb),
Linus Torvalds1da177e2005-04-16 15:20:36 -070072 GFP_ATOMIC);
Patrick McHardy9d020022006-10-02 16:12:20 -070073 if (!nskb)
Linus Torvalds1da177e2005-04-16 15:20:36 -070074 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -070075
76 /* This packet will not be the same as the other: clear nf fields */
77 nf_reset(nskb);
Thomas Graf82e91ff2006-11-09 15:19:14 -080078 nskb->mark = 0;
James Morris984bc162006-06-09 00:29:17 -070079 skb_init_secmark(nskb);
Linus Torvalds1da177e2005-04-16 15:20:36 -070080
Herbert Xubbf4a6b2007-02-13 12:32:58 -080081 skb_shinfo(nskb)->gso_size = 0;
82 skb_shinfo(nskb)->gso_segs = 0;
83 skb_shinfo(nskb)->gso_type = 0;
84
Arnaldo Carvalho de Meloc9bdd4b2007-03-12 20:09:15 -030085 tcph = (struct tcphdr *)(skb_network_header(nskb) + ip_hdrlen(nskb));
Linus Torvalds1da177e2005-04-16 15:20:36 -070086
87 /* Swap source and dest */
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -070088 niph = ip_hdr(nskb);
89 tmp_addr = niph->saddr;
90 niph->saddr = niph->daddr;
91 niph->daddr = tmp_addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -070092 tmp_port = tcph->source;
93 tcph->source = tcph->dest;
94 tcph->dest = tmp_port;
95
96 /* Truncate to length (no data) */
97 tcph->doff = sizeof(struct tcphdr)/4;
Arnaldo Carvalho de Meloc9bdd4b2007-03-12 20:09:15 -030098 skb_trim(nskb, ip_hdrlen(nskb) + sizeof(struct tcphdr));
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -070099 niph->tot_len = htons(nskb->len);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700100
101 if (tcph->ack) {
102 needs_ack = 0;
103 tcph->seq = oth->ack_seq;
104 tcph->ack_seq = 0;
105 } else {
106 needs_ack = 1;
Arnaldo Carvalho de Meloc9bdd4b2007-03-12 20:09:15 -0300107 tcph->ack_seq = htonl(ntohl(oth->seq) + oth->syn + oth->fin +
108 oldskb->len - ip_hdrlen(oldskb) -
109 (oth->doff << 2));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700110 tcph->seq = 0;
111 }
112
113 /* Reset flags */
114 ((u_int8_t *)tcph)[13] = 0;
115 tcph->rst = 1;
116 tcph->ack = needs_ack;
117
118 tcph->window = 0;
119 tcph->urg_ptr = 0;
120
Patrick McHardyaf443b62006-11-28 20:10:21 -0800121 /* Adjust TCP checksum */
122 tcph->check = 0;
Frederik Deweerdtba7808e2007-02-04 20:15:27 -0800123 tcph->check = tcp_v4_check(sizeof(struct tcphdr),
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -0700124 niph->saddr, niph->daddr,
Jan Engelhardta47362a2007-07-07 22:16:55 -0700125 csum_partial(tcph,
Patrick McHardyaf443b62006-11-28 20:10:21 -0800126 sizeof(struct tcphdr), 0));
127
Patrick McHardy9d020022006-10-02 16:12:20 -0700128 /* Set DF, id = 0 */
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -0700129 niph->frag_off = htons(IP_DF);
130 niph->id = 0;
Patrick McHardy9d020022006-10-02 16:12:20 -0700131
132 addr_type = RTN_UNSPEC;
133 if (hook != NF_IP_FORWARD
134#ifdef CONFIG_BRIDGE_NETFILTER
135 || (nskb->nf_bridge && nskb->nf_bridge->mask & BRNF_BRIDGED)
136#endif
137 )
138 addr_type = RTN_LOCAL;
139
140 if (ip_route_me_harder(&nskb, addr_type))
141 goto free_nskb;
142
Patrick McHardy4cf411d2006-08-05 00:58:33 -0700143 nskb->ip_summed = CHECKSUM_NONE;
Patrick McHardyaf443b62006-11-28 20:10:21 -0800144
Patrick McHardy9d020022006-10-02 16:12:20 -0700145 /* Adjust IP TTL */
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -0700146 niph->ttl = dst_metric(nskb->dst, RTAX_HOPLIMIT);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147
148 /* Adjust IP checksum */
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -0700149 niph->check = 0;
150 niph->check = ip_fast_csum(skb_network_header(nskb), niph->ihl);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700151
152 /* "Never happens" */
153 if (nskb->len > dst_mtu(nskb->dst))
154 goto free_nskb;
155
156 nf_ct_attach(nskb, oldskb);
157
158 NF_HOOK(PF_INET, NF_IP_LOCAL_OUT, nskb, NULL, nskb->dst->dev,
159 dst_output);
160 return;
161
162 free_nskb:
163 kfree_skb(nskb);
164}
165
166static inline void send_unreach(struct sk_buff *skb_in, int code)
167{
168 icmp_send(skb_in, ICMP_DEST_UNREACH, code, 0);
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +0900169}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700170
171static unsigned int reject(struct sk_buff **pskb,
172 const struct net_device *in,
173 const struct net_device *out,
174 unsigned int hooknum,
Patrick McHardyc4986732006-03-20 18:02:56 -0800175 const struct xt_target *target,
Patrick McHardyfe1cb102006-08-22 00:35:47 -0700176 const void *targinfo)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700177{
178 const struct ipt_reject_info *reject = targinfo;
179
180 /* Our naive response construction doesn't deal with IP
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +0900181 options, and probably shouldn't try. */
Arnaldo Carvalho de Meloc9bdd4b2007-03-12 20:09:15 -0300182 if (ip_hdrlen(*pskb) != sizeof(struct iphdr))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700183 return NF_DROP;
184
185 /* WARNING: This code causes reentry within iptables.
186 This means that the iptables jump stack is now crap. We
187 must return an absolute verdict. --RR */
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +0900188 switch (reject->with) {
189 case IPT_ICMP_NET_UNREACHABLE:
190 send_unreach(*pskb, ICMP_NET_UNREACH);
191 break;
192 case IPT_ICMP_HOST_UNREACHABLE:
193 send_unreach(*pskb, ICMP_HOST_UNREACH);
194 break;
195 case IPT_ICMP_PROT_UNREACHABLE:
196 send_unreach(*pskb, ICMP_PROT_UNREACH);
197 break;
198 case IPT_ICMP_PORT_UNREACHABLE:
199 send_unreach(*pskb, ICMP_PORT_UNREACH);
200 break;
201 case IPT_ICMP_NET_PROHIBITED:
202 send_unreach(*pskb, ICMP_NET_ANO);
203 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700204 case IPT_ICMP_HOST_PROHIBITED:
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +0900205 send_unreach(*pskb, ICMP_HOST_ANO);
206 break;
207 case IPT_ICMP_ADMIN_PROHIBITED:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700208 send_unreach(*pskb, ICMP_PKT_FILTERED);
209 break;
210 case IPT_TCP_RESET:
211 send_reset(*pskb, hooknum);
212 case IPT_ICMP_ECHOREPLY:
213 /* Doesn't happen. */
214 break;
215 }
216
217 return NF_DROP;
218}
219
Jan Engelhardte1931b72007-07-07 22:16:26 -0700220static bool check(const char *tablename,
221 const void *e_void,
222 const struct xt_target *target,
223 void *targinfo,
224 unsigned int hook_mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700225{
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +0900226 const struct ipt_reject_info *rejinfo = targinfo;
Harald Welte2e4e6a12006-01-12 13:30:04 -0800227 const struct ipt_entry *e = e_void;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700228
Linus Torvalds1da177e2005-04-16 15:20:36 -0700229 if (rejinfo->with == IPT_ICMP_ECHOREPLY) {
230 printk("REJECT: ECHOREPLY no longer supported.\n");
Jan Engelhardte1931b72007-07-07 22:16:26 -0700231 return false;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700232 } else if (rejinfo->with == IPT_TCP_RESET) {
233 /* Must specify that it's a TCP packet */
234 if (e->ip.proto != IPPROTO_TCP
Jan Engelhardt6709dbb2007-02-07 15:11:19 -0800235 || (e->ip.invflags & XT_INV_PROTO)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700236 DEBUGP("REJECT: TCP_RESET invalid for non-tcp\n");
Jan Engelhardte1931b72007-07-07 22:16:26 -0700237 return false;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700238 }
239 }
Jan Engelhardte1931b72007-07-07 22:16:26 -0700240 return true;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700241}
242
Patrick McHardy9f15c532007-07-07 22:22:02 -0700243static struct xt_target ipt_reject_reg __read_mostly = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700244 .name = "REJECT",
Jan Engelhardt6709dbb2007-02-07 15:11:19 -0800245 .family = AF_INET,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700246 .target = reject,
Patrick McHardy1d5cd902006-03-20 18:01:14 -0800247 .targetsize = sizeof(struct ipt_reject_info),
248 .table = "filter",
249 .hooks = (1 << NF_IP_LOCAL_IN) | (1 << NF_IP_FORWARD) |
250 (1 << NF_IP_LOCAL_OUT),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700251 .checkentry = check,
252 .me = THIS_MODULE,
253};
254
Andrew Morton65b4b4e2006-03-28 16:37:06 -0800255static int __init ipt_reject_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700256{
Jan Engelhardt6709dbb2007-02-07 15:11:19 -0800257 return xt_register_target(&ipt_reject_reg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700258}
259
Andrew Morton65b4b4e2006-03-28 16:37:06 -0800260static void __exit ipt_reject_fini(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700261{
Jan Engelhardt6709dbb2007-02-07 15:11:19 -0800262 xt_unregister_target(&ipt_reject_reg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700263}
264
Andrew Morton65b4b4e2006-03-28 16:37:06 -0800265module_init(ipt_reject_init);
266module_exit(ipt_reject_fini);