[NETFILTER]: Convert DEBUGP to pr_debug
[deliverable/linux.git] / net / ipv4 / netfilter / ipt_REJECT.c
CommitLineData
1da177e4
LT
1/*
2 * This is a module which is used for rejecting packets.
1da177e4
LT
3 */
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
1da177e4
LT
13#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>
6709dbbb 23#include <linux/netfilter/x_tables.h>
1da177e4
LT
24#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
1da177e4
LT
34/* Send RST reply */
35static void send_reset(struct sk_buff *oldskb, int hook)
36{
37 struct sk_buff *nskb;
eddc9ec5 38 struct iphdr *niph;
1da177e4 39 struct tcphdr _otcph, *oth, *tcph;
6a19d614
AV
40 __be16 tmp_port;
41 __be32 tmp_addr;
1da177e4 42 int needs_ack;
9d02002d 43 unsigned int addr_type;
1da177e4
LT
44
45 /* IP header checks: fragment. */
eddc9ec5 46 if (ip_hdr(oldskb)->frag_off & htons(IP_OFFSET))
1da177e4
LT
47 return;
48
c9bdd4b5 49 oth = skb_header_pointer(oldskb, ip_hdrlen(oldskb),
1da177e4
LT
50 sizeof(_otcph), &_otcph);
51 if (oth == NULL)
e905a9ed 52 return;
1da177e4
LT
53
54 /* No RST for RST. */
55 if (oth->rst)
56 return;
57
6150bacf 58 /* Check checksum */
c9bdd4b5 59 if (nf_ip_checksum(oldskb, hook, ip_hdrlen(oldskb), IPPROTO_TCP))
6150bacf
PM
60 return;
61
1da177e4
LT
62 /* We need a linear, writeable skb. We also need to expand
63 headroom in case hh_len of incoming interface < hh_len of
64 outgoing interface */
9d02002d 65 nskb = skb_copy_expand(oldskb, LL_MAX_HEADER, skb_tailroom(oldskb),
1da177e4 66 GFP_ATOMIC);
9d02002d 67 if (!nskb)
1da177e4 68 return;
1da177e4
LT
69
70 /* This packet will not be the same as the other: clear nf fields */
71 nf_reset(nskb);
82e91ffe 72 nskb->mark = 0;
984bc16c 73 skb_init_secmark(nskb);
1da177e4 74
bbf4a6bc
HX
75 skb_shinfo(nskb)->gso_size = 0;
76 skb_shinfo(nskb)->gso_segs = 0;
77 skb_shinfo(nskb)->gso_type = 0;
78
c9bdd4b5 79 tcph = (struct tcphdr *)(skb_network_header(nskb) + ip_hdrlen(nskb));
1da177e4
LT
80
81 /* Swap source and dest */
eddc9ec5
ACM
82 niph = ip_hdr(nskb);
83 tmp_addr = niph->saddr;
84 niph->saddr = niph->daddr;
85 niph->daddr = tmp_addr;
1da177e4
LT
86 tmp_port = tcph->source;
87 tcph->source = tcph->dest;
88 tcph->dest = tmp_port;
89
90 /* Truncate to length (no data) */
91 tcph->doff = sizeof(struct tcphdr)/4;
c9bdd4b5 92 skb_trim(nskb, ip_hdrlen(nskb) + sizeof(struct tcphdr));
eddc9ec5 93 niph->tot_len = htons(nskb->len);
1da177e4
LT
94
95 if (tcph->ack) {
96 needs_ack = 0;
97 tcph->seq = oth->ack_seq;
98 tcph->ack_seq = 0;
99 } else {
100 needs_ack = 1;
c9bdd4b5
ACM
101 tcph->ack_seq = htonl(ntohl(oth->seq) + oth->syn + oth->fin +
102 oldskb->len - ip_hdrlen(oldskb) -
103 (oth->doff << 2));
1da177e4
LT
104 tcph->seq = 0;
105 }
106
107 /* Reset flags */
108 ((u_int8_t *)tcph)[13] = 0;
109 tcph->rst = 1;
110 tcph->ack = needs_ack;
111
112 tcph->window = 0;
113 tcph->urg_ptr = 0;
114
af443b6d
PM
115 /* Adjust TCP checksum */
116 tcph->check = 0;
ba7808ea 117 tcph->check = tcp_v4_check(sizeof(struct tcphdr),
eddc9ec5 118 niph->saddr, niph->daddr,
a47362a2 119 csum_partial(tcph,
af443b6d
PM
120 sizeof(struct tcphdr), 0));
121
9d02002d 122 /* Set DF, id = 0 */
eddc9ec5
ACM
123 niph->frag_off = htons(IP_DF);
124 niph->id = 0;
9d02002d
PM
125
126 addr_type = RTN_UNSPEC;
127 if (hook != NF_IP_FORWARD
128#ifdef CONFIG_BRIDGE_NETFILTER
129 || (nskb->nf_bridge && nskb->nf_bridge->mask & BRNF_BRIDGED)
130#endif
131 )
132 addr_type = RTN_LOCAL;
133
134 if (ip_route_me_harder(&nskb, addr_type))
135 goto free_nskb;
136
4cf411de 137 nskb->ip_summed = CHECKSUM_NONE;
af443b6d 138
9d02002d 139 /* Adjust IP TTL */
eddc9ec5 140 niph->ttl = dst_metric(nskb->dst, RTAX_HOPLIMIT);
1da177e4
LT
141
142 /* Adjust IP checksum */
eddc9ec5
ACM
143 niph->check = 0;
144 niph->check = ip_fast_csum(skb_network_header(nskb), niph->ihl);
1da177e4
LT
145
146 /* "Never happens" */
147 if (nskb->len > dst_mtu(nskb->dst))
148 goto free_nskb;
149
150 nf_ct_attach(nskb, oldskb);
151
152 NF_HOOK(PF_INET, NF_IP_LOCAL_OUT, nskb, NULL, nskb->dst->dev,
153 dst_output);
154 return;
155
156 free_nskb:
157 kfree_skb(nskb);
158}
159
160static inline void send_unreach(struct sk_buff *skb_in, int code)
161{
162 icmp_send(skb_in, ICMP_DEST_UNREACH, code, 0);
e905a9ed 163}
1da177e4
LT
164
165static unsigned int reject(struct sk_buff **pskb,
166 const struct net_device *in,
167 const struct net_device *out,
168 unsigned int hooknum,
c4986734 169 const struct xt_target *target,
fe1cb108 170 const void *targinfo)
1da177e4
LT
171{
172 const struct ipt_reject_info *reject = targinfo;
173
174 /* Our naive response construction doesn't deal with IP
e905a9ed 175 options, and probably shouldn't try. */
c9bdd4b5 176 if (ip_hdrlen(*pskb) != sizeof(struct iphdr))
1da177e4
LT
177 return NF_DROP;
178
179 /* WARNING: This code causes reentry within iptables.
180 This means that the iptables jump stack is now crap. We
181 must return an absolute verdict. --RR */
e905a9ed
YH
182 switch (reject->with) {
183 case IPT_ICMP_NET_UNREACHABLE:
184 send_unreach(*pskb, ICMP_NET_UNREACH);
185 break;
186 case IPT_ICMP_HOST_UNREACHABLE:
187 send_unreach(*pskb, ICMP_HOST_UNREACH);
188 break;
189 case IPT_ICMP_PROT_UNREACHABLE:
190 send_unreach(*pskb, ICMP_PROT_UNREACH);
191 break;
192 case IPT_ICMP_PORT_UNREACHABLE:
193 send_unreach(*pskb, ICMP_PORT_UNREACH);
194 break;
195 case IPT_ICMP_NET_PROHIBITED:
196 send_unreach(*pskb, ICMP_NET_ANO);
197 break;
1da177e4 198 case IPT_ICMP_HOST_PROHIBITED:
e905a9ed
YH
199 send_unreach(*pskb, ICMP_HOST_ANO);
200 break;
201 case IPT_ICMP_ADMIN_PROHIBITED:
1da177e4
LT
202 send_unreach(*pskb, ICMP_PKT_FILTERED);
203 break;
204 case IPT_TCP_RESET:
205 send_reset(*pskb, hooknum);
206 case IPT_ICMP_ECHOREPLY:
207 /* Doesn't happen. */
208 break;
209 }
210
211 return NF_DROP;
212}
213
e1931b78
JE
214static bool check(const char *tablename,
215 const void *e_void,
216 const struct xt_target *target,
217 void *targinfo,
218 unsigned int hook_mask)
1da177e4 219{
e905a9ed 220 const struct ipt_reject_info *rejinfo = targinfo;
2e4e6a17 221 const struct ipt_entry *e = e_void;
1da177e4 222
1da177e4 223 if (rejinfo->with == IPT_ICMP_ECHOREPLY) {
0d53778e 224 printk("ipt_REJECT: ECHOREPLY no longer supported.\n");
e1931b78 225 return false;
1da177e4
LT
226 } else if (rejinfo->with == IPT_TCP_RESET) {
227 /* Must specify that it's a TCP packet */
228 if (e->ip.proto != IPPROTO_TCP
6709dbbb 229 || (e->ip.invflags & XT_INV_PROTO)) {
0d53778e 230 printk("ipt_REJECT: TCP_RESET invalid for non-tcp\n");
e1931b78 231 return false;
1da177e4
LT
232 }
233 }
e1931b78 234 return true;
1da177e4
LT
235}
236
9f15c530 237static struct xt_target ipt_reject_reg __read_mostly = {
1da177e4 238 .name = "REJECT",
6709dbbb 239 .family = AF_INET,
1da177e4 240 .target = reject,
1d5cd909
PM
241 .targetsize = sizeof(struct ipt_reject_info),
242 .table = "filter",
243 .hooks = (1 << NF_IP_LOCAL_IN) | (1 << NF_IP_FORWARD) |
244 (1 << NF_IP_LOCAL_OUT),
1da177e4
LT
245 .checkentry = check,
246 .me = THIS_MODULE,
247};
248
65b4b4e8 249static int __init ipt_reject_init(void)
1da177e4 250{
6709dbbb 251 return xt_register_target(&ipt_reject_reg);
1da177e4
LT
252}
253
65b4b4e8 254static void __exit ipt_reject_fini(void)
1da177e4 255{
6709dbbb 256 xt_unregister_target(&ipt_reject_reg);
1da177e4
LT
257}
258
65b4b4e8
AM
259module_init(ipt_reject_init);
260module_exit(ipt_reject_fini);
This page took 0.27318 seconds and 5 git commands to generate.