blob: 10bd39c0ae2d6941925855909ba680a69987039b [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
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
Linus Torvalds1da177e2005-04-16 15:20:36 -070024 */
25
Hannes Eder9aada7a2009-07-30 14:29:44 -070026#define KMSG_COMPONENT "IPVS"
27#define pr_fmt(fmt) KMSG_COMPONENT ": " fmt
28
Linus Torvalds1da177e2005-04-16 15:20:36 -070029#include <linux/kernel.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090030#include <linux/slab.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070031#include <linux/tcp.h> /* for tcphdr */
Herbert Xuc439cb22008-01-11 19:14:00 -080032#include <net/ip.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070033#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 */
Julius Volz38cdcc92008-09-02 15:55:44 +020037#include <net/ipv6.h>
38#include <net/ip6_route.h>
Hans Schillstrom714f0952010-10-19 10:38:48 +020039#include <net/addrconf.h>
Julius Volz38cdcc92008-09-02 15:55:44 +020040#include <linux/icmpv6.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070041#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
Hans Schillstrom714f0952010-10-19 10:38:48 +020051__ip_vs_dst_set(struct ip_vs_dest *dest, u32 rtos, struct dst_entry *dst,
52 u32 dst_cookie)
Linus Torvalds1da177e2005-04-16 15:20:36 -070053{
54 struct dst_entry *old_dst;
55
56 old_dst = dest->dst_cache;
57 dest->dst_cache = dst;
58 dest->dst_rtos = rtos;
Hans Schillstrom714f0952010-10-19 10:38:48 +020059 dest->dst_cookie = dst_cookie;
Linus Torvalds1da177e2005-04-16 15:20:36 -070060 dst_release(old_dst);
61}
62
63static inline struct dst_entry *
Hans Schillstrom714f0952010-10-19 10:38:48 +020064__ip_vs_dst_check(struct ip_vs_dest *dest, u32 rtos)
Linus Torvalds1da177e2005-04-16 15:20:36 -070065{
66 struct dst_entry *dst = dest->dst_cache;
67
68 if (!dst)
69 return NULL;
Hans Schillstrom714f0952010-10-19 10:38:48 +020070 if ((dst->obsolete || rtos != dest->dst_rtos) &&
71 dst->ops->check(dst, dest->dst_cookie) == NULL) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070072 dest->dst_cache = NULL;
73 dst_release(dst);
74 return NULL;
75 }
76 dst_hold(dst);
77 return dst;
78}
79
Julian Anastasovfc604762010-10-17 16:38:15 +030080/*
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 */
Ilpo Järvinenad1b30b2008-01-05 23:12:40 -080085static struct rtable *
Julian Anastasovfc604762010-10-17 16:38:15 +030086__ip_vs_get_out_rt(struct sk_buff *skb, struct ip_vs_dest *dest,
87 __be32 daddr, u32 rtos, int rt_mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -070088{
Julian Anastasovfc604762010-10-17 16:38:15 +030089 struct net *net = dev_net(skb_dst(skb)->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -070090 struct rtable *rt; /* Route to the other host */
Julian Anastasovfc604762010-10-17 16:38:15 +030091 struct rtable *ort; /* Original route */
92 int local;
Linus Torvalds1da177e2005-04-16 15:20:36 -070093
94 if (dest) {
95 spin_lock(&dest->dst_lock);
96 if (!(rt = (struct rtable *)
Hans Schillstrom714f0952010-10-19 10:38:48 +020097 __ip_vs_dst_check(dest, rtos))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070098 struct flowi fl = {
99 .oif = 0,
100 .nl_u = {
101 .ip4_u = {
Julius Volze7ade462008-09-02 15:55:33 +0200102 .daddr = dest->addr.ip,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700103 .saddr = 0,
104 .tos = rtos, } },
105 };
106
Hans Schillstrom714f0952010-10-19 10:38:48 +0200107 if (ip_route_output_key(net, &rt, &fl)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700108 spin_unlock(&dest->dst_lock);
Harvey Harrison14d5e832008-10-31 00:54:29 -0700109 IP_VS_DBG_RL("ip_route_output error, dest: %pI4\n",
110 &dest->addr.ip);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700111 return NULL;
112 }
Hans Schillstrom714f0952010-10-19 10:38:48 +0200113 __ip_vs_dst_set(dest, rtos, dst_clone(&rt->dst), 0);
Harvey Harrison14d5e832008-10-31 00:54:29 -0700114 IP_VS_DBG(10, "new dst %pI4, refcnt=%d, rtos=%X\n",
115 &dest->addr.ip,
Changli Gaod8d1f302010-06-10 23:31:35 -0700116 atomic_read(&rt->dst.__refcnt), rtos);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700117 }
118 spin_unlock(&dest->dst_lock);
119 } else {
120 struct flowi fl = {
121 .oif = 0,
122 .nl_u = {
123 .ip4_u = {
Julian Anastasovfc604762010-10-17 16:38:15 +0300124 .daddr = daddr,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700125 .saddr = 0,
126 .tos = rtos, } },
127 };
128
Hans Schillstrom714f0952010-10-19 10:38:48 +0200129 if (ip_route_output_key(net, &rt, &fl)) {
Harvey Harrison14d5e832008-10-31 00:54:29 -0700130 IP_VS_DBG_RL("ip_route_output error, dest: %pI4\n",
Julian Anastasovfc604762010-10-17 16:38:15 +0300131 &daddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700132 return NULL;
133 }
134 }
135
Julian Anastasovfc604762010-10-17 16:38:15 +0300136 local = rt->rt_flags & RTCF_LOCAL;
137 if (!((local ? 1 : 2) & rt_mode)) {
138 IP_VS_DBG_RL("Stopping traffic to %s address, dest: %pI4\n",
139 (rt->rt_flags & RTCF_LOCAL) ?
140 "local":"non-local", &rt->rt_dst);
141 ip_rt_put(rt);
142 return NULL;
143 }
144 if (local && !(rt_mode & 4) && !((ort = skb_rtable(skb)) &&
145 ort->rt_flags & RTCF_LOCAL)) {
146 IP_VS_DBG_RL("Redirect from non-local address %pI4 to local "
147 "requires NAT method, dest: %pI4\n",
148 &ip_hdr(skb)->daddr, &rt->rt_dst);
149 ip_rt_put(rt);
150 return NULL;
151 }
152 if (unlikely(!local && ipv4_is_loopback(ip_hdr(skb)->saddr))) {
153 IP_VS_DBG_RL("Stopping traffic from loopback address %pI4 "
154 "to non-local address, dest: %pI4\n",
155 &ip_hdr(skb)->saddr, &rt->rt_dst);
156 ip_rt_put(rt);
157 return NULL;
158 }
159
Linus Torvalds1da177e2005-04-16 15:20:36 -0700160 return rt;
161}
162
Julian Anastasovfc604762010-10-17 16:38:15 +0300163/* Reroute packet to local IPv4 stack after DNAT */
164static int
165__ip_vs_reroute_locally(struct sk_buff *skb)
166{
167 struct rtable *rt = skb_rtable(skb);
168 struct net_device *dev = rt->dst.dev;
169 struct net *net = dev_net(dev);
170 struct iphdr *iph = ip_hdr(skb);
171
David S. Millerc7537962010-11-11 17:07:48 -0800172 if (rt_is_input_route(rt)) {
Julian Anastasovfc604762010-10-17 16:38:15 +0300173 unsigned long orefdst = skb->_skb_refdst;
174
175 if (ip_route_input(skb, iph->daddr, iph->saddr,
176 iph->tos, skb->dev))
177 return 0;
178 refdst_drop(orefdst);
179 } else {
180 struct flowi fl = {
181 .oif = 0,
182 .nl_u = {
183 .ip4_u = {
184 .daddr = iph->daddr,
185 .saddr = iph->saddr,
186 .tos = RT_TOS(iph->tos),
187 }
188 },
189 .mark = skb->mark,
190 };
191 struct rtable *rt;
192
193 if (ip_route_output_key(net, &rt, &fl))
194 return 0;
195 if (!(rt->rt_flags & RTCF_LOCAL)) {
196 ip_rt_put(rt);
197 return 0;
198 }
199 /* Drop old route. */
200 skb_dst_drop(skb);
201 skb_dst_set(skb, &rt->dst);
202 }
203 return 1;
204}
205
Julius Volz38cdcc92008-09-02 15:55:44 +0200206#ifdef CONFIG_IP_VS_IPV6
Hans Schillstrom714f0952010-10-19 10:38:48 +0200207
Julian Anastasovfc604762010-10-17 16:38:15 +0300208static inline int __ip_vs_is_local_route6(struct rt6_info *rt)
209{
210 return rt->rt6i_dev && rt->rt6i_dev->flags & IFF_LOOPBACK;
211}
212
Hans Schillstrom714f0952010-10-19 10:38:48 +0200213static struct dst_entry *
214__ip_vs_route_output_v6(struct net *net, struct in6_addr *daddr,
215 struct in6_addr *ret_saddr, int do_xfrm)
Julius Volz38cdcc92008-09-02 15:55:44 +0200216{
Hans Schillstrom714f0952010-10-19 10:38:48 +0200217 struct dst_entry *dst;
218 struct flowi fl = {
219 .oif = 0,
220 .nl_u = {
221 .ip6_u = {
222 .daddr = *daddr,
223 },
224 },
225 };
226
227 dst = ip6_route_output(net, NULL, &fl);
228 if (dst->error)
229 goto out_err;
230 if (!ret_saddr)
231 return dst;
232 if (ipv6_addr_any(&fl.fl6_src) &&
233 ipv6_dev_get_saddr(net, ip6_dst_idev(dst)->dev,
234 &fl.fl6_dst, 0, &fl.fl6_src) < 0)
235 goto out_err;
236 if (do_xfrm && xfrm_lookup(net, &dst, &fl, NULL, 0) < 0)
237 goto out_err;
238 ipv6_addr_copy(ret_saddr, &fl.fl6_src);
239 return dst;
240
241out_err:
242 dst_release(dst);
243 IP_VS_DBG_RL("ip6_route_output error, dest: %pI6\n", daddr);
244 return NULL;
245}
246
Julian Anastasovfc604762010-10-17 16:38:15 +0300247/*
248 * Get route to destination or remote server
249 * rt_mode: flags, &1=Allow local dest, &2=Allow non-local dest,
250 * &4=Allow redirect from remote daddr to local
251 */
Hans Schillstrom714f0952010-10-19 10:38:48 +0200252static struct rt6_info *
Julian Anastasovfc604762010-10-17 16:38:15 +0300253__ip_vs_get_out_rt_v6(struct sk_buff *skb, struct ip_vs_dest *dest,
254 struct in6_addr *daddr, struct in6_addr *ret_saddr,
255 int do_xfrm, int rt_mode)
Hans Schillstrom714f0952010-10-19 10:38:48 +0200256{
Julian Anastasovfc604762010-10-17 16:38:15 +0300257 struct net *net = dev_net(skb_dst(skb)->dev);
Julius Volz38cdcc92008-09-02 15:55:44 +0200258 struct rt6_info *rt; /* Route to the other host */
Julian Anastasovfc604762010-10-17 16:38:15 +0300259 struct rt6_info *ort; /* Original route */
Hans Schillstrom714f0952010-10-19 10:38:48 +0200260 struct dst_entry *dst;
Julian Anastasovfc604762010-10-17 16:38:15 +0300261 int local;
Julius Volz38cdcc92008-09-02 15:55:44 +0200262
263 if (dest) {
264 spin_lock(&dest->dst_lock);
Hans Schillstrom714f0952010-10-19 10:38:48 +0200265 rt = (struct rt6_info *)__ip_vs_dst_check(dest, 0);
Julius Volz38cdcc92008-09-02 15:55:44 +0200266 if (!rt) {
Hans Schillstrom714f0952010-10-19 10:38:48 +0200267 u32 cookie;
Julius Volz38cdcc92008-09-02 15:55:44 +0200268
Hans Schillstrom714f0952010-10-19 10:38:48 +0200269 dst = __ip_vs_route_output_v6(net, &dest->addr.in6,
270 &dest->dst_saddr,
271 do_xfrm);
272 if (!dst) {
Julius Volz38cdcc92008-09-02 15:55:44 +0200273 spin_unlock(&dest->dst_lock);
Julius Volz38cdcc92008-09-02 15:55:44 +0200274 return NULL;
275 }
Hans Schillstrom714f0952010-10-19 10:38:48 +0200276 rt = (struct rt6_info *) dst;
277 cookie = rt->rt6i_node ? rt->rt6i_node->fn_sernum : 0;
278 __ip_vs_dst_set(dest, 0, dst_clone(&rt->dst), cookie);
279 IP_VS_DBG(10, "new dst %pI6, src %pI6, refcnt=%d\n",
280 &dest->addr.in6, &dest->dst_saddr,
Changli Gaod8d1f302010-06-10 23:31:35 -0700281 atomic_read(&rt->dst.__refcnt));
Julius Volz38cdcc92008-09-02 15:55:44 +0200282 }
Hans Schillstrom714f0952010-10-19 10:38:48 +0200283 if (ret_saddr)
284 ipv6_addr_copy(ret_saddr, &dest->dst_saddr);
Julius Volz38cdcc92008-09-02 15:55:44 +0200285 spin_unlock(&dest->dst_lock);
286 } else {
Julian Anastasovfc604762010-10-17 16:38:15 +0300287 dst = __ip_vs_route_output_v6(net, daddr, ret_saddr, do_xfrm);
Hans Schillstrom714f0952010-10-19 10:38:48 +0200288 if (!dst)
Julius Volz38cdcc92008-09-02 15:55:44 +0200289 return NULL;
Hans Schillstrom714f0952010-10-19 10:38:48 +0200290 rt = (struct rt6_info *) dst;
Julius Volz38cdcc92008-09-02 15:55:44 +0200291 }
292
Julian Anastasovfc604762010-10-17 16:38:15 +0300293 local = __ip_vs_is_local_route6(rt);
294 if (!((local ? 1 : 2) & rt_mode)) {
295 IP_VS_DBG_RL("Stopping traffic to %s address, dest: %pI6\n",
296 local ? "local":"non-local", daddr);
297 dst_release(&rt->dst);
298 return NULL;
299 }
300 if (local && !(rt_mode & 4) &&
301 !((ort = (struct rt6_info *) skb_dst(skb)) &&
302 __ip_vs_is_local_route6(ort))) {
303 IP_VS_DBG_RL("Redirect from non-local address %pI6 to local "
304 "requires NAT method, dest: %pI6\n",
305 &ipv6_hdr(skb)->daddr, daddr);
306 dst_release(&rt->dst);
307 return NULL;
308 }
309 if (unlikely(!local && (!skb->dev || skb->dev->flags & IFF_LOOPBACK) &&
310 ipv6_addr_type(&ipv6_hdr(skb)->saddr) &
311 IPV6_ADDR_LOOPBACK)) {
312 IP_VS_DBG_RL("Stopping traffic from loopback address %pI6 "
313 "to non-local address, dest: %pI6\n",
314 &ipv6_hdr(skb)->saddr, daddr);
315 dst_release(&rt->dst);
316 return NULL;
317 }
318
Julius Volz38cdcc92008-09-02 15:55:44 +0200319 return rt;
320}
321#endif
322
Linus Torvalds1da177e2005-04-16 15:20:36 -0700323
324/*
325 * Release dest->dst_cache before a dest is removed
326 */
327void
328ip_vs_dst_reset(struct ip_vs_dest *dest)
329{
330 struct dst_entry *old_dst;
331
332 old_dst = dest->dst_cache;
333 dest->dst_cache = NULL;
334 dst_release(old_dst);
335}
336
Julian Anastasovf4bc17c2010-09-21 17:35:41 +0200337#define IP_VS_XMIT_TUNNEL(skb, cp) \
338({ \
339 int __ret = NF_ACCEPT; \
340 \
Julian Anastasovcf356d62010-10-17 16:21:07 +0300341 (skb)->ipvs_property = 1; \
Julian Anastasovf4bc17c2010-09-21 17:35:41 +0200342 if (unlikely((cp)->flags & IP_VS_CONN_F_NFCT)) \
343 __ret = ip_vs_confirm_conntrack(skb, cp); \
344 if (__ret == NF_ACCEPT) { \
345 nf_reset(skb); \
Julian Anastasov4256f1a2010-10-17 16:29:40 +0300346 skb_forward_csum(skb); \
Julian Anastasovf4bc17c2010-09-21 17:35:41 +0200347 } \
348 __ret; \
349})
350
Julian Anastasovfc604762010-10-17 16:38:15 +0300351#define IP_VS_XMIT_NAT(pf, skb, cp, local) \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700352do { \
Julian Anastasovcf356d62010-10-17 16:21:07 +0300353 (skb)->ipvs_property = 1; \
Julian Anastasovf4bc17c2010-09-21 17:35:41 +0200354 if (likely(!((cp)->flags & IP_VS_CONN_F_NFCT))) \
Julian Anastasovcf356d62010-10-17 16:21:07 +0300355 ip_vs_notrack(skb); \
Julian Anastasovf4bc17c2010-09-21 17:35:41 +0200356 else \
357 ip_vs_update_conntrack(skb, cp, 1); \
Julian Anastasovfc604762010-10-17 16:38:15 +0300358 if (local) \
359 return NF_ACCEPT; \
Herbert Xuccc79112007-07-30 16:20:12 -0700360 skb_forward_csum(skb); \
Julius Volz38cdcc92008-09-02 15:55:44 +0200361 NF_HOOK(pf, NF_INET_LOCAL_OUT, (skb), NULL, \
Julian Anastasovf4bc17c2010-09-21 17:35:41 +0200362 skb_dst(skb)->dev, dst_output); \
363} while (0)
364
Julian Anastasovfc604762010-10-17 16:38:15 +0300365#define IP_VS_XMIT(pf, skb, cp, local) \
Julian Anastasovf4bc17c2010-09-21 17:35:41 +0200366do { \
Julian Anastasovcf356d62010-10-17 16:21:07 +0300367 (skb)->ipvs_property = 1; \
Julian Anastasovf4bc17c2010-09-21 17:35:41 +0200368 if (likely(!((cp)->flags & IP_VS_CONN_F_NFCT))) \
Julian Anastasovcf356d62010-10-17 16:21:07 +0300369 ip_vs_notrack(skb); \
Julian Anastasovfc604762010-10-17 16:38:15 +0300370 if (local) \
371 return NF_ACCEPT; \
Julian Anastasovf4bc17c2010-09-21 17:35:41 +0200372 skb_forward_csum(skb); \
373 NF_HOOK(pf, NF_INET_LOCAL_OUT, (skb), NULL, \
374 skb_dst(skb)->dev, dst_output); \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700375} while (0)
376
377
378/*
379 * NULL transmitter (do nothing except return NF_ACCEPT)
380 */
381int
382ip_vs_null_xmit(struct sk_buff *skb, struct ip_vs_conn *cp,
383 struct ip_vs_protocol *pp)
384{
385 /* we do not touch skb and do not need pskb ptr */
Julian Anastasovfc604762010-10-17 16:38:15 +0300386 IP_VS_XMIT(NFPROTO_IPV4, skb, cp, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700387}
388
389
390/*
391 * Bypass transmitter
392 * Let packets bypass the destination when the destination is not
393 * available, it may be only used in transparent cache cluster.
394 */
395int
396ip_vs_bypass_xmit(struct sk_buff *skb, struct ip_vs_conn *cp,
397 struct ip_vs_protocol *pp)
398{
399 struct rtable *rt; /* Route to the other host */
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -0700400 struct iphdr *iph = ip_hdr(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700401 int mtu;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700402
403 EnterFunction(10);
404
Julian Anastasovfc604762010-10-17 16:38:15 +0300405 if (!(rt = __ip_vs_get_out_rt(skb, NULL, iph->daddr,
406 RT_TOS(iph->tos), 2)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700407 goto tx_error_icmp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700408
409 /* MTU checking */
Changli Gaod8d1f302010-06-10 23:31:35 -0700410 mtu = dst_mtu(&rt->dst);
YOSHIFUJI Hideaki4412ec42007-03-07 14:19:10 +0900411 if ((skb->len > mtu) && (iph->frag_off & htons(IP_DF))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700412 ip_rt_put(rt);
413 icmp_send(skb, ICMP_DEST_UNREACH,ICMP_FRAG_NEEDED, htonl(mtu));
Hannes Eder1e3e2382009-08-02 11:05:41 +0000414 IP_VS_DBG_RL("%s(): frag needed\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700415 goto tx_error;
416 }
417
418 /*
419 * Call ip_send_check because we are not sure it is called
420 * after ip_defrag. Is copy-on-write needed?
421 */
422 if (unlikely((skb = skb_share_check(skb, GFP_ATOMIC)) == NULL)) {
423 ip_rt_put(rt);
424 return NF_STOLEN;
425 }
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -0700426 ip_send_check(ip_hdr(skb));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700427
428 /* drop old route */
Eric Dumazetadf30902009-06-02 05:19:30 +0000429 skb_dst_drop(skb);
Changli Gaod8d1f302010-06-10 23:31:35 -0700430 skb_dst_set(skb, &rt->dst);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700431
432 /* Another hack: avoid icmp_send in ip_fragment */
433 skb->local_df = 1;
434
Julian Anastasovfc604762010-10-17 16:38:15 +0300435 IP_VS_XMIT(NFPROTO_IPV4, skb, cp, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700436
437 LeaveFunction(10);
438 return NF_STOLEN;
439
440 tx_error_icmp:
441 dst_link_failure(skb);
442 tx_error:
443 kfree_skb(skb);
444 LeaveFunction(10);
445 return NF_STOLEN;
446}
447
Julius Volzb3cdd2a72008-09-02 15:55:45 +0200448#ifdef CONFIG_IP_VS_IPV6
449int
450ip_vs_bypass_xmit_v6(struct sk_buff *skb, struct ip_vs_conn *cp,
451 struct ip_vs_protocol *pp)
452{
453 struct rt6_info *rt; /* Route to the other host */
454 struct ipv6hdr *iph = ipv6_hdr(skb);
455 int mtu;
Julius Volzb3cdd2a72008-09-02 15:55:45 +0200456
457 EnterFunction(10);
458
Julian Anastasovfc604762010-10-17 16:38:15 +0300459 if (!(rt = __ip_vs_get_out_rt_v6(skb, NULL, &iph->daddr, NULL, 0, 2)))
Julius Volzb3cdd2a72008-09-02 15:55:45 +0200460 goto tx_error_icmp;
Julius Volzb3cdd2a72008-09-02 15:55:45 +0200461
462 /* MTU checking */
Changli Gaod8d1f302010-06-10 23:31:35 -0700463 mtu = dst_mtu(&rt->dst);
Julius Volzb3cdd2a72008-09-02 15:55:45 +0200464 if (skb->len > mtu) {
Julian Anastasovcb591552010-10-17 16:40:51 +0300465 if (!skb->dev) {
466 struct net *net = dev_net(skb_dst(skb)->dev);
467
468 skb->dev = net->loopback_dev;
469 }
Alexey Dobriyan3ffe5332010-02-18 08:25:24 +0000470 icmpv6_send(skb, ICMPV6_PKT_TOOBIG, 0, mtu);
Julian Anastasovcb591552010-10-17 16:40:51 +0300471 dst_release(&rt->dst);
Hannes Eder1e3e2382009-08-02 11:05:41 +0000472 IP_VS_DBG_RL("%s(): frag needed\n", __func__);
Julius Volzb3cdd2a72008-09-02 15:55:45 +0200473 goto tx_error;
474 }
475
476 /*
477 * Call ip_send_check because we are not sure it is called
478 * after ip_defrag. Is copy-on-write needed?
479 */
480 skb = skb_share_check(skb, GFP_ATOMIC);
481 if (unlikely(skb == NULL)) {
Changli Gaod8d1f302010-06-10 23:31:35 -0700482 dst_release(&rt->dst);
Julius Volzb3cdd2a72008-09-02 15:55:45 +0200483 return NF_STOLEN;
484 }
485
486 /* drop old route */
Eric Dumazetadf30902009-06-02 05:19:30 +0000487 skb_dst_drop(skb);
Changli Gaod8d1f302010-06-10 23:31:35 -0700488 skb_dst_set(skb, &rt->dst);
Julius Volzb3cdd2a72008-09-02 15:55:45 +0200489
490 /* Another hack: avoid icmp_send in ip_fragment */
491 skb->local_df = 1;
492
Julian Anastasovfc604762010-10-17 16:38:15 +0300493 IP_VS_XMIT(NFPROTO_IPV6, skb, cp, 0);
Julius Volzb3cdd2a72008-09-02 15:55:45 +0200494
495 LeaveFunction(10);
496 return NF_STOLEN;
497
498 tx_error_icmp:
499 dst_link_failure(skb);
500 tx_error:
501 kfree_skb(skb);
502 LeaveFunction(10);
503 return NF_STOLEN;
504}
505#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700506
507/*
508 * NAT transmitter (only for outside-to-inside nat forwarding)
509 * Not used for related ICMP
510 */
511int
512ip_vs_nat_xmit(struct sk_buff *skb, struct ip_vs_conn *cp,
513 struct ip_vs_protocol *pp)
514{
515 struct rtable *rt; /* Route to the other host */
516 int mtu;
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -0700517 struct iphdr *iph = ip_hdr(skb);
Julian Anastasovfc604762010-10-17 16:38:15 +0300518 int local;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700519
520 EnterFunction(10);
521
522 /* check if it is a connection of no-client-port */
523 if (unlikely(cp->flags & IP_VS_CONN_F_NO_CPORT)) {
Al Viro014d7302006-09-28 14:29:52 -0700524 __be16 _pt, *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700525 p = skb_header_pointer(skb, iph->ihl*4, sizeof(_pt), &_pt);
526 if (p == NULL)
527 goto tx_error;
528 ip_vs_conn_fill_cport(cp, *p);
529 IP_VS_DBG(10, "filled cport=%d\n", ntohs(*p));
530 }
531
Julian Anastasovfc604762010-10-17 16:38:15 +0300532 if (!(rt = __ip_vs_get_out_rt(skb, cp->dest, cp->daddr.ip,
533 RT_TOS(iph->tos), 1|2|4)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700534 goto tx_error_icmp;
Julian Anastasovfc604762010-10-17 16:38:15 +0300535 local = rt->rt_flags & RTCF_LOCAL;
536 /*
537 * Avoid duplicate tuple in reply direction for NAT traffic
538 * to local address when connection is sync-ed
539 */
540#if defined(CONFIG_NF_CONNTRACK) || defined(CONFIG_NF_CONNTRACK_MODULE)
541 if (cp->flags & IP_VS_CONN_F_SYNC && local) {
542 enum ip_conntrack_info ctinfo;
543 struct nf_conn *ct = ct = nf_ct_get(skb, &ctinfo);
544
545 if (ct && !nf_ct_is_untracked(ct)) {
Julian Anastasov0d796412010-10-17 16:46:17 +0300546 IP_VS_DBG_RL_PKT(10, AF_INET, pp, skb, 0,
547 "ip_vs_nat_xmit(): "
Julian Anastasovfc604762010-10-17 16:38:15 +0300548 "stopping DNAT to local address");
549 goto tx_error_put;
550 }
551 }
552#endif
553
554 /* From world but DNAT to loopback address? */
David S. Millerc7537962010-11-11 17:07:48 -0800555 if (local && ipv4_is_loopback(rt->rt_dst) &&
556 rt_is_input_route(skb_rtable(skb))) {
Julian Anastasov0d796412010-10-17 16:46:17 +0300557 IP_VS_DBG_RL_PKT(1, AF_INET, pp, skb, 0, "ip_vs_nat_xmit(): "
Julian Anastasovfc604762010-10-17 16:38:15 +0300558 "stopping DNAT to loopback address");
559 goto tx_error_put;
560 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700561
562 /* MTU checking */
Changli Gaod8d1f302010-06-10 23:31:35 -0700563 mtu = dst_mtu(&rt->dst);
YOSHIFUJI Hideaki4412ec42007-03-07 14:19:10 +0900564 if ((skb->len > mtu) && (iph->frag_off & htons(IP_DF))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700565 icmp_send(skb, ICMP_DEST_UNREACH,ICMP_FRAG_NEEDED, htonl(mtu));
Julian Anastasov0d796412010-10-17 16:46:17 +0300566 IP_VS_DBG_RL_PKT(0, AF_INET, pp, skb, 0,
567 "ip_vs_nat_xmit(): frag needed for");
Julian Anastasovfc604762010-10-17 16:38:15 +0300568 goto tx_error_put;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700569 }
570
571 /* copy-on-write the packet before mangling it */
Herbert Xuaf1e1cf2007-10-14 00:39:33 -0700572 if (!skb_make_writable(skb, sizeof(struct iphdr)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700573 goto tx_error_put;
574
Changli Gaod8d1f302010-06-10 23:31:35 -0700575 if (skb_cow(skb, rt->dst.dev->hard_header_len))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700576 goto tx_error_put;
577
Linus Torvalds1da177e2005-04-16 15:20:36 -0700578 /* mangle the packet */
Herbert Xu3db05fe2007-10-15 00:53:15 -0700579 if (pp->dnat_handler && !pp->dnat_handler(skb, pp, cp))
Julian Anastasovfc604762010-10-17 16:38:15 +0300580 goto tx_error_put;
Julius Volze7ade462008-09-02 15:55:33 +0200581 ip_hdr(skb)->daddr = cp->daddr.ip;
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -0700582 ip_send_check(ip_hdr(skb));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700583
Julian Anastasovfc604762010-10-17 16:38:15 +0300584 if (!local) {
585 /* drop old route */
586 skb_dst_drop(skb);
587 skb_dst_set(skb, &rt->dst);
588 } else {
589 ip_rt_put(rt);
590 /*
591 * Some IPv4 replies get local address from routes,
592 * not from iph, so while we DNAT after routing
593 * we need this second input/output route.
594 */
595 if (!__ip_vs_reroute_locally(skb))
596 goto tx_error;
597 }
598
Julian Anastasov0d796412010-10-17 16:46:17 +0300599 IP_VS_DBG_PKT(10, AF_INET, pp, skb, 0, "After DNAT");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700600
601 /* FIXME: when application helper enlarges the packet and the length
602 is larger than the MTU of outgoing device, there will be still
603 MTU problem. */
604
605 /* Another hack: avoid icmp_send in ip_fragment */
606 skb->local_df = 1;
607
Julian Anastasovfc604762010-10-17 16:38:15 +0300608 IP_VS_XMIT_NAT(NFPROTO_IPV4, skb, cp, local);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700609
610 LeaveFunction(10);
611 return NF_STOLEN;
612
613 tx_error_icmp:
614 dst_link_failure(skb);
615 tx_error:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700616 kfree_skb(skb);
Julian Anastasovf4bc17c2010-09-21 17:35:41 +0200617 LeaveFunction(10);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700618 return NF_STOLEN;
619 tx_error_put:
620 ip_rt_put(rt);
621 goto tx_error;
622}
623
Julius Volzb3cdd2a72008-09-02 15:55:45 +0200624#ifdef CONFIG_IP_VS_IPV6
625int
626ip_vs_nat_xmit_v6(struct sk_buff *skb, struct ip_vs_conn *cp,
627 struct ip_vs_protocol *pp)
628{
629 struct rt6_info *rt; /* Route to the other host */
630 int mtu;
Julian Anastasovfc604762010-10-17 16:38:15 +0300631 int local;
Julius Volzb3cdd2a72008-09-02 15:55:45 +0200632
633 EnterFunction(10);
634
635 /* check if it is a connection of no-client-port */
636 if (unlikely(cp->flags & IP_VS_CONN_F_NO_CPORT)) {
637 __be16 _pt, *p;
638 p = skb_header_pointer(skb, sizeof(struct ipv6hdr),
639 sizeof(_pt), &_pt);
640 if (p == NULL)
641 goto tx_error;
642 ip_vs_conn_fill_cport(cp, *p);
643 IP_VS_DBG(10, "filled cport=%d\n", ntohs(*p));
644 }
645
Julian Anastasovfc604762010-10-17 16:38:15 +0300646 if (!(rt = __ip_vs_get_out_rt_v6(skb, cp->dest, &cp->daddr.in6, NULL,
647 0, 1|2|4)))
Julius Volzb3cdd2a72008-09-02 15:55:45 +0200648 goto tx_error_icmp;
Julian Anastasovfc604762010-10-17 16:38:15 +0300649 local = __ip_vs_is_local_route6(rt);
650 /*
651 * Avoid duplicate tuple in reply direction for NAT traffic
652 * to local address when connection is sync-ed
653 */
654#if defined(CONFIG_NF_CONNTRACK) || defined(CONFIG_NF_CONNTRACK_MODULE)
655 if (cp->flags & IP_VS_CONN_F_SYNC && local) {
656 enum ip_conntrack_info ctinfo;
657 struct nf_conn *ct = ct = nf_ct_get(skb, &ctinfo);
658
659 if (ct && !nf_ct_is_untracked(ct)) {
Julian Anastasov0d796412010-10-17 16:46:17 +0300660 IP_VS_DBG_RL_PKT(10, AF_INET6, pp, skb, 0,
Julian Anastasovfc604762010-10-17 16:38:15 +0300661 "ip_vs_nat_xmit_v6(): "
662 "stopping DNAT to local address");
663 goto tx_error_put;
664 }
665 }
666#endif
667
668 /* From world but DNAT to loopback address? */
669 if (local && skb->dev && !(skb->dev->flags & IFF_LOOPBACK) &&
670 ipv6_addr_type(&rt->rt6i_dst.addr) & IPV6_ADDR_LOOPBACK) {
Julian Anastasov0d796412010-10-17 16:46:17 +0300671 IP_VS_DBG_RL_PKT(1, AF_INET6, pp, skb, 0,
Julian Anastasovfc604762010-10-17 16:38:15 +0300672 "ip_vs_nat_xmit_v6(): "
673 "stopping DNAT to loopback address");
674 goto tx_error_put;
675 }
Julius Volzb3cdd2a72008-09-02 15:55:45 +0200676
677 /* MTU checking */
Changli Gaod8d1f302010-06-10 23:31:35 -0700678 mtu = dst_mtu(&rt->dst);
Julius Volzb3cdd2a72008-09-02 15:55:45 +0200679 if (skb->len > mtu) {
Julian Anastasovcb591552010-10-17 16:40:51 +0300680 if (!skb->dev) {
681 struct net *net = dev_net(skb_dst(skb)->dev);
682
683 skb->dev = net->loopback_dev;
684 }
Alexey Dobriyan3ffe5332010-02-18 08:25:24 +0000685 icmpv6_send(skb, ICMPV6_PKT_TOOBIG, 0, mtu);
Julian Anastasov0d796412010-10-17 16:46:17 +0300686 IP_VS_DBG_RL_PKT(0, AF_INET6, pp, skb, 0,
Julius Volzb3cdd2a72008-09-02 15:55:45 +0200687 "ip_vs_nat_xmit_v6(): frag needed for");
Julian Anastasovfc604762010-10-17 16:38:15 +0300688 goto tx_error_put;
Julius Volzb3cdd2a72008-09-02 15:55:45 +0200689 }
690
691 /* copy-on-write the packet before mangling it */
692 if (!skb_make_writable(skb, sizeof(struct ipv6hdr)))
693 goto tx_error_put;
694
Changli Gaod8d1f302010-06-10 23:31:35 -0700695 if (skb_cow(skb, rt->dst.dev->hard_header_len))
Julius Volzb3cdd2a72008-09-02 15:55:45 +0200696 goto tx_error_put;
697
Julius Volzb3cdd2a72008-09-02 15:55:45 +0200698 /* mangle the packet */
699 if (pp->dnat_handler && !pp->dnat_handler(skb, pp, cp))
700 goto tx_error;
Julian Anastasovfc604762010-10-17 16:38:15 +0300701 ipv6_addr_copy(&ipv6_hdr(skb)->daddr, &cp->daddr.in6);
702
703 if (!local || !skb->dev) {
704 /* drop the old route when skb is not shared */
705 skb_dst_drop(skb);
706 skb_dst_set(skb, &rt->dst);
707 } else {
708 /* destined to loopback, do we need to change route? */
709 dst_release(&rt->dst);
710 }
Julius Volzb3cdd2a72008-09-02 15:55:45 +0200711
Julian Anastasov0d796412010-10-17 16:46:17 +0300712 IP_VS_DBG_PKT(10, AF_INET6, pp, skb, 0, "After DNAT");
Julius Volzb3cdd2a72008-09-02 15:55:45 +0200713
714 /* FIXME: when application helper enlarges the packet and the length
715 is larger than the MTU of outgoing device, there will be still
716 MTU problem. */
717
718 /* Another hack: avoid icmp_send in ip_fragment */
719 skb->local_df = 1;
720
Julian Anastasovfc604762010-10-17 16:38:15 +0300721 IP_VS_XMIT_NAT(NFPROTO_IPV6, skb, cp, local);
Julius Volzb3cdd2a72008-09-02 15:55:45 +0200722
723 LeaveFunction(10);
724 return NF_STOLEN;
725
726tx_error_icmp:
727 dst_link_failure(skb);
728tx_error:
729 LeaveFunction(10);
730 kfree_skb(skb);
731 return NF_STOLEN;
732tx_error_put:
Changli Gaod8d1f302010-06-10 23:31:35 -0700733 dst_release(&rt->dst);
Julius Volzb3cdd2a72008-09-02 15:55:45 +0200734 goto tx_error;
735}
736#endif
737
Linus Torvalds1da177e2005-04-16 15:20:36 -0700738
739/*
740 * IP Tunneling transmitter
741 *
742 * This function encapsulates the packet in a new IP packet, its
743 * destination will be set to cp->daddr. Most code of this function
744 * is taken from ipip.c.
745 *
746 * It is used in VS/TUN cluster. The load balancer selects a real
747 * server from a cluster based on a scheduling algorithm,
748 * encapsulates the request packet and forwards it to the selected
749 * server. For example, all real servers are configured with
750 * "ifconfig tunl0 <Virtual IP Address> up". When the server receives
751 * the encapsulated packet, it will decapsulate the packet, processe
752 * the request and return the response packets directly to the client
753 * without passing the load balancer. This can greatly increase the
754 * scalability of virtual server.
755 *
756 * Used for ANY protocol
757 */
758int
759ip_vs_tunnel_xmit(struct sk_buff *skb, struct ip_vs_conn *cp,
760 struct ip_vs_protocol *pp)
761{
762 struct rtable *rt; /* Route to the other host */
763 struct net_device *tdev; /* Device to other host */
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -0700764 struct iphdr *old_iph = ip_hdr(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700765 u8 tos = old_iph->tos;
Alexey Dobriyan76ab6082006-01-06 13:24:29 -0800766 __be16 df = old_iph->frag_off;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700767 struct iphdr *iph; /* Our new IP header */
Chuck Leverc2636b42007-10-23 21:07:32 -0700768 unsigned int max_headroom; /* The extra header space needed */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700769 int mtu;
Julian Anastasovf4bc17c2010-09-21 17:35:41 +0200770 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700771
772 EnterFunction(10);
773
Julian Anastasovfc604762010-10-17 16:38:15 +0300774 if (!(rt = __ip_vs_get_out_rt(skb, cp->dest, cp->daddr.ip,
775 RT_TOS(tos), 1|2)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700776 goto tx_error_icmp;
Julian Anastasovfc604762010-10-17 16:38:15 +0300777 if (rt->rt_flags & RTCF_LOCAL) {
778 ip_rt_put(rt);
779 IP_VS_XMIT(NFPROTO_IPV4, skb, cp, 1);
780 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700781
Changli Gaod8d1f302010-06-10 23:31:35 -0700782 tdev = rt->dst.dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700783
Changli Gaod8d1f302010-06-10 23:31:35 -0700784 mtu = dst_mtu(&rt->dst) - sizeof(struct iphdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700785 if (mtu < 68) {
Hannes Eder1e3e2382009-08-02 11:05:41 +0000786 IP_VS_DBG_RL("%s(): mtu less than 68\n", __func__);
Julian Anastasovfc604762010-10-17 16:38:15 +0300787 goto tx_error_put;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700788 }
Eric Dumazetadf30902009-06-02 05:19:30 +0000789 if (skb_dst(skb))
790 skb_dst(skb)->ops->update_pmtu(skb_dst(skb), mtu);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700791
YOSHIFUJI Hideaki4412ec42007-03-07 14:19:10 +0900792 df |= (old_iph->frag_off & htons(IP_DF));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700793
YOSHIFUJI Hideaki4412ec42007-03-07 14:19:10 +0900794 if ((old_iph->frag_off & htons(IP_DF))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700795 && mtu < ntohs(old_iph->tot_len)) {
796 icmp_send(skb, ICMP_DEST_UNREACH,ICMP_FRAG_NEEDED, htonl(mtu));
Hannes Eder1e3e2382009-08-02 11:05:41 +0000797 IP_VS_DBG_RL("%s(): frag needed\n", __func__);
Julian Anastasovfc604762010-10-17 16:38:15 +0300798 goto tx_error_put;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700799 }
800
801 /*
802 * Okay, now see if we can stuff it in the buffer as-is.
803 */
804 max_headroom = LL_RESERVED_SPACE(tdev) + sizeof(struct iphdr);
805
806 if (skb_headroom(skb) < max_headroom
807 || skb_cloned(skb) || skb_shared(skb)) {
808 struct sk_buff *new_skb =
809 skb_realloc_headroom(skb, max_headroom);
810 if (!new_skb) {
811 ip_rt_put(rt);
812 kfree_skb(skb);
Hannes Eder1e3e2382009-08-02 11:05:41 +0000813 IP_VS_ERR_RL("%s(): no memory\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700814 return NF_STOLEN;
815 }
816 kfree_skb(skb);
817 skb = new_skb;
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -0700818 old_iph = ip_hdr(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700819 }
820
Hans Schillstrom714f0952010-10-19 10:38:48 +0200821 skb->transport_header = skb->network_header;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700822
823 /* fix old IP header checksum */
824 ip_send_check(old_iph);
825
Arnaldo Carvalho de Meloe2d1bca2007-04-10 20:46:21 -0700826 skb_push(skb, sizeof(struct iphdr));
827 skb_reset_network_header(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700828 memset(&(IPCB(skb)->opt), 0, sizeof(IPCB(skb)->opt));
829
830 /* drop old route */
Eric Dumazetadf30902009-06-02 05:19:30 +0000831 skb_dst_drop(skb);
Changli Gaod8d1f302010-06-10 23:31:35 -0700832 skb_dst_set(skb, &rt->dst);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700833
834 /*
835 * Push down and install the IPIP header.
836 */
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -0700837 iph = ip_hdr(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700838 iph->version = 4;
839 iph->ihl = sizeof(struct iphdr)>>2;
840 iph->frag_off = df;
841 iph->protocol = IPPROTO_IPIP;
842 iph->tos = tos;
843 iph->daddr = rt->rt_dst;
844 iph->saddr = rt->rt_src;
845 iph->ttl = old_iph->ttl;
Changli Gaod8d1f302010-06-10 23:31:35 -0700846 ip_select_ident(iph, &rt->dst, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700847
848 /* Another hack: avoid icmp_send in ip_fragment */
849 skb->local_df = 1;
850
Julian Anastasovf4bc17c2010-09-21 17:35:41 +0200851 ret = IP_VS_XMIT_TUNNEL(skb, cp);
852 if (ret == NF_ACCEPT)
853 ip_local_out(skb);
854 else if (ret == NF_DROP)
855 kfree_skb(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700856
857 LeaveFunction(10);
858
859 return NF_STOLEN;
860
861 tx_error_icmp:
862 dst_link_failure(skb);
863 tx_error:
864 kfree_skb(skb);
865 LeaveFunction(10);
866 return NF_STOLEN;
Julian Anastasovfc604762010-10-17 16:38:15 +0300867tx_error_put:
868 ip_rt_put(rt);
869 goto tx_error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700870}
871
Julius Volzb3cdd2a72008-09-02 15:55:45 +0200872#ifdef CONFIG_IP_VS_IPV6
873int
874ip_vs_tunnel_xmit_v6(struct sk_buff *skb, struct ip_vs_conn *cp,
875 struct ip_vs_protocol *pp)
876{
877 struct rt6_info *rt; /* Route to the other host */
Hans Schillstrom714f0952010-10-19 10:38:48 +0200878 struct in6_addr saddr; /* Source for tunnel */
Julius Volzb3cdd2a72008-09-02 15:55:45 +0200879 struct net_device *tdev; /* Device to other host */
880 struct ipv6hdr *old_iph = ipv6_hdr(skb);
Julius Volzb3cdd2a72008-09-02 15:55:45 +0200881 struct ipv6hdr *iph; /* Our new IP header */
882 unsigned int max_headroom; /* The extra header space needed */
883 int mtu;
Julian Anastasovf4bc17c2010-09-21 17:35:41 +0200884 int ret;
Julius Volzb3cdd2a72008-09-02 15:55:45 +0200885
886 EnterFunction(10);
887
Julian Anastasovfc604762010-10-17 16:38:15 +0300888 if (!(rt = __ip_vs_get_out_rt_v6(skb, cp->dest, &cp->daddr.in6,
889 &saddr, 1, 1|2)))
Julius Volzb3cdd2a72008-09-02 15:55:45 +0200890 goto tx_error_icmp;
Julian Anastasovfc604762010-10-17 16:38:15 +0300891 if (__ip_vs_is_local_route6(rt)) {
892 dst_release(&rt->dst);
893 IP_VS_XMIT(NFPROTO_IPV6, skb, cp, 1);
894 }
Julius Volzb3cdd2a72008-09-02 15:55:45 +0200895
Changli Gaod8d1f302010-06-10 23:31:35 -0700896 tdev = rt->dst.dev;
Julius Volzb3cdd2a72008-09-02 15:55:45 +0200897
Changli Gaod8d1f302010-06-10 23:31:35 -0700898 mtu = dst_mtu(&rt->dst) - sizeof(struct ipv6hdr);
Hans Schillstrom714f0952010-10-19 10:38:48 +0200899 if (mtu < IPV6_MIN_MTU) {
Hans Schillstrom714f0952010-10-19 10:38:48 +0200900 IP_VS_DBG_RL("%s(): mtu less than %d\n", __func__,
901 IPV6_MIN_MTU);
Julian Anastasovfc604762010-10-17 16:38:15 +0300902 goto tx_error_put;
Julius Volzb3cdd2a72008-09-02 15:55:45 +0200903 }
Eric Dumazetadf30902009-06-02 05:19:30 +0000904 if (skb_dst(skb))
905 skb_dst(skb)->ops->update_pmtu(skb_dst(skb), mtu);
Julius Volzb3cdd2a72008-09-02 15:55:45 +0200906
907 if (mtu < ntohs(old_iph->payload_len) + sizeof(struct ipv6hdr)) {
Julian Anastasovcb591552010-10-17 16:40:51 +0300908 if (!skb->dev) {
909 struct net *net = dev_net(skb_dst(skb)->dev);
910
911 skb->dev = net->loopback_dev;
912 }
Alexey Dobriyan3ffe5332010-02-18 08:25:24 +0000913 icmpv6_send(skb, ICMPV6_PKT_TOOBIG, 0, mtu);
Hannes Eder1e3e2382009-08-02 11:05:41 +0000914 IP_VS_DBG_RL("%s(): frag needed\n", __func__);
Julian Anastasovfc604762010-10-17 16:38:15 +0300915 goto tx_error_put;
Julius Volzb3cdd2a72008-09-02 15:55:45 +0200916 }
917
918 /*
919 * Okay, now see if we can stuff it in the buffer as-is.
920 */
921 max_headroom = LL_RESERVED_SPACE(tdev) + sizeof(struct ipv6hdr);
922
923 if (skb_headroom(skb) < max_headroom
924 || skb_cloned(skb) || skb_shared(skb)) {
925 struct sk_buff *new_skb =
926 skb_realloc_headroom(skb, max_headroom);
927 if (!new_skb) {
Changli Gaod8d1f302010-06-10 23:31:35 -0700928 dst_release(&rt->dst);
Julius Volzb3cdd2a72008-09-02 15:55:45 +0200929 kfree_skb(skb);
Hannes Eder1e3e2382009-08-02 11:05:41 +0000930 IP_VS_ERR_RL("%s(): no memory\n", __func__);
Julius Volzb3cdd2a72008-09-02 15:55:45 +0200931 return NF_STOLEN;
932 }
933 kfree_skb(skb);
934 skb = new_skb;
935 old_iph = ipv6_hdr(skb);
936 }
937
Hans Schillstrom714f0952010-10-19 10:38:48 +0200938 skb->transport_header = skb->network_header;
Julius Volzb3cdd2a72008-09-02 15:55:45 +0200939
940 skb_push(skb, sizeof(struct ipv6hdr));
941 skb_reset_network_header(skb);
942 memset(&(IPCB(skb)->opt), 0, sizeof(IPCB(skb)->opt));
943
944 /* drop old route */
Eric Dumazetadf30902009-06-02 05:19:30 +0000945 skb_dst_drop(skb);
Changli Gaod8d1f302010-06-10 23:31:35 -0700946 skb_dst_set(skb, &rt->dst);
Julius Volzb3cdd2a72008-09-02 15:55:45 +0200947
948 /*
949 * Push down and install the IPIP header.
950 */
951 iph = ipv6_hdr(skb);
952 iph->version = 6;
953 iph->nexthdr = IPPROTO_IPV6;
Harvey Harrisonb7b45f42008-11-10 16:46:06 -0800954 iph->payload_len = old_iph->payload_len;
955 be16_add_cpu(&iph->payload_len, sizeof(*old_iph));
Julius Volzb3cdd2a72008-09-02 15:55:45 +0200956 iph->priority = old_iph->priority;
957 memset(&iph->flow_lbl, 0, sizeof(iph->flow_lbl));
Hans Schillstrom714f0952010-10-19 10:38:48 +0200958 ipv6_addr_copy(&iph->daddr, &cp->daddr.in6);
959 ipv6_addr_copy(&iph->saddr, &saddr);
Julius Volzb3cdd2a72008-09-02 15:55:45 +0200960 iph->hop_limit = old_iph->hop_limit;
961
962 /* Another hack: avoid icmp_send in ip_fragment */
963 skb->local_df = 1;
964
Julian Anastasovf4bc17c2010-09-21 17:35:41 +0200965 ret = IP_VS_XMIT_TUNNEL(skb, cp);
966 if (ret == NF_ACCEPT)
967 ip6_local_out(skb);
968 else if (ret == NF_DROP)
969 kfree_skb(skb);
Julius Volzb3cdd2a72008-09-02 15:55:45 +0200970
971 LeaveFunction(10);
972
973 return NF_STOLEN;
974
975tx_error_icmp:
976 dst_link_failure(skb);
977tx_error:
978 kfree_skb(skb);
979 LeaveFunction(10);
980 return NF_STOLEN;
Julian Anastasovfc604762010-10-17 16:38:15 +0300981tx_error_put:
982 dst_release(&rt->dst);
983 goto tx_error;
Julius Volzb3cdd2a72008-09-02 15:55:45 +0200984}
985#endif
986
Linus Torvalds1da177e2005-04-16 15:20:36 -0700987
988/*
989 * Direct Routing transmitter
990 * Used for ANY protocol
991 */
992int
993ip_vs_dr_xmit(struct sk_buff *skb, struct ip_vs_conn *cp,
994 struct ip_vs_protocol *pp)
995{
996 struct rtable *rt; /* Route to the other host */
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -0700997 struct iphdr *iph = ip_hdr(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700998 int mtu;
999
1000 EnterFunction(10);
1001
Julian Anastasovfc604762010-10-17 16:38:15 +03001002 if (!(rt = __ip_vs_get_out_rt(skb, cp->dest, cp->daddr.ip,
1003 RT_TOS(iph->tos), 1|2)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001004 goto tx_error_icmp;
Julian Anastasovfc604762010-10-17 16:38:15 +03001005 if (rt->rt_flags & RTCF_LOCAL) {
1006 ip_rt_put(rt);
1007 IP_VS_XMIT(NFPROTO_IPV4, skb, cp, 1);
1008 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001009
1010 /* MTU checking */
Changli Gaod8d1f302010-06-10 23:31:35 -07001011 mtu = dst_mtu(&rt->dst);
YOSHIFUJI Hideaki4412ec42007-03-07 14:19:10 +09001012 if ((iph->frag_off & htons(IP_DF)) && skb->len > mtu) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001013 icmp_send(skb, ICMP_DEST_UNREACH,ICMP_FRAG_NEEDED, htonl(mtu));
1014 ip_rt_put(rt);
Hannes Eder1e3e2382009-08-02 11:05:41 +00001015 IP_VS_DBG_RL("%s(): frag needed\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001016 goto tx_error;
1017 }
1018
1019 /*
1020 * Call ip_send_check because we are not sure it is called
1021 * after ip_defrag. Is copy-on-write needed?
1022 */
1023 if (unlikely((skb = skb_share_check(skb, GFP_ATOMIC)) == NULL)) {
1024 ip_rt_put(rt);
1025 return NF_STOLEN;
1026 }
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -07001027 ip_send_check(ip_hdr(skb));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001028
1029 /* drop old route */
Eric Dumazetadf30902009-06-02 05:19:30 +00001030 skb_dst_drop(skb);
Changli Gaod8d1f302010-06-10 23:31:35 -07001031 skb_dst_set(skb, &rt->dst);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001032
1033 /* Another hack: avoid icmp_send in ip_fragment */
1034 skb->local_df = 1;
1035
Julian Anastasovfc604762010-10-17 16:38:15 +03001036 IP_VS_XMIT(NFPROTO_IPV4, skb, cp, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001037
1038 LeaveFunction(10);
1039 return NF_STOLEN;
1040
1041 tx_error_icmp:
1042 dst_link_failure(skb);
1043 tx_error:
1044 kfree_skb(skb);
1045 LeaveFunction(10);
1046 return NF_STOLEN;
1047}
1048
Julius Volzb3cdd2a72008-09-02 15:55:45 +02001049#ifdef CONFIG_IP_VS_IPV6
1050int
1051ip_vs_dr_xmit_v6(struct sk_buff *skb, struct ip_vs_conn *cp,
1052 struct ip_vs_protocol *pp)
1053{
1054 struct rt6_info *rt; /* Route to the other host */
1055 int mtu;
1056
1057 EnterFunction(10);
1058
Julian Anastasovfc604762010-10-17 16:38:15 +03001059 if (!(rt = __ip_vs_get_out_rt_v6(skb, cp->dest, &cp->daddr.in6, NULL,
1060 0, 1|2)))
Julius Volzb3cdd2a72008-09-02 15:55:45 +02001061 goto tx_error_icmp;
Julian Anastasovfc604762010-10-17 16:38:15 +03001062 if (__ip_vs_is_local_route6(rt)) {
1063 dst_release(&rt->dst);
1064 IP_VS_XMIT(NFPROTO_IPV6, skb, cp, 1);
1065 }
Julius Volzb3cdd2a72008-09-02 15:55:45 +02001066
1067 /* MTU checking */
Changli Gaod8d1f302010-06-10 23:31:35 -07001068 mtu = dst_mtu(&rt->dst);
Julius Volzb3cdd2a72008-09-02 15:55:45 +02001069 if (skb->len > mtu) {
Julian Anastasovcb591552010-10-17 16:40:51 +03001070 if (!skb->dev) {
1071 struct net *net = dev_net(skb_dst(skb)->dev);
1072
1073 skb->dev = net->loopback_dev;
1074 }
Alexey Dobriyan3ffe5332010-02-18 08:25:24 +00001075 icmpv6_send(skb, ICMPV6_PKT_TOOBIG, 0, mtu);
Changli Gaod8d1f302010-06-10 23:31:35 -07001076 dst_release(&rt->dst);
Hannes Eder1e3e2382009-08-02 11:05:41 +00001077 IP_VS_DBG_RL("%s(): frag needed\n", __func__);
Julius Volzb3cdd2a72008-09-02 15:55:45 +02001078 goto tx_error;
1079 }
1080
1081 /*
1082 * Call ip_send_check because we are not sure it is called
1083 * after ip_defrag. Is copy-on-write needed?
1084 */
1085 skb = skb_share_check(skb, GFP_ATOMIC);
1086 if (unlikely(skb == NULL)) {
Changli Gaod8d1f302010-06-10 23:31:35 -07001087 dst_release(&rt->dst);
Julius Volzb3cdd2a72008-09-02 15:55:45 +02001088 return NF_STOLEN;
1089 }
1090
1091 /* drop old route */
Eric Dumazetadf30902009-06-02 05:19:30 +00001092 skb_dst_drop(skb);
Changli Gaod8d1f302010-06-10 23:31:35 -07001093 skb_dst_set(skb, &rt->dst);
Julius Volzb3cdd2a72008-09-02 15:55:45 +02001094
1095 /* Another hack: avoid icmp_send in ip_fragment */
1096 skb->local_df = 1;
1097
Julian Anastasovfc604762010-10-17 16:38:15 +03001098 IP_VS_XMIT(NFPROTO_IPV6, skb, cp, 0);
Julius Volzb3cdd2a72008-09-02 15:55:45 +02001099
1100 LeaveFunction(10);
1101 return NF_STOLEN;
1102
1103tx_error_icmp:
1104 dst_link_failure(skb);
1105tx_error:
1106 kfree_skb(skb);
1107 LeaveFunction(10);
1108 return NF_STOLEN;
1109}
1110#endif
1111
Linus Torvalds1da177e2005-04-16 15:20:36 -07001112
1113/*
1114 * ICMP packet transmitter
1115 * called by the ip_vs_in_icmp
1116 */
1117int
1118ip_vs_icmp_xmit(struct sk_buff *skb, struct ip_vs_conn *cp,
1119 struct ip_vs_protocol *pp, int offset)
1120{
1121 struct rtable *rt; /* Route to the other host */
1122 int mtu;
1123 int rc;
Julian Anastasovfc604762010-10-17 16:38:15 +03001124 int local;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001125
1126 EnterFunction(10);
1127
1128 /* The ICMP packet for VS/TUN, VS/DR and LOCALNODE will be
1129 forwarded directly here, because there is no need to
1130 translate address/port back */
1131 if (IP_VS_FWD_METHOD(cp) != IP_VS_CONN_F_MASQ) {
1132 if (cp->packet_xmit)
1133 rc = cp->packet_xmit(skb, cp, pp);
1134 else
1135 rc = NF_ACCEPT;
1136 /* do not touch skb anymore */
1137 atomic_inc(&cp->in_pkts);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001138 goto out;
1139 }
1140
1141 /*
1142 * mangle and send the packet here (only for VS/NAT)
1143 */
1144
Julian Anastasovfc604762010-10-17 16:38:15 +03001145 if (!(rt = __ip_vs_get_out_rt(skb, cp->dest, cp->daddr.ip,
1146 RT_TOS(ip_hdr(skb)->tos), 1|2|4)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001147 goto tx_error_icmp;
Julian Anastasovfc604762010-10-17 16:38:15 +03001148 local = rt->rt_flags & RTCF_LOCAL;
1149
1150 /*
1151 * Avoid duplicate tuple in reply direction for NAT traffic
1152 * to local address when connection is sync-ed
1153 */
1154#if defined(CONFIG_NF_CONNTRACK) || defined(CONFIG_NF_CONNTRACK_MODULE)
1155 if (cp->flags & IP_VS_CONN_F_SYNC && local) {
1156 enum ip_conntrack_info ctinfo;
1157 struct nf_conn *ct = ct = nf_ct_get(skb, &ctinfo);
1158
1159 if (ct && !nf_ct_is_untracked(ct)) {
1160 IP_VS_DBG(10, "%s(): "
1161 "stopping DNAT to local address %pI4\n",
1162 __func__, &cp->daddr.ip);
1163 goto tx_error_put;
1164 }
1165 }
1166#endif
1167
1168 /* From world but DNAT to loopback address? */
David S. Millerc7537962010-11-11 17:07:48 -08001169 if (local && ipv4_is_loopback(rt->rt_dst) &&
1170 rt_is_input_route(skb_rtable(skb))) {
Julian Anastasovfc604762010-10-17 16:38:15 +03001171 IP_VS_DBG(1, "%s(): "
1172 "stopping DNAT to loopback %pI4\n",
1173 __func__, &cp->daddr.ip);
1174 goto tx_error_put;
1175 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001176
1177 /* MTU checking */
Changli Gaod8d1f302010-06-10 23:31:35 -07001178 mtu = dst_mtu(&rt->dst);
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -07001179 if ((skb->len > mtu) && (ip_hdr(skb)->frag_off & htons(IP_DF))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001180 icmp_send(skb, ICMP_DEST_UNREACH, ICMP_FRAG_NEEDED, htonl(mtu));
Hannes Eder1e3e2382009-08-02 11:05:41 +00001181 IP_VS_DBG_RL("%s(): frag needed\n", __func__);
Julian Anastasovfc604762010-10-17 16:38:15 +03001182 goto tx_error_put;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001183 }
1184
1185 /* copy-on-write the packet before mangling it */
Herbert Xuaf1e1cf2007-10-14 00:39:33 -07001186 if (!skb_make_writable(skb, offset))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001187 goto tx_error_put;
1188
Changli Gaod8d1f302010-06-10 23:31:35 -07001189 if (skb_cow(skb, rt->dst.dev->hard_header_len))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001190 goto tx_error_put;
1191
Linus Torvalds1da177e2005-04-16 15:20:36 -07001192 ip_vs_nat_icmp(skb, pp, cp, 0);
1193
Julian Anastasovfc604762010-10-17 16:38:15 +03001194 if (!local) {
1195 /* drop the old route when skb is not shared */
1196 skb_dst_drop(skb);
1197 skb_dst_set(skb, &rt->dst);
1198 } else {
1199 ip_rt_put(rt);
1200 /*
1201 * Some IPv4 replies get local address from routes,
1202 * not from iph, so while we DNAT after routing
1203 * we need this second input/output route.
1204 */
1205 if (!__ip_vs_reroute_locally(skb))
1206 goto tx_error;
1207 }
1208
Linus Torvalds1da177e2005-04-16 15:20:36 -07001209 /* Another hack: avoid icmp_send in ip_fragment */
1210 skb->local_df = 1;
1211
Julian Anastasovfc604762010-10-17 16:38:15 +03001212 IP_VS_XMIT_NAT(NFPROTO_IPV4, skb, cp, local);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001213
1214 rc = NF_STOLEN;
1215 goto out;
1216
1217 tx_error_icmp:
1218 dst_link_failure(skb);
1219 tx_error:
1220 dev_kfree_skb(skb);
1221 rc = NF_STOLEN;
1222 out:
1223 LeaveFunction(10);
1224 return rc;
1225 tx_error_put:
1226 ip_rt_put(rt);
1227 goto tx_error;
1228}
Julius Volzb3cdd2a72008-09-02 15:55:45 +02001229
1230#ifdef CONFIG_IP_VS_IPV6
1231int
1232ip_vs_icmp_xmit_v6(struct sk_buff *skb, struct ip_vs_conn *cp,
1233 struct ip_vs_protocol *pp, int offset)
1234{
1235 struct rt6_info *rt; /* Route to the other host */
1236 int mtu;
1237 int rc;
Julian Anastasovfc604762010-10-17 16:38:15 +03001238 int local;
Julius Volzb3cdd2a72008-09-02 15:55:45 +02001239
1240 EnterFunction(10);
1241
1242 /* The ICMP packet for VS/TUN, VS/DR and LOCALNODE will be
1243 forwarded directly here, because there is no need to
1244 translate address/port back */
1245 if (IP_VS_FWD_METHOD(cp) != IP_VS_CONN_F_MASQ) {
1246 if (cp->packet_xmit)
1247 rc = cp->packet_xmit(skb, cp, pp);
1248 else
1249 rc = NF_ACCEPT;
1250 /* do not touch skb anymore */
1251 atomic_inc(&cp->in_pkts);
1252 goto out;
1253 }
1254
1255 /*
1256 * mangle and send the packet here (only for VS/NAT)
1257 */
1258
Julian Anastasovfc604762010-10-17 16:38:15 +03001259 if (!(rt = __ip_vs_get_out_rt_v6(skb, cp->dest, &cp->daddr.in6, NULL,
1260 0, 1|2|4)))
Julius Volzb3cdd2a72008-09-02 15:55:45 +02001261 goto tx_error_icmp;
1262
Julian Anastasovfc604762010-10-17 16:38:15 +03001263 local = __ip_vs_is_local_route6(rt);
1264 /*
1265 * Avoid duplicate tuple in reply direction for NAT traffic
1266 * to local address when connection is sync-ed
1267 */
1268#if defined(CONFIG_NF_CONNTRACK) || defined(CONFIG_NF_CONNTRACK_MODULE)
1269 if (cp->flags & IP_VS_CONN_F_SYNC && local) {
1270 enum ip_conntrack_info ctinfo;
1271 struct nf_conn *ct = ct = nf_ct_get(skb, &ctinfo);
1272
1273 if (ct && !nf_ct_is_untracked(ct)) {
1274 IP_VS_DBG(10, "%s(): "
1275 "stopping DNAT to local address %pI6\n",
1276 __func__, &cp->daddr.in6);
1277 goto tx_error_put;
1278 }
1279 }
1280#endif
1281
1282 /* From world but DNAT to loopback address? */
1283 if (local && skb->dev && !(skb->dev->flags & IFF_LOOPBACK) &&
1284 ipv6_addr_type(&rt->rt6i_dst.addr) & IPV6_ADDR_LOOPBACK) {
1285 IP_VS_DBG(1, "%s(): "
1286 "stopping DNAT to loopback %pI6\n",
1287 __func__, &cp->daddr.in6);
1288 goto tx_error_put;
1289 }
1290
Julius Volzb3cdd2a72008-09-02 15:55:45 +02001291 /* MTU checking */
Changli Gaod8d1f302010-06-10 23:31:35 -07001292 mtu = dst_mtu(&rt->dst);
Julius Volzb3cdd2a72008-09-02 15:55:45 +02001293 if (skb->len > mtu) {
Julian Anastasovcb591552010-10-17 16:40:51 +03001294 if (!skb->dev) {
1295 struct net *net = dev_net(skb_dst(skb)->dev);
1296
1297 skb->dev = net->loopback_dev;
1298 }
Alexey Dobriyan3ffe5332010-02-18 08:25:24 +00001299 icmpv6_send(skb, ICMPV6_PKT_TOOBIG, 0, mtu);
Hannes Eder1e3e2382009-08-02 11:05:41 +00001300 IP_VS_DBG_RL("%s(): frag needed\n", __func__);
Julian Anastasovfc604762010-10-17 16:38:15 +03001301 goto tx_error_put;
Julius Volzb3cdd2a72008-09-02 15:55:45 +02001302 }
1303
1304 /* copy-on-write the packet before mangling it */
1305 if (!skb_make_writable(skb, offset))
1306 goto tx_error_put;
1307
Changli Gaod8d1f302010-06-10 23:31:35 -07001308 if (skb_cow(skb, rt->dst.dev->hard_header_len))
Julius Volzb3cdd2a72008-09-02 15:55:45 +02001309 goto tx_error_put;
1310
Julius Volzb3cdd2a72008-09-02 15:55:45 +02001311 ip_vs_nat_icmp_v6(skb, pp, cp, 0);
1312
Julian Anastasovfc604762010-10-17 16:38:15 +03001313 if (!local || !skb->dev) {
1314 /* drop the old route when skb is not shared */
1315 skb_dst_drop(skb);
1316 skb_dst_set(skb, &rt->dst);
1317 } else {
1318 /* destined to loopback, do we need to change route? */
1319 dst_release(&rt->dst);
1320 }
1321
Julius Volzb3cdd2a72008-09-02 15:55:45 +02001322 /* Another hack: avoid icmp_send in ip_fragment */
1323 skb->local_df = 1;
1324
Julian Anastasovfc604762010-10-17 16:38:15 +03001325 IP_VS_XMIT_NAT(NFPROTO_IPV6, skb, cp, local);
Julius Volzb3cdd2a72008-09-02 15:55:45 +02001326
1327 rc = NF_STOLEN;
1328 goto out;
1329
1330tx_error_icmp:
1331 dst_link_failure(skb);
1332tx_error:
1333 dev_kfree_skb(skb);
1334 rc = NF_STOLEN;
1335out:
1336 LeaveFunction(10);
1337 return rc;
1338tx_error_put:
Changli Gaod8d1f302010-06-10 23:31:35 -07001339 dst_release(&rt->dst);
Julius Volzb3cdd2a72008-09-02 15:55:45 +02001340 goto tx_error;
1341}
1342#endif