2 * This is a module which is used for rejecting packets.
5 /* (C) 1999-2001 Paul `Rusty' Russell
6 * (C) 2002-2004 Netfilter Core Team <coreteam@netfilter.org>
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.
13 #include <linux/module.h>
14 #include <linux/skbuff.h>
16 #include <linux/udp.h>
17 #include <linux/icmp.h>
21 #include <net/route.h>
23 #include <linux/netfilter/x_tables.h>
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>
30 MODULE_LICENSE("GPL");
31 MODULE_AUTHOR("Netfilter Core Team <coreteam@netfilter.org>");
32 MODULE_DESCRIPTION("Xtables: packet \"rejection\" target for IPv4");
35 static void send_reset(struct sk_buff *oldskb, int hook)
39 struct tcphdr _otcph, *oth, *tcph;
43 unsigned int addr_type;
45 /* IP header checks: fragment. */
46 if (ip_hdr(oldskb)->frag_off & htons(IP_OFFSET))
49 oth = skb_header_pointer(oldskb, ip_hdrlen(oldskb),
50 sizeof(_otcph), &_otcph);
59 if (nf_ip_checksum(oldskb, hook, ip_hdrlen(oldskb), IPPROTO_TCP))
62 /* We need a linear, writeable skb. We also need to expand
63 headroom in case hh_len of incoming interface < hh_len of
65 nskb = skb_copy_expand(oldskb, LL_MAX_HEADER, skb_tailroom(oldskb),
70 /* This packet will not be the same as the other: clear nf fields */
73 skb_init_secmark(nskb);
75 skb_shinfo(nskb)->gso_size = 0;
76 skb_shinfo(nskb)->gso_segs = 0;
77 skb_shinfo(nskb)->gso_type = 0;
79 tcph = (struct tcphdr *)(skb_network_header(nskb) + ip_hdrlen(nskb));
81 /* Swap source and dest */
83 tmp_addr = niph->saddr;
84 niph->saddr = niph->daddr;
85 niph->daddr = tmp_addr;
86 tmp_port = tcph->source;
87 tcph->source = tcph->dest;
88 tcph->dest = tmp_port;
90 /* Truncate to length (no data) */
91 tcph->doff = sizeof(struct tcphdr)/4;
92 skb_trim(nskb, ip_hdrlen(nskb) + sizeof(struct tcphdr));
96 tcph->seq = oth->ack_seq;
100 tcph->ack_seq = htonl(ntohl(oth->seq) + oth->syn + oth->fin +
101 oldskb->len - ip_hdrlen(oldskb) -
107 ((u_int8_t *)tcph)[13] = 0;
109 tcph->ack = needs_ack;
114 /* Adjust TCP checksum */
116 tcph->check = tcp_v4_check(sizeof(struct tcphdr),
117 niph->saddr, niph->daddr,
119 sizeof(struct tcphdr), 0));
122 niph->frag_off = htons(IP_DF);
125 addr_type = RTN_UNSPEC;
126 if (hook != NF_INET_FORWARD
127 #ifdef CONFIG_BRIDGE_NETFILTER
128 || (nskb->nf_bridge && nskb->nf_bridge->mask & BRNF_BRIDGED)
131 addr_type = RTN_LOCAL;
133 if (ip_route_me_harder(nskb, addr_type))
136 nskb->ip_summed = CHECKSUM_NONE;
139 niph->ttl = dst_metric(nskb->dst, RTAX_HOPLIMIT);
141 /* "Never happens" */
142 if (nskb->len > dst_mtu(nskb->dst))
145 nf_ct_attach(nskb, oldskb);
154 static inline void send_unreach(struct sk_buff *skb_in, int code)
156 icmp_send(skb_in, ICMP_DEST_UNREACH, code, 0);
160 reject_tg(struct sk_buff *skb, const struct net_device *in,
161 const struct net_device *out, unsigned int hooknum,
162 const struct xt_target *target, const void *targinfo)
164 const struct ipt_reject_info *reject = targinfo;
166 /* Our naive response construction doesn't deal with IP
167 options, and probably shouldn't try. */
168 if (ip_hdrlen(skb) != sizeof(struct iphdr))
171 /* WARNING: This code causes reentry within iptables.
172 This means that the iptables jump stack is now crap. We
173 must return an absolute verdict. --RR */
174 switch (reject->with) {
175 case IPT_ICMP_NET_UNREACHABLE:
176 send_unreach(skb, ICMP_NET_UNREACH);
178 case IPT_ICMP_HOST_UNREACHABLE:
179 send_unreach(skb, ICMP_HOST_UNREACH);
181 case IPT_ICMP_PROT_UNREACHABLE:
182 send_unreach(skb, ICMP_PROT_UNREACH);
184 case IPT_ICMP_PORT_UNREACHABLE:
185 send_unreach(skb, ICMP_PORT_UNREACH);
187 case IPT_ICMP_NET_PROHIBITED:
188 send_unreach(skb, ICMP_NET_ANO);
190 case IPT_ICMP_HOST_PROHIBITED:
191 send_unreach(skb, ICMP_HOST_ANO);
193 case IPT_ICMP_ADMIN_PROHIBITED:
194 send_unreach(skb, ICMP_PKT_FILTERED);
197 send_reset(skb, hooknum);
198 case IPT_ICMP_ECHOREPLY:
199 /* Doesn't happen. */
207 reject_tg_check(const char *tablename, const void *e_void,
208 const struct xt_target *target, void *targinfo,
209 unsigned int hook_mask)
211 const struct ipt_reject_info *rejinfo = targinfo;
212 const struct ipt_entry *e = e_void;
214 if (rejinfo->with == IPT_ICMP_ECHOREPLY) {
215 printk("ipt_REJECT: ECHOREPLY no longer supported.\n");
217 } else if (rejinfo->with == IPT_TCP_RESET) {
218 /* Must specify that it's a TCP packet */
219 if (e->ip.proto != IPPROTO_TCP
220 || (e->ip.invflags & XT_INV_PROTO)) {
221 printk("ipt_REJECT: TCP_RESET invalid for non-tcp\n");
228 static struct xt_target reject_tg_reg __read_mostly = {
232 .targetsize = sizeof(struct ipt_reject_info),
234 .hooks = (1 << NF_INET_LOCAL_IN) | (1 << NF_INET_FORWARD) |
235 (1 << NF_INET_LOCAL_OUT),
236 .checkentry = reject_tg_check,
240 static int __init reject_tg_init(void)
242 return xt_register_target(&reject_tg_reg);
245 static void __exit reject_tg_exit(void)
247 xt_unregister_target(&reject_tg_reg);
250 module_init(reject_tg_init);
251 module_exit(reject_tg_exit);