blob: 146d86105183e1a456a0f17ed6bb5371aa1e8f76 [file] [log] [blame]
Pablo Neira Ayusoc8d7b982014-09-26 14:35:15 +02001/* (C) 1999-2001 Paul `Rusty' Russell
2 * (C) 2002-2004 Netfilter Core Team <coreteam@netfilter.org>
3 *
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License version 2 as
6 * published by the Free Software Foundation.
7 */
8
Pablo Neira Ayusoab2d7252014-10-10 11:25:20 +02009#include <linux/module.h>
Pablo Neira Ayusoc8d7b982014-09-26 14:35:15 +020010#include <net/ip.h>
11#include <net/tcp.h>
12#include <net/route.h>
13#include <net/dst.h>
Florian Westphal56768642014-11-13 10:04:16 +010014#include <net/netfilter/ipv4/nf_reject.h>
Pablo Neira Ayusoc8d7b982014-09-26 14:35:15 +020015#include <linux/netfilter_ipv4.h>
Florian Westphalc737b7c2015-04-02 14:31:41 +020016#include <linux/netfilter_bridge.h>
Pablo Neira Ayusoc8d7b982014-09-26 14:35:15 +020017
Pablo Neira Ayuso052b9492014-10-25 18:24:57 +020018const struct tcphdr *nf_reject_ip_tcphdr_get(struct sk_buff *oldskb,
19 struct tcphdr *_oth, int hook)
Pablo Neira Ayusoc8d7b982014-09-26 14:35:15 +020020{
Pablo Neira Ayusoc8d7b982014-09-26 14:35:15 +020021 const struct tcphdr *oth;
Pablo Neira Ayusoc8d7b982014-09-26 14:35:15 +020022
23 /* IP header checks: fragment. */
24 if (ip_hdr(oldskb)->frag_off & htons(IP_OFFSET))
Pablo Neira Ayuso052b9492014-10-25 18:24:57 +020025 return NULL;
Pablo Neira Ayusoc8d7b982014-09-26 14:35:15 +020026
Liping Zhange1dbbc52016-06-20 21:26:28 +080027 if (ip_hdr(oldskb)->protocol != IPPROTO_TCP)
28 return NULL;
29
Pablo Neira Ayusoc8d7b982014-09-26 14:35:15 +020030 oth = skb_header_pointer(oldskb, ip_hdrlen(oldskb),
Pablo Neira Ayuso052b9492014-10-25 18:24:57 +020031 sizeof(struct tcphdr), _oth);
Pablo Neira Ayusoc8d7b982014-09-26 14:35:15 +020032 if (oth == NULL)
Pablo Neira Ayuso052b9492014-10-25 18:24:57 +020033 return NULL;
Pablo Neira Ayusoc8d7b982014-09-26 14:35:15 +020034
35 /* No RST for RST. */
36 if (oth->rst)
Pablo Neira Ayuso052b9492014-10-25 18:24:57 +020037 return NULL;
Pablo Neira Ayusoc8d7b982014-09-26 14:35:15 +020038
39 /* Check checksum */
40 if (nf_ip_checksum(oldskb, hook, ip_hdrlen(oldskb), IPPROTO_TCP))
Pablo Neira Ayuso052b9492014-10-25 18:24:57 +020041 return NULL;
Pablo Neira Ayusoc8d7b982014-09-26 14:35:15 +020042
Pablo Neira Ayuso052b9492014-10-25 18:24:57 +020043 return oth;
44}
45EXPORT_SYMBOL_GPL(nf_reject_ip_tcphdr_get);
Pablo Neira Ayusoc8d7b982014-09-26 14:35:15 +020046
Pablo Neira Ayuso052b9492014-10-25 18:24:57 +020047struct iphdr *nf_reject_iphdr_put(struct sk_buff *nskb,
48 const struct sk_buff *oldskb,
Florian Westphala03a8db2015-03-09 23:04:15 +010049 __u8 protocol, int ttl)
Pablo Neira Ayuso052b9492014-10-25 18:24:57 +020050{
51 struct iphdr *niph, *oiph = ip_hdr(oldskb);
Pablo Neira Ayusoc8d7b982014-09-26 14:35:15 +020052
53 skb_reset_network_header(nskb);
54 niph = (struct iphdr *)skb_put(nskb, sizeof(struct iphdr));
55 niph->version = 4;
56 niph->ihl = sizeof(struct iphdr) / 4;
57 niph->tos = 0;
58 niph->id = 0;
59 niph->frag_off = htons(IP_DF);
Pablo Neira Ayuso052b9492014-10-25 18:24:57 +020060 niph->protocol = protocol;
Pablo Neira Ayusoc8d7b982014-09-26 14:35:15 +020061 niph->check = 0;
62 niph->saddr = oiph->daddr;
63 niph->daddr = oiph->saddr;
Pablo Neira Ayuso052b9492014-10-25 18:24:57 +020064 niph->ttl = ttl;
65
66 nskb->protocol = htons(ETH_P_IP);
67
68 return niph;
69}
70EXPORT_SYMBOL_GPL(nf_reject_iphdr_put);
71
72void nf_reject_ip_tcphdr_put(struct sk_buff *nskb, const struct sk_buff *oldskb,
73 const struct tcphdr *oth)
74{
75 struct iphdr *niph = ip_hdr(nskb);
76 struct tcphdr *tcph;
Pablo Neira Ayusoc8d7b982014-09-26 14:35:15 +020077
78 skb_reset_transport_header(nskb);
79 tcph = (struct tcphdr *)skb_put(nskb, sizeof(struct tcphdr));
80 memset(tcph, 0, sizeof(*tcph));
81 tcph->source = oth->dest;
82 tcph->dest = oth->source;
83 tcph->doff = sizeof(struct tcphdr) / 4;
84
Pablo Neira Ayuso052b9492014-10-25 18:24:57 +020085 if (oth->ack) {
Pablo Neira Ayusoc8d7b982014-09-26 14:35:15 +020086 tcph->seq = oth->ack_seq;
Pablo Neira Ayuso052b9492014-10-25 18:24:57 +020087 } else {
Pablo Neira Ayusoc8d7b982014-09-26 14:35:15 +020088 tcph->ack_seq = htonl(ntohl(oth->seq) + oth->syn + oth->fin +
89 oldskb->len - ip_hdrlen(oldskb) -
90 (oth->doff << 2));
91 tcph->ack = 1;
92 }
93
94 tcph->rst = 1;
95 tcph->check = ~tcp_v4_check(sizeof(struct tcphdr), niph->saddr,
96 niph->daddr, 0);
97 nskb->ip_summed = CHECKSUM_PARTIAL;
98 nskb->csum_start = (unsigned char *)tcph - nskb->head;
99 nskb->csum_offset = offsetof(struct tcphdr, check);
Pablo Neira Ayuso052b9492014-10-25 18:24:57 +0200100}
101EXPORT_SYMBOL_GPL(nf_reject_ip_tcphdr_put);
102
103/* Send RST reply */
Eric W. Biederman372892e2015-09-25 15:07:27 -0500104void nf_send_reset(struct net *net, struct sk_buff *oldskb, int hook)
Pablo Neira Ayuso052b9492014-10-25 18:24:57 +0200105{
106 struct sk_buff *nskb;
107 const struct iphdr *oiph;
108 struct iphdr *niph;
109 const struct tcphdr *oth;
110 struct tcphdr _oth;
111
112 oth = nf_reject_ip_tcphdr_get(oldskb, &_oth, hook);
113 if (!oth)
114 return;
115
116 if (skb_rtable(oldskb)->rt_flags & (RTCF_BROADCAST | RTCF_MULTICAST))
117 return;
118
119 oiph = ip_hdr(oldskb);
120
121 nskb = alloc_skb(sizeof(struct iphdr) + sizeof(struct tcphdr) +
122 LL_MAX_HEADER, GFP_ATOMIC);
123 if (!nskb)
124 return;
Pablo Neira Ayusoc8d7b982014-09-26 14:35:15 +0200125
126 /* ip_route_me_harder expects skb->dst to be set */
127 skb_dst_set_noref(nskb, skb_dst(oldskb));
128
Pau Espin Pedrol9acfb312017-01-06 20:33:27 +0100129 nskb->mark = IP4_REPLY_MARK(net, oldskb->mark);
130
Pablo Neira Ayuso052b9492014-10-25 18:24:57 +0200131 skb_reserve(nskb, LL_MAX_HEADER);
132 niph = nf_reject_iphdr_put(nskb, oldskb, IPPROTO_TCP,
133 ip4_dst_hoplimit(skb_dst(nskb)));
134 nf_reject_ip_tcphdr_put(nskb, oldskb, oth);
135
Eric W. Biedermane45f5062015-09-25 15:07:30 -0500136 if (ip_route_me_harder(net, nskb, RTN_UNSPEC))
Pablo Neira Ayusoc8d7b982014-09-26 14:35:15 +0200137 goto free_nskb;
138
Pablo Neira Ayusoc8d7b982014-09-26 14:35:15 +0200139 /* "Never happens" */
140 if (nskb->len > dst_mtu(skb_dst(nskb)))
141 goto free_nskb;
142
143 nf_ct_attach(nskb, oldskb);
144
145#if IS_ENABLED(CONFIG_BRIDGE_NETFILTER)
146 /* If we use ip_local_out for bridged traffic, the MAC source on
147 * the RST will be ours, instead of the destination's. This confuses
148 * some routers/firewalls, and they drop the packet. So we need to
149 * build the eth header using the original destination's MAC as the
150 * source, and send the RST packet directly.
151 */
152 if (oldskb->nf_bridge) {
153 struct ethhdr *oeth = eth_hdr(oldskb);
Florian Westphalc737b7c2015-04-02 14:31:41 +0200154
155 nskb->dev = nf_bridge_get_physindev(oldskb);
Pablo Neira Ayusoc8d7b982014-09-26 14:35:15 +0200156 niph->tot_len = htons(nskb->len);
157 ip_send_check(niph);
158 if (dev_hard_header(nskb, nskb->dev, ntohs(nskb->protocol),
159 oeth->h_source, oeth->h_dest, nskb->len) < 0)
160 goto free_nskb;
161 dev_queue_xmit(nskb);
162 } else
163#endif
Eric W. Biederman33224b12015-10-07 16:48:46 -0500164 ip_local_out(net, nskb->sk, nskb);
Pablo Neira Ayusoc8d7b982014-09-26 14:35:15 +0200165
166 return;
167
168 free_nskb:
169 kfree_skb(nskb);
170}
171EXPORT_SYMBOL_GPL(nf_send_reset);
Pablo Neira Ayusoab2d7252014-10-10 11:25:20 +0200172
Florian Westphalee586bb2015-02-16 18:54:04 +0100173void nf_send_unreach(struct sk_buff *skb_in, int code, int hook)
174{
175 struct iphdr *iph = ip_hdr(skb_in);
176 u8 proto;
177
178 if (skb_in->csum_bad || iph->frag_off & htons(IP_OFFSET))
179 return;
180
181 if (skb_csum_unnecessary(skb_in)) {
182 icmp_send(skb_in, ICMP_DEST_UNREACH, code, 0);
183 return;
184 }
185
186 if (iph->protocol == IPPROTO_TCP || iph->protocol == IPPROTO_UDP)
187 proto = iph->protocol;
188 else
189 proto = 0;
190
191 if (nf_ip_checksum(skb_in, hook, ip_hdrlen(skb_in), proto) == 0)
192 icmp_send(skb_in, ICMP_DEST_UNREACH, code, 0);
193}
194EXPORT_SYMBOL_GPL(nf_send_unreach);
195
Pablo Neira Ayusoab2d7252014-10-10 11:25:20 +0200196MODULE_LICENSE("GPL");