blob: 3264cb49b333620d6013cf1f6686f09bf07f9b8a [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * ip_vs_xmit.c: various packet transmitters for IPVS
3 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07004 * Authors: Wensong Zhang <wensong@linuxvirtualserver.org>
5 * Julian Anastasov <ja@ssi.bg>
6 *
7 * This program is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU General Public License
9 * as published by the Free Software Foundation; either version
10 * 2 of the License, or (at your option) any later version.
11 *
12 * Changes:
13 *
Julian Anastasovcb591552010-10-17 16:40:51 +030014 * Description of forwarding methods:
15 * - all transmitters are called from LOCAL_IN (remote clients) and
16 * LOCAL_OUT (local clients) but for ICMP can be called from FORWARD
17 * - not all connections have destination server, for example,
18 * connections in backup server when fwmark is used
19 * - bypass connections use daddr from packet
Julian Anastasov026ace02013-03-21 11:58:06 +020020 * - we can use dst without ref while sending in RCU section, we use
21 * ref when returning NF_ACCEPT for NAT-ed packet via loopback
Julian Anastasovcb591552010-10-17 16:40:51 +030022 * LOCAL_OUT rules:
23 * - skb->dev is NULL, skb->protocol is not set (both are set in POST_ROUTING)
24 * - skb->pkt_type is not set yet
25 * - the only place where we can see skb->sk != NULL
Linus Torvalds1da177e2005-04-16 15:20:36 -070026 */
27
Hannes Eder9aada7a2009-07-30 14:29:44 -070028#define KMSG_COMPONENT "IPVS"
29#define pr_fmt(fmt) KMSG_COMPONENT ": " fmt
30
Linus Torvalds1da177e2005-04-16 15:20:36 -070031#include <linux/kernel.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090032#include <linux/slab.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070033#include <linux/tcp.h> /* for tcphdr */
Herbert Xuc439cb22008-01-11 19:14:00 -080034#include <net/ip.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070035#include <net/tcp.h> /* for csum_tcpudp_magic */
36#include <net/udp.h>
37#include <net/icmp.h> /* for icmp_send */
38#include <net/route.h> /* for ip_route_output */
Julius Volz38cdcc92008-09-02 15:55:44 +020039#include <net/ipv6.h>
40#include <net/ip6_route.h>
Julian Anastasovea1d5d72014-08-01 10:36:17 +030041#include <net/ip_tunnels.h>
Hans Schillstrom714f0952010-10-19 10:38:48 +020042#include <net/addrconf.h>
Julius Volz38cdcc92008-09-02 15:55:44 +020043#include <linux/icmpv6.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070044#include <linux/netfilter.h>
45#include <linux/netfilter_ipv4.h>
46
47#include <net/ip_vs.h>
48
Changli Gao17a8f8e2011-02-24 08:19:57 +080049enum {
50 IP_VS_RT_MODE_LOCAL = 1, /* Allow local dest */
51 IP_VS_RT_MODE_NON_LOCAL = 2, /* Allow non-local dest */
52 IP_VS_RT_MODE_RDR = 4, /* Allow redirect from remote daddr to
53 * local
54 */
Julian Anastasovf2edb9f2012-07-20 11:59:52 +030055 IP_VS_RT_MODE_CONNECT = 8, /* Always bind route to saddr */
Julian Anastasovad4d3ef2012-10-08 11:41:20 +000056 IP_VS_RT_MODE_KNOWN_NH = 16,/* Route via remote addr */
Julian Anastasov4115ded2013-03-21 11:58:05 +020057 IP_VS_RT_MODE_TUNNEL = 32,/* Tunnel mode */
Changli Gao17a8f8e2011-02-24 08:19:57 +080058};
Linus Torvalds1da177e2005-04-16 15:20:36 -070059
Julian Anastasov026ace02013-03-21 11:58:06 +020060static inline struct ip_vs_dest_dst *ip_vs_dest_dst_alloc(void)
61{
62 return kmalloc(sizeof(struct ip_vs_dest_dst), GFP_ATOMIC);
63}
64
65static inline void ip_vs_dest_dst_free(struct ip_vs_dest_dst *dest_dst)
66{
67 kfree(dest_dst);
68}
69
Linus Torvalds1da177e2005-04-16 15:20:36 -070070/*
71 * Destination cache to speed up outgoing route lookup
72 */
73static inline void
Julian Anastasov026ace02013-03-21 11:58:06 +020074__ip_vs_dst_set(struct ip_vs_dest *dest, struct ip_vs_dest_dst *dest_dst,
75 struct dst_entry *dst, u32 dst_cookie)
Linus Torvalds1da177e2005-04-16 15:20:36 -070076{
Julian Anastasov026ace02013-03-21 11:58:06 +020077 struct ip_vs_dest_dst *old;
Linus Torvalds1da177e2005-04-16 15:20:36 -070078
Julian Anastasov026ace02013-03-21 11:58:06 +020079 old = rcu_dereference_protected(dest->dest_dst,
80 lockdep_is_held(&dest->dst_lock));
81
82 if (dest_dst) {
83 dest_dst->dst_cache = dst;
84 dest_dst->dst_cookie = dst_cookie;
85 }
86 rcu_assign_pointer(dest->dest_dst, dest_dst);
87
88 if (old)
89 call_rcu(&old->rcu_head, ip_vs_dest_dst_rcu_free);
Linus Torvalds1da177e2005-04-16 15:20:36 -070090}
91
Julian Anastasov026ace02013-03-21 11:58:06 +020092static inline struct ip_vs_dest_dst *
Julian Anastasovc90558d2013-03-21 11:57:59 +020093__ip_vs_dst_check(struct ip_vs_dest *dest)
Linus Torvalds1da177e2005-04-16 15:20:36 -070094{
Julian Anastasov026ace02013-03-21 11:58:06 +020095 struct ip_vs_dest_dst *dest_dst = rcu_dereference(dest->dest_dst);
96 struct dst_entry *dst;
Linus Torvalds1da177e2005-04-16 15:20:36 -070097
Julian Anastasov026ace02013-03-21 11:58:06 +020098 if (!dest_dst)
Linus Torvalds1da177e2005-04-16 15:20:36 -070099 return NULL;
Julian Anastasov026ace02013-03-21 11:58:06 +0200100 dst = dest_dst->dst_cache;
101 if (dst->obsolete &&
102 dst->ops->check(dst, dest_dst->dst_cookie) == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700103 return NULL;
Julian Anastasov026ace02013-03-21 11:58:06 +0200104 return dest_dst;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700105}
106
Jesper Dangaard Brouer590e3f72012-08-28 22:05:51 +0200107static inline bool
108__mtu_check_toobig_v6(const struct sk_buff *skb, u32 mtu)
109{
Patrick McHardy4cdd34082012-08-26 19:13:58 +0200110 if (IP6CB(skb)->frag_max_size) {
111 /* frag_max_size tell us that, this packet have been
112 * defragmented by netfilter IPv6 conntrack module.
113 */
114 if (IP6CB(skb)->frag_max_size > mtu)
115 return true; /* largest fragment violate MTU */
116 }
117 else if (skb->len > mtu && !skb_is_gso(skb)) {
Jesper Dangaard Brouer590e3f72012-08-28 22:05:51 +0200118 return true; /* Packet size violate MTU size */
119 }
120 return false;
121}
122
Julian Anastasovf2edb9f2012-07-20 11:59:52 +0300123/* Get route to daddr, update *saddr, optionally bind route to saddr */
124static struct rtable *do_output_route4(struct net *net, __be32 daddr,
Julian Anastasovc90558d2013-03-21 11:57:59 +0200125 int rt_mode, __be32 *saddr)
Julian Anastasovf2edb9f2012-07-20 11:59:52 +0300126{
127 struct flowi4 fl4;
128 struct rtable *rt;
129 int loop = 0;
130
131 memset(&fl4, 0, sizeof(fl4));
132 fl4.daddr = daddr;
Julian Anastasovad4d3ef2012-10-08 11:41:20 +0000133 fl4.flowi4_flags = (rt_mode & IP_VS_RT_MODE_KNOWN_NH) ?
134 FLOWI_FLAG_KNOWN_NH : 0;
Julian Anastasovf2edb9f2012-07-20 11:59:52 +0300135
136retry:
137 rt = ip_route_output_key(net, &fl4);
138 if (IS_ERR(rt)) {
139 /* Invalid saddr ? */
140 if (PTR_ERR(rt) == -EINVAL && *saddr &&
141 rt_mode & IP_VS_RT_MODE_CONNECT && !loop) {
142 *saddr = 0;
Julian Anastasovc90558d2013-03-21 11:57:59 +0200143 flowi4_update_output(&fl4, 0, 0, daddr, 0);
Julian Anastasovf2edb9f2012-07-20 11:59:52 +0300144 goto retry;
145 }
146 IP_VS_DBG_RL("ip_route_output error, dest: %pI4\n", &daddr);
147 return NULL;
148 } else if (!*saddr && rt_mode & IP_VS_RT_MODE_CONNECT && fl4.saddr) {
149 ip_rt_put(rt);
150 *saddr = fl4.saddr;
Julian Anastasovc90558d2013-03-21 11:57:59 +0200151 flowi4_update_output(&fl4, 0, 0, daddr, fl4.saddr);
Julian Anastasovf2edb9f2012-07-20 11:59:52 +0300152 loop++;
153 goto retry;
154 }
155 *saddr = fl4.saddr;
156 return rt;
157}
158
Alex Gartrell4a4739d52014-09-09 16:40:25 -0700159#ifdef CONFIG_IP_VS_IPV6
160static inline int __ip_vs_is_local_route6(struct rt6_info *rt)
161{
162 return rt->dst.dev && rt->dst.dev->flags & IFF_LOOPBACK;
163}
164#endif
165
166static inline bool crosses_local_route_boundary(int skb_af, struct sk_buff *skb,
167 int rt_mode,
168 bool new_rt_is_local)
169{
170 bool rt_mode_allow_local = !!(rt_mode & IP_VS_RT_MODE_LOCAL);
171 bool rt_mode_allow_non_local = !!(rt_mode & IP_VS_RT_MODE_LOCAL);
172 bool rt_mode_allow_redirect = !!(rt_mode & IP_VS_RT_MODE_RDR);
173 bool source_is_loopback;
174 bool old_rt_is_local;
175
176#ifdef CONFIG_IP_VS_IPV6
177 if (skb_af == AF_INET6) {
178 int addr_type = ipv6_addr_type(&ipv6_hdr(skb)->saddr);
179
180 source_is_loopback =
181 (!skb->dev || skb->dev->flags & IFF_LOOPBACK) &&
182 (addr_type & IPV6_ADDR_LOOPBACK);
183 old_rt_is_local = __ip_vs_is_local_route6(
184 (struct rt6_info *)skb_dst(skb));
185 } else
186#endif
187 {
188 source_is_loopback = ipv4_is_loopback(ip_hdr(skb)->saddr);
189 old_rt_is_local = skb_rtable(skb)->rt_flags & RTCF_LOCAL;
190 }
191
192 if (unlikely(new_rt_is_local)) {
193 if (!rt_mode_allow_local)
194 return true;
195 if (!rt_mode_allow_redirect && !old_rt_is_local)
196 return true;
197 } else {
198 if (!rt_mode_allow_non_local)
199 return true;
200 if (source_is_loopback)
201 return true;
202 }
203 return false;
204}
205
Alex Gartrell919aa0b2014-09-09 16:40:26 -0700206static inline void maybe_update_pmtu(int skb_af, struct sk_buff *skb, int mtu)
207{
208 struct sock *sk = skb->sk;
209 struct rtable *ort = skb_rtable(skb);
210
Eric Dumazeta8399232015-03-16 21:06:15 -0700211 if (!skb->dev && sk && sk_fullsock(sk))
Alex Gartrell919aa0b2014-09-09 16:40:26 -0700212 ort->dst.ops->update_pmtu(&ort->dst, sk, NULL, mtu);
213}
214
Eric W. Biederman20868a42015-09-21 13:02:47 -0500215static inline bool ensure_mtu_is_adequate(struct netns_ipvs *ipvs, int skb_af,
216 int rt_mode,
Alex Gartrellc63e4de2014-09-09 16:40:27 -0700217 struct ip_vs_iphdr *ipvsh,
218 struct sk_buff *skb, int mtu)
219{
220#ifdef CONFIG_IP_VS_IPV6
221 if (skb_af == AF_INET6) {
Eric W. Biederman20868a42015-09-21 13:02:47 -0500222 struct net *net = ipvs->net;
Alex Gartrellc63e4de2014-09-09 16:40:27 -0700223
224 if (unlikely(__mtu_check_toobig_v6(skb, mtu))) {
225 if (!skb->dev)
226 skb->dev = net->loopback_dev;
227 /* only send ICMP too big on first fragment */
Alex Gartrell89621f32015-08-26 09:40:38 -0700228 if (!ipvsh->fragoffs && !ip_vs_iph_icmp(ipvsh))
Alex Gartrellc63e4de2014-09-09 16:40:27 -0700229 icmpv6_send(skb, ICMPV6_PKT_TOOBIG, 0, mtu);
230 IP_VS_DBG(1, "frag needed for %pI6c\n",
231 &ipv6_hdr(skb)->saddr);
232 return false;
233 }
234 } else
235#endif
236 {
Alex Gartrellc63e4de2014-09-09 16:40:27 -0700237 /* If we're going to tunnel the packet and pmtu discovery
238 * is disabled, we'll just fragment it anyway
239 */
240 if ((rt_mode & IP_VS_RT_MODE_TUNNEL) && !sysctl_pmtu_disc(ipvs))
241 return true;
242
243 if (unlikely(ip_hdr(skb)->frag_off & htons(IP_DF) &&
Alex Gartrell89621f32015-08-26 09:40:38 -0700244 skb->len > mtu && !skb_is_gso(skb) &&
245 !ip_vs_iph_icmp(ipvsh))) {
Alex Gartrellc63e4de2014-09-09 16:40:27 -0700246 icmp_send(skb, ICMP_DEST_UNREACH, ICMP_FRAG_NEEDED,
247 htonl(mtu));
248 IP_VS_DBG(1, "frag needed for %pI4\n",
249 &ip_hdr(skb)->saddr);
250 return false;
251 }
252 }
253
254 return true;
255}
256
Changli Gao17a8f8e2011-02-24 08:19:57 +0800257/* Get route to destination or remote server */
Julian Anastasov4115ded2013-03-21 11:58:05 +0200258static int
Eric W. Biedermanecfe87b2015-09-21 13:02:45 -0500259__ip_vs_get_out_rt(struct netns_ipvs *ipvs, int skb_af, struct sk_buff *skb,
260 struct ip_vs_dest *dest,
Alex Gartrellc63e4de2014-09-09 16:40:27 -0700261 __be32 daddr, int rt_mode, __be32 *ret_saddr,
262 struct ip_vs_iphdr *ipvsh)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700263{
Eric W. Biedermanecfe87b2015-09-21 13:02:45 -0500264 struct net *net = ipvs->net;
Julian Anastasov026ace02013-03-21 11:58:06 +0200265 struct ip_vs_dest_dst *dest_dst;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700266 struct rtable *rt; /* Route to the other host */
Julian Anastasov4115ded2013-03-21 11:58:05 +0200267 int mtu;
Julian Anastasov026ace02013-03-21 11:58:06 +0200268 int local, noref = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700269
270 if (dest) {
Julian Anastasov026ace02013-03-21 11:58:06 +0200271 dest_dst = __ip_vs_dst_check(dest);
272 if (likely(dest_dst))
273 rt = (struct rtable *) dest_dst->dst_cache;
274 else {
275 dest_dst = ip_vs_dest_dst_alloc();
Julian Anastasovac692692013-03-22 11:46:54 +0200276 spin_lock_bh(&dest->dst_lock);
Julian Anastasov026ace02013-03-21 11:58:06 +0200277 if (!dest_dst) {
278 __ip_vs_dst_set(dest, NULL, NULL, 0);
Julian Anastasovac692692013-03-22 11:46:54 +0200279 spin_unlock_bh(&dest->dst_lock);
Julian Anastasov4115ded2013-03-21 11:58:05 +0200280 goto err_unreach;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700281 }
Julian Anastasov026ace02013-03-21 11:58:06 +0200282 rt = do_output_route4(net, dest->addr.ip, rt_mode,
283 &dest_dst->dst_saddr.ip);
284 if (!rt) {
285 __ip_vs_dst_set(dest, NULL, NULL, 0);
Julian Anastasovac692692013-03-22 11:46:54 +0200286 spin_unlock_bh(&dest->dst_lock);
Julian Anastasov026ace02013-03-21 11:58:06 +0200287 ip_vs_dest_dst_free(dest_dst);
288 goto err_unreach;
289 }
290 __ip_vs_dst_set(dest, dest_dst, &rt->dst, 0);
Julian Anastasovac692692013-03-22 11:46:54 +0200291 spin_unlock_bh(&dest->dst_lock);
Julian Anastasovc90558d2013-03-21 11:57:59 +0200292 IP_VS_DBG(10, "new dst %pI4, src %pI4, refcnt=%d\n",
Julian Anastasov026ace02013-03-21 11:58:06 +0200293 &dest->addr.ip, &dest_dst->dst_saddr.ip,
Julian Anastasovc90558d2013-03-21 11:57:59 +0200294 atomic_read(&rt->dst.__refcnt));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700295 }
Julian Anastasovc92f5ca2011-05-10 12:46:05 +0000296 if (ret_saddr)
Julian Anastasov026ace02013-03-21 11:58:06 +0200297 *ret_saddr = dest_dst->dst_saddr.ip;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700298 } else {
Julian Anastasovf2edb9f2012-07-20 11:59:52 +0300299 __be32 saddr = htonl(INADDR_ANY);
Julian Anastasovc92f5ca2011-05-10 12:46:05 +0000300
Julian Anastasov026ace02013-03-21 11:58:06 +0200301 noref = 0;
302
Julian Anastasovf2edb9f2012-07-20 11:59:52 +0300303 /* For such unconfigured boxes avoid many route lookups
304 * for performance reasons because we do not remember saddr
305 */
306 rt_mode &= ~IP_VS_RT_MODE_CONNECT;
Julian Anastasovc90558d2013-03-21 11:57:59 +0200307 rt = do_output_route4(net, daddr, rt_mode, &saddr);
Julian Anastasovf2edb9f2012-07-20 11:59:52 +0300308 if (!rt)
Julian Anastasov4115ded2013-03-21 11:58:05 +0200309 goto err_unreach;
Julian Anastasovc92f5ca2011-05-10 12:46:05 +0000310 if (ret_saddr)
Julian Anastasovf2edb9f2012-07-20 11:59:52 +0300311 *ret_saddr = saddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700312 }
313
Julian Anastasov4115ded2013-03-21 11:58:05 +0200314 local = (rt->rt_flags & RTCF_LOCAL) ? 1 : 0;
Alex Gartrell4a4739d52014-09-09 16:40:25 -0700315 if (unlikely(crosses_local_route_boundary(skb_af, skb, rt_mode,
316 local))) {
317 IP_VS_DBG_RL("We are crossing local and non-local addresses"
Alex Gartrell3d536662014-10-06 08:46:19 -0700318 " daddr=%pI4\n", &daddr);
Julian Anastasov4115ded2013-03-21 11:58:05 +0200319 goto err_put;
Julian Anastasovfc604762010-10-17 16:38:15 +0300320 }
Alex Gartrell4a4739d52014-09-09 16:40:25 -0700321
322 if (unlikely(local)) {
Julian Anastasov4115ded2013-03-21 11:58:05 +0200323 /* skb to local stack, preserve old route */
Julian Anastasov026ace02013-03-21 11:58:06 +0200324 if (!noref)
325 ip_rt_put(rt);
Julian Anastasov4115ded2013-03-21 11:58:05 +0200326 return local;
Julian Anastasovfc604762010-10-17 16:38:15 +0300327 }
328
Julian Anastasov4115ded2013-03-21 11:58:05 +0200329 if (likely(!(rt_mode & IP_VS_RT_MODE_TUNNEL))) {
330 mtu = dst_mtu(&rt->dst);
Julian Anastasov4115ded2013-03-21 11:58:05 +0200331 } else {
Julian Anastasov4115ded2013-03-21 11:58:05 +0200332 mtu = dst_mtu(&rt->dst) - sizeof(struct iphdr);
333 if (mtu < 68) {
334 IP_VS_DBG_RL("%s(): mtu less than 68\n", __func__);
335 goto err_put;
336 }
Alex Gartrell919aa0b2014-09-09 16:40:26 -0700337 maybe_update_pmtu(skb_af, skb, mtu);
Julian Anastasov4115ded2013-03-21 11:58:05 +0200338 }
339
Eric W. Biederman20868a42015-09-21 13:02:47 -0500340 if (!ensure_mtu_is_adequate(ipvs, skb_af, rt_mode, ipvsh, skb, mtu))
Julian Anastasov4115ded2013-03-21 11:58:05 +0200341 goto err_put;
Julian Anastasov4115ded2013-03-21 11:58:05 +0200342
343 skb_dst_drop(skb);
Julian Anastasov026ace02013-03-21 11:58:06 +0200344 if (noref) {
345 if (!local)
Hannes Frederic Sowadbfc4fb2014-12-06 19:19:42 +0100346 skb_dst_set_noref(skb, &rt->dst);
Julian Anastasov026ace02013-03-21 11:58:06 +0200347 else
348 skb_dst_set(skb, dst_clone(&rt->dst));
349 } else
350 skb_dst_set(skb, &rt->dst);
Julian Anastasov4115ded2013-03-21 11:58:05 +0200351
352 return local;
353
354err_put:
Julian Anastasov026ace02013-03-21 11:58:06 +0200355 if (!noref)
356 ip_rt_put(rt);
Julian Anastasov4115ded2013-03-21 11:58:05 +0200357 return -1;
358
359err_unreach:
360 dst_link_failure(skb);
361 return -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700362}
363
Julius Volz38cdcc92008-09-02 15:55:44 +0200364#ifdef CONFIG_IP_VS_IPV6
Hans Schillstrom714f0952010-10-19 10:38:48 +0200365static struct dst_entry *
366__ip_vs_route_output_v6(struct net *net, struct in6_addr *daddr,
Martin KaFai Lau48e8aa62015-05-22 20:56:02 -0700367 struct in6_addr *ret_saddr, int do_xfrm, int rt_mode)
Julius Volz38cdcc92008-09-02 15:55:44 +0200368{
Hans Schillstrom714f0952010-10-19 10:38:48 +0200369 struct dst_entry *dst;
David S. Miller4c9483b2011-03-12 16:22:43 -0500370 struct flowi6 fl6 = {
371 .daddr = *daddr,
Hans Schillstrom714f0952010-10-19 10:38:48 +0200372 };
373
Martin KaFai Lau48e8aa62015-05-22 20:56:02 -0700374 if (rt_mode & IP_VS_RT_MODE_KNOWN_NH)
375 fl6.flowi6_flags = FLOWI_FLAG_KNOWN_NH;
376
David S. Miller4c9483b2011-03-12 16:22:43 -0500377 dst = ip6_route_output(net, NULL, &fl6);
Hans Schillstrom714f0952010-10-19 10:38:48 +0200378 if (dst->error)
379 goto out_err;
380 if (!ret_saddr)
381 return dst;
David S. Miller4c9483b2011-03-12 16:22:43 -0500382 if (ipv6_addr_any(&fl6.saddr) &&
Hans Schillstrom714f0952010-10-19 10:38:48 +0200383 ipv6_dev_get_saddr(net, ip6_dst_idev(dst)->dev,
David S. Miller4c9483b2011-03-12 16:22:43 -0500384 &fl6.daddr, 0, &fl6.saddr) < 0)
Hans Schillstrom714f0952010-10-19 10:38:48 +0200385 goto out_err;
David S. Miller452edd52011-03-02 13:27:41 -0800386 if (do_xfrm) {
David S. Miller4c9483b2011-03-12 16:22:43 -0500387 dst = xfrm_lookup(net, dst, flowi6_to_flowi(&fl6), NULL, 0);
David S. Miller452edd52011-03-02 13:27:41 -0800388 if (IS_ERR(dst)) {
389 dst = NULL;
390 goto out_err;
391 }
392 }
Alexey Dobriyan4e3fd7a2011-11-21 03:39:03 +0000393 *ret_saddr = fl6.saddr;
Hans Schillstrom714f0952010-10-19 10:38:48 +0200394 return dst;
395
396out_err:
397 dst_release(dst);
398 IP_VS_DBG_RL("ip6_route_output error, dest: %pI6\n", daddr);
399 return NULL;
400}
401
Julian Anastasovfc604762010-10-17 16:38:15 +0300402/*
403 * Get route to destination or remote server
Julian Anastasovfc604762010-10-17 16:38:15 +0300404 */
Julian Anastasov4115ded2013-03-21 11:58:05 +0200405static int
Eric W. Biedermanf5745f82015-09-21 13:02:46 -0500406__ip_vs_get_out_rt_v6(struct netns_ipvs *ipvs, int skb_af, struct sk_buff *skb,
407 struct ip_vs_dest *dest,
Julian Anastasovfc604762010-10-17 16:38:15 +0300408 struct in6_addr *daddr, struct in6_addr *ret_saddr,
Julian Anastasov4115ded2013-03-21 11:58:05 +0200409 struct ip_vs_iphdr *ipvsh, int do_xfrm, int rt_mode)
Hans Schillstrom714f0952010-10-19 10:38:48 +0200410{
Eric W. Biedermanf5745f82015-09-21 13:02:46 -0500411 struct net *net = ipvs->net;
Julian Anastasov026ace02013-03-21 11:58:06 +0200412 struct ip_vs_dest_dst *dest_dst;
Julius Volz38cdcc92008-09-02 15:55:44 +0200413 struct rt6_info *rt; /* Route to the other host */
Hans Schillstrom714f0952010-10-19 10:38:48 +0200414 struct dst_entry *dst;
Julian Anastasov4115ded2013-03-21 11:58:05 +0200415 int mtu;
Julian Anastasov026ace02013-03-21 11:58:06 +0200416 int local, noref = 1;
Julius Volz38cdcc92008-09-02 15:55:44 +0200417
418 if (dest) {
Julian Anastasov026ace02013-03-21 11:58:06 +0200419 dest_dst = __ip_vs_dst_check(dest);
420 if (likely(dest_dst))
421 rt = (struct rt6_info *) dest_dst->dst_cache;
422 else {
Hans Schillstrom714f0952010-10-19 10:38:48 +0200423 u32 cookie;
Julius Volz38cdcc92008-09-02 15:55:44 +0200424
Julian Anastasov026ace02013-03-21 11:58:06 +0200425 dest_dst = ip_vs_dest_dst_alloc();
Julian Anastasovac692692013-03-22 11:46:54 +0200426 spin_lock_bh(&dest->dst_lock);
Julian Anastasov026ace02013-03-21 11:58:06 +0200427 if (!dest_dst) {
428 __ip_vs_dst_set(dest, NULL, NULL, 0);
Julian Anastasovac692692013-03-22 11:46:54 +0200429 spin_unlock_bh(&dest->dst_lock);
Julian Anastasov026ace02013-03-21 11:58:06 +0200430 goto err_unreach;
431 }
Hans Schillstrom714f0952010-10-19 10:38:48 +0200432 dst = __ip_vs_route_output_v6(net, &dest->addr.in6,
Julian Anastasov026ace02013-03-21 11:58:06 +0200433 &dest_dst->dst_saddr.in6,
Martin KaFai Lau48e8aa62015-05-22 20:56:02 -0700434 do_xfrm, rt_mode);
Hans Schillstrom714f0952010-10-19 10:38:48 +0200435 if (!dst) {
Julian Anastasov026ace02013-03-21 11:58:06 +0200436 __ip_vs_dst_set(dest, NULL, NULL, 0);
Julian Anastasovac692692013-03-22 11:46:54 +0200437 spin_unlock_bh(&dest->dst_lock);
Julian Anastasov026ace02013-03-21 11:58:06 +0200438 ip_vs_dest_dst_free(dest_dst);
Julian Anastasov4115ded2013-03-21 11:58:05 +0200439 goto err_unreach;
Julius Volz38cdcc92008-09-02 15:55:44 +0200440 }
Hans Schillstrom714f0952010-10-19 10:38:48 +0200441 rt = (struct rt6_info *) dst;
Martin KaFai Laub197df42015-05-22 20:56:01 -0700442 cookie = rt6_get_cookie(rt);
Julian Anastasov026ace02013-03-21 11:58:06 +0200443 __ip_vs_dst_set(dest, dest_dst, &rt->dst, cookie);
Julian Anastasovac692692013-03-22 11:46:54 +0200444 spin_unlock_bh(&dest->dst_lock);
Hans Schillstrom714f0952010-10-19 10:38:48 +0200445 IP_VS_DBG(10, "new dst %pI6, src %pI6, refcnt=%d\n",
Julian Anastasov026ace02013-03-21 11:58:06 +0200446 &dest->addr.in6, &dest_dst->dst_saddr.in6,
Changli Gaod8d1f302010-06-10 23:31:35 -0700447 atomic_read(&rt->dst.__refcnt));
Julius Volz38cdcc92008-09-02 15:55:44 +0200448 }
Hans Schillstrom714f0952010-10-19 10:38:48 +0200449 if (ret_saddr)
Julian Anastasov026ace02013-03-21 11:58:06 +0200450 *ret_saddr = dest_dst->dst_saddr.in6;
Julius Volz38cdcc92008-09-02 15:55:44 +0200451 } else {
Julian Anastasov026ace02013-03-21 11:58:06 +0200452 noref = 0;
Martin KaFai Lau48e8aa62015-05-22 20:56:02 -0700453 dst = __ip_vs_route_output_v6(net, daddr, ret_saddr, do_xfrm,
454 rt_mode);
Hans Schillstrom714f0952010-10-19 10:38:48 +0200455 if (!dst)
Julian Anastasov4115ded2013-03-21 11:58:05 +0200456 goto err_unreach;
Hans Schillstrom714f0952010-10-19 10:38:48 +0200457 rt = (struct rt6_info *) dst;
Julius Volz38cdcc92008-09-02 15:55:44 +0200458 }
459
Julian Anastasovfc604762010-10-17 16:38:15 +0300460 local = __ip_vs_is_local_route6(rt);
Alex Gartrell4a4739d52014-09-09 16:40:25 -0700461
462 if (unlikely(crosses_local_route_boundary(skb_af, skb, rt_mode,
463 local))) {
464 IP_VS_DBG_RL("We are crossing local and non-local addresses"
Alex Gartrell3d536662014-10-06 08:46:19 -0700465 " daddr=%pI6\n", daddr);
Julian Anastasov4115ded2013-03-21 11:58:05 +0200466 goto err_put;
Julian Anastasovfc604762010-10-17 16:38:15 +0300467 }
Alex Gartrell4a4739d52014-09-09 16:40:25 -0700468
469 if (unlikely(local)) {
Julian Anastasov4115ded2013-03-21 11:58:05 +0200470 /* skb to local stack, preserve old route */
Julian Anastasov026ace02013-03-21 11:58:06 +0200471 if (!noref)
472 dst_release(&rt->dst);
Julian Anastasov4115ded2013-03-21 11:58:05 +0200473 return local;
Julian Anastasovfc604762010-10-17 16:38:15 +0300474 }
475
Julian Anastasov4115ded2013-03-21 11:58:05 +0200476 /* MTU checking */
477 if (likely(!(rt_mode & IP_VS_RT_MODE_TUNNEL)))
478 mtu = dst_mtu(&rt->dst);
479 else {
Julian Anastasov4115ded2013-03-21 11:58:05 +0200480 mtu = dst_mtu(&rt->dst) - sizeof(struct ipv6hdr);
481 if (mtu < IPV6_MIN_MTU) {
482 IP_VS_DBG_RL("%s(): mtu less than %d\n", __func__,
483 IPV6_MIN_MTU);
484 goto err_put;
485 }
Alex Gartrell919aa0b2014-09-09 16:40:26 -0700486 maybe_update_pmtu(skb_af, skb, mtu);
Julian Anastasov4115ded2013-03-21 11:58:05 +0200487 }
488
Eric W. Biederman20868a42015-09-21 13:02:47 -0500489 if (!ensure_mtu_is_adequate(ipvs, skb_af, rt_mode, ipvsh, skb, mtu))
Julian Anastasov4115ded2013-03-21 11:58:05 +0200490 goto err_put;
Julian Anastasov4115ded2013-03-21 11:58:05 +0200491
492 skb_dst_drop(skb);
Julian Anastasov026ace02013-03-21 11:58:06 +0200493 if (noref) {
494 if (!local)
Hannes Frederic Sowadbfc4fb2014-12-06 19:19:42 +0100495 skb_dst_set_noref(skb, &rt->dst);
Julian Anastasov026ace02013-03-21 11:58:06 +0200496 else
497 skb_dst_set(skb, dst_clone(&rt->dst));
498 } else
499 skb_dst_set(skb, &rt->dst);
Julian Anastasov4115ded2013-03-21 11:58:05 +0200500
501 return local;
502
503err_put:
Julian Anastasov026ace02013-03-21 11:58:06 +0200504 if (!noref)
505 dst_release(&rt->dst);
Julian Anastasov4115ded2013-03-21 11:58:05 +0200506 return -1;
507
508err_unreach:
Alex Gartrell326bf172015-06-26 03:18:45 -0700509 /* The ip6_link_failure function requires the dev field to be set
510 * in order to get the net (further for the sake of fwmark
511 * reflection).
512 */
513 if (!skb->dev)
514 skb->dev = skb_dst(skb)->dev;
515
Julian Anastasov4115ded2013-03-21 11:58:05 +0200516 dst_link_failure(skb);
517 return -1;
Julius Volz38cdcc92008-09-02 15:55:44 +0200518}
519#endif
520
Linus Torvalds1da177e2005-04-16 15:20:36 -0700521
Julian Anastasovb8abdf02013-03-21 11:58:01 +0200522/* return NF_ACCEPT to allow forwarding or other NF_xxx on error */
523static inline int ip_vs_tunnel_xmit_prepare(struct sk_buff *skb,
524 struct ip_vs_conn *cp)
525{
526 int ret = NF_ACCEPT;
Julian Anastasovf4bc17c2010-09-21 17:35:41 +0200527
Julian Anastasovb8abdf02013-03-21 11:58:01 +0200528 skb->ipvs_property = 1;
529 if (unlikely(cp->flags & IP_VS_CONN_F_NFCT))
530 ret = ip_vs_confirm_conntrack(skb);
531 if (ret == NF_ACCEPT) {
532 nf_reset(skb);
533 skb_forward_csum(skb);
Julian Anastasove3895c02015-07-09 11:15:27 +0300534 if (!skb->sk)
535 skb_sender_cpu_clear(skb);
Julian Anastasovb8abdf02013-03-21 11:58:01 +0200536 }
537 return ret;
538}
Julian Anastasovf4bc17c2010-09-21 17:35:41 +0200539
Alex Gartrell71563f32015-07-05 14:28:26 -0700540/* In the event of a remote destination, it's possible that we would have
541 * matches against an old socket (particularly a TIME-WAIT socket). This
542 * causes havoc down the line (ip_local_out et. al. expect regular sockets
543 * and invalid memory accesses will happen) so simply drop the association
544 * in this case.
545*/
546static inline void ip_vs_drop_early_demux_sk(struct sk_buff *skb)
547{
548 /* If dev is set, the packet came from the LOCAL_IN callback and
549 * not from a local TCP socket.
550 */
551 if (skb->dev)
552 skb_orphan(skb);
553}
554
Julian Anastasovb8abdf02013-03-21 11:58:01 +0200555/* return NF_STOLEN (sent) or NF_ACCEPT if local=1 (not sent) */
556static inline int ip_vs_nat_send_or_cont(int pf, struct sk_buff *skb,
557 struct ip_vs_conn *cp, int local)
558{
559 int ret = NF_STOLEN;
560
561 skb->ipvs_property = 1;
562 if (likely(!(cp->flags & IP_VS_CONN_F_NFCT)))
563 ip_vs_notrack(skb);
564 else
565 ip_vs_update_conntrack(skb, cp, 1);
Alex Gartrell71563f32015-07-05 14:28:26 -0700566
567 /* Remove the early_demux association unless it's bound for the
568 * exact same port and address on this host after translation.
569 */
570 if (!local || cp->vport != cp->dport ||
571 !ip_vs_addr_equal(cp->af, &cp->vaddr, &cp->daddr))
572 ip_vs_drop_early_demux_sk(skb);
573
Julian Anastasovb8abdf02013-03-21 11:58:01 +0200574 if (!local) {
575 skb_forward_csum(skb);
Julian Anastasove3895c02015-07-09 11:15:27 +0300576 if (!skb->sk)
577 skb_sender_cpu_clear(skb);
Eric W. Biederman58dbc6f2015-09-21 13:01:41 -0500578 NF_HOOK(pf, NF_INET_LOCAL_OUT, cp->ipvs->net, NULL, skb,
Eric W. Biederman13206b62015-10-07 16:48:35 -0500579 NULL, skb_dst(skb)->dev, dst_output);
Julian Anastasovb8abdf02013-03-21 11:58:01 +0200580 } else
581 ret = NF_ACCEPT;
Alex Gartrell71563f32015-07-05 14:28:26 -0700582
Julian Anastasovb8abdf02013-03-21 11:58:01 +0200583 return ret;
584}
585
586/* return NF_STOLEN (sent) or NF_ACCEPT if local=1 (not sent) */
587static inline int ip_vs_send_or_cont(int pf, struct sk_buff *skb,
588 struct ip_vs_conn *cp, int local)
589{
590 int ret = NF_STOLEN;
591
592 skb->ipvs_property = 1;
593 if (likely(!(cp->flags & IP_VS_CONN_F_NFCT)))
594 ip_vs_notrack(skb);
595 if (!local) {
Alex Gartrell71563f32015-07-05 14:28:26 -0700596 ip_vs_drop_early_demux_sk(skb);
Julian Anastasovb8abdf02013-03-21 11:58:01 +0200597 skb_forward_csum(skb);
Julian Anastasove3895c02015-07-09 11:15:27 +0300598 if (!skb->sk)
599 skb_sender_cpu_clear(skb);
Eric W. Biederman58dbc6f2015-09-21 13:01:41 -0500600 NF_HOOK(pf, NF_INET_LOCAL_OUT, cp->ipvs->net, NULL, skb,
Eric W. Biederman13206b62015-10-07 16:48:35 -0500601 NULL, skb_dst(skb)->dev, dst_output);
Julian Anastasovb8abdf02013-03-21 11:58:01 +0200602 } else
603 ret = NF_ACCEPT;
604 return ret;
605}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700606
607
608/*
609 * NULL transmitter (do nothing except return NF_ACCEPT)
610 */
611int
612ip_vs_null_xmit(struct sk_buff *skb, struct ip_vs_conn *cp,
Jesper Dangaard Brouerd4383f02012-09-26 14:07:17 +0200613 struct ip_vs_protocol *pp, struct ip_vs_iphdr *ipvsh)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700614{
615 /* we do not touch skb and do not need pskb ptr */
Julian Anastasovb8abdf02013-03-21 11:58:01 +0200616 return ip_vs_send_or_cont(NFPROTO_IPV4, skb, cp, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700617}
618
619
620/*
621 * Bypass transmitter
622 * Let packets bypass the destination when the destination is not
623 * available, it may be only used in transparent cache cluster.
624 */
625int
626ip_vs_bypass_xmit(struct sk_buff *skb, struct ip_vs_conn *cp,
Jesper Dangaard Brouerd4383f02012-09-26 14:07:17 +0200627 struct ip_vs_protocol *pp, struct ip_vs_iphdr *ipvsh)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700628{
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -0700629 struct iphdr *iph = ip_hdr(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700630
631 EnterFunction(10);
632
Julian Anastasov026ace02013-03-21 11:58:06 +0200633 rcu_read_lock();
Eric W. Biedermanecfe87b2015-09-21 13:02:45 -0500634 if (__ip_vs_get_out_rt(cp->ipvs, cp->af, skb, NULL, iph->daddr,
Alex Gartrellc63e4de2014-09-09 16:40:27 -0700635 IP_VS_RT_MODE_NON_LOCAL, NULL, ipvsh) < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700636 goto tx_error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700637
Julian Anastasov4115ded2013-03-21 11:58:05 +0200638 ip_send_check(iph);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700639
640 /* Another hack: avoid icmp_send in ip_fragment */
WANG Cong60ff7462014-05-04 16:39:18 -0700641 skb->ignore_df = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700642
Julian Anastasovb8abdf02013-03-21 11:58:01 +0200643 ip_vs_send_or_cont(NFPROTO_IPV4, skb, cp, 0);
Julian Anastasov026ace02013-03-21 11:58:06 +0200644 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700645
646 LeaveFunction(10);
647 return NF_STOLEN;
648
Linus Torvalds1da177e2005-04-16 15:20:36 -0700649 tx_error:
650 kfree_skb(skb);
Julian Anastasov026ace02013-03-21 11:58:06 +0200651 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700652 LeaveFunction(10);
653 return NF_STOLEN;
654}
655
Julius Volzb3cdd2a72008-09-02 15:55:45 +0200656#ifdef CONFIG_IP_VS_IPV6
657int
658ip_vs_bypass_xmit_v6(struct sk_buff *skb, struct ip_vs_conn *cp,
Julian Anastasov4115ded2013-03-21 11:58:05 +0200659 struct ip_vs_protocol *pp, struct ip_vs_iphdr *ipvsh)
Julius Volzb3cdd2a72008-09-02 15:55:45 +0200660{
Alex Gartrell34818942015-08-26 09:40:35 -0700661 struct ipv6hdr *iph = ipv6_hdr(skb);
662
Julius Volzb3cdd2a72008-09-02 15:55:45 +0200663 EnterFunction(10);
664
Julian Anastasov026ace02013-03-21 11:58:06 +0200665 rcu_read_lock();
Eric W. Biedermanf5745f82015-09-21 13:02:46 -0500666 if (__ip_vs_get_out_rt_v6(cp->ipvs, cp->af, skb, NULL,
667 &iph->daddr, NULL,
Julian Anastasov4115ded2013-03-21 11:58:05 +0200668 ipvsh, 0, IP_VS_RT_MODE_NON_LOCAL) < 0)
Julius Volzb3cdd2a72008-09-02 15:55:45 +0200669 goto tx_error;
Julius Volzb3cdd2a72008-09-02 15:55:45 +0200670
671 /* Another hack: avoid icmp_send in ip_fragment */
WANG Cong60ff7462014-05-04 16:39:18 -0700672 skb->ignore_df = 1;
Julius Volzb3cdd2a72008-09-02 15:55:45 +0200673
Julian Anastasovb8abdf02013-03-21 11:58:01 +0200674 ip_vs_send_or_cont(NFPROTO_IPV6, skb, cp, 0);
Julian Anastasov026ace02013-03-21 11:58:06 +0200675 rcu_read_unlock();
Julius Volzb3cdd2a72008-09-02 15:55:45 +0200676
677 LeaveFunction(10);
678 return NF_STOLEN;
679
Julius Volzb3cdd2a72008-09-02 15:55:45 +0200680 tx_error:
681 kfree_skb(skb);
Julian Anastasov026ace02013-03-21 11:58:06 +0200682 rcu_read_unlock();
Julius Volzb3cdd2a72008-09-02 15:55:45 +0200683 LeaveFunction(10);
684 return NF_STOLEN;
685}
686#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700687
688/*
689 * NAT transmitter (only for outside-to-inside nat forwarding)
690 * Not used for related ICMP
691 */
692int
693ip_vs_nat_xmit(struct sk_buff *skb, struct ip_vs_conn *cp,
Jesper Dangaard Brouerd4383f02012-09-26 14:07:17 +0200694 struct ip_vs_protocol *pp, struct ip_vs_iphdr *ipvsh)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700695{
696 struct rtable *rt; /* Route to the other host */
Julian Anastasov4115ded2013-03-21 11:58:05 +0200697 int local, rc, was_input;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700698
699 EnterFunction(10);
700
Julian Anastasov026ace02013-03-21 11:58:06 +0200701 rcu_read_lock();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700702 /* check if it is a connection of no-client-port */
703 if (unlikely(cp->flags & IP_VS_CONN_F_NO_CPORT)) {
Al Viro014d7302006-09-28 14:29:52 -0700704 __be16 _pt, *p;
Julian Anastasov4115ded2013-03-21 11:58:05 +0200705
706 p = skb_header_pointer(skb, ipvsh->len, sizeof(_pt), &_pt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700707 if (p == NULL)
708 goto tx_error;
709 ip_vs_conn_fill_cport(cp, *p);
710 IP_VS_DBG(10, "filled cport=%d\n", ntohs(*p));
711 }
712
Julian Anastasov4115ded2013-03-21 11:58:05 +0200713 was_input = rt_is_input_route(skb_rtable(skb));
Eric W. Biedermanecfe87b2015-09-21 13:02:45 -0500714 local = __ip_vs_get_out_rt(cp->ipvs, cp->af, skb, cp->dest, cp->daddr.ip,
Julian Anastasov4115ded2013-03-21 11:58:05 +0200715 IP_VS_RT_MODE_LOCAL |
716 IP_VS_RT_MODE_NON_LOCAL |
Alex Gartrellc63e4de2014-09-09 16:40:27 -0700717 IP_VS_RT_MODE_RDR, NULL, ipvsh);
Julian Anastasov4115ded2013-03-21 11:58:05 +0200718 if (local < 0)
719 goto tx_error;
720 rt = skb_rtable(skb);
Julian Anastasovfc604762010-10-17 16:38:15 +0300721 /*
722 * Avoid duplicate tuple in reply direction for NAT traffic
723 * to local address when connection is sync-ed
724 */
Igor Maravićc0cd1152011-12-12 02:58:24 +0000725#if IS_ENABLED(CONFIG_NF_CONNTRACK)
Julian Anastasovfc604762010-10-17 16:38:15 +0300726 if (cp->flags & IP_VS_CONN_F_SYNC && local) {
727 enum ip_conntrack_info ctinfo;
Alan Cox05b4b062012-10-26 00:13:27 +0000728 struct nf_conn *ct = nf_ct_get(skb, &ctinfo);
Julian Anastasovfc604762010-10-17 16:38:15 +0300729
730 if (ct && !nf_ct_is_untracked(ct)) {
Alex Gartrellb0e010c2015-08-26 09:40:28 -0700731 IP_VS_DBG_RL_PKT(10, AF_INET, pp, skb, ipvsh->off,
Julian Anastasov0d796412010-10-17 16:46:17 +0300732 "ip_vs_nat_xmit(): "
Julian Anastasovfc604762010-10-17 16:38:15 +0300733 "stopping DNAT to local address");
Julian Anastasov4115ded2013-03-21 11:58:05 +0200734 goto tx_error;
Julian Anastasovfc604762010-10-17 16:38:15 +0300735 }
736 }
737#endif
738
739 /* From world but DNAT to loopback address? */
Julian Anastasov4115ded2013-03-21 11:58:05 +0200740 if (local && ipv4_is_loopback(cp->daddr.ip) && was_input) {
Alex Gartrellb0e010c2015-08-26 09:40:28 -0700741 IP_VS_DBG_RL_PKT(1, AF_INET, pp, skb, ipvsh->off,
742 "ip_vs_nat_xmit(): stopping DNAT to loopback "
743 "address");
Julian Anastasov4115ded2013-03-21 11:58:05 +0200744 goto tx_error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700745 }
746
747 /* copy-on-write the packet before mangling it */
Herbert Xuaf1e1cf2007-10-14 00:39:33 -0700748 if (!skb_make_writable(skb, sizeof(struct iphdr)))
Julian Anastasov4115ded2013-03-21 11:58:05 +0200749 goto tx_error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700750
Changli Gaod8d1f302010-06-10 23:31:35 -0700751 if (skb_cow(skb, rt->dst.dev->hard_header_len))
Julian Anastasov4115ded2013-03-21 11:58:05 +0200752 goto tx_error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700753
Linus Torvalds1da177e2005-04-16 15:20:36 -0700754 /* mangle the packet */
Jesper Dangaard Brouerd4383f02012-09-26 14:07:17 +0200755 if (pp->dnat_handler && !pp->dnat_handler(skb, pp, cp, ipvsh))
Julian Anastasov4115ded2013-03-21 11:58:05 +0200756 goto tx_error;
Julius Volze7ade462008-09-02 15:55:33 +0200757 ip_hdr(skb)->daddr = cp->daddr.ip;
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -0700758 ip_send_check(ip_hdr(skb));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700759
Alex Gartrellb0e010c2015-08-26 09:40:28 -0700760 IP_VS_DBG_PKT(10, AF_INET, pp, skb, ipvsh->off, "After DNAT");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700761
762 /* FIXME: when application helper enlarges the packet and the length
763 is larger than the MTU of outgoing device, there will be still
764 MTU problem. */
765
766 /* Another hack: avoid icmp_send in ip_fragment */
WANG Cong60ff7462014-05-04 16:39:18 -0700767 skb->ignore_df = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700768
Julian Anastasovb8abdf02013-03-21 11:58:01 +0200769 rc = ip_vs_nat_send_or_cont(NFPROTO_IPV4, skb, cp, local);
Julian Anastasov026ace02013-03-21 11:58:06 +0200770 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700771
772 LeaveFunction(10);
Julian Anastasovb8abdf02013-03-21 11:58:01 +0200773 return rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700774
Linus Torvalds1da177e2005-04-16 15:20:36 -0700775 tx_error:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700776 kfree_skb(skb);
Julian Anastasov026ace02013-03-21 11:58:06 +0200777 rcu_read_unlock();
Julian Anastasovf4bc17c2010-09-21 17:35:41 +0200778 LeaveFunction(10);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700779 return NF_STOLEN;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700780}
781
Julius Volzb3cdd2a72008-09-02 15:55:45 +0200782#ifdef CONFIG_IP_VS_IPV6
783int
784ip_vs_nat_xmit_v6(struct sk_buff *skb, struct ip_vs_conn *cp,
Julian Anastasov4115ded2013-03-21 11:58:05 +0200785 struct ip_vs_protocol *pp, struct ip_vs_iphdr *ipvsh)
Julius Volzb3cdd2a72008-09-02 15:55:45 +0200786{
787 struct rt6_info *rt; /* Route to the other host */
Julian Anastasovb8abdf02013-03-21 11:58:01 +0200788 int local, rc;
Julius Volzb3cdd2a72008-09-02 15:55:45 +0200789
790 EnterFunction(10);
791
Julian Anastasov026ace02013-03-21 11:58:06 +0200792 rcu_read_lock();
Julius Volzb3cdd2a72008-09-02 15:55:45 +0200793 /* check if it is a connection of no-client-port */
Julian Anastasov4115ded2013-03-21 11:58:05 +0200794 if (unlikely(cp->flags & IP_VS_CONN_F_NO_CPORT && !ipvsh->fragoffs)) {
Julius Volzb3cdd2a72008-09-02 15:55:45 +0200795 __be16 _pt, *p;
Julian Anastasov4115ded2013-03-21 11:58:05 +0200796 p = skb_header_pointer(skb, ipvsh->len, sizeof(_pt), &_pt);
Julius Volzb3cdd2a72008-09-02 15:55:45 +0200797 if (p == NULL)
798 goto tx_error;
799 ip_vs_conn_fill_cport(cp, *p);
800 IP_VS_DBG(10, "filled cport=%d\n", ntohs(*p));
801 }
802
Eric W. Biedermanf5745f82015-09-21 13:02:46 -0500803 local = __ip_vs_get_out_rt_v6(cp->ipvs, cp->af, skb, cp->dest,
804 &cp->daddr.in6,
Alex Gartrell4a4739d52014-09-09 16:40:25 -0700805 NULL, ipvsh, 0,
Julian Anastasov4115ded2013-03-21 11:58:05 +0200806 IP_VS_RT_MODE_LOCAL |
807 IP_VS_RT_MODE_NON_LOCAL |
808 IP_VS_RT_MODE_RDR);
809 if (local < 0)
810 goto tx_error;
811 rt = (struct rt6_info *) skb_dst(skb);
Julian Anastasovfc604762010-10-17 16:38:15 +0300812 /*
813 * Avoid duplicate tuple in reply direction for NAT traffic
814 * to local address when connection is sync-ed
815 */
Igor Maravićc0cd1152011-12-12 02:58:24 +0000816#if IS_ENABLED(CONFIG_NF_CONNTRACK)
Julian Anastasovfc604762010-10-17 16:38:15 +0300817 if (cp->flags & IP_VS_CONN_F_SYNC && local) {
818 enum ip_conntrack_info ctinfo;
Alan Cox05b4b062012-10-26 00:13:27 +0000819 struct nf_conn *ct = nf_ct_get(skb, &ctinfo);
Julian Anastasovfc604762010-10-17 16:38:15 +0300820
821 if (ct && !nf_ct_is_untracked(ct)) {
Alex Gartrellb0e010c2015-08-26 09:40:28 -0700822 IP_VS_DBG_RL_PKT(10, AF_INET6, pp, skb, ipvsh->off,
Julian Anastasovfc604762010-10-17 16:38:15 +0300823 "ip_vs_nat_xmit_v6(): "
824 "stopping DNAT to local address");
Julian Anastasov4115ded2013-03-21 11:58:05 +0200825 goto tx_error;
Julian Anastasovfc604762010-10-17 16:38:15 +0300826 }
827 }
828#endif
829
830 /* From world but DNAT to loopback address? */
831 if (local && skb->dev && !(skb->dev->flags & IFF_LOOPBACK) &&
Martin KaFai Laufd0273d2015-05-22 20:55:57 -0700832 ipv6_addr_type(&cp->daddr.in6) & IPV6_ADDR_LOOPBACK) {
Alex Gartrellb0e010c2015-08-26 09:40:28 -0700833 IP_VS_DBG_RL_PKT(1, AF_INET6, pp, skb, ipvsh->off,
Julian Anastasovfc604762010-10-17 16:38:15 +0300834 "ip_vs_nat_xmit_v6(): "
835 "stopping DNAT to loopback address");
Julian Anastasov4115ded2013-03-21 11:58:05 +0200836 goto tx_error;
Julius Volzb3cdd2a72008-09-02 15:55:45 +0200837 }
838
839 /* copy-on-write the packet before mangling it */
840 if (!skb_make_writable(skb, sizeof(struct ipv6hdr)))
Julian Anastasov4115ded2013-03-21 11:58:05 +0200841 goto tx_error;
Julius Volzb3cdd2a72008-09-02 15:55:45 +0200842
Changli Gaod8d1f302010-06-10 23:31:35 -0700843 if (skb_cow(skb, rt->dst.dev->hard_header_len))
Julian Anastasov4115ded2013-03-21 11:58:05 +0200844 goto tx_error;
Julius Volzb3cdd2a72008-09-02 15:55:45 +0200845
Julius Volzb3cdd2a72008-09-02 15:55:45 +0200846 /* mangle the packet */
Julian Anastasov4115ded2013-03-21 11:58:05 +0200847 if (pp->dnat_handler && !pp->dnat_handler(skb, pp, cp, ipvsh))
Julius Volzb3cdd2a72008-09-02 15:55:45 +0200848 goto tx_error;
Alexey Dobriyan4e3fd7a2011-11-21 03:39:03 +0000849 ipv6_hdr(skb)->daddr = cp->daddr.in6;
Julian Anastasovfc604762010-10-17 16:38:15 +0300850
Alex Gartrellb0e010c2015-08-26 09:40:28 -0700851 IP_VS_DBG_PKT(10, AF_INET6, pp, skb, ipvsh->off, "After DNAT");
Julius Volzb3cdd2a72008-09-02 15:55:45 +0200852
853 /* FIXME: when application helper enlarges the packet and the length
854 is larger than the MTU of outgoing device, there will be still
855 MTU problem. */
856
857 /* Another hack: avoid icmp_send in ip_fragment */
WANG Cong60ff7462014-05-04 16:39:18 -0700858 skb->ignore_df = 1;
Julius Volzb3cdd2a72008-09-02 15:55:45 +0200859
Julian Anastasovb8abdf02013-03-21 11:58:01 +0200860 rc = ip_vs_nat_send_or_cont(NFPROTO_IPV6, skb, cp, local);
Julian Anastasov026ace02013-03-21 11:58:06 +0200861 rcu_read_unlock();
Julius Volzb3cdd2a72008-09-02 15:55:45 +0200862
863 LeaveFunction(10);
Julian Anastasovb8abdf02013-03-21 11:58:01 +0200864 return rc;
Julius Volzb3cdd2a72008-09-02 15:55:45 +0200865
Julius Volzb3cdd2a72008-09-02 15:55:45 +0200866tx_error:
867 LeaveFunction(10);
868 kfree_skb(skb);
Julian Anastasov026ace02013-03-21 11:58:06 +0200869 rcu_read_unlock();
Julius Volzb3cdd2a72008-09-02 15:55:45 +0200870 return NF_STOLEN;
Julius Volzb3cdd2a72008-09-02 15:55:45 +0200871}
872#endif
873
Alex Gartrell8052ba22014-09-09 16:40:28 -0700874/* When forwarding a packet, we must ensure that we've got enough headroom
875 * for the encapsulation packet in the skb. This also gives us an
876 * opportunity to figure out what the payload_len, dsfield, ttl, and df
877 * values should be, so that we won't need to look at the old ip header
878 * again
879 */
880static struct sk_buff *
881ip_vs_prepare_tunneled_skb(struct sk_buff *skb, int skb_af,
882 unsigned int max_headroom, __u8 *next_protocol,
883 __u32 *payload_len, __u8 *dsfield, __u8 *ttl,
884 __be16 *df)
885{
886 struct sk_buff *new_skb = NULL;
887 struct iphdr *old_iph = NULL;
888#ifdef CONFIG_IP_VS_IPV6
889 struct ipv6hdr *old_ipv6h = NULL;
890#endif
891
Alex Gartrell71563f32015-07-05 14:28:26 -0700892 ip_vs_drop_early_demux_sk(skb);
893
Alex Gartrell8052ba22014-09-09 16:40:28 -0700894 if (skb_headroom(skb) < max_headroom || skb_cloned(skb)) {
895 new_skb = skb_realloc_headroom(skb, max_headroom);
896 if (!new_skb)
897 goto error;
Calvin Owens50656d92014-11-04 16:37:40 -0800898 if (skb->sk)
899 skb_set_owner_w(new_skb, skb->sk);
Alex Gartrell8052ba22014-09-09 16:40:28 -0700900 consume_skb(skb);
901 skb = new_skb;
902 }
903
904#ifdef CONFIG_IP_VS_IPV6
905 if (skb_af == AF_INET6) {
906 old_ipv6h = ipv6_hdr(skb);
907 *next_protocol = IPPROTO_IPV6;
908 if (payload_len)
909 *payload_len =
910 ntohs(old_ipv6h->payload_len) +
911 sizeof(*old_ipv6h);
912 *dsfield = ipv6_get_dsfield(old_ipv6h);
913 *ttl = old_ipv6h->hop_limit;
914 if (df)
915 *df = 0;
916 } else
917#endif
918 {
919 old_iph = ip_hdr(skb);
920 /* Copy DF, reset fragment offset and MF */
921 if (df)
922 *df = (old_iph->frag_off & htons(IP_DF));
923 *next_protocol = IPPROTO_IPIP;
924
925 /* fix old IP header checksum */
926 ip_send_check(old_iph);
927 *dsfield = ipv4_get_dsfield(old_iph);
928 *ttl = old_iph->ttl;
929 if (payload_len)
930 *payload_len = ntohs(old_iph->tot_len);
931 }
932
933 return skb;
934error:
935 kfree_skb(skb);
936 return ERR_PTR(-ENOMEM);
937}
938
939static inline int __tun_gso_type_mask(int encaps_af, int orig_af)
940{
941 if (encaps_af == AF_INET) {
942 if (orig_af == AF_INET)
943 return SKB_GSO_IPIP;
944
945 return SKB_GSO_SIT;
946 }
947
948 /* GSO: we need to provide proper SKB_GSO_ value for IPv6:
949 * SKB_GSO_SIT/IPV6
950 */
951 return 0;
952}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700953
954/*
955 * IP Tunneling transmitter
956 *
957 * This function encapsulates the packet in a new IP packet, its
958 * destination will be set to cp->daddr. Most code of this function
959 * is taken from ipip.c.
960 *
961 * It is used in VS/TUN cluster. The load balancer selects a real
962 * server from a cluster based on a scheduling algorithm,
963 * encapsulates the request packet and forwards it to the selected
964 * server. For example, all real servers are configured with
965 * "ifconfig tunl0 <Virtual IP Address> up". When the server receives
966 * the encapsulated packet, it will decapsulate the packet, processe
967 * the request and return the response packets directly to the client
968 * without passing the load balancer. This can greatly increase the
969 * scalability of virtual server.
970 *
971 * Used for ANY protocol
972 */
973int
974ip_vs_tunnel_xmit(struct sk_buff *skb, struct ip_vs_conn *cp,
Jesper Dangaard Brouerd4383f02012-09-26 14:07:17 +0200975 struct ip_vs_protocol *pp, struct ip_vs_iphdr *ipvsh)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700976{
Eric W. Biederman361c3f52015-09-21 13:02:44 -0500977 struct netns_ipvs *ipvs = cp->ipvs;
978 struct net *net = ipvs->net;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700979 struct rtable *rt; /* Route to the other host */
Julian Anastasovc92f5ca2011-05-10 12:46:05 +0000980 __be32 saddr; /* Source for tunnel */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700981 struct net_device *tdev; /* Device to other host */
Alex Gartrell8052ba22014-09-09 16:40:28 -0700982 __u8 next_protocol = 0;
983 __u8 dsfield = 0;
984 __u8 ttl = 0;
985 __be16 df = 0;
986 __be16 *dfp = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700987 struct iphdr *iph; /* Our new IP header */
Chuck Leverc2636b42007-10-23 21:07:32 -0700988 unsigned int max_headroom; /* The extra header space needed */
Julian Anastasov4115ded2013-03-21 11:58:05 +0200989 int ret, local;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700990
991 EnterFunction(10);
992
Julian Anastasov026ace02013-03-21 11:58:06 +0200993 rcu_read_lock();
Eric W. Biedermanecfe87b2015-09-21 13:02:45 -0500994 local = __ip_vs_get_out_rt(ipvs, cp->af, skb, cp->dest, cp->daddr.ip,
Julian Anastasov4115ded2013-03-21 11:58:05 +0200995 IP_VS_RT_MODE_LOCAL |
996 IP_VS_RT_MODE_NON_LOCAL |
997 IP_VS_RT_MODE_CONNECT |
Alex Gartrellc63e4de2014-09-09 16:40:27 -0700998 IP_VS_RT_MODE_TUNNEL, &saddr, ipvsh);
Julian Anastasov4115ded2013-03-21 11:58:05 +0200999 if (local < 0)
1000 goto tx_error;
Julian Anastasov026ace02013-03-21 11:58:06 +02001001 if (local) {
1002 rcu_read_unlock();
Julian Anastasovb8abdf02013-03-21 11:58:01 +02001003 return ip_vs_send_or_cont(NFPROTO_IPV4, skb, cp, 1);
Julian Anastasov026ace02013-03-21 11:58:06 +02001004 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001005
Julian Anastasov4115ded2013-03-21 11:58:05 +02001006 rt = skb_rtable(skb);
Changli Gaod8d1f302010-06-10 23:31:35 -07001007 tdev = rt->dst.dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001008
Linus Torvalds1da177e2005-04-16 15:20:36 -07001009 /*
1010 * Okay, now see if we can stuff it in the buffer as-is.
1011 */
1012 max_headroom = LL_RESERVED_SPACE(tdev) + sizeof(struct iphdr);
1013
Alex Gartrell8052ba22014-09-09 16:40:28 -07001014 /* We only care about the df field if sysctl_pmtu_disc(ipvs) is set */
1015 dfp = sysctl_pmtu_disc(ipvs) ? &df : NULL;
1016 skb = ip_vs_prepare_tunneled_skb(skb, cp->af, max_headroom,
1017 &next_protocol, NULL, &dsfield,
1018 &ttl, dfp);
1019 if (IS_ERR(skb))
1020 goto tx_error;
Julian Anastasov4115ded2013-03-21 11:58:05 +02001021
Alex Gartrell8052ba22014-09-09 16:40:28 -07001022 skb = iptunnel_handle_offloads(
1023 skb, false, __tun_gso_type_mask(AF_INET, cp->af));
Julian Anastasovea1d5d72014-08-01 10:36:17 +03001024 if (IS_ERR(skb))
1025 goto tx_error;
1026
1027 skb->transport_header = skb->network_header;
1028
Arnaldo Carvalho de Meloe2d1bca2007-04-10 20:46:21 -07001029 skb_push(skb, sizeof(struct iphdr));
1030 skb_reset_network_header(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001031 memset(&(IPCB(skb)->opt), 0, sizeof(IPCB(skb)->opt));
1032
Linus Torvalds1da177e2005-04-16 15:20:36 -07001033 /*
1034 * Push down and install the IPIP header.
1035 */
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -07001036 iph = ip_hdr(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001037 iph->version = 4;
1038 iph->ihl = sizeof(struct iphdr)>>2;
1039 iph->frag_off = df;
Alex Gartrell8052ba22014-09-09 16:40:28 -07001040 iph->protocol = next_protocol;
1041 iph->tos = dsfield;
Julian Anastasovc92f5ca2011-05-10 12:46:05 +00001042 iph->daddr = cp->daddr.ip;
1043 iph->saddr = saddr;
Alex Gartrell8052ba22014-09-09 16:40:28 -07001044 iph->ttl = ttl;
Hannes Frederic Sowab6a77192015-03-25 17:07:44 +01001045 ip_select_ident(net, skb, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001046
1047 /* Another hack: avoid icmp_send in ip_fragment */
WANG Cong60ff7462014-05-04 16:39:18 -07001048 skb->ignore_df = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001049
Julian Anastasovb8abdf02013-03-21 11:58:01 +02001050 ret = ip_vs_tunnel_xmit_prepare(skb, cp);
Julian Anastasovf4bc17c2010-09-21 17:35:41 +02001051 if (ret == NF_ACCEPT)
Eric W. Biederman33224b12015-10-07 16:48:46 -05001052 ip_local_out(net, skb->sk, skb);
Julian Anastasovf4bc17c2010-09-21 17:35:41 +02001053 else if (ret == NF_DROP)
1054 kfree_skb(skb);
Julian Anastasov026ace02013-03-21 11:58:06 +02001055 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001056
1057 LeaveFunction(10);
1058
1059 return NF_STOLEN;
1060
Linus Torvalds1da177e2005-04-16 15:20:36 -07001061 tx_error:
Julian Anastasovea1d5d72014-08-01 10:36:17 +03001062 if (!IS_ERR(skb))
1063 kfree_skb(skb);
Julian Anastasov026ace02013-03-21 11:58:06 +02001064 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001065 LeaveFunction(10);
1066 return NF_STOLEN;
1067}
1068
Julius Volzb3cdd2a72008-09-02 15:55:45 +02001069#ifdef CONFIG_IP_VS_IPV6
1070int
1071ip_vs_tunnel_xmit_v6(struct sk_buff *skb, struct ip_vs_conn *cp,
Jesper Dangaard Brouerd4383f02012-09-26 14:07:17 +02001072 struct ip_vs_protocol *pp, struct ip_vs_iphdr *ipvsh)
Julius Volzb3cdd2a72008-09-02 15:55:45 +02001073{
1074 struct rt6_info *rt; /* Route to the other host */
Hans Schillstrom714f0952010-10-19 10:38:48 +02001075 struct in6_addr saddr; /* Source for tunnel */
Julius Volzb3cdd2a72008-09-02 15:55:45 +02001076 struct net_device *tdev; /* Device to other host */
Alex Gartrell8052ba22014-09-09 16:40:28 -07001077 __u8 next_protocol = 0;
1078 __u32 payload_len = 0;
1079 __u8 dsfield = 0;
1080 __u8 ttl = 0;
Julius Volzb3cdd2a72008-09-02 15:55:45 +02001081 struct ipv6hdr *iph; /* Our new IP header */
1082 unsigned int max_headroom; /* The extra header space needed */
Julian Anastasov4115ded2013-03-21 11:58:05 +02001083 int ret, local;
Julius Volzb3cdd2a72008-09-02 15:55:45 +02001084
1085 EnterFunction(10);
1086
Julian Anastasov026ace02013-03-21 11:58:06 +02001087 rcu_read_lock();
Eric W. Biedermanf5745f82015-09-21 13:02:46 -05001088 local = __ip_vs_get_out_rt_v6(cp->ipvs, cp->af, skb, cp->dest,
1089 &cp->daddr.in6,
Julian Anastasov4115ded2013-03-21 11:58:05 +02001090 &saddr, ipvsh, 1,
1091 IP_VS_RT_MODE_LOCAL |
1092 IP_VS_RT_MODE_NON_LOCAL |
1093 IP_VS_RT_MODE_TUNNEL);
1094 if (local < 0)
1095 goto tx_error;
Julian Anastasov026ace02013-03-21 11:58:06 +02001096 if (local) {
1097 rcu_read_unlock();
Julian Anastasovb8abdf02013-03-21 11:58:01 +02001098 return ip_vs_send_or_cont(NFPROTO_IPV6, skb, cp, 1);
Julian Anastasov026ace02013-03-21 11:58:06 +02001099 }
Julius Volzb3cdd2a72008-09-02 15:55:45 +02001100
Julian Anastasov4115ded2013-03-21 11:58:05 +02001101 rt = (struct rt6_info *) skb_dst(skb);
Changli Gaod8d1f302010-06-10 23:31:35 -07001102 tdev = rt->dst.dev;
Julius Volzb3cdd2a72008-09-02 15:55:45 +02001103
Julius Volzb3cdd2a72008-09-02 15:55:45 +02001104 /*
1105 * Okay, now see if we can stuff it in the buffer as-is.
1106 */
1107 max_headroom = LL_RESERVED_SPACE(tdev) + sizeof(struct ipv6hdr);
1108
Alex Gartrell8052ba22014-09-09 16:40:28 -07001109 skb = ip_vs_prepare_tunneled_skb(skb, cp->af, max_headroom,
1110 &next_protocol, &payload_len,
1111 &dsfield, &ttl, NULL);
1112 if (IS_ERR(skb))
1113 goto tx_error;
Julian Anastasov4115ded2013-03-21 11:58:05 +02001114
Alex Gartrell8052ba22014-09-09 16:40:28 -07001115 skb = iptunnel_handle_offloads(
1116 skb, false, __tun_gso_type_mask(AF_INET6, cp->af));
Julian Anastasovea1d5d72014-08-01 10:36:17 +03001117 if (IS_ERR(skb))
1118 goto tx_error;
1119
Hans Schillstrom714f0952010-10-19 10:38:48 +02001120 skb->transport_header = skb->network_header;
Julius Volzb3cdd2a72008-09-02 15:55:45 +02001121
1122 skb_push(skb, sizeof(struct ipv6hdr));
1123 skb_reset_network_header(skb);
1124 memset(&(IPCB(skb)->opt), 0, sizeof(IPCB(skb)->opt));
1125
Julius Volzb3cdd2a72008-09-02 15:55:45 +02001126 /*
1127 * Push down and install the IPIP header.
1128 */
1129 iph = ipv6_hdr(skb);
1130 iph->version = 6;
Alex Gartrell8052ba22014-09-09 16:40:28 -07001131 iph->nexthdr = next_protocol;
1132 iph->payload_len = htons(payload_len);
Julius Volzb3cdd2a72008-09-02 15:55:45 +02001133 memset(&iph->flow_lbl, 0, sizeof(iph->flow_lbl));
Alex Gartrell8052ba22014-09-09 16:40:28 -07001134 ipv6_change_dsfield(iph, 0, dsfield);
Alexey Dobriyan4e3fd7a2011-11-21 03:39:03 +00001135 iph->daddr = cp->daddr.in6;
1136 iph->saddr = saddr;
Alex Gartrell8052ba22014-09-09 16:40:28 -07001137 iph->hop_limit = ttl;
Julius Volzb3cdd2a72008-09-02 15:55:45 +02001138
1139 /* Another hack: avoid icmp_send in ip_fragment */
WANG Cong60ff7462014-05-04 16:39:18 -07001140 skb->ignore_df = 1;
Julius Volzb3cdd2a72008-09-02 15:55:45 +02001141
Julian Anastasovb8abdf02013-03-21 11:58:01 +02001142 ret = ip_vs_tunnel_xmit_prepare(skb, cp);
Julian Anastasovf4bc17c2010-09-21 17:35:41 +02001143 if (ret == NF_ACCEPT)
Eric W. Biederman33224b12015-10-07 16:48:46 -05001144 ip6_local_out(cp->ipvs->net, skb->sk, skb);
Julian Anastasovf4bc17c2010-09-21 17:35:41 +02001145 else if (ret == NF_DROP)
1146 kfree_skb(skb);
Julian Anastasov026ace02013-03-21 11:58:06 +02001147 rcu_read_unlock();
Julius Volzb3cdd2a72008-09-02 15:55:45 +02001148
1149 LeaveFunction(10);
1150
1151 return NF_STOLEN;
1152
Julius Volzb3cdd2a72008-09-02 15:55:45 +02001153tx_error:
Julian Anastasovea1d5d72014-08-01 10:36:17 +03001154 if (!IS_ERR(skb))
1155 kfree_skb(skb);
Julian Anastasov026ace02013-03-21 11:58:06 +02001156 rcu_read_unlock();
Julius Volzb3cdd2a72008-09-02 15:55:45 +02001157 LeaveFunction(10);
1158 return NF_STOLEN;
1159}
1160#endif
1161
Linus Torvalds1da177e2005-04-16 15:20:36 -07001162
1163/*
1164 * Direct Routing transmitter
1165 * Used for ANY protocol
1166 */
1167int
1168ip_vs_dr_xmit(struct sk_buff *skb, struct ip_vs_conn *cp,
Jesper Dangaard Brouerd4383f02012-09-26 14:07:17 +02001169 struct ip_vs_protocol *pp, struct ip_vs_iphdr *ipvsh)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001170{
Julian Anastasov4115ded2013-03-21 11:58:05 +02001171 int local;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001172
1173 EnterFunction(10);
1174
Julian Anastasov026ace02013-03-21 11:58:06 +02001175 rcu_read_lock();
Eric W. Biedermanecfe87b2015-09-21 13:02:45 -05001176 local = __ip_vs_get_out_rt(cp->ipvs, cp->af, skb, cp->dest, cp->daddr.ip,
Julian Anastasov4115ded2013-03-21 11:58:05 +02001177 IP_VS_RT_MODE_LOCAL |
1178 IP_VS_RT_MODE_NON_LOCAL |
Alex Gartrellc63e4de2014-09-09 16:40:27 -07001179 IP_VS_RT_MODE_KNOWN_NH, NULL, ipvsh);
Julian Anastasov4115ded2013-03-21 11:58:05 +02001180 if (local < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001181 goto tx_error;
Julian Anastasov026ace02013-03-21 11:58:06 +02001182 if (local) {
1183 rcu_read_unlock();
Julian Anastasov4115ded2013-03-21 11:58:05 +02001184 return ip_vs_send_or_cont(NFPROTO_IPV4, skb, cp, 1);
Julian Anastasov026ace02013-03-21 11:58:06 +02001185 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001186
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -07001187 ip_send_check(ip_hdr(skb));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001188
Linus Torvalds1da177e2005-04-16 15:20:36 -07001189 /* Another hack: avoid icmp_send in ip_fragment */
WANG Cong60ff7462014-05-04 16:39:18 -07001190 skb->ignore_df = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001191
Julian Anastasovb8abdf02013-03-21 11:58:01 +02001192 ip_vs_send_or_cont(NFPROTO_IPV4, skb, cp, 0);
Julian Anastasov026ace02013-03-21 11:58:06 +02001193 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001194
1195 LeaveFunction(10);
1196 return NF_STOLEN;
1197
Linus Torvalds1da177e2005-04-16 15:20:36 -07001198 tx_error:
1199 kfree_skb(skb);
Julian Anastasov026ace02013-03-21 11:58:06 +02001200 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001201 LeaveFunction(10);
1202 return NF_STOLEN;
1203}
1204
Julius Volzb3cdd2a72008-09-02 15:55:45 +02001205#ifdef CONFIG_IP_VS_IPV6
1206int
1207ip_vs_dr_xmit_v6(struct sk_buff *skb, struct ip_vs_conn *cp,
Julian Anastasov4115ded2013-03-21 11:58:05 +02001208 struct ip_vs_protocol *pp, struct ip_vs_iphdr *ipvsh)
Julius Volzb3cdd2a72008-09-02 15:55:45 +02001209{
Julian Anastasov4115ded2013-03-21 11:58:05 +02001210 int local;
Julius Volzb3cdd2a72008-09-02 15:55:45 +02001211
1212 EnterFunction(10);
1213
Julian Anastasov026ace02013-03-21 11:58:06 +02001214 rcu_read_lock();
Eric W. Biedermanf5745f82015-09-21 13:02:46 -05001215 local = __ip_vs_get_out_rt_v6(cp->ipvs, cp->af, skb, cp->dest,
1216 &cp->daddr.in6,
Alex Gartrell4a4739d52014-09-09 16:40:25 -07001217 NULL, ipvsh, 0,
Julian Anastasov4115ded2013-03-21 11:58:05 +02001218 IP_VS_RT_MODE_LOCAL |
Martin KaFai Lau48e8aa62015-05-22 20:56:02 -07001219 IP_VS_RT_MODE_NON_LOCAL |
1220 IP_VS_RT_MODE_KNOWN_NH);
Julian Anastasov4115ded2013-03-21 11:58:05 +02001221 if (local < 0)
Julius Volzb3cdd2a72008-09-02 15:55:45 +02001222 goto tx_error;
Julian Anastasov026ace02013-03-21 11:58:06 +02001223 if (local) {
1224 rcu_read_unlock();
Julian Anastasov4115ded2013-03-21 11:58:05 +02001225 return ip_vs_send_or_cont(NFPROTO_IPV6, skb, cp, 1);
Julian Anastasov026ace02013-03-21 11:58:06 +02001226 }
Julius Volzb3cdd2a72008-09-02 15:55:45 +02001227
1228 /* Another hack: avoid icmp_send in ip_fragment */
WANG Cong60ff7462014-05-04 16:39:18 -07001229 skb->ignore_df = 1;
Julius Volzb3cdd2a72008-09-02 15:55:45 +02001230
Julian Anastasovb8abdf02013-03-21 11:58:01 +02001231 ip_vs_send_or_cont(NFPROTO_IPV6, skb, cp, 0);
Julian Anastasov026ace02013-03-21 11:58:06 +02001232 rcu_read_unlock();
Julius Volzb3cdd2a72008-09-02 15:55:45 +02001233
1234 LeaveFunction(10);
1235 return NF_STOLEN;
1236
Julius Volzb3cdd2a72008-09-02 15:55:45 +02001237tx_error:
1238 kfree_skb(skb);
Julian Anastasov026ace02013-03-21 11:58:06 +02001239 rcu_read_unlock();
Julius Volzb3cdd2a72008-09-02 15:55:45 +02001240 LeaveFunction(10);
1241 return NF_STOLEN;
1242}
1243#endif
1244
Linus Torvalds1da177e2005-04-16 15:20:36 -07001245
1246/*
1247 * ICMP packet transmitter
1248 * called by the ip_vs_in_icmp
1249 */
1250int
1251ip_vs_icmp_xmit(struct sk_buff *skb, struct ip_vs_conn *cp,
Jesper Dangaard Brouerd4383f02012-09-26 14:07:17 +02001252 struct ip_vs_protocol *pp, int offset, unsigned int hooknum,
1253 struct ip_vs_iphdr *iph)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001254{
1255 struct rtable *rt; /* Route to the other host */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001256 int rc;
Julian Anastasovfc604762010-10-17 16:38:15 +03001257 int local;
Julian Anastasov4115ded2013-03-21 11:58:05 +02001258 int rt_mode, was_input;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001259
1260 EnterFunction(10);
1261
1262 /* The ICMP packet for VS/TUN, VS/DR and LOCALNODE will be
1263 forwarded directly here, because there is no need to
1264 translate address/port back */
1265 if (IP_VS_FWD_METHOD(cp) != IP_VS_CONN_F_MASQ) {
1266 if (cp->packet_xmit)
Jesper Dangaard Brouerd4383f02012-09-26 14:07:17 +02001267 rc = cp->packet_xmit(skb, cp, pp, iph);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001268 else
1269 rc = NF_ACCEPT;
1270 /* do not touch skb anymore */
1271 atomic_inc(&cp->in_pkts);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001272 goto out;
1273 }
1274
1275 /*
1276 * mangle and send the packet here (only for VS/NAT)
1277 */
Julian Anastasov4115ded2013-03-21 11:58:05 +02001278 was_input = rt_is_input_route(skb_rtable(skb));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001279
Julian Anastasovc92f5ca2011-05-10 12:46:05 +00001280 /* LOCALNODE from FORWARD hook is not supported */
1281 rt_mode = (hooknum != NF_INET_FORWARD) ?
1282 IP_VS_RT_MODE_LOCAL | IP_VS_RT_MODE_NON_LOCAL |
1283 IP_VS_RT_MODE_RDR : IP_VS_RT_MODE_NON_LOCAL;
Julian Anastasov026ace02013-03-21 11:58:06 +02001284 rcu_read_lock();
Eric W. Biedermanecfe87b2015-09-21 13:02:45 -05001285 local = __ip_vs_get_out_rt(cp->ipvs, cp->af, skb, cp->dest, cp->daddr.ip, rt_mode,
Alex Gartrellc63e4de2014-09-09 16:40:27 -07001286 NULL, iph);
Julian Anastasov4115ded2013-03-21 11:58:05 +02001287 if (local < 0)
1288 goto tx_error;
1289 rt = skb_rtable(skb);
Julian Anastasovfc604762010-10-17 16:38:15 +03001290
1291 /*
1292 * Avoid duplicate tuple in reply direction for NAT traffic
1293 * to local address when connection is sync-ed
1294 */
Igor Maravićc0cd1152011-12-12 02:58:24 +00001295#if IS_ENABLED(CONFIG_NF_CONNTRACK)
Julian Anastasovfc604762010-10-17 16:38:15 +03001296 if (cp->flags & IP_VS_CONN_F_SYNC && local) {
1297 enum ip_conntrack_info ctinfo;
Alan Cox05b4b062012-10-26 00:13:27 +00001298 struct nf_conn *ct = nf_ct_get(skb, &ctinfo);
Julian Anastasovfc604762010-10-17 16:38:15 +03001299
1300 if (ct && !nf_ct_is_untracked(ct)) {
1301 IP_VS_DBG(10, "%s(): "
1302 "stopping DNAT to local address %pI4\n",
1303 __func__, &cp->daddr.ip);
Julian Anastasov4115ded2013-03-21 11:58:05 +02001304 goto tx_error;
Julian Anastasovfc604762010-10-17 16:38:15 +03001305 }
1306 }
1307#endif
1308
1309 /* From world but DNAT to loopback address? */
Julian Anastasov4115ded2013-03-21 11:58:05 +02001310 if (local && ipv4_is_loopback(cp->daddr.ip) && was_input) {
Julian Anastasovfc604762010-10-17 16:38:15 +03001311 IP_VS_DBG(1, "%s(): "
1312 "stopping DNAT to loopback %pI4\n",
1313 __func__, &cp->daddr.ip);
Julian Anastasov4115ded2013-03-21 11:58:05 +02001314 goto tx_error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001315 }
1316
1317 /* copy-on-write the packet before mangling it */
Herbert Xuaf1e1cf2007-10-14 00:39:33 -07001318 if (!skb_make_writable(skb, offset))
Julian Anastasov4115ded2013-03-21 11:58:05 +02001319 goto tx_error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001320
Changli Gaod8d1f302010-06-10 23:31:35 -07001321 if (skb_cow(skb, rt->dst.dev->hard_header_len))
Julian Anastasov4115ded2013-03-21 11:58:05 +02001322 goto tx_error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001323
Linus Torvalds1da177e2005-04-16 15:20:36 -07001324 ip_vs_nat_icmp(skb, pp, cp, 0);
1325
1326 /* Another hack: avoid icmp_send in ip_fragment */
WANG Cong60ff7462014-05-04 16:39:18 -07001327 skb->ignore_df = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001328
Julian Anastasovb8abdf02013-03-21 11:58:01 +02001329 rc = ip_vs_nat_send_or_cont(NFPROTO_IPV4, skb, cp, local);
Julian Anastasov026ace02013-03-21 11:58:06 +02001330 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001331 goto out;
1332
Linus Torvalds1da177e2005-04-16 15:20:36 -07001333 tx_error:
Julian Anastasov026ace02013-03-21 11:58:06 +02001334 kfree_skb(skb);
1335 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001336 rc = NF_STOLEN;
1337 out:
1338 LeaveFunction(10);
1339 return rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001340}
Julius Volzb3cdd2a72008-09-02 15:55:45 +02001341
1342#ifdef CONFIG_IP_VS_IPV6
1343int
1344ip_vs_icmp_xmit_v6(struct sk_buff *skb, struct ip_vs_conn *cp,
Jesper Dangaard Brouerd4383f02012-09-26 14:07:17 +02001345 struct ip_vs_protocol *pp, int offset, unsigned int hooknum,
Julian Anastasov4115ded2013-03-21 11:58:05 +02001346 struct ip_vs_iphdr *ipvsh)
Julius Volzb3cdd2a72008-09-02 15:55:45 +02001347{
1348 struct rt6_info *rt; /* Route to the other host */
Julius Volzb3cdd2a72008-09-02 15:55:45 +02001349 int rc;
Julian Anastasovfc604762010-10-17 16:38:15 +03001350 int local;
Julian Anastasovc92f5ca2011-05-10 12:46:05 +00001351 int rt_mode;
Julius Volzb3cdd2a72008-09-02 15:55:45 +02001352
1353 EnterFunction(10);
1354
1355 /* The ICMP packet for VS/TUN, VS/DR and LOCALNODE will be
1356 forwarded directly here, because there is no need to
1357 translate address/port back */
1358 if (IP_VS_FWD_METHOD(cp) != IP_VS_CONN_F_MASQ) {
1359 if (cp->packet_xmit)
Julian Anastasov4115ded2013-03-21 11:58:05 +02001360 rc = cp->packet_xmit(skb, cp, pp, ipvsh);
Julius Volzb3cdd2a72008-09-02 15:55:45 +02001361 else
1362 rc = NF_ACCEPT;
1363 /* do not touch skb anymore */
1364 atomic_inc(&cp->in_pkts);
1365 goto out;
1366 }
1367
1368 /*
1369 * mangle and send the packet here (only for VS/NAT)
1370 */
1371
Julian Anastasovc92f5ca2011-05-10 12:46:05 +00001372 /* LOCALNODE from FORWARD hook is not supported */
1373 rt_mode = (hooknum != NF_INET_FORWARD) ?
1374 IP_VS_RT_MODE_LOCAL | IP_VS_RT_MODE_NON_LOCAL |
1375 IP_VS_RT_MODE_RDR : IP_VS_RT_MODE_NON_LOCAL;
Julian Anastasov026ace02013-03-21 11:58:06 +02001376 rcu_read_lock();
Eric W. Biedermanf5745f82015-09-21 13:02:46 -05001377 local = __ip_vs_get_out_rt_v6(cp->ipvs, cp->af, skb, cp->dest,
1378 &cp->daddr.in6, NULL, ipvsh, 0, rt_mode);
Julian Anastasov4115ded2013-03-21 11:58:05 +02001379 if (local < 0)
1380 goto tx_error;
1381 rt = (struct rt6_info *) skb_dst(skb);
Julian Anastasovfc604762010-10-17 16:38:15 +03001382 /*
1383 * Avoid duplicate tuple in reply direction for NAT traffic
1384 * to local address when connection is sync-ed
1385 */
Igor Maravićc0cd1152011-12-12 02:58:24 +00001386#if IS_ENABLED(CONFIG_NF_CONNTRACK)
Julian Anastasovfc604762010-10-17 16:38:15 +03001387 if (cp->flags & IP_VS_CONN_F_SYNC && local) {
1388 enum ip_conntrack_info ctinfo;
Alan Cox05b4b062012-10-26 00:13:27 +00001389 struct nf_conn *ct = nf_ct_get(skb, &ctinfo);
Julian Anastasovfc604762010-10-17 16:38:15 +03001390
1391 if (ct && !nf_ct_is_untracked(ct)) {
1392 IP_VS_DBG(10, "%s(): "
1393 "stopping DNAT to local address %pI6\n",
1394 __func__, &cp->daddr.in6);
Julian Anastasov4115ded2013-03-21 11:58:05 +02001395 goto tx_error;
Julian Anastasovfc604762010-10-17 16:38:15 +03001396 }
1397 }
1398#endif
1399
1400 /* From world but DNAT to loopback address? */
1401 if (local && skb->dev && !(skb->dev->flags & IFF_LOOPBACK) &&
Martin KaFai Laufd0273d2015-05-22 20:55:57 -07001402 ipv6_addr_type(&cp->daddr.in6) & IPV6_ADDR_LOOPBACK) {
Julian Anastasovfc604762010-10-17 16:38:15 +03001403 IP_VS_DBG(1, "%s(): "
1404 "stopping DNAT to loopback %pI6\n",
1405 __func__, &cp->daddr.in6);
Julian Anastasov4115ded2013-03-21 11:58:05 +02001406 goto tx_error;
Julius Volzb3cdd2a72008-09-02 15:55:45 +02001407 }
1408
1409 /* copy-on-write the packet before mangling it */
1410 if (!skb_make_writable(skb, offset))
Julian Anastasov4115ded2013-03-21 11:58:05 +02001411 goto tx_error;
Julius Volzb3cdd2a72008-09-02 15:55:45 +02001412
Changli Gaod8d1f302010-06-10 23:31:35 -07001413 if (skb_cow(skb, rt->dst.dev->hard_header_len))
Julian Anastasov4115ded2013-03-21 11:58:05 +02001414 goto tx_error;
Julius Volzb3cdd2a72008-09-02 15:55:45 +02001415
Julius Volzb3cdd2a72008-09-02 15:55:45 +02001416 ip_vs_nat_icmp_v6(skb, pp, cp, 0);
1417
1418 /* Another hack: avoid icmp_send in ip_fragment */
WANG Cong60ff7462014-05-04 16:39:18 -07001419 skb->ignore_df = 1;
Julius Volzb3cdd2a72008-09-02 15:55:45 +02001420
Julian Anastasovb8abdf02013-03-21 11:58:01 +02001421 rc = ip_vs_nat_send_or_cont(NFPROTO_IPV6, skb, cp, local);
Julian Anastasov026ace02013-03-21 11:58:06 +02001422 rcu_read_unlock();
Julius Volzb3cdd2a72008-09-02 15:55:45 +02001423 goto out;
1424
Julius Volzb3cdd2a72008-09-02 15:55:45 +02001425tx_error:
Julian Anastasov026ace02013-03-21 11:58:06 +02001426 kfree_skb(skb);
1427 rcu_read_unlock();
Julius Volzb3cdd2a72008-09-02 15:55:45 +02001428 rc = NF_STOLEN;
1429out:
1430 LeaveFunction(10);
1431 return rc;
Julius Volzb3cdd2a72008-09-02 15:55:45 +02001432}
1433#endif