]> bbs.cooldavid.org Git - net-next-2.6.git/blame - net/netfilter/ipvs/ip_vs_xmit.c
net: use the macros defined for the members of flowi
[net-next-2.6.git] / net / netfilter / ipvs / ip_vs_xmit.c
CommitLineData
1da177e4
LT
1/*
2 * ip_vs_xmit.c: various packet transmitters for IPVS
3 *
1da177e4
LT
4 * 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 *
cb59155f
JA
14 * 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
20 * LOCAL_OUT rules:
21 * - skb->dev is NULL, skb->protocol is not set (both are set in POST_ROUTING)
22 * - skb->pkt_type is not set yet
23 * - the only place where we can see skb->sk != NULL
1da177e4
LT
24 */
25
9aada7ac
HE
26#define KMSG_COMPONENT "IPVS"
27#define pr_fmt(fmt) KMSG_COMPONENT ": " fmt
28
1da177e4 29#include <linux/kernel.h>
5a0e3ad6 30#include <linux/slab.h>
1da177e4 31#include <linux/tcp.h> /* for tcphdr */
c439cb2e 32#include <net/ip.h>
1da177e4
LT
33#include <net/tcp.h> /* for csum_tcpudp_magic */
34#include <net/udp.h>
35#include <net/icmp.h> /* for icmp_send */
36#include <net/route.h> /* for ip_route_output */
38cdcc9a
JV
37#include <net/ipv6.h>
38#include <net/ip6_route.h>
714f095f 39#include <net/addrconf.h>
38cdcc9a 40#include <linux/icmpv6.h>
1da177e4
LT
41#include <linux/netfilter.h>
42#include <linux/netfilter_ipv4.h>
43
44#include <net/ip_vs.h>
45
46
47/*
48 * Destination cache to speed up outgoing route lookup
49 */
50static inline void
714f095f
HS
51__ip_vs_dst_set(struct ip_vs_dest *dest, u32 rtos, struct dst_entry *dst,
52 u32 dst_cookie)
1da177e4
LT
53{
54 struct dst_entry *old_dst;
55
56 old_dst = dest->dst_cache;
57 dest->dst_cache = dst;
58 dest->dst_rtos = rtos;
714f095f 59 dest->dst_cookie = dst_cookie;
1da177e4
LT
60 dst_release(old_dst);
61}
62
63static inline struct dst_entry *
714f095f 64__ip_vs_dst_check(struct ip_vs_dest *dest, u32 rtos)
1da177e4
LT
65{
66 struct dst_entry *dst = dest->dst_cache;
67
68 if (!dst)
69 return NULL;
714f095f
HS
70 if ((dst->obsolete || rtos != dest->dst_rtos) &&
71 dst->ops->check(dst, dest->dst_cookie) == NULL) {
1da177e4
LT
72 dest->dst_cache = NULL;
73 dst_release(dst);
74 return NULL;
75 }
76 dst_hold(dst);
77 return dst;
78}
79
fc604767
JA
80/*
81 * Get route to destination or remote server
82 * rt_mode: flags, &1=Allow local dest, &2=Allow non-local dest,
83 * &4=Allow redirect from remote daddr to local
84 */
ad1b30b1 85static struct rtable *
fc604767
JA
86__ip_vs_get_out_rt(struct sk_buff *skb, struct ip_vs_dest *dest,
87 __be32 daddr, u32 rtos, int rt_mode)
1da177e4 88{
fc604767 89 struct net *net = dev_net(skb_dst(skb)->dev);
1da177e4 90 struct rtable *rt; /* Route to the other host */
fc604767
JA
91 struct rtable *ort; /* Original route */
92 int local;
1da177e4
LT
93
94 if (dest) {
95 spin_lock(&dest->dst_lock);
96 if (!(rt = (struct rtable *)
714f095f 97 __ip_vs_dst_check(dest, rtos))) {
1da177e4 98 struct flowi fl = {
5811662b
CG
99 .fl4_dst = dest->addr.ip,
100 .fl4_tos = rtos,
1da177e4
LT
101 };
102
714f095f 103 if (ip_route_output_key(net, &rt, &fl)) {
1da177e4 104 spin_unlock(&dest->dst_lock);
14d5e834
HH
105 IP_VS_DBG_RL("ip_route_output error, dest: %pI4\n",
106 &dest->addr.ip);
1da177e4
LT
107 return NULL;
108 }
714f095f 109 __ip_vs_dst_set(dest, rtos, dst_clone(&rt->dst), 0);
14d5e834
HH
110 IP_VS_DBG(10, "new dst %pI4, refcnt=%d, rtos=%X\n",
111 &dest->addr.ip,
d8d1f30b 112 atomic_read(&rt->dst.__refcnt), rtos);
1da177e4
LT
113 }
114 spin_unlock(&dest->dst_lock);
115 } else {
116 struct flowi fl = {
5811662b
CG
117 .fl4_dst = daddr,
118 .fl4_tos = rtos,
1da177e4
LT
119 };
120
714f095f 121 if (ip_route_output_key(net, &rt, &fl)) {
14d5e834 122 IP_VS_DBG_RL("ip_route_output error, dest: %pI4\n",
fc604767 123 &daddr);
1da177e4
LT
124 return NULL;
125 }
126 }
127
fc604767
JA
128 local = rt->rt_flags & RTCF_LOCAL;
129 if (!((local ? 1 : 2) & rt_mode)) {
130 IP_VS_DBG_RL("Stopping traffic to %s address, dest: %pI4\n",
131 (rt->rt_flags & RTCF_LOCAL) ?
132 "local":"non-local", &rt->rt_dst);
133 ip_rt_put(rt);
134 return NULL;
135 }
136 if (local && !(rt_mode & 4) && !((ort = skb_rtable(skb)) &&
137 ort->rt_flags & RTCF_LOCAL)) {
138 IP_VS_DBG_RL("Redirect from non-local address %pI4 to local "
139 "requires NAT method, dest: %pI4\n",
140 &ip_hdr(skb)->daddr, &rt->rt_dst);
141 ip_rt_put(rt);
142 return NULL;
143 }
144 if (unlikely(!local && ipv4_is_loopback(ip_hdr(skb)->saddr))) {
145 IP_VS_DBG_RL("Stopping traffic from loopback address %pI4 "
146 "to non-local address, dest: %pI4\n",
147 &ip_hdr(skb)->saddr, &rt->rt_dst);
148 ip_rt_put(rt);
149 return NULL;
150 }
151
1da177e4
LT
152 return rt;
153}
154
fc604767
JA
155/* Reroute packet to local IPv4 stack after DNAT */
156static int
157__ip_vs_reroute_locally(struct sk_buff *skb)
158{
159 struct rtable *rt = skb_rtable(skb);
160 struct net_device *dev = rt->dst.dev;
161 struct net *net = dev_net(dev);
162 struct iphdr *iph = ip_hdr(skb);
163
c7537967 164 if (rt_is_input_route(rt)) {
fc604767
JA
165 unsigned long orefdst = skb->_skb_refdst;
166
167 if (ip_route_input(skb, iph->daddr, iph->saddr,
168 iph->tos, skb->dev))
169 return 0;
170 refdst_drop(orefdst);
171 } else {
172 struct flowi fl = {
5811662b
CG
173 .fl4_dst = iph->daddr,
174 .fl4_src = iph->saddr,
175 .fl4_tos = RT_TOS(iph->tos),
fc604767
JA
176 .mark = skb->mark,
177 };
178 struct rtable *rt;
179
180 if (ip_route_output_key(net, &rt, &fl))
181 return 0;
182 if (!(rt->rt_flags & RTCF_LOCAL)) {
183 ip_rt_put(rt);
184 return 0;
185 }
186 /* Drop old route. */
187 skb_dst_drop(skb);
188 skb_dst_set(skb, &rt->dst);
189 }
190 return 1;
191}
192
38cdcc9a 193#ifdef CONFIG_IP_VS_IPV6
714f095f 194
fc604767
JA
195static inline int __ip_vs_is_local_route6(struct rt6_info *rt)
196{
197 return rt->rt6i_dev && rt->rt6i_dev->flags & IFF_LOOPBACK;
198}
199
714f095f
HS
200static struct dst_entry *
201__ip_vs_route_output_v6(struct net *net, struct in6_addr *daddr,
202 struct in6_addr *ret_saddr, int do_xfrm)
203{
204 struct dst_entry *dst;
205 struct flowi fl = {
5811662b 206 .fl6_dst = *daddr,
714f095f
HS
207 };
208
209 dst = ip6_route_output(net, NULL, &fl);
210 if (dst->error)
211 goto out_err;
212 if (!ret_saddr)
213 return dst;
214 if (ipv6_addr_any(&fl.fl6_src) &&
215 ipv6_dev_get_saddr(net, ip6_dst_idev(dst)->dev,
216 &fl.fl6_dst, 0, &fl.fl6_src) < 0)
217 goto out_err;
218 if (do_xfrm && xfrm_lookup(net, &dst, &fl, NULL, 0) < 0)
219 goto out_err;
220 ipv6_addr_copy(ret_saddr, &fl.fl6_src);
221 return dst;
222
223out_err:
224 dst_release(dst);
225 IP_VS_DBG_RL("ip6_route_output error, dest: %pI6\n", daddr);
226 return NULL;
227}
228
fc604767
JA
229/*
230 * Get route to destination or remote server
231 * rt_mode: flags, &1=Allow local dest, &2=Allow non-local dest,
232 * &4=Allow redirect from remote daddr to local
233 */
38cdcc9a 234static struct rt6_info *
fc604767
JA
235__ip_vs_get_out_rt_v6(struct sk_buff *skb, struct ip_vs_dest *dest,
236 struct in6_addr *daddr, struct in6_addr *ret_saddr,
237 int do_xfrm, int rt_mode)
38cdcc9a 238{
fc604767 239 struct net *net = dev_net(skb_dst(skb)->dev);
38cdcc9a 240 struct rt6_info *rt; /* Route to the other host */
fc604767 241 struct rt6_info *ort; /* Original route */
714f095f 242 struct dst_entry *dst;
fc604767 243 int local;
38cdcc9a
JV
244
245 if (dest) {
246 spin_lock(&dest->dst_lock);
714f095f 247 rt = (struct rt6_info *)__ip_vs_dst_check(dest, 0);
38cdcc9a 248 if (!rt) {
714f095f 249 u32 cookie;
38cdcc9a 250
714f095f
HS
251 dst = __ip_vs_route_output_v6(net, &dest->addr.in6,
252 &dest->dst_saddr,
253 do_xfrm);
254 if (!dst) {
38cdcc9a 255 spin_unlock(&dest->dst_lock);
38cdcc9a
JV
256 return NULL;
257 }
714f095f
HS
258 rt = (struct rt6_info *) dst;
259 cookie = rt->rt6i_node ? rt->rt6i_node->fn_sernum : 0;
260 __ip_vs_dst_set(dest, 0, dst_clone(&rt->dst), cookie);
261 IP_VS_DBG(10, "new dst %pI6, src %pI6, refcnt=%d\n",
262 &dest->addr.in6, &dest->dst_saddr,
d8d1f30b 263 atomic_read(&rt->dst.__refcnt));
38cdcc9a 264 }
714f095f
HS
265 if (ret_saddr)
266 ipv6_addr_copy(ret_saddr, &dest->dst_saddr);
38cdcc9a
JV
267 spin_unlock(&dest->dst_lock);
268 } else {
fc604767 269 dst = __ip_vs_route_output_v6(net, daddr, ret_saddr, do_xfrm);
714f095f 270 if (!dst)
38cdcc9a 271 return NULL;
714f095f 272 rt = (struct rt6_info *) dst;
38cdcc9a
JV
273 }
274
fc604767
JA
275 local = __ip_vs_is_local_route6(rt);
276 if (!((local ? 1 : 2) & rt_mode)) {
277 IP_VS_DBG_RL("Stopping traffic to %s address, dest: %pI6\n",
278 local ? "local":"non-local", daddr);
279 dst_release(&rt->dst);
280 return NULL;
281 }
282 if (local && !(rt_mode & 4) &&
283 !((ort = (struct rt6_info *) skb_dst(skb)) &&
284 __ip_vs_is_local_route6(ort))) {
285 IP_VS_DBG_RL("Redirect from non-local address %pI6 to local "
286 "requires NAT method, dest: %pI6\n",
287 &ipv6_hdr(skb)->daddr, daddr);
288 dst_release(&rt->dst);
289 return NULL;
290 }
291 if (unlikely(!local && (!skb->dev || skb->dev->flags & IFF_LOOPBACK) &&
292 ipv6_addr_type(&ipv6_hdr(skb)->saddr) &
293 IPV6_ADDR_LOOPBACK)) {
294 IP_VS_DBG_RL("Stopping traffic from loopback address %pI6 "
295 "to non-local address, dest: %pI6\n",
296 &ipv6_hdr(skb)->saddr, daddr);
297 dst_release(&rt->dst);
298 return NULL;
299 }
300
38cdcc9a
JV
301 return rt;
302}
303#endif
304
1da177e4
LT
305
306/*
307 * Release dest->dst_cache before a dest is removed
308 */
309void
310ip_vs_dst_reset(struct ip_vs_dest *dest)
311{
312 struct dst_entry *old_dst;
313
314 old_dst = dest->dst_cache;
315 dest->dst_cache = NULL;
316 dst_release(old_dst);
317}
318
f4bc17cd
JA
319#define IP_VS_XMIT_TUNNEL(skb, cp) \
320({ \
321 int __ret = NF_ACCEPT; \
322 \
cf356d69 323 (skb)->ipvs_property = 1; \
f4bc17cd
JA
324 if (unlikely((cp)->flags & IP_VS_CONN_F_NFCT)) \
325 __ret = ip_vs_confirm_conntrack(skb, cp); \
326 if (__ret == NF_ACCEPT) { \
327 nf_reset(skb); \
4256f1aa 328 skb_forward_csum(skb); \
f4bc17cd
JA
329 } \
330 __ret; \
331})
332
fc604767 333#define IP_VS_XMIT_NAT(pf, skb, cp, local) \
1da177e4 334do { \
cf356d69 335 (skb)->ipvs_property = 1; \
f4bc17cd 336 if (likely(!((cp)->flags & IP_VS_CONN_F_NFCT))) \
cf356d69 337 ip_vs_notrack(skb); \
f4bc17cd
JA
338 else \
339 ip_vs_update_conntrack(skb, cp, 1); \
fc604767
JA
340 if (local) \
341 return NF_ACCEPT; \
ccc7911f 342 skb_forward_csum(skb); \
38cdcc9a 343 NF_HOOK(pf, NF_INET_LOCAL_OUT, (skb), NULL, \
f4bc17cd
JA
344 skb_dst(skb)->dev, dst_output); \
345} while (0)
346
fc604767 347#define IP_VS_XMIT(pf, skb, cp, local) \
f4bc17cd 348do { \
cf356d69 349 (skb)->ipvs_property = 1; \
f4bc17cd 350 if (likely(!((cp)->flags & IP_VS_CONN_F_NFCT))) \
cf356d69 351 ip_vs_notrack(skb); \
fc604767
JA
352 if (local) \
353 return NF_ACCEPT; \
f4bc17cd
JA
354 skb_forward_csum(skb); \
355 NF_HOOK(pf, NF_INET_LOCAL_OUT, (skb), NULL, \
356 skb_dst(skb)->dev, dst_output); \
1da177e4
LT
357} while (0)
358
359
360/*
361 * NULL transmitter (do nothing except return NF_ACCEPT)
362 */
363int
364ip_vs_null_xmit(struct sk_buff *skb, struct ip_vs_conn *cp,
365 struct ip_vs_protocol *pp)
366{
367 /* we do not touch skb and do not need pskb ptr */
fc604767 368 IP_VS_XMIT(NFPROTO_IPV4, skb, cp, 1);
1da177e4
LT
369}
370
371
372/*
373 * Bypass transmitter
374 * Let packets bypass the destination when the destination is not
375 * available, it may be only used in transparent cache cluster.
376 */
377int
378ip_vs_bypass_xmit(struct sk_buff *skb, struct ip_vs_conn *cp,
379 struct ip_vs_protocol *pp)
380{
381 struct rtable *rt; /* Route to the other host */
eddc9ec5 382 struct iphdr *iph = ip_hdr(skb);
1da177e4 383 int mtu;
1da177e4
LT
384
385 EnterFunction(10);
386
fc604767
JA
387 if (!(rt = __ip_vs_get_out_rt(skb, NULL, iph->daddr,
388 RT_TOS(iph->tos), 2)))
1da177e4 389 goto tx_error_icmp;
1da177e4
LT
390
391 /* MTU checking */
d8d1f30b 392 mtu = dst_mtu(&rt->dst);
4412ec49 393 if ((skb->len > mtu) && (iph->frag_off & htons(IP_DF))) {
1da177e4
LT
394 ip_rt_put(rt);
395 icmp_send(skb, ICMP_DEST_UNREACH,ICMP_FRAG_NEEDED, htonl(mtu));
1e3e238e 396 IP_VS_DBG_RL("%s(): frag needed\n", __func__);
1da177e4
LT
397 goto tx_error;
398 }
399
400 /*
401 * Call ip_send_check because we are not sure it is called
402 * after ip_defrag. Is copy-on-write needed?
403 */
404 if (unlikely((skb = skb_share_check(skb, GFP_ATOMIC)) == NULL)) {
405 ip_rt_put(rt);
406 return NF_STOLEN;
407 }
eddc9ec5 408 ip_send_check(ip_hdr(skb));
1da177e4
LT
409
410 /* drop old route */
adf30907 411 skb_dst_drop(skb);
d8d1f30b 412 skb_dst_set(skb, &rt->dst);
1da177e4
LT
413
414 /* Another hack: avoid icmp_send in ip_fragment */
415 skb->local_df = 1;
416
fc604767 417 IP_VS_XMIT(NFPROTO_IPV4, skb, cp, 0);
1da177e4
LT
418
419 LeaveFunction(10);
420 return NF_STOLEN;
421
422 tx_error_icmp:
423 dst_link_failure(skb);
424 tx_error:
425 kfree_skb(skb);
426 LeaveFunction(10);
427 return NF_STOLEN;
428}
429
b3cdd2a7
JV
430#ifdef CONFIG_IP_VS_IPV6
431int
432ip_vs_bypass_xmit_v6(struct sk_buff *skb, struct ip_vs_conn *cp,
433 struct ip_vs_protocol *pp)
434{
435 struct rt6_info *rt; /* Route to the other host */
436 struct ipv6hdr *iph = ipv6_hdr(skb);
437 int mtu;
b3cdd2a7
JV
438
439 EnterFunction(10);
440
fc604767 441 if (!(rt = __ip_vs_get_out_rt_v6(skb, NULL, &iph->daddr, NULL, 0, 2)))
b3cdd2a7 442 goto tx_error_icmp;
b3cdd2a7
JV
443
444 /* MTU checking */
d8d1f30b 445 mtu = dst_mtu(&rt->dst);
b3cdd2a7 446 if (skb->len > mtu) {
cb59155f
JA
447 if (!skb->dev) {
448 struct net *net = dev_net(skb_dst(skb)->dev);
449
450 skb->dev = net->loopback_dev;
451 }
3ffe533c 452 icmpv6_send(skb, ICMPV6_PKT_TOOBIG, 0, mtu);
cb59155f 453 dst_release(&rt->dst);
1e3e238e 454 IP_VS_DBG_RL("%s(): frag needed\n", __func__);
b3cdd2a7
JV
455 goto tx_error;
456 }
457
458 /*
459 * Call ip_send_check because we are not sure it is called
460 * after ip_defrag. Is copy-on-write needed?
461 */
462 skb = skb_share_check(skb, GFP_ATOMIC);
463 if (unlikely(skb == NULL)) {
d8d1f30b 464 dst_release(&rt->dst);
b3cdd2a7
JV
465 return NF_STOLEN;
466 }
467
468 /* drop old route */
adf30907 469 skb_dst_drop(skb);
d8d1f30b 470 skb_dst_set(skb, &rt->dst);
b3cdd2a7
JV
471
472 /* Another hack: avoid icmp_send in ip_fragment */
473 skb->local_df = 1;
474
fc604767 475 IP_VS_XMIT(NFPROTO_IPV6, skb, cp, 0);
b3cdd2a7
JV
476
477 LeaveFunction(10);
478 return NF_STOLEN;
479
480 tx_error_icmp:
481 dst_link_failure(skb);
482 tx_error:
483 kfree_skb(skb);
484 LeaveFunction(10);
485 return NF_STOLEN;
486}
487#endif
1da177e4
LT
488
489/*
490 * NAT transmitter (only for outside-to-inside nat forwarding)
491 * Not used for related ICMP
492 */
493int
494ip_vs_nat_xmit(struct sk_buff *skb, struct ip_vs_conn *cp,
495 struct ip_vs_protocol *pp)
496{
497 struct rtable *rt; /* Route to the other host */
498 int mtu;
eddc9ec5 499 struct iphdr *iph = ip_hdr(skb);
fc604767 500 int local;
1da177e4
LT
501
502 EnterFunction(10);
503
504 /* check if it is a connection of no-client-port */
505 if (unlikely(cp->flags & IP_VS_CONN_F_NO_CPORT)) {
014d730d 506 __be16 _pt, *p;
1da177e4
LT
507 p = skb_header_pointer(skb, iph->ihl*4, sizeof(_pt), &_pt);
508 if (p == NULL)
509 goto tx_error;
510 ip_vs_conn_fill_cport(cp, *p);
511 IP_VS_DBG(10, "filled cport=%d\n", ntohs(*p));
512 }
513
fc604767
JA
514 if (!(rt = __ip_vs_get_out_rt(skb, cp->dest, cp->daddr.ip,
515 RT_TOS(iph->tos), 1|2|4)))
1da177e4 516 goto tx_error_icmp;
fc604767
JA
517 local = rt->rt_flags & RTCF_LOCAL;
518 /*
519 * Avoid duplicate tuple in reply direction for NAT traffic
520 * to local address when connection is sync-ed
521 */
522#if defined(CONFIG_NF_CONNTRACK) || defined(CONFIG_NF_CONNTRACK_MODULE)
523 if (cp->flags & IP_VS_CONN_F_SYNC && local) {
524 enum ip_conntrack_info ctinfo;
525 struct nf_conn *ct = ct = nf_ct_get(skb, &ctinfo);
526
527 if (ct && !nf_ct_is_untracked(ct)) {
0d79641a
JA
528 IP_VS_DBG_RL_PKT(10, AF_INET, pp, skb, 0,
529 "ip_vs_nat_xmit(): "
fc604767
JA
530 "stopping DNAT to local address");
531 goto tx_error_put;
532 }
533 }
534#endif
535
536 /* From world but DNAT to loopback address? */
c7537967
DM
537 if (local && ipv4_is_loopback(rt->rt_dst) &&
538 rt_is_input_route(skb_rtable(skb))) {
0d79641a 539 IP_VS_DBG_RL_PKT(1, AF_INET, pp, skb, 0, "ip_vs_nat_xmit(): "
fc604767
JA
540 "stopping DNAT to loopback address");
541 goto tx_error_put;
542 }
1da177e4
LT
543
544 /* MTU checking */
d8d1f30b 545 mtu = dst_mtu(&rt->dst);
4412ec49 546 if ((skb->len > mtu) && (iph->frag_off & htons(IP_DF))) {
1da177e4 547 icmp_send(skb, ICMP_DEST_UNREACH,ICMP_FRAG_NEEDED, htonl(mtu));
0d79641a
JA
548 IP_VS_DBG_RL_PKT(0, AF_INET, pp, skb, 0,
549 "ip_vs_nat_xmit(): frag needed for");
fc604767 550 goto tx_error_put;
1da177e4
LT
551 }
552
553 /* copy-on-write the packet before mangling it */
af1e1cf0 554 if (!skb_make_writable(skb, sizeof(struct iphdr)))
1da177e4
LT
555 goto tx_error_put;
556
d8d1f30b 557 if (skb_cow(skb, rt->dst.dev->hard_header_len))
1da177e4
LT
558 goto tx_error_put;
559
1da177e4 560 /* mangle the packet */
3db05fea 561 if (pp->dnat_handler && !pp->dnat_handler(skb, pp, cp))
fc604767 562 goto tx_error_put;
e7ade46a 563 ip_hdr(skb)->daddr = cp->daddr.ip;
eddc9ec5 564 ip_send_check(ip_hdr(skb));
1da177e4 565
fc604767
JA
566 if (!local) {
567 /* drop old route */
568 skb_dst_drop(skb);
569 skb_dst_set(skb, &rt->dst);
570 } else {
571 ip_rt_put(rt);
572 /*
573 * Some IPv4 replies get local address from routes,
574 * not from iph, so while we DNAT after routing
575 * we need this second input/output route.
576 */
577 if (!__ip_vs_reroute_locally(skb))
578 goto tx_error;
579 }
580
0d79641a 581 IP_VS_DBG_PKT(10, AF_INET, pp, skb, 0, "After DNAT");
1da177e4
LT
582
583 /* FIXME: when application helper enlarges the packet and the length
584 is larger than the MTU of outgoing device, there will be still
585 MTU problem. */
586
587 /* Another hack: avoid icmp_send in ip_fragment */
588 skb->local_df = 1;
589
fc604767 590 IP_VS_XMIT_NAT(NFPROTO_IPV4, skb, cp, local);
1da177e4
LT
591
592 LeaveFunction(10);
593 return NF_STOLEN;
594
595 tx_error_icmp:
596 dst_link_failure(skb);
597 tx_error:
1da177e4 598 kfree_skb(skb);
f4bc17cd 599 LeaveFunction(10);
1da177e4
LT
600 return NF_STOLEN;
601 tx_error_put:
602 ip_rt_put(rt);
603 goto tx_error;
604}
605
b3cdd2a7
JV
606#ifdef CONFIG_IP_VS_IPV6
607int
608ip_vs_nat_xmit_v6(struct sk_buff *skb, struct ip_vs_conn *cp,
609 struct ip_vs_protocol *pp)
610{
611 struct rt6_info *rt; /* Route to the other host */
612 int mtu;
fc604767 613 int local;
b3cdd2a7
JV
614
615 EnterFunction(10);
616
617 /* check if it is a connection of no-client-port */
618 if (unlikely(cp->flags & IP_VS_CONN_F_NO_CPORT)) {
619 __be16 _pt, *p;
620 p = skb_header_pointer(skb, sizeof(struct ipv6hdr),
621 sizeof(_pt), &_pt);
622 if (p == NULL)
623 goto tx_error;
624 ip_vs_conn_fill_cport(cp, *p);
625 IP_VS_DBG(10, "filled cport=%d\n", ntohs(*p));
626 }
627
fc604767
JA
628 if (!(rt = __ip_vs_get_out_rt_v6(skb, cp->dest, &cp->daddr.in6, NULL,
629 0, 1|2|4)))
b3cdd2a7 630 goto tx_error_icmp;
fc604767
JA
631 local = __ip_vs_is_local_route6(rt);
632 /*
633 * Avoid duplicate tuple in reply direction for NAT traffic
634 * to local address when connection is sync-ed
635 */
636#if defined(CONFIG_NF_CONNTRACK) || defined(CONFIG_NF_CONNTRACK_MODULE)
637 if (cp->flags & IP_VS_CONN_F_SYNC && local) {
638 enum ip_conntrack_info ctinfo;
639 struct nf_conn *ct = ct = nf_ct_get(skb, &ctinfo);
640
641 if (ct && !nf_ct_is_untracked(ct)) {
0d79641a 642 IP_VS_DBG_RL_PKT(10, AF_INET6, pp, skb, 0,
fc604767
JA
643 "ip_vs_nat_xmit_v6(): "
644 "stopping DNAT to local address");
645 goto tx_error_put;
646 }
647 }
648#endif
649
650 /* From world but DNAT to loopback address? */
651 if (local && skb->dev && !(skb->dev->flags & IFF_LOOPBACK) &&
652 ipv6_addr_type(&rt->rt6i_dst.addr) & IPV6_ADDR_LOOPBACK) {
0d79641a 653 IP_VS_DBG_RL_PKT(1, AF_INET6, pp, skb, 0,
fc604767
JA
654 "ip_vs_nat_xmit_v6(): "
655 "stopping DNAT to loopback address");
656 goto tx_error_put;
657 }
b3cdd2a7
JV
658
659 /* MTU checking */
d8d1f30b 660 mtu = dst_mtu(&rt->dst);
b3cdd2a7 661 if (skb->len > mtu) {
cb59155f
JA
662 if (!skb->dev) {
663 struct net *net = dev_net(skb_dst(skb)->dev);
664
665 skb->dev = net->loopback_dev;
666 }
3ffe533c 667 icmpv6_send(skb, ICMPV6_PKT_TOOBIG, 0, mtu);
0d79641a 668 IP_VS_DBG_RL_PKT(0, AF_INET6, pp, skb, 0,
b3cdd2a7 669 "ip_vs_nat_xmit_v6(): frag needed for");
fc604767 670 goto tx_error_put;
b3cdd2a7
JV
671 }
672
673 /* copy-on-write the packet before mangling it */
674 if (!skb_make_writable(skb, sizeof(struct ipv6hdr)))
675 goto tx_error_put;
676
d8d1f30b 677 if (skb_cow(skb, rt->dst.dev->hard_header_len))
b3cdd2a7
JV
678 goto tx_error_put;
679
b3cdd2a7
JV
680 /* mangle the packet */
681 if (pp->dnat_handler && !pp->dnat_handler(skb, pp, cp))
682 goto tx_error;
fc604767
JA
683 ipv6_addr_copy(&ipv6_hdr(skb)->daddr, &cp->daddr.in6);
684
685 if (!local || !skb->dev) {
686 /* drop the old route when skb is not shared */
687 skb_dst_drop(skb);
688 skb_dst_set(skb, &rt->dst);
689 } else {
690 /* destined to loopback, do we need to change route? */
691 dst_release(&rt->dst);
692 }
b3cdd2a7 693
0d79641a 694 IP_VS_DBG_PKT(10, AF_INET6, pp, skb, 0, "After DNAT");
b3cdd2a7
JV
695
696 /* FIXME: when application helper enlarges the packet and the length
697 is larger than the MTU of outgoing device, there will be still
698 MTU problem. */
699
700 /* Another hack: avoid icmp_send in ip_fragment */
701 skb->local_df = 1;
702
fc604767 703 IP_VS_XMIT_NAT(NFPROTO_IPV6, skb, cp, local);
b3cdd2a7
JV
704
705 LeaveFunction(10);
706 return NF_STOLEN;
707
708tx_error_icmp:
709 dst_link_failure(skb);
710tx_error:
711 LeaveFunction(10);
712 kfree_skb(skb);
713 return NF_STOLEN;
714tx_error_put:
d8d1f30b 715 dst_release(&rt->dst);
b3cdd2a7
JV
716 goto tx_error;
717}
718#endif
719
1da177e4
LT
720
721/*
722 * IP Tunneling transmitter
723 *
724 * This function encapsulates the packet in a new IP packet, its
725 * destination will be set to cp->daddr. Most code of this function
726 * is taken from ipip.c.
727 *
728 * It is used in VS/TUN cluster. The load balancer selects a real
729 * server from a cluster based on a scheduling algorithm,
730 * encapsulates the request packet and forwards it to the selected
731 * server. For example, all real servers are configured with
732 * "ifconfig tunl0 <Virtual IP Address> up". When the server receives
733 * the encapsulated packet, it will decapsulate the packet, processe
734 * the request and return the response packets directly to the client
735 * without passing the load balancer. This can greatly increase the
736 * scalability of virtual server.
737 *
738 * Used for ANY protocol
739 */
740int
741ip_vs_tunnel_xmit(struct sk_buff *skb, struct ip_vs_conn *cp,
742 struct ip_vs_protocol *pp)
743{
744 struct rtable *rt; /* Route to the other host */
745 struct net_device *tdev; /* Device to other host */
eddc9ec5 746 struct iphdr *old_iph = ip_hdr(skb);
1da177e4 747 u8 tos = old_iph->tos;
76ab608d 748 __be16 df = old_iph->frag_off;
1da177e4 749 struct iphdr *iph; /* Our new IP header */
c2636b4d 750 unsigned int max_headroom; /* The extra header space needed */
1da177e4 751 int mtu;
f4bc17cd 752 int ret;
1da177e4
LT
753
754 EnterFunction(10);
755
fc604767
JA
756 if (!(rt = __ip_vs_get_out_rt(skb, cp->dest, cp->daddr.ip,
757 RT_TOS(tos), 1|2)))
1da177e4 758 goto tx_error_icmp;
fc604767
JA
759 if (rt->rt_flags & RTCF_LOCAL) {
760 ip_rt_put(rt);
761 IP_VS_XMIT(NFPROTO_IPV4, skb, cp, 1);
762 }
1da177e4 763
d8d1f30b 764 tdev = rt->dst.dev;
1da177e4 765
d8d1f30b 766 mtu = dst_mtu(&rt->dst) - sizeof(struct iphdr);
1da177e4 767 if (mtu < 68) {
1e3e238e 768 IP_VS_DBG_RL("%s(): mtu less than 68\n", __func__);
fc604767 769 goto tx_error_put;
1da177e4 770 }
adf30907
ED
771 if (skb_dst(skb))
772 skb_dst(skb)->ops->update_pmtu(skb_dst(skb), mtu);
1da177e4 773
4412ec49 774 df |= (old_iph->frag_off & htons(IP_DF));
1da177e4 775
4412ec49 776 if ((old_iph->frag_off & htons(IP_DF))
1da177e4
LT
777 && mtu < ntohs(old_iph->tot_len)) {
778 icmp_send(skb, ICMP_DEST_UNREACH,ICMP_FRAG_NEEDED, htonl(mtu));
1e3e238e 779 IP_VS_DBG_RL("%s(): frag needed\n", __func__);
fc604767 780 goto tx_error_put;
1da177e4
LT
781 }
782
783 /*
784 * Okay, now see if we can stuff it in the buffer as-is.
785 */
786 max_headroom = LL_RESERVED_SPACE(tdev) + sizeof(struct iphdr);
787
788 if (skb_headroom(skb) < max_headroom
789 || skb_cloned(skb) || skb_shared(skb)) {
790 struct sk_buff *new_skb =
791 skb_realloc_headroom(skb, max_headroom);
792 if (!new_skb) {
793 ip_rt_put(rt);
794 kfree_skb(skb);
1e3e238e 795 IP_VS_ERR_RL("%s(): no memory\n", __func__);
1da177e4
LT
796 return NF_STOLEN;
797 }
798 kfree_skb(skb);
799 skb = new_skb;
eddc9ec5 800 old_iph = ip_hdr(skb);
1da177e4
LT
801 }
802
714f095f 803 skb->transport_header = skb->network_header;
1da177e4
LT
804
805 /* fix old IP header checksum */
806 ip_send_check(old_iph);
807
e2d1bca7
ACM
808 skb_push(skb, sizeof(struct iphdr));
809 skb_reset_network_header(skb);
1da177e4
LT
810 memset(&(IPCB(skb)->opt), 0, sizeof(IPCB(skb)->opt));
811
812 /* drop old route */
adf30907 813 skb_dst_drop(skb);
d8d1f30b 814 skb_dst_set(skb, &rt->dst);
1da177e4
LT
815
816 /*
817 * Push down and install the IPIP header.
818 */
eddc9ec5 819 iph = ip_hdr(skb);
1da177e4
LT
820 iph->version = 4;
821 iph->ihl = sizeof(struct iphdr)>>2;
822 iph->frag_off = df;
823 iph->protocol = IPPROTO_IPIP;
824 iph->tos = tos;
825 iph->daddr = rt->rt_dst;
826 iph->saddr = rt->rt_src;
827 iph->ttl = old_iph->ttl;
d8d1f30b 828 ip_select_ident(iph, &rt->dst, NULL);
1da177e4
LT
829
830 /* Another hack: avoid icmp_send in ip_fragment */
831 skb->local_df = 1;
832
f4bc17cd
JA
833 ret = IP_VS_XMIT_TUNNEL(skb, cp);
834 if (ret == NF_ACCEPT)
835 ip_local_out(skb);
836 else if (ret == NF_DROP)
837 kfree_skb(skb);
1da177e4
LT
838
839 LeaveFunction(10);
840
841 return NF_STOLEN;
842
843 tx_error_icmp:
844 dst_link_failure(skb);
845 tx_error:
846 kfree_skb(skb);
847 LeaveFunction(10);
848 return NF_STOLEN;
fc604767
JA
849tx_error_put:
850 ip_rt_put(rt);
851 goto tx_error;
1da177e4
LT
852}
853
b3cdd2a7
JV
854#ifdef CONFIG_IP_VS_IPV6
855int
856ip_vs_tunnel_xmit_v6(struct sk_buff *skb, struct ip_vs_conn *cp,
857 struct ip_vs_protocol *pp)
858{
859 struct rt6_info *rt; /* Route to the other host */
714f095f 860 struct in6_addr saddr; /* Source for tunnel */
b3cdd2a7
JV
861 struct net_device *tdev; /* Device to other host */
862 struct ipv6hdr *old_iph = ipv6_hdr(skb);
b3cdd2a7
JV
863 struct ipv6hdr *iph; /* Our new IP header */
864 unsigned int max_headroom; /* The extra header space needed */
865 int mtu;
f4bc17cd 866 int ret;
b3cdd2a7
JV
867
868 EnterFunction(10);
869
fc604767
JA
870 if (!(rt = __ip_vs_get_out_rt_v6(skb, cp->dest, &cp->daddr.in6,
871 &saddr, 1, 1|2)))
b3cdd2a7 872 goto tx_error_icmp;
fc604767
JA
873 if (__ip_vs_is_local_route6(rt)) {
874 dst_release(&rt->dst);
875 IP_VS_XMIT(NFPROTO_IPV6, skb, cp, 1);
876 }
b3cdd2a7 877
d8d1f30b 878 tdev = rt->dst.dev;
b3cdd2a7 879
d8d1f30b 880 mtu = dst_mtu(&rt->dst) - sizeof(struct ipv6hdr);
714f095f 881 if (mtu < IPV6_MIN_MTU) {
714f095f
HS
882 IP_VS_DBG_RL("%s(): mtu less than %d\n", __func__,
883 IPV6_MIN_MTU);
fc604767 884 goto tx_error_put;
b3cdd2a7 885 }
adf30907
ED
886 if (skb_dst(skb))
887 skb_dst(skb)->ops->update_pmtu(skb_dst(skb), mtu);
b3cdd2a7
JV
888
889 if (mtu < ntohs(old_iph->payload_len) + sizeof(struct ipv6hdr)) {
cb59155f
JA
890 if (!skb->dev) {
891 struct net *net = dev_net(skb_dst(skb)->dev);
892
893 skb->dev = net->loopback_dev;
894 }
3ffe533c 895 icmpv6_send(skb, ICMPV6_PKT_TOOBIG, 0, mtu);
1e3e238e 896 IP_VS_DBG_RL("%s(): frag needed\n", __func__);
fc604767 897 goto tx_error_put;
b3cdd2a7
JV
898 }
899
900 /*
901 * Okay, now see if we can stuff it in the buffer as-is.
902 */
903 max_headroom = LL_RESERVED_SPACE(tdev) + sizeof(struct ipv6hdr);
904
905 if (skb_headroom(skb) < max_headroom
906 || skb_cloned(skb) || skb_shared(skb)) {
907 struct sk_buff *new_skb =
908 skb_realloc_headroom(skb, max_headroom);
909 if (!new_skb) {
d8d1f30b 910 dst_release(&rt->dst);
b3cdd2a7 911 kfree_skb(skb);
1e3e238e 912 IP_VS_ERR_RL("%s(): no memory\n", __func__);
b3cdd2a7
JV
913 return NF_STOLEN;
914 }
915 kfree_skb(skb);
916 skb = new_skb;
917 old_iph = ipv6_hdr(skb);
918 }
919
714f095f 920 skb->transport_header = skb->network_header;
b3cdd2a7
JV
921
922 skb_push(skb, sizeof(struct ipv6hdr));
923 skb_reset_network_header(skb);
924 memset(&(IPCB(skb)->opt), 0, sizeof(IPCB(skb)->opt));
925
926 /* drop old route */
adf30907 927 skb_dst_drop(skb);
d8d1f30b 928 skb_dst_set(skb, &rt->dst);
b3cdd2a7
JV
929
930 /*
931 * Push down and install the IPIP header.
932 */
933 iph = ipv6_hdr(skb);
934 iph->version = 6;
935 iph->nexthdr = IPPROTO_IPV6;
b7b45f47
HH
936 iph->payload_len = old_iph->payload_len;
937 be16_add_cpu(&iph->payload_len, sizeof(*old_iph));
b3cdd2a7
JV
938 iph->priority = old_iph->priority;
939 memset(&iph->flow_lbl, 0, sizeof(iph->flow_lbl));
714f095f
HS
940 ipv6_addr_copy(&iph->daddr, &cp->daddr.in6);
941 ipv6_addr_copy(&iph->saddr, &saddr);
b3cdd2a7
JV
942 iph->hop_limit = old_iph->hop_limit;
943
944 /* Another hack: avoid icmp_send in ip_fragment */
945 skb->local_df = 1;
946
f4bc17cd
JA
947 ret = IP_VS_XMIT_TUNNEL(skb, cp);
948 if (ret == NF_ACCEPT)
949 ip6_local_out(skb);
950 else if (ret == NF_DROP)
951 kfree_skb(skb);
b3cdd2a7
JV
952
953 LeaveFunction(10);
954
955 return NF_STOLEN;
956
957tx_error_icmp:
958 dst_link_failure(skb);
959tx_error:
960 kfree_skb(skb);
961 LeaveFunction(10);
962 return NF_STOLEN;
fc604767
JA
963tx_error_put:
964 dst_release(&rt->dst);
965 goto tx_error;
b3cdd2a7
JV
966}
967#endif
968
1da177e4
LT
969
970/*
971 * Direct Routing transmitter
972 * Used for ANY protocol
973 */
974int
975ip_vs_dr_xmit(struct sk_buff *skb, struct ip_vs_conn *cp,
976 struct ip_vs_protocol *pp)
977{
978 struct rtable *rt; /* Route to the other host */
eddc9ec5 979 struct iphdr *iph = ip_hdr(skb);
1da177e4
LT
980 int mtu;
981
982 EnterFunction(10);
983
fc604767
JA
984 if (!(rt = __ip_vs_get_out_rt(skb, cp->dest, cp->daddr.ip,
985 RT_TOS(iph->tos), 1|2)))
1da177e4 986 goto tx_error_icmp;
fc604767
JA
987 if (rt->rt_flags & RTCF_LOCAL) {
988 ip_rt_put(rt);
989 IP_VS_XMIT(NFPROTO_IPV4, skb, cp, 1);
990 }
1da177e4
LT
991
992 /* MTU checking */
d8d1f30b 993 mtu = dst_mtu(&rt->dst);
4412ec49 994 if ((iph->frag_off & htons(IP_DF)) && skb->len > mtu) {
1da177e4
LT
995 icmp_send(skb, ICMP_DEST_UNREACH,ICMP_FRAG_NEEDED, htonl(mtu));
996 ip_rt_put(rt);
1e3e238e 997 IP_VS_DBG_RL("%s(): frag needed\n", __func__);
1da177e4
LT
998 goto tx_error;
999 }
1000
1001 /*
1002 * Call ip_send_check because we are not sure it is called
1003 * after ip_defrag. Is copy-on-write needed?
1004 */
1005 if (unlikely((skb = skb_share_check(skb, GFP_ATOMIC)) == NULL)) {
1006 ip_rt_put(rt);
1007 return NF_STOLEN;
1008 }
eddc9ec5 1009 ip_send_check(ip_hdr(skb));
1da177e4
LT
1010
1011 /* drop old route */
adf30907 1012 skb_dst_drop(skb);
d8d1f30b 1013 skb_dst_set(skb, &rt->dst);
1da177e4
LT
1014
1015 /* Another hack: avoid icmp_send in ip_fragment */
1016 skb->local_df = 1;
1017
fc604767 1018 IP_VS_XMIT(NFPROTO_IPV4, skb, cp, 0);
1da177e4
LT
1019
1020 LeaveFunction(10);
1021 return NF_STOLEN;
1022
1023 tx_error_icmp:
1024 dst_link_failure(skb);
1025 tx_error:
1026 kfree_skb(skb);
1027 LeaveFunction(10);
1028 return NF_STOLEN;
1029}
1030
b3cdd2a7
JV
1031#ifdef CONFIG_IP_VS_IPV6
1032int
1033ip_vs_dr_xmit_v6(struct sk_buff *skb, struct ip_vs_conn *cp,
1034 struct ip_vs_protocol *pp)
1035{
1036 struct rt6_info *rt; /* Route to the other host */
1037 int mtu;
1038
1039 EnterFunction(10);
1040
fc604767
JA
1041 if (!(rt = __ip_vs_get_out_rt_v6(skb, cp->dest, &cp->daddr.in6, NULL,
1042 0, 1|2)))
b3cdd2a7 1043 goto tx_error_icmp;
fc604767
JA
1044 if (__ip_vs_is_local_route6(rt)) {
1045 dst_release(&rt->dst);
1046 IP_VS_XMIT(NFPROTO_IPV6, skb, cp, 1);
1047 }
b3cdd2a7
JV
1048
1049 /* MTU checking */
d8d1f30b 1050 mtu = dst_mtu(&rt->dst);
b3cdd2a7 1051 if (skb->len > mtu) {
cb59155f
JA
1052 if (!skb->dev) {
1053 struct net *net = dev_net(skb_dst(skb)->dev);
1054
1055 skb->dev = net->loopback_dev;
1056 }
3ffe533c 1057 icmpv6_send(skb, ICMPV6_PKT_TOOBIG, 0, mtu);
d8d1f30b 1058 dst_release(&rt->dst);
1e3e238e 1059 IP_VS_DBG_RL("%s(): frag needed\n", __func__);
b3cdd2a7
JV
1060 goto tx_error;
1061 }
1062
1063 /*
1064 * Call ip_send_check because we are not sure it is called
1065 * after ip_defrag. Is copy-on-write needed?
1066 */
1067 skb = skb_share_check(skb, GFP_ATOMIC);
1068 if (unlikely(skb == NULL)) {
d8d1f30b 1069 dst_release(&rt->dst);
b3cdd2a7
JV
1070 return NF_STOLEN;
1071 }
1072
1073 /* drop old route */
adf30907 1074 skb_dst_drop(skb);
d8d1f30b 1075 skb_dst_set(skb, &rt->dst);
b3cdd2a7
JV
1076
1077 /* Another hack: avoid icmp_send in ip_fragment */
1078 skb->local_df = 1;
1079
fc604767 1080 IP_VS_XMIT(NFPROTO_IPV6, skb, cp, 0);
b3cdd2a7
JV
1081
1082 LeaveFunction(10);
1083 return NF_STOLEN;
1084
1085tx_error_icmp:
1086 dst_link_failure(skb);
1087tx_error:
1088 kfree_skb(skb);
1089 LeaveFunction(10);
1090 return NF_STOLEN;
1091}
1092#endif
1093
1da177e4
LT
1094
1095/*
1096 * ICMP packet transmitter
1097 * called by the ip_vs_in_icmp
1098 */
1099int
1100ip_vs_icmp_xmit(struct sk_buff *skb, struct ip_vs_conn *cp,
1101 struct ip_vs_protocol *pp, int offset)
1102{
1103 struct rtable *rt; /* Route to the other host */
1104 int mtu;
1105 int rc;
fc604767 1106 int local;
1da177e4
LT
1107
1108 EnterFunction(10);
1109
1110 /* The ICMP packet for VS/TUN, VS/DR and LOCALNODE will be
1111 forwarded directly here, because there is no need to
1112 translate address/port back */
1113 if (IP_VS_FWD_METHOD(cp) != IP_VS_CONN_F_MASQ) {
1114 if (cp->packet_xmit)
1115 rc = cp->packet_xmit(skb, cp, pp);
1116 else
1117 rc = NF_ACCEPT;
1118 /* do not touch skb anymore */
1119 atomic_inc(&cp->in_pkts);
1da177e4
LT
1120 goto out;
1121 }
1122
1123 /*
1124 * mangle and send the packet here (only for VS/NAT)
1125 */
1126
fc604767
JA
1127 if (!(rt = __ip_vs_get_out_rt(skb, cp->dest, cp->daddr.ip,
1128 RT_TOS(ip_hdr(skb)->tos), 1|2|4)))
1da177e4 1129 goto tx_error_icmp;
fc604767
JA
1130 local = rt->rt_flags & RTCF_LOCAL;
1131
1132 /*
1133 * Avoid duplicate tuple in reply direction for NAT traffic
1134 * to local address when connection is sync-ed
1135 */
1136#if defined(CONFIG_NF_CONNTRACK) || defined(CONFIG_NF_CONNTRACK_MODULE)
1137 if (cp->flags & IP_VS_CONN_F_SYNC && local) {
1138 enum ip_conntrack_info ctinfo;
1139 struct nf_conn *ct = ct = nf_ct_get(skb, &ctinfo);
1140
1141 if (ct && !nf_ct_is_untracked(ct)) {
1142 IP_VS_DBG(10, "%s(): "
1143 "stopping DNAT to local address %pI4\n",
1144 __func__, &cp->daddr.ip);
1145 goto tx_error_put;
1146 }
1147 }
1148#endif
1149
1150 /* From world but DNAT to loopback address? */
c7537967
DM
1151 if (local && ipv4_is_loopback(rt->rt_dst) &&
1152 rt_is_input_route(skb_rtable(skb))) {
fc604767
JA
1153 IP_VS_DBG(1, "%s(): "
1154 "stopping DNAT to loopback %pI4\n",
1155 __func__, &cp->daddr.ip);
1156 goto tx_error_put;
1157 }
1da177e4
LT
1158
1159 /* MTU checking */
d8d1f30b 1160 mtu = dst_mtu(&rt->dst);
eddc9ec5 1161 if ((skb->len > mtu) && (ip_hdr(skb)->frag_off & htons(IP_DF))) {
1da177e4 1162 icmp_send(skb, ICMP_DEST_UNREACH, ICMP_FRAG_NEEDED, htonl(mtu));
1e3e238e 1163 IP_VS_DBG_RL("%s(): frag needed\n", __func__);
fc604767 1164 goto tx_error_put;
1da177e4
LT
1165 }
1166
1167 /* copy-on-write the packet before mangling it */
af1e1cf0 1168 if (!skb_make_writable(skb, offset))
1da177e4
LT
1169 goto tx_error_put;
1170
d8d1f30b 1171 if (skb_cow(skb, rt->dst.dev->hard_header_len))
1da177e4
LT
1172 goto tx_error_put;
1173
1da177e4
LT
1174 ip_vs_nat_icmp(skb, pp, cp, 0);
1175
fc604767
JA
1176 if (!local) {
1177 /* drop the old route when skb is not shared */
1178 skb_dst_drop(skb);
1179 skb_dst_set(skb, &rt->dst);
1180 } else {
1181 ip_rt_put(rt);
1182 /*
1183 * Some IPv4 replies get local address from routes,
1184 * not from iph, so while we DNAT after routing
1185 * we need this second input/output route.
1186 */
1187 if (!__ip_vs_reroute_locally(skb))
1188 goto tx_error;
1189 }
1190
1da177e4
LT
1191 /* Another hack: avoid icmp_send in ip_fragment */
1192 skb->local_df = 1;
1193
fc604767 1194 IP_VS_XMIT_NAT(NFPROTO_IPV4, skb, cp, local);
1da177e4
LT
1195
1196 rc = NF_STOLEN;
1197 goto out;
1198
1199 tx_error_icmp:
1200 dst_link_failure(skb);
1201 tx_error:
1202 dev_kfree_skb(skb);
1203 rc = NF_STOLEN;
1204 out:
1205 LeaveFunction(10);
1206 return rc;
1207 tx_error_put:
1208 ip_rt_put(rt);
1209 goto tx_error;
1210}
b3cdd2a7
JV
1211
1212#ifdef CONFIG_IP_VS_IPV6
1213int
1214ip_vs_icmp_xmit_v6(struct sk_buff *skb, struct ip_vs_conn *cp,
1215 struct ip_vs_protocol *pp, int offset)
1216{
1217 struct rt6_info *rt; /* Route to the other host */
1218 int mtu;
1219 int rc;
fc604767 1220 int local;
b3cdd2a7
JV
1221
1222 EnterFunction(10);
1223
1224 /* The ICMP packet for VS/TUN, VS/DR and LOCALNODE will be
1225 forwarded directly here, because there is no need to
1226 translate address/port back */
1227 if (IP_VS_FWD_METHOD(cp) != IP_VS_CONN_F_MASQ) {
1228 if (cp->packet_xmit)
1229 rc = cp->packet_xmit(skb, cp, pp);
1230 else
1231 rc = NF_ACCEPT;
1232 /* do not touch skb anymore */
1233 atomic_inc(&cp->in_pkts);
1234 goto out;
1235 }
1236
1237 /*
1238 * mangle and send the packet here (only for VS/NAT)
1239 */
1240
fc604767
JA
1241 if (!(rt = __ip_vs_get_out_rt_v6(skb, cp->dest, &cp->daddr.in6, NULL,
1242 0, 1|2|4)))
b3cdd2a7
JV
1243 goto tx_error_icmp;
1244
fc604767
JA
1245 local = __ip_vs_is_local_route6(rt);
1246 /*
1247 * Avoid duplicate tuple in reply direction for NAT traffic
1248 * to local address when connection is sync-ed
1249 */
1250#if defined(CONFIG_NF_CONNTRACK) || defined(CONFIG_NF_CONNTRACK_MODULE)
1251 if (cp->flags & IP_VS_CONN_F_SYNC && local) {
1252 enum ip_conntrack_info ctinfo;
1253 struct nf_conn *ct = ct = nf_ct_get(skb, &ctinfo);
1254
1255 if (ct && !nf_ct_is_untracked(ct)) {
1256 IP_VS_DBG(10, "%s(): "
1257 "stopping DNAT to local address %pI6\n",
1258 __func__, &cp->daddr.in6);
1259 goto tx_error_put;
1260 }
1261 }
1262#endif
1263
1264 /* From world but DNAT to loopback address? */
1265 if (local && skb->dev && !(skb->dev->flags & IFF_LOOPBACK) &&
1266 ipv6_addr_type(&rt->rt6i_dst.addr) & IPV6_ADDR_LOOPBACK) {
1267 IP_VS_DBG(1, "%s(): "
1268 "stopping DNAT to loopback %pI6\n",
1269 __func__, &cp->daddr.in6);
1270 goto tx_error_put;
1271 }
1272
b3cdd2a7 1273 /* MTU checking */
d8d1f30b 1274 mtu = dst_mtu(&rt->dst);
b3cdd2a7 1275 if (skb->len > mtu) {
cb59155f
JA
1276 if (!skb->dev) {
1277 struct net *net = dev_net(skb_dst(skb)->dev);
1278
1279 skb->dev = net->loopback_dev;
1280 }
3ffe533c 1281 icmpv6_send(skb, ICMPV6_PKT_TOOBIG, 0, mtu);
1e3e238e 1282 IP_VS_DBG_RL("%s(): frag needed\n", __func__);
fc604767 1283 goto tx_error_put;
b3cdd2a7
JV
1284 }
1285
1286 /* copy-on-write the packet before mangling it */
1287 if (!skb_make_writable(skb, offset))
1288 goto tx_error_put;
1289
d8d1f30b 1290 if (skb_cow(skb, rt->dst.dev->hard_header_len))
b3cdd2a7
JV
1291 goto tx_error_put;
1292
b3cdd2a7
JV
1293 ip_vs_nat_icmp_v6(skb, pp, cp, 0);
1294
fc604767
JA
1295 if (!local || !skb->dev) {
1296 /* drop the old route when skb is not shared */
1297 skb_dst_drop(skb);
1298 skb_dst_set(skb, &rt->dst);
1299 } else {
1300 /* destined to loopback, do we need to change route? */
1301 dst_release(&rt->dst);
1302 }
1303
b3cdd2a7
JV
1304 /* Another hack: avoid icmp_send in ip_fragment */
1305 skb->local_df = 1;
1306
fc604767 1307 IP_VS_XMIT_NAT(NFPROTO_IPV6, skb, cp, local);
b3cdd2a7
JV
1308
1309 rc = NF_STOLEN;
1310 goto out;
1311
1312tx_error_icmp:
1313 dst_link_failure(skb);
1314tx_error:
1315 dev_kfree_skb(skb);
1316 rc = NF_STOLEN;
1317out:
1318 LeaveFunction(10);
1319 return rc;
1320tx_error_put:
d8d1f30b 1321 dst_release(&rt->dst);
b3cdd2a7
JV
1322 goto tx_error;
1323}
1324#endif