2 * IPVS An implementation of the IP virtual server support for the
3 * LINUX operating system. IPVS is now implemented as a module
4 * over the Netfilter framework. IPVS can be used to build a
5 * high-performance and highly available server based on a
8 * Authors: Wensong Zhang <wensong@linuxvirtualserver.org>
9 * Peter Kese <peter.kese@ijs.si>
10 * Julian Anastasov <ja@ssi.bg>
12 * This program is free software; you can redistribute it and/or
13 * modify it under the terms of the GNU General Public License
14 * as published by the Free Software Foundation; either version
15 * 2 of the License, or (at your option) any later version.
17 * The IPVS code for kernel 2.2 was done by Wensong Zhang and Peter Kese,
18 * with changes/fixes from Julian Anastasov, Lars Marowsky-Bree, Horms
22 * Paul `Rusty' Russell properly handle non-linear skbs
23 * Harald Welte don't use nfcache
27 #include <linux/module.h>
28 #include <linux/kernel.h>
30 #include <linux/tcp.h>
31 #include <linux/icmp.h>
36 #include <net/icmp.h> /* for icmp_send */
37 #include <net/route.h>
39 #include <linux/netfilter.h>
40 #include <linux/netfilter_ipv4.h>
42 #ifdef CONFIG_IP_VS_IPV6
44 #include <linux/netfilter_ipv6.h>
47 #include <net/ip_vs.h>
50 EXPORT_SYMBOL(register_ip_vs_scheduler
);
51 EXPORT_SYMBOL(unregister_ip_vs_scheduler
);
52 EXPORT_SYMBOL(ip_vs_skb_replace
);
53 EXPORT_SYMBOL(ip_vs_proto_name
);
54 EXPORT_SYMBOL(ip_vs_conn_new
);
55 EXPORT_SYMBOL(ip_vs_conn_in_get
);
56 EXPORT_SYMBOL(ip_vs_conn_out_get
);
57 #ifdef CONFIG_IP_VS_PROTO_TCP
58 EXPORT_SYMBOL(ip_vs_tcp_conn_listen
);
60 EXPORT_SYMBOL(ip_vs_conn_put
);
61 #ifdef CONFIG_IP_VS_DEBUG
62 EXPORT_SYMBOL(ip_vs_get_debug_level
);
66 /* ID used in ICMP lookups */
67 #define icmp_id(icmph) (((icmph)->un).echo.id)
68 #define icmpv6_id(icmph) (icmph->icmp6_dataun.u_echo.identifier)
70 const char *ip_vs_proto_name(unsigned proto
)
83 #ifdef CONFIG_IP_VS_IPV6
88 sprintf(buf
, "IP_%d", proto
);
93 void ip_vs_init_hash_table(struct list_head
*table
, int rows
)
96 INIT_LIST_HEAD(&table
[rows
]);
100 ip_vs_in_stats(struct ip_vs_conn
*cp
, struct sk_buff
*skb
)
102 struct ip_vs_dest
*dest
= cp
->dest
;
103 if (dest
&& (dest
->flags
& IP_VS_DEST_F_AVAILABLE
)) {
104 spin_lock(&dest
->stats
.lock
);
105 dest
->stats
.inpkts
++;
106 dest
->stats
.inbytes
+= skb
->len
;
107 spin_unlock(&dest
->stats
.lock
);
109 spin_lock(&dest
->svc
->stats
.lock
);
110 dest
->svc
->stats
.inpkts
++;
111 dest
->svc
->stats
.inbytes
+= skb
->len
;
112 spin_unlock(&dest
->svc
->stats
.lock
);
114 spin_lock(&ip_vs_stats
.lock
);
115 ip_vs_stats
.inpkts
++;
116 ip_vs_stats
.inbytes
+= skb
->len
;
117 spin_unlock(&ip_vs_stats
.lock
);
123 ip_vs_out_stats(struct ip_vs_conn
*cp
, struct sk_buff
*skb
)
125 struct ip_vs_dest
*dest
= cp
->dest
;
126 if (dest
&& (dest
->flags
& IP_VS_DEST_F_AVAILABLE
)) {
127 spin_lock(&dest
->stats
.lock
);
128 dest
->stats
.outpkts
++;
129 dest
->stats
.outbytes
+= skb
->len
;
130 spin_unlock(&dest
->stats
.lock
);
132 spin_lock(&dest
->svc
->stats
.lock
);
133 dest
->svc
->stats
.outpkts
++;
134 dest
->svc
->stats
.outbytes
+= skb
->len
;
135 spin_unlock(&dest
->svc
->stats
.lock
);
137 spin_lock(&ip_vs_stats
.lock
);
138 ip_vs_stats
.outpkts
++;
139 ip_vs_stats
.outbytes
+= skb
->len
;
140 spin_unlock(&ip_vs_stats
.lock
);
146 ip_vs_conn_stats(struct ip_vs_conn
*cp
, struct ip_vs_service
*svc
)
148 spin_lock(&cp
->dest
->stats
.lock
);
149 cp
->dest
->stats
.conns
++;
150 spin_unlock(&cp
->dest
->stats
.lock
);
152 spin_lock(&svc
->stats
.lock
);
154 spin_unlock(&svc
->stats
.lock
);
156 spin_lock(&ip_vs_stats
.lock
);
158 spin_unlock(&ip_vs_stats
.lock
);
163 ip_vs_set_state(struct ip_vs_conn
*cp
, int direction
,
164 const struct sk_buff
*skb
,
165 struct ip_vs_protocol
*pp
)
167 if (unlikely(!pp
->state_transition
))
169 return pp
->state_transition(cp
, direction
, skb
, pp
);
174 * IPVS persistent scheduling function
175 * It creates a connection entry according to its template if exists,
176 * or selects a server and creates a connection entry plus a template.
177 * Locking: we are svc user (svc->refcnt), so we hold all dests too
178 * Protocols supported: TCP, UDP
180 static struct ip_vs_conn
*
181 ip_vs_sched_persist(struct ip_vs_service
*svc
,
182 const struct sk_buff
*skb
,
185 struct ip_vs_conn
*cp
= NULL
;
186 struct ip_vs_iphdr iph
;
187 struct ip_vs_dest
*dest
;
188 struct ip_vs_conn
*ct
;
189 __be16 dport
; /* destination port to forward */
190 union nf_inet_addr snet
; /* source network of the client,
193 ip_vs_fill_iphdr(svc
->af
, skb_network_header(skb
), &iph
);
195 /* Mask saddr with the netmask to adjust template granularity */
196 #ifdef CONFIG_IP_VS_IPV6
197 if (svc
->af
== AF_INET6
)
198 ipv6_addr_prefix(&snet
.in6
, &iph
.saddr
.in6
, svc
->netmask
);
201 snet
.ip
= iph
.saddr
.ip
& svc
->netmask
;
203 IP_VS_DBG_BUF(6, "p-schedule: src %s:%u dest %s:%u "
205 IP_VS_DBG_ADDR(svc
->af
, &iph
.saddr
), ntohs(ports
[0]),
206 IP_VS_DBG_ADDR(svc
->af
, &iph
.daddr
), ntohs(ports
[1]),
207 IP_VS_DBG_ADDR(svc
->af
, &snet
));
210 * As far as we know, FTP is a very complicated network protocol, and
211 * it uses control connection and data connections. For active FTP,
212 * FTP server initialize data connection to the client, its source port
213 * is often 20. For passive FTP, FTP server tells the clients the port
214 * that it passively listens to, and the client issues the data
215 * connection. In the tunneling or direct routing mode, the load
216 * balancer is on the client-to-server half of connection, the port
217 * number is unknown to the load balancer. So, a conn template like
218 * <caddr, 0, vaddr, 0, daddr, 0> is created for persistent FTP
219 * service, and a template like <caddr, 0, vaddr, vport, daddr, dport>
220 * is created for other persistent services.
222 if (ports
[1] == svc
->port
) {
223 /* Check if a template already exists */
224 if (svc
->port
!= FTPPORT
)
225 ct
= ip_vs_ct_in_get(svc
->af
, iph
.protocol
, &snet
, 0,
226 &iph
.daddr
, ports
[1]);
228 ct
= ip_vs_ct_in_get(svc
->af
, iph
.protocol
, &snet
, 0,
231 if (!ct
|| !ip_vs_check_template(ct
)) {
233 * No template found or the dest of the connection
234 * template is not available.
236 dest
= svc
->scheduler
->schedule(svc
, skb
);
238 IP_VS_DBG(1, "p-schedule: no dest found.\n");
243 * Create a template like <protocol,caddr,0,
244 * vaddr,vport,daddr,dport> for non-ftp service,
245 * and <protocol,caddr,0,vaddr,0,daddr,0>
248 if (svc
->port
!= FTPPORT
)
249 ct
= ip_vs_conn_new(svc
->af
, iph
.protocol
,
253 &dest
->addr
, dest
->port
,
254 IP_VS_CONN_F_TEMPLATE
,
257 ct
= ip_vs_conn_new(svc
->af
, iph
.protocol
,
261 IP_VS_CONN_F_TEMPLATE
,
266 ct
->timeout
= svc
->timeout
;
268 /* set destination with the found template */
274 * Note: persistent fwmark-based services and persistent
275 * port zero service are handled here.
276 * fwmark template: <IPPROTO_IP,caddr,0,fwmark,0,daddr,0>
277 * port zero template: <protocol,caddr,0,vaddr,0,daddr,0>
280 union nf_inet_addr fwmark
= {
281 .all
= { 0, 0, 0, htonl(svc
->fwmark
) }
284 ct
= ip_vs_ct_in_get(svc
->af
, IPPROTO_IP
, &snet
, 0,
287 ct
= ip_vs_ct_in_get(svc
->af
, iph
.protocol
, &snet
, 0,
290 if (!ct
|| !ip_vs_check_template(ct
)) {
292 * If it is not persistent port zero, return NULL,
293 * otherwise create a connection template.
298 dest
= svc
->scheduler
->schedule(svc
, skb
);
300 IP_VS_DBG(1, "p-schedule: no dest found.\n");
305 * Create a template according to the service
308 union nf_inet_addr fwmark
= {
309 .all
= { 0, 0, 0, htonl(svc
->fwmark
) }
312 ct
= ip_vs_conn_new(svc
->af
, IPPROTO_IP
,
316 IP_VS_CONN_F_TEMPLATE
,
319 ct
= ip_vs_conn_new(svc
->af
, iph
.protocol
,
323 IP_VS_CONN_F_TEMPLATE
,
328 ct
->timeout
= svc
->timeout
;
330 /* set destination with the found template */
337 * Create a new connection according to the template
339 cp
= ip_vs_conn_new(svc
->af
, iph
.protocol
,
340 &iph
.saddr
, ports
[0],
341 &iph
.daddr
, ports
[1],
353 ip_vs_control_add(cp
, ct
);
356 ip_vs_conn_stats(cp
, svc
);
362 * IPVS main scheduling function
363 * It selects a server according to the virtual service, and
364 * creates a connection entry.
365 * Protocols supported: TCP, UDP
368 ip_vs_schedule(struct ip_vs_service
*svc
, const struct sk_buff
*skb
)
370 struct ip_vs_conn
*cp
= NULL
;
371 struct ip_vs_iphdr iph
;
372 struct ip_vs_dest
*dest
;
373 __be16 _ports
[2], *pptr
;
375 ip_vs_fill_iphdr(svc
->af
, skb_network_header(skb
), &iph
);
376 pptr
= skb_header_pointer(skb
, iph
.len
, sizeof(_ports
), _ports
);
383 if (svc
->flags
& IP_VS_SVC_F_PERSISTENT
)
384 return ip_vs_sched_persist(svc
, skb
, pptr
);
387 * Non-persistent service
389 if (!svc
->fwmark
&& pptr
[1] != svc
->port
) {
391 IP_VS_ERR("Schedule: port zero only supported "
392 "in persistent services, "
393 "check your ipvs configuration\n");
397 dest
= svc
->scheduler
->schedule(svc
, skb
);
399 IP_VS_DBG(1, "Schedule: no dest found.\n");
404 * Create a connection entry.
406 cp
= ip_vs_conn_new(svc
->af
, iph
.protocol
,
409 &dest
->addr
, dest
->port
? dest
->port
: pptr
[1],
415 IP_VS_DBG_BUF(6, "Schedule fwd:%c c:%s:%u v:%s:%u "
416 "d:%s:%u conn->flags:%X conn->refcnt:%d\n",
418 IP_VS_DBG_ADDR(svc
->af
, &cp
->caddr
), ntohs(cp
->cport
),
419 IP_VS_DBG_ADDR(svc
->af
, &cp
->vaddr
), ntohs(cp
->vport
),
420 IP_VS_DBG_ADDR(svc
->af
, &cp
->daddr
), ntohs(cp
->dport
),
421 cp
->flags
, atomic_read(&cp
->refcnt
));
423 ip_vs_conn_stats(cp
, svc
);
429 * Pass or drop the packet.
430 * Called by ip_vs_in, when the virtual service is available but
431 * no destination is available for a new connection.
433 int ip_vs_leave(struct ip_vs_service
*svc
, struct sk_buff
*skb
,
434 struct ip_vs_protocol
*pp
)
436 __be16 _ports
[2], *pptr
;
437 struct ip_vs_iphdr iph
;
439 ip_vs_fill_iphdr(svc
->af
, skb_network_header(skb
), &iph
);
441 pptr
= skb_header_pointer(skb
, iph
.len
, sizeof(_ports
), _ports
);
443 ip_vs_service_put(svc
);
447 #ifdef CONFIG_IP_VS_IPV6
448 if (svc
->af
== AF_INET6
)
449 unicast
= ipv6_addr_type(&iph
.daddr
.in6
) & IPV6_ADDR_UNICAST
;
452 unicast
= (inet_addr_type(&init_net
, iph
.daddr
.ip
) == RTN_UNICAST
);
454 /* if it is fwmark-based service, the cache_bypass sysctl is up
455 and the destination is a non-local unicast, then create
456 a cache_bypass connection entry */
457 if (sysctl_ip_vs_cache_bypass
&& svc
->fwmark
&& unicast
) {
459 struct ip_vs_conn
*cp
;
461 ip_vs_service_put(svc
);
463 /* create a new connection entry */
464 IP_VS_DBG(6, "ip_vs_leave: create a cache_bypass entry\n");
465 cp
= ip_vs_conn_new(svc
->af
, iph
.protocol
,
475 ip_vs_in_stats(cp
, skb
);
478 cs
= ip_vs_set_state(cp
, IP_VS_DIR_INPUT
, skb
, pp
);
480 /* transmit the first SYN packet */
481 ret
= cp
->packet_xmit(skb
, cp
, pp
);
482 /* do not touch skb anymore */
484 atomic_inc(&cp
->in_pkts
);
490 * When the virtual ftp service is presented, packets destined
491 * for other services on the VIP may get here (except services
492 * listed in the ipvs table), pass the packets, because it is
493 * not ipvs job to decide to drop the packets.
495 if ((svc
->port
== FTPPORT
) && (pptr
[1] != FTPPORT
)) {
496 ip_vs_service_put(svc
);
500 ip_vs_service_put(svc
);
503 * Notify the client that the destination is unreachable, and
504 * release the socket buffer.
505 * Since it is in IP layer, the TCP socket is not actually
506 * created, the TCP RST packet cannot be sent, instead that
507 * ICMP_PORT_UNREACH is sent here no matter it is TCP/UDP. --WZ
509 #ifdef CONFIG_IP_VS_IPV6
510 if (svc
->af
== AF_INET6
)
511 icmpv6_send(skb
, ICMPV6_DEST_UNREACH
, ICMPV6_PORT_UNREACH
, 0,
515 icmp_send(skb
, ICMP_DEST_UNREACH
, ICMP_PORT_UNREACH
, 0);
522 * It is hooked before NF_IP_PRI_NAT_SRC at the NF_INET_POST_ROUTING
523 * chain, and is used for VS/NAT.
524 * It detects packets for VS/NAT connections and sends the packets
525 * immediately. This can avoid that iptable_nat mangles the packets
528 static unsigned int ip_vs_post_routing(unsigned int hooknum
,
530 const struct net_device
*in
,
531 const struct net_device
*out
,
532 int (*okfn
)(struct sk_buff
*))
534 if (!skb
->ipvs_property
)
536 /* The packet was sent from IPVS, exit this chain */
540 __sum16
ip_vs_checksum_complete(struct sk_buff
*skb
, int offset
)
542 return csum_fold(skb_checksum(skb
, offset
, skb
->len
- offset
, 0));
545 static inline int ip_vs_gather_frags(struct sk_buff
*skb
, u_int32_t user
)
547 int err
= ip_defrag(skb
, user
);
550 ip_send_check(ip_hdr(skb
));
555 #ifdef CONFIG_IP_VS_IPV6
556 static inline int ip_vs_gather_frags_v6(struct sk_buff
*skb
, u_int32_t user
)
558 /* TODO IPv6: Find out what to do here for IPv6 */
564 * Packet has been made sufficiently writable in caller
565 * - inout: 1=in->out, 0=out->in
567 void ip_vs_nat_icmp(struct sk_buff
*skb
, struct ip_vs_protocol
*pp
,
568 struct ip_vs_conn
*cp
, int inout
)
570 struct iphdr
*iph
= ip_hdr(skb
);
571 unsigned int icmp_offset
= iph
->ihl
*4;
572 struct icmphdr
*icmph
= (struct icmphdr
*)(skb_network_header(skb
) +
574 struct iphdr
*ciph
= (struct iphdr
*)(icmph
+ 1);
577 iph
->saddr
= cp
->vaddr
.ip
;
579 ciph
->daddr
= cp
->vaddr
.ip
;
582 iph
->daddr
= cp
->daddr
.ip
;
584 ciph
->saddr
= cp
->daddr
.ip
;
588 /* the TCP/UDP port */
589 if (IPPROTO_TCP
== ciph
->protocol
|| IPPROTO_UDP
== ciph
->protocol
) {
590 __be16
*ports
= (void *)ciph
+ ciph
->ihl
*4;
593 ports
[1] = cp
->vport
;
595 ports
[0] = cp
->dport
;
598 /* And finally the ICMP checksum */
600 icmph
->checksum
= ip_vs_checksum_complete(skb
, icmp_offset
);
601 skb
->ip_summed
= CHECKSUM_UNNECESSARY
;
604 IP_VS_DBG_PKT(11, pp
, skb
, (void *)ciph
- (void *)iph
,
605 "Forwarding altered outgoing ICMP");
607 IP_VS_DBG_PKT(11, pp
, skb
, (void *)ciph
- (void *)iph
,
608 "Forwarding altered incoming ICMP");
611 #ifdef CONFIG_IP_VS_IPV6
612 void ip_vs_nat_icmp_v6(struct sk_buff
*skb
, struct ip_vs_protocol
*pp
,
613 struct ip_vs_conn
*cp
, int inout
)
615 struct ipv6hdr
*iph
= ipv6_hdr(skb
);
616 unsigned int icmp_offset
= sizeof(struct ipv6hdr
);
617 struct icmp6hdr
*icmph
= (struct icmp6hdr
*)(skb_network_header(skb
) +
619 struct ipv6hdr
*ciph
= (struct ipv6hdr
*)(icmph
+ 1);
622 iph
->saddr
= cp
->vaddr
.in6
;
623 ciph
->daddr
= cp
->vaddr
.in6
;
625 iph
->daddr
= cp
->daddr
.in6
;
626 ciph
->saddr
= cp
->daddr
.in6
;
629 /* the TCP/UDP port */
630 if (IPPROTO_TCP
== ciph
->nexthdr
|| IPPROTO_UDP
== ciph
->nexthdr
) {
631 __be16
*ports
= (void *)ciph
+ sizeof(struct ipv6hdr
);
634 ports
[1] = cp
->vport
;
636 ports
[0] = cp
->dport
;
639 /* And finally the ICMP checksum */
640 icmph
->icmp6_cksum
= 0;
641 /* TODO IPv6: is this correct for ICMPv6? */
642 ip_vs_checksum_complete(skb
, icmp_offset
);
643 skb
->ip_summed
= CHECKSUM_UNNECESSARY
;
646 IP_VS_DBG_PKT(11, pp
, skb
, (void *)ciph
- (void *)iph
,
647 "Forwarding altered outgoing ICMPv6");
649 IP_VS_DBG_PKT(11, pp
, skb
, (void *)ciph
- (void *)iph
,
650 "Forwarding altered incoming ICMPv6");
655 * Handle ICMP messages in the inside-to-outside direction (outgoing).
656 * Find any that might be relevant, check against existing connections,
657 * forward to the right destination host if relevant.
658 * Currently handles error types - unreachable, quench, ttl exceeded.
659 * (Only used in VS/NAT)
661 static int ip_vs_out_icmp(struct sk_buff
*skb
, int *related
)
664 struct icmphdr _icmph
, *ic
;
665 struct iphdr _ciph
, *cih
; /* The ip header contained within the ICMP */
666 struct ip_vs_iphdr ciph
;
667 struct ip_vs_conn
*cp
;
668 struct ip_vs_protocol
*pp
;
669 unsigned int offset
, ihl
, verdict
;
673 /* reassemble IP fragments */
674 if (ip_hdr(skb
)->frag_off
& htons(IP_MF
| IP_OFFSET
)) {
675 if (ip_vs_gather_frags(skb
, IP_DEFRAG_VS_OUT
))
680 offset
= ihl
= iph
->ihl
* 4;
681 ic
= skb_header_pointer(skb
, offset
, sizeof(_icmph
), &_icmph
);
685 IP_VS_DBG(12, "Outgoing ICMP (%d,%d) %u.%u.%u.%u->%u.%u.%u.%u\n",
686 ic
->type
, ntohs(icmp_id(ic
)),
687 NIPQUAD(iph
->saddr
), NIPQUAD(iph
->daddr
));
690 * Work through seeing if this is for us.
691 * These checks are supposed to be in an order that means easy
692 * things are checked first to speed up processing.... however
693 * this means that some packets will manage to get a long way
694 * down this stack and then be rejected, but that's life.
696 if ((ic
->type
!= ICMP_DEST_UNREACH
) &&
697 (ic
->type
!= ICMP_SOURCE_QUENCH
) &&
698 (ic
->type
!= ICMP_TIME_EXCEEDED
)) {
703 /* Now find the contained IP header */
704 offset
+= sizeof(_icmph
);
705 cih
= skb_header_pointer(skb
, offset
, sizeof(_ciph
), &_ciph
);
707 return NF_ACCEPT
; /* The packet looks wrong, ignore */
709 pp
= ip_vs_proto_get(cih
->protocol
);
713 /* Is the embedded protocol header present? */
714 if (unlikely(cih
->frag_off
& htons(IP_OFFSET
) &&
718 IP_VS_DBG_PKT(11, pp
, skb
, offset
, "Checking outgoing ICMP for");
720 offset
+= cih
->ihl
* 4;
722 ip_vs_fill_iphdr(AF_INET
, cih
, &ciph
);
723 /* The embedded headers contain source and dest in reverse order */
724 cp
= pp
->conn_out_get(AF_INET
, skb
, pp
, &ciph
, offset
, 1);
730 if (IP_VS_FWD_METHOD(cp
) != 0) {
731 IP_VS_ERR("shouldn't reach here, because the box is on the "
732 "half connection in the tun/dr module.\n");
735 /* Ensure the checksum is correct */
736 if (!skb_csum_unnecessary(skb
) && ip_vs_checksum_complete(skb
, ihl
)) {
737 /* Failed checksum! */
738 IP_VS_DBG(1, "Forward ICMP: failed checksum from %d.%d.%d.%d!\n",
739 NIPQUAD(iph
->saddr
));
743 if (IPPROTO_TCP
== cih
->protocol
|| IPPROTO_UDP
== cih
->protocol
)
744 offset
+= 2 * sizeof(__u16
);
745 if (!skb_make_writable(skb
, offset
))
748 ip_vs_nat_icmp(skb
, pp
, cp
, 1);
750 /* do the statistics and put it back */
751 ip_vs_out_stats(cp
, skb
);
753 skb
->ipvs_property
= 1;
757 __ip_vs_conn_put(cp
);
762 #ifdef CONFIG_IP_VS_IPV6
763 static int ip_vs_out_icmp_v6(struct sk_buff
*skb
, int *related
)
766 struct icmp6hdr _icmph
, *ic
;
767 struct ipv6hdr _ciph
, *cih
; /* The ip header contained
769 struct ip_vs_iphdr ciph
;
770 struct ip_vs_conn
*cp
;
771 struct ip_vs_protocol
*pp
;
772 unsigned int offset
, verdict
;
776 /* reassemble IP fragments */
777 if (ipv6_hdr(skb
)->nexthdr
== IPPROTO_FRAGMENT
) {
778 if (ip_vs_gather_frags_v6(skb
, IP_DEFRAG_VS_OUT
))
783 offset
= sizeof(struct ipv6hdr
);
784 ic
= skb_header_pointer(skb
, offset
, sizeof(_icmph
), &_icmph
);
788 IP_VS_DBG(12, "Outgoing ICMPv6 (%d,%d) " NIP6_FMT
"->" NIP6_FMT
"\n",
789 ic
->icmp6_type
, ntohs(icmpv6_id(ic
)),
790 NIP6(iph
->saddr
), NIP6(iph
->daddr
));
793 * Work through seeing if this is for us.
794 * These checks are supposed to be in an order that means easy
795 * things are checked first to speed up processing.... however
796 * this means that some packets will manage to get a long way
797 * down this stack and then be rejected, but that's life.
799 if ((ic
->icmp6_type
!= ICMPV6_DEST_UNREACH
) &&
800 (ic
->icmp6_type
!= ICMPV6_PKT_TOOBIG
) &&
801 (ic
->icmp6_type
!= ICMPV6_TIME_EXCEED
)) {
806 /* Now find the contained IP header */
807 offset
+= sizeof(_icmph
);
808 cih
= skb_header_pointer(skb
, offset
, sizeof(_ciph
), &_ciph
);
810 return NF_ACCEPT
; /* The packet looks wrong, ignore */
812 pp
= ip_vs_proto_get(cih
->nexthdr
);
816 /* Is the embedded protocol header present? */
817 /* TODO: we don't support fragmentation at the moment anyways */
818 if (unlikely(cih
->nexthdr
== IPPROTO_FRAGMENT
&& pp
->dont_defrag
))
821 IP_VS_DBG_PKT(11, pp
, skb
, offset
, "Checking outgoing ICMPv6 for");
823 offset
+= sizeof(struct ipv6hdr
);
825 ip_vs_fill_iphdr(AF_INET6
, cih
, &ciph
);
826 /* The embedded headers contain source and dest in reverse order */
827 cp
= pp
->conn_out_get(AF_INET6
, skb
, pp
, &ciph
, offset
, 1);
833 if (IP_VS_FWD_METHOD(cp
) != 0) {
834 IP_VS_ERR("shouldn't reach here, because the box is on the "
835 "half connection in the tun/dr module.\n");
838 /* Ensure the checksum is correct */
839 if (!skb_csum_unnecessary(skb
)
840 && ip_vs_checksum_complete(skb
, sizeof(struct ipv6hdr
))) {
841 /* Failed checksum! */
842 IP_VS_DBG(1, "Forward ICMPv6: failed checksum from "
848 if (IPPROTO_TCP
== cih
->nexthdr
|| IPPROTO_UDP
== cih
->nexthdr
)
849 offset
+= 2 * sizeof(__u16
);
850 if (!skb_make_writable(skb
, offset
))
853 ip_vs_nat_icmp_v6(skb
, pp
, cp
, 1);
855 /* do the statistics and put it back */
856 ip_vs_out_stats(cp
, skb
);
858 skb
->ipvs_property
= 1;
862 __ip_vs_conn_put(cp
);
868 static inline int is_tcp_reset(const struct sk_buff
*skb
, int nh_len
)
870 struct tcphdr _tcph
, *th
;
872 th
= skb_header_pointer(skb
, nh_len
, sizeof(_tcph
), &_tcph
);
879 * It is hooked at the NF_INET_FORWARD chain, used only for VS/NAT.
880 * Check if outgoing packet belongs to the established ip_vs_conn,
881 * rewrite addresses of the packet and send it on its way...
884 ip_vs_out(unsigned int hooknum
, struct sk_buff
*skb
,
885 const struct net_device
*in
, const struct net_device
*out
,
886 int (*okfn
)(struct sk_buff
*))
888 struct ip_vs_iphdr iph
;
889 struct ip_vs_protocol
*pp
;
890 struct ip_vs_conn
*cp
;
895 af
= (skb
->protocol
== __constant_htons(ETH_P_IP
)) ? AF_INET
: AF_INET6
;
897 if (skb
->ipvs_property
)
900 ip_vs_fill_iphdr(af
, skb_network_header(skb
), &iph
);
901 #ifdef CONFIG_IP_VS_IPV6
902 if (af
== AF_INET6
) {
903 if (unlikely(iph
.protocol
== IPPROTO_ICMPV6
)) {
904 int related
, verdict
= ip_vs_out_icmp_v6(skb
, &related
);
908 ip_vs_fill_iphdr(af
, skb_network_header(skb
), &iph
);
912 if (unlikely(iph
.protocol
== IPPROTO_ICMP
)) {
913 int related
, verdict
= ip_vs_out_icmp(skb
, &related
);
917 ip_vs_fill_iphdr(af
, skb_network_header(skb
), &iph
);
920 pp
= ip_vs_proto_get(iph
.protocol
);
924 /* reassemble IP fragments */
925 #ifdef CONFIG_IP_VS_IPV6
926 if (af
== AF_INET6
) {
927 if (unlikely(iph
.protocol
== IPPROTO_ICMPV6
)) {
928 int related
, verdict
= ip_vs_out_icmp_v6(skb
, &related
);
933 ip_vs_fill_iphdr(af
, skb_network_header(skb
), &iph
);
937 if (unlikely(ip_hdr(skb
)->frag_off
& htons(IP_MF
|IP_OFFSET
) &&
939 if (ip_vs_gather_frags(skb
, IP_DEFRAG_VS_OUT
))
942 ip_vs_fill_iphdr(af
, skb_network_header(skb
), &iph
);
946 * Check if the packet belongs to an existing entry
948 cp
= pp
->conn_out_get(af
, skb
, pp
, &iph
, iph
.len
, 0);
951 if (sysctl_ip_vs_nat_icmp_send
&&
952 (pp
->protocol
== IPPROTO_TCP
||
953 pp
->protocol
== IPPROTO_UDP
)) {
954 __be16 _ports
[2], *pptr
;
956 pptr
= skb_header_pointer(skb
, iph
.len
,
957 sizeof(_ports
), _ports
);
959 return NF_ACCEPT
; /* Not for me */
960 if (ip_vs_lookup_real_service(iph
.protocol
,
964 * Notify the real server: there is no
965 * existing entry if it is not RST
966 * packet or not TCP packet.
968 if (iph
.protocol
!= IPPROTO_TCP
969 || !is_tcp_reset(skb
, iph
.len
)) {
970 #ifdef CONFIG_IP_VS_IPV6
980 ICMP_PORT_UNREACH
, 0);
985 IP_VS_DBG_PKT(12, pp
, skb
, 0,
986 "packet continues traversal as normal");
990 IP_VS_DBG_PKT(11, pp
, skb
, 0, "Outgoing packet");
992 if (!skb_make_writable(skb
, iph
.len
))
995 /* mangle the packet */
996 if (pp
->snat_handler
&& !pp
->snat_handler(skb
, pp
, cp
))
999 #ifdef CONFIG_IP_VS_IPV6
1001 ipv6_hdr(skb
)->saddr
= cp
->vaddr
.in6
;
1005 ip_hdr(skb
)->saddr
= cp
->vaddr
.ip
;
1006 ip_send_check(ip_hdr(skb
));
1009 /* For policy routing, packets originating from this
1010 * machine itself may be routed differently to packets
1011 * passing through. We want this packet to be routed as
1012 * if it came from this machine itself. So re-compute
1013 * the routing information.
1015 #ifdef CONFIG_IP_VS_IPV6
1016 if (af
== AF_INET6
) {
1017 if (ip6_route_me_harder(skb
) != 0)
1021 if (ip_route_me_harder(skb
, RTN_LOCAL
) != 0)
1024 IP_VS_DBG_PKT(10, pp
, skb
, 0, "After SNAT");
1026 ip_vs_out_stats(cp
, skb
);
1027 ip_vs_set_state(cp
, IP_VS_DIR_OUTPUT
, skb
, pp
);
1030 skb
->ipvs_property
= 1;
1043 * Handle ICMP messages in the outside-to-inside direction (incoming).
1044 * Find any that might be relevant, check against existing connections,
1045 * forward to the right destination host if relevant.
1046 * Currently handles error types - unreachable, quench, ttl exceeded.
1049 ip_vs_in_icmp(struct sk_buff
*skb
, int *related
, unsigned int hooknum
)
1052 struct icmphdr _icmph
, *ic
;
1053 struct iphdr _ciph
, *cih
; /* The ip header contained within the ICMP */
1054 struct ip_vs_iphdr ciph
;
1055 struct ip_vs_conn
*cp
;
1056 struct ip_vs_protocol
*pp
;
1057 unsigned int offset
, ihl
, verdict
;
1061 /* reassemble IP fragments */
1062 if (ip_hdr(skb
)->frag_off
& htons(IP_MF
| IP_OFFSET
)) {
1063 if (ip_vs_gather_frags(skb
, hooknum
== NF_INET_LOCAL_IN
?
1064 IP_DEFRAG_VS_IN
: IP_DEFRAG_VS_FWD
))
1069 offset
= ihl
= iph
->ihl
* 4;
1070 ic
= skb_header_pointer(skb
, offset
, sizeof(_icmph
), &_icmph
);
1074 IP_VS_DBG(12, "Incoming ICMP (%d,%d) %u.%u.%u.%u->%u.%u.%u.%u\n",
1075 ic
->type
, ntohs(icmp_id(ic
)),
1076 NIPQUAD(iph
->saddr
), NIPQUAD(iph
->daddr
));
1079 * Work through seeing if this is for us.
1080 * These checks are supposed to be in an order that means easy
1081 * things are checked first to speed up processing.... however
1082 * this means that some packets will manage to get a long way
1083 * down this stack and then be rejected, but that's life.
1085 if ((ic
->type
!= ICMP_DEST_UNREACH
) &&
1086 (ic
->type
!= ICMP_SOURCE_QUENCH
) &&
1087 (ic
->type
!= ICMP_TIME_EXCEEDED
)) {
1092 /* Now find the contained IP header */
1093 offset
+= sizeof(_icmph
);
1094 cih
= skb_header_pointer(skb
, offset
, sizeof(_ciph
), &_ciph
);
1096 return NF_ACCEPT
; /* The packet looks wrong, ignore */
1098 pp
= ip_vs_proto_get(cih
->protocol
);
1102 /* Is the embedded protocol header present? */
1103 if (unlikely(cih
->frag_off
& htons(IP_OFFSET
) &&
1107 IP_VS_DBG_PKT(11, pp
, skb
, offset
, "Checking incoming ICMP for");
1109 offset
+= cih
->ihl
* 4;
1111 ip_vs_fill_iphdr(AF_INET
, cih
, &ciph
);
1112 /* The embedded headers contain source and dest in reverse order */
1113 cp
= pp
->conn_in_get(AF_INET
, skb
, pp
, &ciph
, offset
, 1);
1119 /* Ensure the checksum is correct */
1120 if (!skb_csum_unnecessary(skb
) && ip_vs_checksum_complete(skb
, ihl
)) {
1121 /* Failed checksum! */
1122 IP_VS_DBG(1, "Incoming ICMP: failed checksum from %d.%d.%d.%d!\n",
1123 NIPQUAD(iph
->saddr
));
1127 /* do the statistics and put it back */
1128 ip_vs_in_stats(cp
, skb
);
1129 if (IPPROTO_TCP
== cih
->protocol
|| IPPROTO_UDP
== cih
->protocol
)
1130 offset
+= 2 * sizeof(__u16
);
1131 verdict
= ip_vs_icmp_xmit(skb
, cp
, pp
, offset
);
1132 /* do not touch skb anymore */
1135 __ip_vs_conn_put(cp
);
1140 #ifdef CONFIG_IP_VS_IPV6
1142 ip_vs_in_icmp_v6(struct sk_buff
*skb
, int *related
, unsigned int hooknum
)
1144 struct ipv6hdr
*iph
;
1145 struct icmp6hdr _icmph
, *ic
;
1146 struct ipv6hdr _ciph
, *cih
; /* The ip header contained
1148 struct ip_vs_iphdr ciph
;
1149 struct ip_vs_conn
*cp
;
1150 struct ip_vs_protocol
*pp
;
1151 unsigned int offset
, verdict
;
1155 /* reassemble IP fragments */
1156 if (ipv6_hdr(skb
)->nexthdr
== IPPROTO_FRAGMENT
) {
1157 if (ip_vs_gather_frags_v6(skb
, hooknum
== NF_INET_LOCAL_IN
?
1163 iph
= ipv6_hdr(skb
);
1164 offset
= sizeof(struct ipv6hdr
);
1165 ic
= skb_header_pointer(skb
, offset
, sizeof(_icmph
), &_icmph
);
1169 IP_VS_DBG(12, "Incoming ICMPv6 (%d,%d) " NIP6_FMT
"->" NIP6_FMT
"\n",
1170 ic
->icmp6_type
, ntohs(icmpv6_id(ic
)),
1171 NIP6(iph
->saddr
), NIP6(iph
->daddr
));
1174 * Work through seeing if this is for us.
1175 * These checks are supposed to be in an order that means easy
1176 * things are checked first to speed up processing.... however
1177 * this means that some packets will manage to get a long way
1178 * down this stack and then be rejected, but that's life.
1180 if ((ic
->icmp6_type
!= ICMPV6_DEST_UNREACH
) &&
1181 (ic
->icmp6_type
!= ICMPV6_PKT_TOOBIG
) &&
1182 (ic
->icmp6_type
!= ICMPV6_TIME_EXCEED
)) {
1187 /* Now find the contained IP header */
1188 offset
+= sizeof(_icmph
);
1189 cih
= skb_header_pointer(skb
, offset
, sizeof(_ciph
), &_ciph
);
1191 return NF_ACCEPT
; /* The packet looks wrong, ignore */
1193 pp
= ip_vs_proto_get(cih
->nexthdr
);
1197 /* Is the embedded protocol header present? */
1198 /* TODO: we don't support fragmentation at the moment anyways */
1199 if (unlikely(cih
->nexthdr
== IPPROTO_FRAGMENT
&& pp
->dont_defrag
))
1202 IP_VS_DBG_PKT(11, pp
, skb
, offset
, "Checking incoming ICMPv6 for");
1204 offset
+= sizeof(struct ipv6hdr
);
1206 ip_vs_fill_iphdr(AF_INET6
, cih
, &ciph
);
1207 /* The embedded headers contain source and dest in reverse order */
1208 cp
= pp
->conn_in_get(AF_INET6
, skb
, pp
, &ciph
, offset
, 1);
1214 /* do the statistics and put it back */
1215 ip_vs_in_stats(cp
, skb
);
1216 if (IPPROTO_TCP
== cih
->nexthdr
|| IPPROTO_UDP
== cih
->nexthdr
)
1217 offset
+= 2 * sizeof(__u16
);
1218 verdict
= ip_vs_icmp_xmit_v6(skb
, cp
, pp
, offset
);
1219 /* do not touch skb anymore */
1221 __ip_vs_conn_put(cp
);
1229 * Check if it's for virtual services, look it up,
1230 * and send it on its way...
1233 ip_vs_in(unsigned int hooknum
, struct sk_buff
*skb
,
1234 const struct net_device
*in
, const struct net_device
*out
,
1235 int (*okfn
)(struct sk_buff
*))
1237 struct ip_vs_iphdr iph
;
1238 struct ip_vs_protocol
*pp
;
1239 struct ip_vs_conn
*cp
;
1240 int ret
, restart
, af
;
1242 af
= (skb
->protocol
== __constant_htons(ETH_P_IP
)) ? AF_INET
: AF_INET6
;
1244 ip_vs_fill_iphdr(af
, skb_network_header(skb
), &iph
);
1247 * Big tappo: only PACKET_HOST (neither loopback nor mcasts)
1248 * ... don't know why 1st test DOES NOT include 2nd (?)
1250 if (unlikely(skb
->pkt_type
!= PACKET_HOST
1251 || skb
->dev
->flags
& IFF_LOOPBACK
|| skb
->sk
)) {
1252 IP_VS_DBG_BUF(12, "packet type=%d proto=%d daddr=%s ignored\n",
1255 IP_VS_DBG_ADDR(af
, &iph
.daddr
));
1259 if (unlikely(iph
.protocol
== IPPROTO_ICMP
)) {
1260 int related
, verdict
= ip_vs_in_icmp(skb
, &related
, hooknum
);
1264 ip_vs_fill_iphdr(af
, skb_network_header(skb
), &iph
);
1267 /* Protocol supported? */
1268 pp
= ip_vs_proto_get(iph
.protocol
);
1273 * Check if the packet belongs to an existing connection entry
1275 cp
= pp
->conn_in_get(af
, skb
, pp
, &iph
, iph
.len
, 0);
1277 if (unlikely(!cp
)) {
1280 if (!pp
->conn_schedule(af
, skb
, pp
, &v
, &cp
))
1284 if (unlikely(!cp
)) {
1285 /* sorry, all this trouble for a no-hit :) */
1286 IP_VS_DBG_PKT(12, pp
, skb
, 0,
1287 "packet continues traversal as normal");
1291 IP_VS_DBG_PKT(11, pp
, skb
, 0, "Incoming packet");
1293 /* Check the server status */
1294 if (cp
->dest
&& !(cp
->dest
->flags
& IP_VS_DEST_F_AVAILABLE
)) {
1295 /* the destination server is not available */
1297 if (sysctl_ip_vs_expire_nodest_conn
) {
1298 /* try to expire the connection immediately */
1299 ip_vs_conn_expire_now(cp
);
1301 /* don't restart its timer, and silently
1303 __ip_vs_conn_put(cp
);
1307 ip_vs_in_stats(cp
, skb
);
1308 restart
= ip_vs_set_state(cp
, IP_VS_DIR_INPUT
, skb
, pp
);
1309 if (cp
->packet_xmit
)
1310 ret
= cp
->packet_xmit(skb
, cp
, pp
);
1311 /* do not touch skb anymore */
1313 IP_VS_DBG_RL("warning: packet_xmit is null");
1317 /* Increase its packet counter and check if it is needed
1318 * to be synchronized
1320 * Sync connection if it is about to close to
1321 * encorage the standby servers to update the connections timeout
1323 atomic_inc(&cp
->in_pkts
);
1324 if ((ip_vs_sync_state
& IP_VS_STATE_MASTER
) &&
1325 (((cp
->protocol
!= IPPROTO_TCP
||
1326 cp
->state
== IP_VS_TCP_S_ESTABLISHED
) &&
1327 (atomic_read(&cp
->in_pkts
) % sysctl_ip_vs_sync_threshold
[1]
1328 == sysctl_ip_vs_sync_threshold
[0])) ||
1329 ((cp
->protocol
== IPPROTO_TCP
) && (cp
->old_state
!= cp
->state
) &&
1330 ((cp
->state
== IP_VS_TCP_S_FIN_WAIT
) ||
1331 (cp
->state
== IP_VS_TCP_S_CLOSE_WAIT
) ||
1332 (cp
->state
== IP_VS_TCP_S_TIME_WAIT
)))))
1333 ip_vs_sync_conn(cp
);
1334 cp
->old_state
= cp
->state
;
1342 * It is hooked at the NF_INET_FORWARD chain, in order to catch ICMP
1343 * related packets destined for 0.0.0.0/0.
1344 * When fwmark-based virtual service is used, such as transparent
1345 * cache cluster, TCP packets can be marked and routed to ip_vs_in,
1346 * but ICMP destined for 0.0.0.0/0 cannot not be easily marked and
1347 * sent to ip_vs_in_icmp. So, catch them at the NF_INET_FORWARD chain
1348 * and send them to ip_vs_in_icmp.
1351 ip_vs_forward_icmp(unsigned int hooknum
, struct sk_buff
*skb
,
1352 const struct net_device
*in
, const struct net_device
*out
,
1353 int (*okfn
)(struct sk_buff
*))
1357 if (ip_hdr(skb
)->protocol
!= IPPROTO_ICMP
)
1360 return ip_vs_in_icmp(skb
, &r
, hooknum
);
1363 #ifdef CONFIG_IP_VS_IPV6
1365 ip_vs_forward_icmp_v6(unsigned int hooknum
, struct sk_buff
*skb
,
1366 const struct net_device
*in
, const struct net_device
*out
,
1367 int (*okfn
)(struct sk_buff
*))
1371 if (ipv6_hdr(skb
)->nexthdr
!= IPPROTO_ICMPV6
)
1374 return ip_vs_in_icmp_v6(skb
, &r
, hooknum
);
1379 static struct nf_hook_ops ip_vs_ops
[] __read_mostly
= {
1380 /* After packet filtering, forward packet through VS/DR, VS/TUN,
1381 * or VS/NAT(change destination), so that filtering rules can be
1382 * applied to IPVS. */
1385 .owner
= THIS_MODULE
,
1387 .hooknum
= NF_INET_LOCAL_IN
,
1390 /* After packet filtering, change source only for VS/NAT */
1393 .owner
= THIS_MODULE
,
1395 .hooknum
= NF_INET_FORWARD
,
1398 /* After packet filtering (but before ip_vs_out_icmp), catch icmp
1399 * destined for 0.0.0.0/0, which is for incoming IPVS connections */
1401 .hook
= ip_vs_forward_icmp
,
1402 .owner
= THIS_MODULE
,
1404 .hooknum
= NF_INET_FORWARD
,
1407 /* Before the netfilter connection tracking, exit from POST_ROUTING */
1409 .hook
= ip_vs_post_routing
,
1410 .owner
= THIS_MODULE
,
1412 .hooknum
= NF_INET_POST_ROUTING
,
1413 .priority
= NF_IP_PRI_NAT_SRC
-1,
1419 * Initialize IP Virtual Server
1421 static int __init
ip_vs_init(void)
1425 ip_vs_estimator_init();
1427 ret
= ip_vs_control_init();
1429 IP_VS_ERR("can't setup control.\n");
1430 goto cleanup_estimator
;
1433 ip_vs_protocol_init();
1435 ret
= ip_vs_app_init();
1437 IP_VS_ERR("can't setup application helper.\n");
1438 goto cleanup_protocol
;
1441 ret
= ip_vs_conn_init();
1443 IP_VS_ERR("can't setup connection table.\n");
1447 ret
= nf_register_hooks(ip_vs_ops
, ARRAY_SIZE(ip_vs_ops
));
1449 IP_VS_ERR("can't register hooks.\n");
1453 IP_VS_INFO("ipvs loaded.\n");
1457 ip_vs_conn_cleanup();
1459 ip_vs_app_cleanup();
1461 ip_vs_protocol_cleanup();
1462 ip_vs_control_cleanup();
1464 ip_vs_estimator_cleanup();
1468 static void __exit
ip_vs_cleanup(void)
1470 nf_unregister_hooks(ip_vs_ops
, ARRAY_SIZE(ip_vs_ops
));
1471 ip_vs_conn_cleanup();
1472 ip_vs_app_cleanup();
1473 ip_vs_protocol_cleanup();
1474 ip_vs_control_cleanup();
1475 ip_vs_estimator_cleanup();
1476 IP_VS_INFO("ipvs unloaded.\n");
1479 module_init(ip_vs_init
);
1480 module_exit(ip_vs_cleanup
);
1481 MODULE_LICENSE("GPL");