]> err.no Git - linux-2.6/blob - net/ipv4/netfilter/ipt_REJECT.c
/home/lenb/src/to-linus branch 'acpi-2.6.12'
[linux-2.6] / net / ipv4 / netfilter / ipt_REJECT.c
1 /*
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
15 #include <linux/config.h>
16 #include <linux/module.h>
17 #include <linux/skbuff.h>
18 #include <linux/ip.h>
19 #include <linux/udp.h>
20 #include <linux/icmp.h>
21 #include <net/icmp.h>
22 #include <net/ip.h>
23 #include <net/tcp.h>
24 #include <net/route.h>
25 #include <net/dst.h>
26 #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
32 MODULE_LICENSE("GPL");
33 MODULE_AUTHOR("Netfilter Core Team <coreteam@netfilter.org>");
34 MODULE_DESCRIPTION("iptables REJECT target module");
35
36 #if 0
37 #define DEBUGP printk
38 #else
39 #define DEBUGP(format, args...)
40 #endif
41
42 static inline struct rtable *route_reverse(struct sk_buff *skb, 
43                                            struct tcphdr *tcph, int hook)
44 {
45         struct iphdr *iph = skb->nh.iph;
46         struct dst_entry *odst;
47         struct flowi fl = {};
48         struct rtable *rt;
49
50         /* We don't require ip forwarding to be enabled to be able to
51          * send a RST reply for bridged traffic. */
52         if (hook != NF_IP_FORWARD
53 #ifdef CONFIG_BRIDGE_NETFILTER
54             || (skb->nf_bridge && skb->nf_bridge->mask & BRNF_BRIDGED)
55 #endif
56            ) {
57                 fl.nl_u.ip4_u.daddr = iph->saddr;
58                 if (hook == NF_IP_LOCAL_IN)
59                         fl.nl_u.ip4_u.saddr = iph->daddr;
60                 fl.nl_u.ip4_u.tos = RT_TOS(iph->tos);
61
62                 if (ip_route_output_key(&rt, &fl) != 0)
63                         return NULL;
64         } else {
65                 /* non-local src, find valid iif to satisfy
66                  * rp-filter when calling ip_route_input. */
67                 fl.nl_u.ip4_u.daddr = iph->daddr;
68                 if (ip_route_output_key(&rt, &fl) != 0)
69                         return NULL;
70
71                 odst = skb->dst;
72                 if (ip_route_input(skb, iph->saddr, iph->daddr,
73                                    RT_TOS(iph->tos), rt->u.dst.dev) != 0) {
74                         dst_release(&rt->u.dst);
75                         return NULL;
76                 }
77                 dst_release(&rt->u.dst);
78                 rt = (struct rtable *)skb->dst;
79                 skb->dst = odst;
80
81                 fl.nl_u.ip4_u.daddr = iph->saddr;
82                 fl.nl_u.ip4_u.saddr = iph->daddr;
83                 fl.nl_u.ip4_u.tos = RT_TOS(iph->tos);
84         }
85
86         if (rt->u.dst.error) {
87                 dst_release(&rt->u.dst);
88                 return NULL;
89         }
90
91         fl.proto = IPPROTO_TCP;
92         fl.fl_ip_sport = tcph->dest;
93         fl.fl_ip_dport = tcph->source;
94
95         if (xfrm_lookup((struct dst_entry **)&rt, &fl, NULL, 0)) {
96                 dst_release(&rt->u.dst);
97                 rt = NULL;
98         }
99
100         return rt;
101 }
102
103 /* Send RST reply */
104 static void send_reset(struct sk_buff *oldskb, int hook)
105 {
106         struct sk_buff *nskb;
107         struct iphdr *iph = oldskb->nh.iph;
108         struct tcphdr _otcph, *oth, *tcph;
109         struct rtable *rt;
110         u_int16_t tmp_port;
111         u_int32_t tmp_addr;
112         unsigned int tcplen;
113         int needs_ack;
114         int hh_len;
115
116         /* IP header checks: fragment. */
117         if (oldskb->nh.iph->frag_off & htons(IP_OFFSET))
118                 return;
119
120         oth = skb_header_pointer(oldskb, oldskb->nh.iph->ihl * 4,
121                                  sizeof(_otcph), &_otcph);
122         if (oth == NULL)
123                 return;
124
125         /* No RST for RST. */
126         if (oth->rst)
127                 return;
128
129         /* Check checksum */
130         tcplen = oldskb->len - iph->ihl * 4;
131         if (((hook != NF_IP_LOCAL_IN && oldskb->ip_summed != CHECKSUM_HW) ||
132              (hook == NF_IP_LOCAL_IN &&
133               oldskb->ip_summed != CHECKSUM_UNNECESSARY)) &&
134             csum_tcpudp_magic(iph->saddr, iph->daddr, tcplen, IPPROTO_TCP,
135                               oldskb->ip_summed == CHECKSUM_HW ? oldskb->csum :
136                               skb_checksum(oldskb, iph->ihl * 4, tcplen, 0)))
137                 return;
138
139         if ((rt = route_reverse(oldskb, oth, hook)) == NULL)
140                 return;
141
142         hh_len = LL_RESERVED_SPACE(rt->u.dst.dev);
143
144         /* We need a linear, writeable skb.  We also need to expand
145            headroom in case hh_len of incoming interface < hh_len of
146            outgoing interface */
147         nskb = skb_copy_expand(oldskb, hh_len, skb_tailroom(oldskb),
148                                GFP_ATOMIC);
149         if (!nskb) {
150                 dst_release(&rt->u.dst);
151                 return;
152         }
153
154         dst_release(nskb->dst);
155         nskb->dst = &rt->u.dst;
156
157         /* This packet will not be the same as the other: clear nf fields */
158         nf_reset(nskb);
159         nskb->nfcache = 0;
160         nskb->nfmark = 0;
161 #ifdef CONFIG_BRIDGE_NETFILTER
162         nf_bridge_put(nskb->nf_bridge);
163         nskb->nf_bridge = NULL;
164 #endif
165
166         tcph = (struct tcphdr *)((u_int32_t*)nskb->nh.iph + nskb->nh.iph->ihl);
167
168         /* Swap source and dest */
169         tmp_addr = nskb->nh.iph->saddr;
170         nskb->nh.iph->saddr = nskb->nh.iph->daddr;
171         nskb->nh.iph->daddr = tmp_addr;
172         tmp_port = tcph->source;
173         tcph->source = tcph->dest;
174         tcph->dest = tmp_port;
175
176         /* Truncate to length (no data) */
177         tcph->doff = sizeof(struct tcphdr)/4;
178         skb_trim(nskb, nskb->nh.iph->ihl*4 + sizeof(struct tcphdr));
179         nskb->nh.iph->tot_len = htons(nskb->len);
180
181         if (tcph->ack) {
182                 needs_ack = 0;
183                 tcph->seq = oth->ack_seq;
184                 tcph->ack_seq = 0;
185         } else {
186                 needs_ack = 1;
187                 tcph->ack_seq = htonl(ntohl(oth->seq) + oth->syn + oth->fin
188                                       + oldskb->len - oldskb->nh.iph->ihl*4
189                                       - (oth->doff<<2));
190                 tcph->seq = 0;
191         }
192
193         /* Reset flags */
194         ((u_int8_t *)tcph)[13] = 0;
195         tcph->rst = 1;
196         tcph->ack = needs_ack;
197
198         tcph->window = 0;
199         tcph->urg_ptr = 0;
200
201         /* Adjust TCP checksum */
202         tcph->check = 0;
203         tcph->check = tcp_v4_check(tcph, sizeof(struct tcphdr),
204                                    nskb->nh.iph->saddr,
205                                    nskb->nh.iph->daddr,
206                                    csum_partial((char *)tcph,
207                                                 sizeof(struct tcphdr), 0));
208
209         /* Adjust IP TTL, DF */
210         nskb->nh.iph->ttl = MAXTTL;
211         /* Set DF, id = 0 */
212         nskb->nh.iph->frag_off = htons(IP_DF);
213         nskb->nh.iph->id = 0;
214
215         /* Adjust IP checksum */
216         nskb->nh.iph->check = 0;
217         nskb->nh.iph->check = ip_fast_csum((unsigned char *)nskb->nh.iph, 
218                                            nskb->nh.iph->ihl);
219
220         /* "Never happens" */
221         if (nskb->len > dst_mtu(nskb->dst))
222                 goto free_nskb;
223
224         nf_ct_attach(nskb, oldskb);
225
226         NF_HOOK(PF_INET, NF_IP_LOCAL_OUT, nskb, NULL, nskb->dst->dev,
227                 dst_output);
228         return;
229
230  free_nskb:
231         kfree_skb(nskb);
232 }
233
234 static inline void send_unreach(struct sk_buff *skb_in, int code)
235 {
236         icmp_send(skb_in, ICMP_DEST_UNREACH, code, 0);
237 }       
238
239 static unsigned int reject(struct sk_buff **pskb,
240                            const struct net_device *in,
241                            const struct net_device *out,
242                            unsigned int hooknum,
243                            const void *targinfo,
244                            void *userinfo)
245 {
246         const struct ipt_reject_info *reject = targinfo;
247
248         /* Our naive response construction doesn't deal with IP
249            options, and probably shouldn't try. */
250         if ((*pskb)->nh.iph->ihl<<2 != sizeof(struct iphdr))
251                 return NF_DROP;
252
253         /* WARNING: This code causes reentry within iptables.
254            This means that the iptables jump stack is now crap.  We
255            must return an absolute verdict. --RR */
256         switch (reject->with) {
257         case IPT_ICMP_NET_UNREACHABLE:
258                 send_unreach(*pskb, ICMP_NET_UNREACH);
259                 break;
260         case IPT_ICMP_HOST_UNREACHABLE:
261                 send_unreach(*pskb, ICMP_HOST_UNREACH);
262                 break;
263         case IPT_ICMP_PROT_UNREACHABLE:
264                 send_unreach(*pskb, ICMP_PROT_UNREACH);
265                 break;
266         case IPT_ICMP_PORT_UNREACHABLE:
267                 send_unreach(*pskb, ICMP_PORT_UNREACH);
268                 break;
269         case IPT_ICMP_NET_PROHIBITED:
270                 send_unreach(*pskb, ICMP_NET_ANO);
271                 break;
272         case IPT_ICMP_HOST_PROHIBITED:
273                 send_unreach(*pskb, ICMP_HOST_ANO);
274                 break;
275         case IPT_ICMP_ADMIN_PROHIBITED:
276                 send_unreach(*pskb, ICMP_PKT_FILTERED);
277                 break;
278         case IPT_TCP_RESET:
279                 send_reset(*pskb, hooknum);
280         case IPT_ICMP_ECHOREPLY:
281                 /* Doesn't happen. */
282                 break;
283         }
284
285         return NF_DROP;
286 }
287
288 static int check(const char *tablename,
289                  const struct ipt_entry *e,
290                  void *targinfo,
291                  unsigned int targinfosize,
292                  unsigned int hook_mask)
293 {
294         const struct ipt_reject_info *rejinfo = targinfo;
295
296         if (targinfosize != IPT_ALIGN(sizeof(struct ipt_reject_info))) {
297                 DEBUGP("REJECT: targinfosize %u != 0\n", targinfosize);
298                 return 0;
299         }
300
301         /* Only allow these for packet filtering. */
302         if (strcmp(tablename, "filter") != 0) {
303                 DEBUGP("REJECT: bad table `%s'.\n", tablename);
304                 return 0;
305         }
306         if ((hook_mask & ~((1 << NF_IP_LOCAL_IN)
307                            | (1 << NF_IP_FORWARD)
308                            | (1 << NF_IP_LOCAL_OUT))) != 0) {
309                 DEBUGP("REJECT: bad hook mask %X\n", hook_mask);
310                 return 0;
311         }
312
313         if (rejinfo->with == IPT_ICMP_ECHOREPLY) {
314                 printk("REJECT: ECHOREPLY no longer supported.\n");
315                 return 0;
316         } else if (rejinfo->with == IPT_TCP_RESET) {
317                 /* Must specify that it's a TCP packet */
318                 if (e->ip.proto != IPPROTO_TCP
319                     || (e->ip.invflags & IPT_INV_PROTO)) {
320                         DEBUGP("REJECT: TCP_RESET invalid for non-tcp\n");
321                         return 0;
322                 }
323         }
324
325         return 1;
326 }
327
328 static struct ipt_target ipt_reject_reg = {
329         .name           = "REJECT",
330         .target         = reject,
331         .checkentry     = check,
332         .me             = THIS_MODULE,
333 };
334
335 static int __init init(void)
336 {
337         return ipt_register_target(&ipt_reject_reg);
338 }
339
340 static void __exit fini(void)
341 {
342         ipt_unregister_target(&ipt_reject_reg);
343 }
344
345 module_init(init);
346 module_exit(fini);