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.
12 #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
13 #include <linux/module.h>
14 #include <linux/skbuff.h>
15 #include <linux/slab.h>
17 #include <linux/udp.h>
18 #include <linux/icmp.h>
22 #include <net/route.h>
24 #include <linux/netfilter/x_tables.h>
25 #include <linux/netfilter_ipv4/ip_tables.h>
26 #include <linux/netfilter_ipv4/ipt_REJECT.h>
27 #ifdef CONFIG_BRIDGE_NETFILTER
28 #include <linux/netfilter_bridge.h>
31 MODULE_LICENSE("GPL");
32 MODULE_AUTHOR("Netfilter Core Team <coreteam@netfilter.org>");
33 MODULE_DESCRIPTION("Xtables: packet \"rejection\" target for IPv4");
36 static void send_reset(struct sk_buff
*oldskb
, int hook
)
39 const struct iphdr
*oiph
;
41 const struct tcphdr
*oth
;
42 struct tcphdr _otcph
, *tcph
;
44 /* IP header checks: fragment. */
45 if (ip_hdr(oldskb
)->frag_off
& htons(IP_OFFSET
))
48 oth
= skb_header_pointer(oldskb
, ip_hdrlen(oldskb
),
49 sizeof(_otcph
), &_otcph
);
57 if (skb_rtable(oldskb
)->rt_flags
& (RTCF_BROADCAST
| RTCF_MULTICAST
))
61 if (nf_ip_checksum(oldskb
, hook
, ip_hdrlen(oldskb
), IPPROTO_TCP
))
63 oiph
= ip_hdr(oldskb
);
65 nskb
= alloc_skb(sizeof(struct iphdr
) + sizeof(struct tcphdr
) +
66 LL_MAX_HEADER
, GFP_ATOMIC
);
70 skb_reserve(nskb
, LL_MAX_HEADER
);
72 skb_reset_network_header(nskb
);
73 niph
= (struct iphdr
*)skb_put(nskb
, sizeof(struct iphdr
));
75 niph
->ihl
= sizeof(struct iphdr
) / 4;
78 niph
->frag_off
= htons(IP_DF
);
79 niph
->protocol
= IPPROTO_TCP
;
81 niph
->saddr
= oiph
->daddr
;
82 niph
->daddr
= oiph
->saddr
;
84 skb_reset_transport_header(nskb
);
85 tcph
= (struct tcphdr
*)skb_put(nskb
, sizeof(struct tcphdr
));
86 memset(tcph
, 0, sizeof(*tcph
));
87 tcph
->source
= oth
->dest
;
88 tcph
->dest
= oth
->source
;
89 tcph
->doff
= sizeof(struct tcphdr
) / 4;
92 tcph
->seq
= oth
->ack_seq
;
94 tcph
->ack_seq
= htonl(ntohl(oth
->seq
) + oth
->syn
+ oth
->fin
+
95 oldskb
->len
- ip_hdrlen(oldskb
) -
101 tcph
->check
= ~tcp_v4_check(sizeof(struct tcphdr
), niph
->saddr
,
103 nskb
->ip_summed
= CHECKSUM_PARTIAL
;
104 nskb
->csum_start
= (unsigned char *)tcph
- nskb
->head
;
105 nskb
->csum_offset
= offsetof(struct tcphdr
, check
);
107 /* ip_route_me_harder expects skb->dst to be set */
108 skb_dst_set_noref(nskb
, skb_dst(oldskb
));
110 nskb
->protocol
= htons(ETH_P_IP
);
111 if (ip_route_me_harder(nskb
, RTN_UNSPEC
))
114 niph
->ttl
= ip4_dst_hoplimit(skb_dst(nskb
));
116 /* "Never happens" */
117 if (nskb
->len
> dst_mtu(skb_dst(nskb
)))
120 nf_ct_attach(nskb
, oldskb
);
129 static inline void send_unreach(struct sk_buff
*skb_in
, int code
)
131 icmp_send(skb_in
, ICMP_DEST_UNREACH
, code
, 0);
135 reject_tg(struct sk_buff
*skb
, const struct xt_action_param
*par
)
137 const struct ipt_reject_info
*reject
= par
->targinfo
;
139 switch (reject
->with
) {
140 case IPT_ICMP_NET_UNREACHABLE
:
141 send_unreach(skb
, ICMP_NET_UNREACH
);
143 case IPT_ICMP_HOST_UNREACHABLE
:
144 send_unreach(skb
, ICMP_HOST_UNREACH
);
146 case IPT_ICMP_PROT_UNREACHABLE
:
147 send_unreach(skb
, ICMP_PROT_UNREACH
);
149 case IPT_ICMP_PORT_UNREACHABLE
:
150 send_unreach(skb
, ICMP_PORT_UNREACH
);
152 case IPT_ICMP_NET_PROHIBITED
:
153 send_unreach(skb
, ICMP_NET_ANO
);
155 case IPT_ICMP_HOST_PROHIBITED
:
156 send_unreach(skb
, ICMP_HOST_ANO
);
158 case IPT_ICMP_ADMIN_PROHIBITED
:
159 send_unreach(skb
, ICMP_PKT_FILTERED
);
162 send_reset(skb
, par
->hooknum
);
163 case IPT_ICMP_ECHOREPLY
:
164 /* Doesn't happen. */
171 static int reject_tg_check(const struct xt_tgchk_param
*par
)
173 const struct ipt_reject_info
*rejinfo
= par
->targinfo
;
174 const struct ipt_entry
*e
= par
->entryinfo
;
176 if (rejinfo
->with
== IPT_ICMP_ECHOREPLY
) {
177 pr_info("ECHOREPLY no longer supported.\n");
179 } else if (rejinfo
->with
== IPT_TCP_RESET
) {
180 /* Must specify that it's a TCP packet */
181 if (e
->ip
.proto
!= IPPROTO_TCP
||
182 (e
->ip
.invflags
& XT_INV_PROTO
)) {
183 pr_info("TCP_RESET invalid for non-tcp\n");
190 static struct xt_target reject_tg_reg __read_mostly
= {
192 .family
= NFPROTO_IPV4
,
194 .targetsize
= sizeof(struct ipt_reject_info
),
196 .hooks
= (1 << NF_INET_LOCAL_IN
) | (1 << NF_INET_FORWARD
) |
197 (1 << NF_INET_LOCAL_OUT
),
198 .checkentry
= reject_tg_check
,
202 static int __init
reject_tg_init(void)
204 return xt_register_target(&reject_tg_reg
);
207 static void __exit
reject_tg_exit(void)
209 xt_unregister_target(&reject_tg_reg
);
212 module_init(reject_tg_init
);
213 module_exit(reject_tg_exit
);