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 * Version: $Id: ip_vs_core.c,v 1.34 2003/05/10 03:05:23 wensong Exp $
10 * Authors: Wensong Zhang <wensong@linuxvirtualserver.org>
11 * Peter Kese <peter.kese@ijs.si>
12 * Julian Anastasov <ja@ssi.bg>
14 * This program is free software; you can redistribute it and/or
15 * modify it under the terms of the GNU General Public License
16 * as published by the Free Software Foundation; either version
17 * 2 of the License, or (at your option) any later version.
19 * The IPVS code for kernel 2.2 was done by Wensong Zhang and Peter Kese,
20 * with changes/fixes from Julian Anastasov, Lars Marowsky-Bree, Horms
24 * Paul `Rusty' Russell properly handle non-linear skbs
25 * Harald Welte don't use nfcache
29 #include <linux/module.h>
30 #include <linux/kernel.h>
32 #include <linux/tcp.h>
33 #include <linux/icmp.h>
38 #include <net/icmp.h> /* for icmp_send */
39 #include <net/route.h>
41 #include <linux/netfilter.h>
42 #include <linux/netfilter_ipv4.h>
44 #include <net/ip_vs.h>
47 EXPORT_SYMBOL(register_ip_vs_scheduler);
48 EXPORT_SYMBOL(unregister_ip_vs_scheduler);
49 EXPORT_SYMBOL(ip_vs_skb_replace);
50 EXPORT_SYMBOL(ip_vs_proto_name);
51 EXPORT_SYMBOL(ip_vs_conn_new);
52 EXPORT_SYMBOL(ip_vs_conn_in_get);
53 EXPORT_SYMBOL(ip_vs_conn_out_get);
54 #ifdef CONFIG_IP_VS_PROTO_TCP
55 EXPORT_SYMBOL(ip_vs_tcp_conn_listen);
57 EXPORT_SYMBOL(ip_vs_conn_put);
58 #ifdef CONFIG_IP_VS_DEBUG
59 EXPORT_SYMBOL(ip_vs_get_debug_level);
63 /* ID used in ICMP lookups */
64 #define icmp_id(icmph) (((icmph)->un).echo.id)
66 const char *ip_vs_proto_name(unsigned proto)
80 sprintf(buf, "IP_%d", proto);
85 void ip_vs_init_hash_table(struct list_head *table, int rows)
88 INIT_LIST_HEAD(&table[rows]);
92 ip_vs_in_stats(struct ip_vs_conn *cp, struct sk_buff *skb)
94 struct ip_vs_dest *dest = cp->dest;
95 if (dest && (dest->flags & IP_VS_DEST_F_AVAILABLE)) {
96 spin_lock(&dest->stats.lock);
98 dest->stats.inbytes += skb->len;
99 spin_unlock(&dest->stats.lock);
101 spin_lock(&dest->svc->stats.lock);
102 dest->svc->stats.inpkts++;
103 dest->svc->stats.inbytes += skb->len;
104 spin_unlock(&dest->svc->stats.lock);
106 spin_lock(&ip_vs_stats.lock);
107 ip_vs_stats.inpkts++;
108 ip_vs_stats.inbytes += skb->len;
109 spin_unlock(&ip_vs_stats.lock);
115 ip_vs_out_stats(struct ip_vs_conn *cp, struct sk_buff *skb)
117 struct ip_vs_dest *dest = cp->dest;
118 if (dest && (dest->flags & IP_VS_DEST_F_AVAILABLE)) {
119 spin_lock(&dest->stats.lock);
120 dest->stats.outpkts++;
121 dest->stats.outbytes += skb->len;
122 spin_unlock(&dest->stats.lock);
124 spin_lock(&dest->svc->stats.lock);
125 dest->svc->stats.outpkts++;
126 dest->svc->stats.outbytes += skb->len;
127 spin_unlock(&dest->svc->stats.lock);
129 spin_lock(&ip_vs_stats.lock);
130 ip_vs_stats.outpkts++;
131 ip_vs_stats.outbytes += skb->len;
132 spin_unlock(&ip_vs_stats.lock);
138 ip_vs_conn_stats(struct ip_vs_conn *cp, struct ip_vs_service *svc)
140 spin_lock(&cp->dest->stats.lock);
141 cp->dest->stats.conns++;
142 spin_unlock(&cp->dest->stats.lock);
144 spin_lock(&svc->stats.lock);
146 spin_unlock(&svc->stats.lock);
148 spin_lock(&ip_vs_stats.lock);
150 spin_unlock(&ip_vs_stats.lock);
155 ip_vs_set_state(struct ip_vs_conn *cp, int direction,
156 const struct sk_buff *skb,
157 struct ip_vs_protocol *pp)
159 if (unlikely(!pp->state_transition))
161 return pp->state_transition(cp, direction, skb, pp);
166 * IPVS persistent scheduling function
167 * It creates a connection entry according to its template if exists,
168 * or selects a server and creates a connection entry plus a template.
169 * Locking: we are svc user (svc->refcnt), so we hold all dests too
170 * Protocols supported: TCP, UDP
172 static struct ip_vs_conn *
173 ip_vs_sched_persist(struct ip_vs_service *svc,
174 const struct sk_buff *skb,
177 struct ip_vs_conn *cp = NULL;
178 struct iphdr *iph = ip_hdr(skb);
179 struct ip_vs_dest *dest;
180 struct ip_vs_conn *ct;
181 __be16 dport; /* destination port to forward */
182 __be32 snet; /* source network of the client, after masking */
184 /* Mask saddr with the netmask to adjust template granularity */
185 snet = iph->saddr & svc->netmask;
187 IP_VS_DBG(6, "p-schedule: src %u.%u.%u.%u:%u dest %u.%u.%u.%u:%u "
188 "mnet %u.%u.%u.%u\n",
189 NIPQUAD(iph->saddr), ntohs(ports[0]),
190 NIPQUAD(iph->daddr), ntohs(ports[1]),
194 * As far as we know, FTP is a very complicated network protocol, and
195 * it uses control connection and data connections. For active FTP,
196 * FTP server initialize data connection to the client, its source port
197 * is often 20. For passive FTP, FTP server tells the clients the port
198 * that it passively listens to, and the client issues the data
199 * connection. In the tunneling or direct routing mode, the load
200 * balancer is on the client-to-server half of connection, the port
201 * number is unknown to the load balancer. So, a conn template like
202 * <caddr, 0, vaddr, 0, daddr, 0> is created for persistent FTP
203 * service, and a template like <caddr, 0, vaddr, vport, daddr, dport>
204 * is created for other persistent services.
206 if (ports[1] == svc->port) {
207 /* Check if a template already exists */
208 if (svc->port != FTPPORT)
209 ct = ip_vs_ct_in_get(iph->protocol, snet, 0,
210 iph->daddr, ports[1]);
212 ct = ip_vs_ct_in_get(iph->protocol, snet, 0,
215 if (!ct || !ip_vs_check_template(ct)) {
217 * No template found or the dest of the connection
218 * template is not available.
220 dest = svc->scheduler->schedule(svc, skb);
222 IP_VS_DBG(1, "p-schedule: no dest found.\n");
227 * Create a template like <protocol,caddr,0,
228 * vaddr,vport,daddr,dport> for non-ftp service,
229 * and <protocol,caddr,0,vaddr,0,daddr,0>
232 if (svc->port != FTPPORT)
233 ct = ip_vs_conn_new(iph->protocol,
237 dest->addr, dest->port,
238 IP_VS_CONN_F_TEMPLATE,
241 ct = ip_vs_conn_new(iph->protocol,
245 IP_VS_CONN_F_TEMPLATE,
250 ct->timeout = svc->timeout;
252 /* set destination with the found template */
258 * Note: persistent fwmark-based services and persistent
259 * port zero service are handled here.
260 * fwmark template: <IPPROTO_IP,caddr,0,fwmark,0,daddr,0>
261 * port zero template: <protocol,caddr,0,vaddr,0,daddr,0>
264 ct = ip_vs_ct_in_get(IPPROTO_IP, snet, 0,
265 htonl(svc->fwmark), 0);
267 ct = ip_vs_ct_in_get(iph->protocol, snet, 0,
270 if (!ct || !ip_vs_check_template(ct)) {
272 * If it is not persistent port zero, return NULL,
273 * otherwise create a connection template.
278 dest = svc->scheduler->schedule(svc, skb);
280 IP_VS_DBG(1, "p-schedule: no dest found.\n");
285 * Create a template according to the service
288 ct = ip_vs_conn_new(IPPROTO_IP,
290 htonl(svc->fwmark), 0,
292 IP_VS_CONN_F_TEMPLATE,
295 ct = ip_vs_conn_new(iph->protocol,
299 IP_VS_CONN_F_TEMPLATE,
304 ct->timeout = svc->timeout;
306 /* set destination with the found template */
313 * Create a new connection according to the template
315 cp = ip_vs_conn_new(iph->protocol,
316 iph->saddr, ports[0],
317 iph->daddr, ports[1],
329 ip_vs_control_add(cp, ct);
332 ip_vs_conn_stats(cp, svc);
338 * IPVS main scheduling function
339 * It selects a server according to the virtual service, and
340 * creates a connection entry.
341 * Protocols supported: TCP, UDP
344 ip_vs_schedule(struct ip_vs_service *svc, const struct sk_buff *skb)
346 struct ip_vs_conn *cp = NULL;
347 struct iphdr *iph = ip_hdr(skb);
348 struct ip_vs_dest *dest;
349 __be16 _ports[2], *pptr;
351 pptr = skb_header_pointer(skb, iph->ihl*4,
352 sizeof(_ports), _ports);
359 if (svc->flags & IP_VS_SVC_F_PERSISTENT)
360 return ip_vs_sched_persist(svc, skb, pptr);
363 * Non-persistent service
365 if (!svc->fwmark && pptr[1] != svc->port) {
367 IP_VS_ERR("Schedule: port zero only supported "
368 "in persistent services, "
369 "check your ipvs configuration\n");
373 dest = svc->scheduler->schedule(svc, skb);
375 IP_VS_DBG(1, "Schedule: no dest found.\n");
380 * Create a connection entry.
382 cp = ip_vs_conn_new(iph->protocol,
385 dest->addr, dest->port?dest->port:pptr[1],
391 IP_VS_DBG(6, "Schedule fwd:%c c:%u.%u.%u.%u:%u v:%u.%u.%u.%u:%u "
392 "d:%u.%u.%u.%u:%u conn->flags:%X conn->refcnt:%d\n",
394 NIPQUAD(cp->caddr), ntohs(cp->cport),
395 NIPQUAD(cp->vaddr), ntohs(cp->vport),
396 NIPQUAD(cp->daddr), ntohs(cp->dport),
397 cp->flags, atomic_read(&cp->refcnt));
399 ip_vs_conn_stats(cp, svc);
405 * Pass or drop the packet.
406 * Called by ip_vs_in, when the virtual service is available but
407 * no destination is available for a new connection.
409 int ip_vs_leave(struct ip_vs_service *svc, struct sk_buff *skb,
410 struct ip_vs_protocol *pp)
412 __be16 _ports[2], *pptr;
413 struct iphdr *iph = ip_hdr(skb);
415 pptr = skb_header_pointer(skb, iph->ihl*4,
416 sizeof(_ports), _ports);
418 ip_vs_service_put(svc);
422 /* if it is fwmark-based service, the cache_bypass sysctl is up
423 and the destination is RTN_UNICAST (and not local), then create
424 a cache_bypass connection entry */
425 if (sysctl_ip_vs_cache_bypass && svc->fwmark
426 && (inet_addr_type(iph->daddr) == RTN_UNICAST)) {
428 struct ip_vs_conn *cp;
430 ip_vs_service_put(svc);
432 /* create a new connection entry */
433 IP_VS_DBG(6, "ip_vs_leave: create a cache_bypass entry\n");
434 cp = ip_vs_conn_new(iph->protocol,
444 ip_vs_in_stats(cp, skb);
447 cs = ip_vs_set_state(cp, IP_VS_DIR_INPUT, skb, pp);
449 /* transmit the first SYN packet */
450 ret = cp->packet_xmit(skb, cp, pp);
451 /* do not touch skb anymore */
453 atomic_inc(&cp->in_pkts);
459 * When the virtual ftp service is presented, packets destined
460 * for other services on the VIP may get here (except services
461 * listed in the ipvs table), pass the packets, because it is
462 * not ipvs job to decide to drop the packets.
464 if ((svc->port == FTPPORT) && (pptr[1] != FTPPORT)) {
465 ip_vs_service_put(svc);
469 ip_vs_service_put(svc);
472 * Notify the client that the destination is unreachable, and
473 * release the socket buffer.
474 * Since it is in IP layer, the TCP socket is not actually
475 * created, the TCP RST packet cannot be sent, instead that
476 * ICMP_PORT_UNREACH is sent here no matter it is TCP/UDP. --WZ
478 icmp_send(skb, ICMP_DEST_UNREACH, ICMP_PORT_UNREACH, 0);
484 * It is hooked before NF_IP_PRI_NAT_SRC at the NF_IP_POST_ROUTING
485 * chain, and is used for VS/NAT.
486 * It detects packets for VS/NAT connections and sends the packets
487 * immediately. This can avoid that iptable_nat mangles the packets
490 static unsigned int ip_vs_post_routing(unsigned int hooknum,
492 const struct net_device *in,
493 const struct net_device *out,
494 int (*okfn)(struct sk_buff *))
496 if (!skb->ipvs_property)
498 /* The packet was sent from IPVS, exit this chain */
502 __sum16 ip_vs_checksum_complete(struct sk_buff *skb, int offset)
504 return csum_fold(skb_checksum(skb, offset, skb->len - offset, 0));
507 static inline int ip_vs_gather_frags(struct sk_buff *skb, u_int32_t user)
509 int err = ip_defrag(skb, user);
512 ip_send_check(ip_hdr(skb));
518 * Packet has been made sufficiently writable in caller
519 * - inout: 1=in->out, 0=out->in
521 void ip_vs_nat_icmp(struct sk_buff *skb, struct ip_vs_protocol *pp,
522 struct ip_vs_conn *cp, int inout)
524 struct iphdr *iph = ip_hdr(skb);
525 unsigned int icmp_offset = iph->ihl*4;
526 struct icmphdr *icmph = (struct icmphdr *)(skb_network_header(skb) +
528 struct iphdr *ciph = (struct iphdr *)(icmph + 1);
531 iph->saddr = cp->vaddr;
533 ciph->daddr = cp->vaddr;
536 iph->daddr = cp->daddr;
538 ciph->saddr = cp->daddr;
542 /* the TCP/UDP port */
543 if (IPPROTO_TCP == ciph->protocol || IPPROTO_UDP == ciph->protocol) {
544 __be16 *ports = (void *)ciph + ciph->ihl*4;
547 ports[1] = cp->vport;
549 ports[0] = cp->dport;
552 /* And finally the ICMP checksum */
554 icmph->checksum = ip_vs_checksum_complete(skb, icmp_offset);
555 skb->ip_summed = CHECKSUM_UNNECESSARY;
558 IP_VS_DBG_PKT(11, pp, skb, (void *)ciph - (void *)iph,
559 "Forwarding altered outgoing ICMP");
561 IP_VS_DBG_PKT(11, pp, skb, (void *)ciph - (void *)iph,
562 "Forwarding altered incoming ICMP");
566 * Handle ICMP messages in the inside-to-outside direction (outgoing).
567 * Find any that might be relevant, check against existing connections,
568 * forward to the right destination host if relevant.
569 * Currently handles error types - unreachable, quench, ttl exceeded.
570 * (Only used in VS/NAT)
572 static int ip_vs_out_icmp(struct sk_buff *skb, int *related)
575 struct icmphdr _icmph, *ic;
576 struct iphdr _ciph, *cih; /* The ip header contained within the ICMP */
577 struct ip_vs_conn *cp;
578 struct ip_vs_protocol *pp;
579 unsigned int offset, ihl, verdict;
583 /* reassemble IP fragments */
584 if (ip_hdr(skb)->frag_off & htons(IP_MF | IP_OFFSET)) {
585 if (ip_vs_gather_frags(skb, IP_DEFRAG_VS_OUT))
590 offset = ihl = iph->ihl * 4;
591 ic = skb_header_pointer(skb, offset, sizeof(_icmph), &_icmph);
595 IP_VS_DBG(12, "Outgoing ICMP (%d,%d) %u.%u.%u.%u->%u.%u.%u.%u\n",
596 ic->type, ntohs(icmp_id(ic)),
597 NIPQUAD(iph->saddr), NIPQUAD(iph->daddr));
600 * Work through seeing if this is for us.
601 * These checks are supposed to be in an order that means easy
602 * things are checked first to speed up processing.... however
603 * this means that some packets will manage to get a long way
604 * down this stack and then be rejected, but that's life.
606 if ((ic->type != ICMP_DEST_UNREACH) &&
607 (ic->type != ICMP_SOURCE_QUENCH) &&
608 (ic->type != ICMP_TIME_EXCEEDED)) {
613 /* Now find the contained IP header */
614 offset += sizeof(_icmph);
615 cih = skb_header_pointer(skb, offset, sizeof(_ciph), &_ciph);
617 return NF_ACCEPT; /* The packet looks wrong, ignore */
619 pp = ip_vs_proto_get(cih->protocol);
623 /* Is the embedded protocol header present? */
624 if (unlikely(cih->frag_off & htons(IP_OFFSET) &&
628 IP_VS_DBG_PKT(11, pp, skb, offset, "Checking outgoing ICMP for");
630 offset += cih->ihl * 4;
632 /* The embedded headers contain source and dest in reverse order */
633 cp = pp->conn_out_get(skb, pp, cih, offset, 1);
639 if (IP_VS_FWD_METHOD(cp) != 0) {
640 IP_VS_ERR("shouldn't reach here, because the box is on the "
641 "half connection in the tun/dr module.\n");
644 /* Ensure the checksum is correct */
645 if (!skb_csum_unnecessary(skb) && ip_vs_checksum_complete(skb, ihl)) {
646 /* Failed checksum! */
647 IP_VS_DBG(1, "Forward ICMP: failed checksum from %d.%d.%d.%d!\n",
648 NIPQUAD(iph->saddr));
652 if (IPPROTO_TCP == cih->protocol || IPPROTO_UDP == cih->protocol)
653 offset += 2 * sizeof(__u16);
654 if (!skb_make_writable(skb, offset))
657 ip_vs_nat_icmp(skb, pp, cp, 1);
659 /* do the statistics and put it back */
660 ip_vs_out_stats(cp, skb);
662 skb->ipvs_property = 1;
666 __ip_vs_conn_put(cp);
671 static inline int is_tcp_reset(const struct sk_buff *skb)
673 struct tcphdr _tcph, *th;
675 th = skb_header_pointer(skb, ip_hdrlen(skb), sizeof(_tcph), &_tcph);
682 * It is hooked at the NF_IP_FORWARD chain, used only for VS/NAT.
683 * Check if outgoing packet belongs to the established ip_vs_conn,
684 * rewrite addresses of the packet and send it on its way...
687 ip_vs_out(unsigned int hooknum, struct sk_buff *skb,
688 const struct net_device *in, const struct net_device *out,
689 int (*okfn)(struct sk_buff *))
692 struct ip_vs_protocol *pp;
693 struct ip_vs_conn *cp;
698 if (skb->ipvs_property)
702 if (unlikely(iph->protocol == IPPROTO_ICMP)) {
703 int related, verdict = ip_vs_out_icmp(skb, &related);
710 pp = ip_vs_proto_get(iph->protocol);
714 /* reassemble IP fragments */
715 if (unlikely(iph->frag_off & htons(IP_MF|IP_OFFSET) &&
717 if (ip_vs_gather_frags(skb, IP_DEFRAG_VS_OUT))
725 * Check if the packet belongs to an existing entry
727 cp = pp->conn_out_get(skb, pp, iph, ihl, 0);
730 if (sysctl_ip_vs_nat_icmp_send &&
731 (pp->protocol == IPPROTO_TCP ||
732 pp->protocol == IPPROTO_UDP)) {
733 __be16 _ports[2], *pptr;
735 pptr = skb_header_pointer(skb, ihl,
736 sizeof(_ports), _ports);
738 return NF_ACCEPT; /* Not for me */
739 if (ip_vs_lookup_real_service(iph->protocol,
740 iph->saddr, pptr[0])) {
742 * Notify the real server: there is no
743 * existing entry if it is not RST
744 * packet or not TCP packet.
746 if (iph->protocol != IPPROTO_TCP
747 || !is_tcp_reset(skb)) {
748 icmp_send(skb,ICMP_DEST_UNREACH,
749 ICMP_PORT_UNREACH, 0);
754 IP_VS_DBG_PKT(12, pp, skb, 0,
755 "packet continues traversal as normal");
759 IP_VS_DBG_PKT(11, pp, skb, 0, "Outgoing packet");
761 if (!skb_make_writable(skb, ihl))
764 /* mangle the packet */
765 if (pp->snat_handler && !pp->snat_handler(skb, pp, cp))
767 ip_hdr(skb)->saddr = cp->vaddr;
768 ip_send_check(ip_hdr(skb));
770 /* For policy routing, packets originating from this
771 * machine itself may be routed differently to packets
772 * passing through. We want this packet to be routed as
773 * if it came from this machine itself. So re-compute
774 * the routing information.
776 if (ip_route_me_harder(skb, RTN_LOCAL) != 0)
779 IP_VS_DBG_PKT(10, pp, skb, 0, "After SNAT");
781 ip_vs_out_stats(cp, skb);
782 ip_vs_set_state(cp, IP_VS_DIR_OUTPUT, skb, pp);
785 skb->ipvs_property = 1;
798 * Handle ICMP messages in the outside-to-inside direction (incoming).
799 * Find any that might be relevant, check against existing connections,
800 * forward to the right destination host if relevant.
801 * Currently handles error types - unreachable, quench, ttl exceeded.
804 ip_vs_in_icmp(struct sk_buff *skb, int *related, unsigned int hooknum)
807 struct icmphdr _icmph, *ic;
808 struct iphdr _ciph, *cih; /* The ip header contained within the ICMP */
809 struct ip_vs_conn *cp;
810 struct ip_vs_protocol *pp;
811 unsigned int offset, ihl, verdict;
815 /* reassemble IP fragments */
816 if (ip_hdr(skb)->frag_off & htons(IP_MF | IP_OFFSET)) {
817 if (ip_vs_gather_frags(skb, hooknum == NF_IP_LOCAL_IN ?
818 IP_DEFRAG_VS_IN : IP_DEFRAG_VS_FWD))
823 offset = ihl = iph->ihl * 4;
824 ic = skb_header_pointer(skb, offset, sizeof(_icmph), &_icmph);
828 IP_VS_DBG(12, "Incoming ICMP (%d,%d) %u.%u.%u.%u->%u.%u.%u.%u\n",
829 ic->type, ntohs(icmp_id(ic)),
830 NIPQUAD(iph->saddr), NIPQUAD(iph->daddr));
833 * Work through seeing if this is for us.
834 * These checks are supposed to be in an order that means easy
835 * things are checked first to speed up processing.... however
836 * this means that some packets will manage to get a long way
837 * down this stack and then be rejected, but that's life.
839 if ((ic->type != ICMP_DEST_UNREACH) &&
840 (ic->type != ICMP_SOURCE_QUENCH) &&
841 (ic->type != ICMP_TIME_EXCEEDED)) {
846 /* Now find the contained IP header */
847 offset += sizeof(_icmph);
848 cih = skb_header_pointer(skb, offset, sizeof(_ciph), &_ciph);
850 return NF_ACCEPT; /* The packet looks wrong, ignore */
852 pp = ip_vs_proto_get(cih->protocol);
856 /* Is the embedded protocol header present? */
857 if (unlikely(cih->frag_off & htons(IP_OFFSET) &&
861 IP_VS_DBG_PKT(11, pp, skb, offset, "Checking incoming ICMP for");
863 offset += cih->ihl * 4;
865 /* The embedded headers contain source and dest in reverse order */
866 cp = pp->conn_in_get(skb, pp, cih, offset, 1);
872 /* Ensure the checksum is correct */
873 if (!skb_csum_unnecessary(skb) && ip_vs_checksum_complete(skb, ihl)) {
874 /* Failed checksum! */
875 IP_VS_DBG(1, "Incoming ICMP: failed checksum from %d.%d.%d.%d!\n",
876 NIPQUAD(iph->saddr));
880 /* do the statistics and put it back */
881 ip_vs_in_stats(cp, skb);
882 if (IPPROTO_TCP == cih->protocol || IPPROTO_UDP == cih->protocol)
883 offset += 2 * sizeof(__u16);
884 verdict = ip_vs_icmp_xmit(skb, cp, pp, offset);
885 /* do not touch skb anymore */
888 __ip_vs_conn_put(cp);
894 * Check if it's for virtual services, look it up,
895 * and send it on its way...
898 ip_vs_in(unsigned int hooknum, struct sk_buff *skb,
899 const struct net_device *in, const struct net_device *out,
900 int (*okfn)(struct sk_buff *))
903 struct ip_vs_protocol *pp;
904 struct ip_vs_conn *cp;
909 * Big tappo: only PACKET_HOST (neither loopback nor mcasts)
910 * ... don't know why 1st test DOES NOT include 2nd (?)
912 if (unlikely(skb->pkt_type != PACKET_HOST
913 || skb->dev->flags & IFF_LOOPBACK || skb->sk)) {
914 IP_VS_DBG(12, "packet type=%d proto=%d daddr=%d.%d.%d.%d ignored\n",
916 ip_hdr(skb)->protocol,
917 NIPQUAD(ip_hdr(skb)->daddr));
922 if (unlikely(iph->protocol == IPPROTO_ICMP)) {
923 int related, verdict = ip_vs_in_icmp(skb, &related, hooknum);
930 /* Protocol supported? */
931 pp = ip_vs_proto_get(iph->protocol);
938 * Check if the packet belongs to an existing connection entry
940 cp = pp->conn_in_get(skb, pp, iph, ihl, 0);
945 if (!pp->conn_schedule(skb, pp, &v, &cp))
950 /* sorry, all this trouble for a no-hit :) */
951 IP_VS_DBG_PKT(12, pp, skb, 0,
952 "packet continues traversal as normal");
956 IP_VS_DBG_PKT(11, pp, skb, 0, "Incoming packet");
958 /* Check the server status */
959 if (cp->dest && !(cp->dest->flags & IP_VS_DEST_F_AVAILABLE)) {
960 /* the destination server is not available */
962 if (sysctl_ip_vs_expire_nodest_conn) {
963 /* try to expire the connection immediately */
964 ip_vs_conn_expire_now(cp);
966 /* don't restart its timer, and silently
968 __ip_vs_conn_put(cp);
972 ip_vs_in_stats(cp, skb);
973 restart = ip_vs_set_state(cp, IP_VS_DIR_INPUT, skb, pp);
975 ret = cp->packet_xmit(skb, cp, pp);
976 /* do not touch skb anymore */
978 IP_VS_DBG_RL("warning: packet_xmit is null");
982 /* Increase its packet counter and check if it is needed
985 * Sync connection if it is about to close to
986 * encorage the standby servers to update the connections timeout
988 atomic_inc(&cp->in_pkts);
989 if ((ip_vs_sync_state & IP_VS_STATE_MASTER) &&
990 (((cp->protocol != IPPROTO_TCP ||
991 cp->state == IP_VS_TCP_S_ESTABLISHED) &&
992 (atomic_read(&cp->in_pkts) % sysctl_ip_vs_sync_threshold[1]
993 == sysctl_ip_vs_sync_threshold[0])) ||
994 ((cp->protocol == IPPROTO_TCP) && (cp->old_state != cp->state) &&
995 ((cp->state == IP_VS_TCP_S_FIN_WAIT) ||
996 (cp->state == IP_VS_TCP_S_CLOSE)))))
998 cp->old_state = cp->state;
1006 * It is hooked at the NF_IP_FORWARD chain, in order to catch ICMP
1007 * related packets destined for 0.0.0.0/0.
1008 * When fwmark-based virtual service is used, such as transparent
1009 * cache cluster, TCP packets can be marked and routed to ip_vs_in,
1010 * but ICMP destined for 0.0.0.0/0 cannot not be easily marked and
1011 * sent to ip_vs_in_icmp. So, catch them at the NF_IP_FORWARD chain
1012 * and send them to ip_vs_in_icmp.
1015 ip_vs_forward_icmp(unsigned int hooknum, struct sk_buff *skb,
1016 const struct net_device *in, const struct net_device *out,
1017 int (*okfn)(struct sk_buff *))
1021 if (ip_hdr(skb)->protocol != IPPROTO_ICMP)
1024 return ip_vs_in_icmp(skb, &r, hooknum);
1028 /* After packet filtering, forward packet through VS/DR, VS/TUN,
1029 or VS/NAT(change destination), so that filtering rules can be
1031 static struct nf_hook_ops ip_vs_in_ops = {
1033 .owner = THIS_MODULE,
1035 .hooknum = NF_IP_LOCAL_IN,
1039 /* After packet filtering, change source only for VS/NAT */
1040 static struct nf_hook_ops ip_vs_out_ops = {
1042 .owner = THIS_MODULE,
1044 .hooknum = NF_IP_FORWARD,
1048 /* After packet filtering (but before ip_vs_out_icmp), catch icmp
1049 destined for 0.0.0.0/0, which is for incoming IPVS connections */
1050 static struct nf_hook_ops ip_vs_forward_icmp_ops = {
1051 .hook = ip_vs_forward_icmp,
1052 .owner = THIS_MODULE,
1054 .hooknum = NF_IP_FORWARD,
1058 /* Before the netfilter connection tracking, exit from POST_ROUTING */
1059 static struct nf_hook_ops ip_vs_post_routing_ops = {
1060 .hook = ip_vs_post_routing,
1061 .owner = THIS_MODULE,
1063 .hooknum = NF_IP_POST_ROUTING,
1064 .priority = NF_IP_PRI_NAT_SRC-1,
1069 * Initialize IP Virtual Server
1071 static int __init ip_vs_init(void)
1075 ret = ip_vs_control_init();
1077 IP_VS_ERR("can't setup control.\n");
1078 goto cleanup_nothing;
1081 ip_vs_protocol_init();
1083 ret = ip_vs_app_init();
1085 IP_VS_ERR("can't setup application helper.\n");
1086 goto cleanup_protocol;
1089 ret = ip_vs_conn_init();
1091 IP_VS_ERR("can't setup connection table.\n");
1095 ret = nf_register_hook(&ip_vs_in_ops);
1097 IP_VS_ERR("can't register in hook.\n");
1101 ret = nf_register_hook(&ip_vs_out_ops);
1103 IP_VS_ERR("can't register out hook.\n");
1106 ret = nf_register_hook(&ip_vs_post_routing_ops);
1108 IP_VS_ERR("can't register post_routing hook.\n");
1109 goto cleanup_outops;
1111 ret = nf_register_hook(&ip_vs_forward_icmp_ops);
1113 IP_VS_ERR("can't register forward_icmp hook.\n");
1114 goto cleanup_postroutingops;
1117 IP_VS_INFO("ipvs loaded.\n");
1120 cleanup_postroutingops:
1121 nf_unregister_hook(&ip_vs_post_routing_ops);
1123 nf_unregister_hook(&ip_vs_out_ops);
1125 nf_unregister_hook(&ip_vs_in_ops);
1127 ip_vs_conn_cleanup();
1129 ip_vs_app_cleanup();
1131 ip_vs_protocol_cleanup();
1132 ip_vs_control_cleanup();
1137 static void __exit ip_vs_cleanup(void)
1139 nf_unregister_hook(&ip_vs_forward_icmp_ops);
1140 nf_unregister_hook(&ip_vs_post_routing_ops);
1141 nf_unregister_hook(&ip_vs_out_ops);
1142 nf_unregister_hook(&ip_vs_in_ops);
1143 ip_vs_conn_cleanup();
1144 ip_vs_app_cleanup();
1145 ip_vs_protocol_cleanup();
1146 ip_vs_control_cleanup();
1147 IP_VS_INFO("ipvs unloaded.\n");
1150 module_init(ip_vs_init);
1151 module_exit(ip_vs_cleanup);
1152 MODULE_LICENSE("GPL");