blob: 46a8130d3f42ba2f2621fdca4ce33f5170c0056d [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
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
6 * cluster of servers.
7 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07008 * Authors: Wensong Zhang <wensong@linuxvirtualserver.org>
9 * Peter Kese <peter.kese@ijs.si>
10 * Julian Anastasov <ja@ssi.bg>
11 *
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.
16 *
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
19 * and others.
20 *
21 * Changes:
22 * Paul `Rusty' Russell properly handle non-linear skbs
Harald Welte6869c4d2005-08-09 19:24:19 -070023 * Harald Welte don't use nfcache
Linus Torvalds1da177e2005-04-16 15:20:36 -070024 *
25 */
26
Hannes Eder9aada7a2009-07-30 14:29:44 -070027#define KMSG_COMPONENT "IPVS"
28#define pr_fmt(fmt) KMSG_COMPONENT ": " fmt
29
Linus Torvalds1da177e2005-04-16 15:20:36 -070030#include <linux/module.h>
31#include <linux/kernel.h>
32#include <linux/ip.h>
33#include <linux/tcp.h>
Venkata Mohan Reddy2906f662010-02-18 12:31:05 +010034#include <linux/sctp.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070035#include <linux/icmp.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090036#include <linux/slab.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070037
38#include <net/ip.h>
39#include <net/tcp.h>
40#include <net/udp.h>
41#include <net/icmp.h> /* for icmp_send */
42#include <net/route.h>
Stephen Rothwell2c70b512010-08-29 17:04:53 +000043#include <net/ip6_checksum.h>
Hans Schillstrom61b1ab42011-01-03 14:44:42 +010044#include <net/netns/generic.h> /* net_generic() */
Linus Torvalds1da177e2005-04-16 15:20:36 -070045
46#include <linux/netfilter.h>
47#include <linux/netfilter_ipv4.h>
48
Julius Volz2a3b7912008-09-02 15:55:47 +020049#ifdef CONFIG_IP_VS_IPV6
50#include <net/ipv6.h>
51#include <linux/netfilter_ipv6.h>
Julian Anastasov489fded2010-10-17 16:27:31 +030052#include <net/ip6_route.h>
Julius Volz2a3b7912008-09-02 15:55:47 +020053#endif
54
Linus Torvalds1da177e2005-04-16 15:20:36 -070055#include <net/ip_vs.h>
56
57
58EXPORT_SYMBOL(register_ip_vs_scheduler);
59EXPORT_SYMBOL(unregister_ip_vs_scheduler);
Linus Torvalds1da177e2005-04-16 15:20:36 -070060EXPORT_SYMBOL(ip_vs_proto_name);
61EXPORT_SYMBOL(ip_vs_conn_new);
62EXPORT_SYMBOL(ip_vs_conn_in_get);
63EXPORT_SYMBOL(ip_vs_conn_out_get);
64#ifdef CONFIG_IP_VS_PROTO_TCP
65EXPORT_SYMBOL(ip_vs_tcp_conn_listen);
66#endif
67EXPORT_SYMBOL(ip_vs_conn_put);
68#ifdef CONFIG_IP_VS_DEBUG
69EXPORT_SYMBOL(ip_vs_get_debug_level);
70#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -070071
Hans Schillstrom61b1ab42011-01-03 14:44:42 +010072int ip_vs_net_id __read_mostly;
73#ifdef IP_VS_GENERIC_NETNS
74EXPORT_SYMBOL(ip_vs_net_id);
75#endif
76/* netns cnt used for uniqueness */
77static atomic_t ipvs_netns_cnt = ATOMIC_INIT(0);
Linus Torvalds1da177e2005-04-16 15:20:36 -070078
79/* ID used in ICMP lookups */
80#define icmp_id(icmph) (((icmph)->un).echo.id)
Julius Volz2a3b7912008-09-02 15:55:47 +020081#define icmpv6_id(icmph) (icmph->icmp6_dataun.u_echo.identifier)
Linus Torvalds1da177e2005-04-16 15:20:36 -070082
83const char *ip_vs_proto_name(unsigned proto)
84{
85 static char buf[20];
86
87 switch (proto) {
88 case IPPROTO_IP:
89 return "IP";
90 case IPPROTO_UDP:
91 return "UDP";
92 case IPPROTO_TCP:
93 return "TCP";
Venkata Mohan Reddy2906f662010-02-18 12:31:05 +010094 case IPPROTO_SCTP:
95 return "SCTP";
Linus Torvalds1da177e2005-04-16 15:20:36 -070096 case IPPROTO_ICMP:
97 return "ICMP";
Julius Volz2a3b7912008-09-02 15:55:47 +020098#ifdef CONFIG_IP_VS_IPV6
99 case IPPROTO_ICMPV6:
100 return "ICMPv6";
101#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700102 default:
103 sprintf(buf, "IP_%d", proto);
104 return buf;
105 }
106}
107
108void ip_vs_init_hash_table(struct list_head *table, int rows)
109{
110 while (--rows >= 0)
111 INIT_LIST_HEAD(&table[rows]);
112}
113
114static inline void
115ip_vs_in_stats(struct ip_vs_conn *cp, struct sk_buff *skb)
116{
117 struct ip_vs_dest *dest = cp->dest;
Hans Schillstromb17fc992011-01-03 14:44:56 +0100118 struct netns_ipvs *ipvs = net_ipvs(skb_net(skb));
119
Linus Torvalds1da177e2005-04-16 15:20:36 -0700120 if (dest && (dest->flags & IP_VS_DEST_F_AVAILABLE)) {
Hans Schillstromb17fc992011-01-03 14:44:56 +0100121 struct ip_vs_cpu_stats *s;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700122
Hans Schillstromb17fc992011-01-03 14:44:56 +0100123 s = this_cpu_ptr(dest->stats.cpustats);
124 s->ustats.inpkts++;
125 u64_stats_update_begin(&s->syncp);
126 s->ustats.inbytes += skb->len;
127 u64_stats_update_end(&s->syncp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700128
Hans Schillstromb17fc992011-01-03 14:44:56 +0100129 s = this_cpu_ptr(dest->svc->stats.cpustats);
130 s->ustats.inpkts++;
131 u64_stats_update_begin(&s->syncp);
132 s->ustats.inbytes += skb->len;
133 u64_stats_update_end(&s->syncp);
134
Julian Anastasov2a0751a2011-03-04 12:20:35 +0200135 s = this_cpu_ptr(ipvs->tot_stats.cpustats);
Hans Schillstromb17fc992011-01-03 14:44:56 +0100136 s->ustats.inpkts++;
137 u64_stats_update_begin(&s->syncp);
138 s->ustats.inbytes += skb->len;
139 u64_stats_update_end(&s->syncp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700140 }
141}
142
143
144static inline void
145ip_vs_out_stats(struct ip_vs_conn *cp, struct sk_buff *skb)
146{
147 struct ip_vs_dest *dest = cp->dest;
Hans Schillstromb17fc992011-01-03 14:44:56 +0100148 struct netns_ipvs *ipvs = net_ipvs(skb_net(skb));
149
Linus Torvalds1da177e2005-04-16 15:20:36 -0700150 if (dest && (dest->flags & IP_VS_DEST_F_AVAILABLE)) {
Hans Schillstromb17fc992011-01-03 14:44:56 +0100151 struct ip_vs_cpu_stats *s;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700152
Hans Schillstromb17fc992011-01-03 14:44:56 +0100153 s = this_cpu_ptr(dest->stats.cpustats);
154 s->ustats.outpkts++;
155 u64_stats_update_begin(&s->syncp);
156 s->ustats.outbytes += skb->len;
157 u64_stats_update_end(&s->syncp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700158
Hans Schillstromb17fc992011-01-03 14:44:56 +0100159 s = this_cpu_ptr(dest->svc->stats.cpustats);
160 s->ustats.outpkts++;
161 u64_stats_update_begin(&s->syncp);
162 s->ustats.outbytes += skb->len;
163 u64_stats_update_end(&s->syncp);
164
Julian Anastasov2a0751a2011-03-04 12:20:35 +0200165 s = this_cpu_ptr(ipvs->tot_stats.cpustats);
Hans Schillstromb17fc992011-01-03 14:44:56 +0100166 s->ustats.outpkts++;
167 u64_stats_update_begin(&s->syncp);
168 s->ustats.outbytes += skb->len;
169 u64_stats_update_end(&s->syncp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700170 }
171}
172
173
174static inline void
175ip_vs_conn_stats(struct ip_vs_conn *cp, struct ip_vs_service *svc)
176{
Hans Schillstromb17fc992011-01-03 14:44:56 +0100177 struct netns_ipvs *ipvs = net_ipvs(svc->net);
178 struct ip_vs_cpu_stats *s;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700179
Hans Schillstromb17fc992011-01-03 14:44:56 +0100180 s = this_cpu_ptr(cp->dest->stats.cpustats);
181 s->ustats.conns++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700182
Hans Schillstromb17fc992011-01-03 14:44:56 +0100183 s = this_cpu_ptr(svc->stats.cpustats);
184 s->ustats.conns++;
185
Julian Anastasov2a0751a2011-03-04 12:20:35 +0200186 s = this_cpu_ptr(ipvs->tot_stats.cpustats);
Hans Schillstromb17fc992011-01-03 14:44:56 +0100187 s->ustats.conns++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700188}
189
190
Simon Horman4a516f12011-09-16 14:11:49 +0900191static inline void
Linus Torvalds1da177e2005-04-16 15:20:36 -0700192ip_vs_set_state(struct ip_vs_conn *cp, int direction,
193 const struct sk_buff *skb,
Hans Schillstrom93304192011-01-03 14:44:51 +0100194 struct ip_vs_proto_data *pd)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700195{
Simon Horman4a516f12011-09-16 14:11:49 +0900196 if (likely(pd->pp->state_transition))
197 pd->pp->state_transition(cp, direction, skb, pd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700198}
199
Hans Schillstroma5959d52010-11-19 14:25:10 +0100200static inline int
Simon Horman85999282010-08-22 21:37:53 +0900201ip_vs_conn_fill_param_persist(const struct ip_vs_service *svc,
202 struct sk_buff *skb, int protocol,
203 const union nf_inet_addr *caddr, __be16 cport,
204 const union nf_inet_addr *vaddr, __be16 vport,
205 struct ip_vs_conn_param *p)
206{
Hans Schillstrom6e67e582011-01-03 14:44:57 +0100207 ip_vs_conn_fill_param(svc->net, svc->af, protocol, caddr, cport, vaddr,
208 vport, p);
Simon Horman85999282010-08-22 21:37:53 +0900209 p->pe = svc->pe;
210 if (p->pe && p->pe->fill_param)
Hans Schillstroma5959d52010-11-19 14:25:10 +0100211 return p->pe->fill_param(p, skb);
212
213 return 0;
Simon Horman85999282010-08-22 21:37:53 +0900214}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700215
Linus Torvalds1da177e2005-04-16 15:20:36 -0700216/*
217 * IPVS persistent scheduling function
218 * It creates a connection entry according to its template if exists,
219 * or selects a server and creates a connection entry plus a template.
220 * Locking: we are svc user (svc->refcnt), so we hold all dests too
221 * Protocols supported: TCP, UDP
222 */
223static struct ip_vs_conn *
224ip_vs_sched_persist(struct ip_vs_service *svc,
Simon Horman85999282010-08-22 21:37:53 +0900225 struct sk_buff *skb,
Hans Schillstroma5959d52010-11-19 14:25:10 +0100226 __be16 src_port, __be16 dst_port, int *ignored)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700227{
228 struct ip_vs_conn *cp = NULL;
Julius Volz28364a52008-09-02 15:55:43 +0200229 struct ip_vs_iphdr iph;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700230 struct ip_vs_dest *dest;
231 struct ip_vs_conn *ct;
Simon Horman5b57a982010-08-22 21:37:51 +0900232 __be16 dport = 0; /* destination port to forward */
Julian Anastasov35757922010-09-17 14:18:16 +0200233 unsigned int flags;
Simon Hormanf11017e2010-08-22 21:37:52 +0900234 struct ip_vs_conn_param param;
Julius Volz28364a52008-09-02 15:55:43 +0200235 union nf_inet_addr snet; /* source network of the client,
236 after masking */
Julius Volzcd17f9e2008-09-02 15:55:46 +0200237
238 ip_vs_fill_iphdr(svc->af, skb_network_header(skb), &iph);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700239
240 /* Mask saddr with the netmask to adjust template granularity */
Julius Volzcd17f9e2008-09-02 15:55:46 +0200241#ifdef CONFIG_IP_VS_IPV6
242 if (svc->af == AF_INET6)
243 ipv6_addr_prefix(&snet.in6, &iph.saddr.in6, svc->netmask);
244 else
245#endif
246 snet.ip = iph.saddr.ip & svc->netmask;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700247
Julius Volzcd17f9e2008-09-02 15:55:46 +0200248 IP_VS_DBG_BUF(6, "p-schedule: src %s:%u dest %s:%u "
249 "mnet %s\n",
Hans Schillstromce144f22010-11-19 14:25:08 +0100250 IP_VS_DBG_ADDR(svc->af, &iph.saddr), ntohs(src_port),
251 IP_VS_DBG_ADDR(svc->af, &iph.daddr), ntohs(dst_port),
Julius Volzcd17f9e2008-09-02 15:55:46 +0200252 IP_VS_DBG_ADDR(svc->af, &snet));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700253
254 /*
255 * As far as we know, FTP is a very complicated network protocol, and
256 * it uses control connection and data connections. For active FTP,
257 * FTP server initialize data connection to the client, its source port
258 * is often 20. For passive FTP, FTP server tells the clients the port
259 * that it passively listens to, and the client issues the data
260 * connection. In the tunneling or direct routing mode, the load
261 * balancer is on the client-to-server half of connection, the port
262 * number is unknown to the load balancer. So, a conn template like
263 * <caddr, 0, vaddr, 0, daddr, 0> is created for persistent FTP
264 * service, and a template like <caddr, 0, vaddr, vport, daddr, dport>
265 * is created for other persistent services.
266 */
Simon Horman5b57a982010-08-22 21:37:51 +0900267 {
Simon Hormanf11017e2010-08-22 21:37:52 +0900268 int protocol = iph.protocol;
269 const union nf_inet_addr *vaddr = &iph.daddr;
270 const union nf_inet_addr fwmark = { .ip = htonl(svc->fwmark) };
271 __be16 vport = 0;
272
Hans Schillstromce144f22010-11-19 14:25:08 +0100273 if (dst_port == svc->port) {
Simon Horman5b57a982010-08-22 21:37:51 +0900274 /* non-FTP template:
275 * <protocol, caddr, 0, vaddr, vport, daddr, dport>
276 * FTP template:
277 * <protocol, caddr, 0, vaddr, 0, daddr, 0>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700278 */
279 if (svc->port != FTPPORT)
Hans Schillstromce144f22010-11-19 14:25:08 +0100280 vport = dst_port;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700281 } else {
Simon Horman5b57a982010-08-22 21:37:51 +0900282 /* Note: persistent fwmark-based services and
283 * persistent port zero service are handled here.
284 * fwmark template:
285 * <IPPROTO_IP,caddr,0,fwmark,0,daddr,0>
286 * port zero template:
287 * <protocol,caddr,0,vaddr,0,daddr,0>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700288 */
Julius Volz28364a52008-09-02 15:55:43 +0200289 if (svc->fwmark) {
Simon Horman5b57a982010-08-22 21:37:51 +0900290 protocol = IPPROTO_IP;
291 vaddr = &fwmark;
292 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700293 }
Hans Schillstroma5959d52010-11-19 14:25:10 +0100294 /* return *ignored = -1 so NF_DROP can be used */
295 if (ip_vs_conn_fill_param_persist(svc, skb, protocol, &snet, 0,
296 vaddr, vport, &param) < 0) {
297 *ignored = -1;
298 return NULL;
299 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700300 }
301
Simon Horman5b57a982010-08-22 21:37:51 +0900302 /* Check if a template already exists */
Simon Hormanf11017e2010-08-22 21:37:52 +0900303 ct = ip_vs_ct_in_get(&param);
Simon Horman5b57a982010-08-22 21:37:51 +0900304 if (!ct || !ip_vs_check_template(ct)) {
Hans Schillstroma5959d52010-11-19 14:25:10 +0100305 /*
306 * No template found or the dest of the connection
Simon Horman5b57a982010-08-22 21:37:51 +0900307 * template is not available.
Hans Schillstroma5959d52010-11-19 14:25:10 +0100308 * return *ignored=0 i.e. ICMP and NF_DROP
Simon Horman5b57a982010-08-22 21:37:51 +0900309 */
310 dest = svc->scheduler->schedule(svc, skb);
311 if (!dest) {
312 IP_VS_DBG(1, "p-schedule: no dest found.\n");
Simon Horman85999282010-08-22 21:37:53 +0900313 kfree(param.pe_data);
Hans Schillstroma5959d52010-11-19 14:25:10 +0100314 *ignored = 0;
Simon Horman5b57a982010-08-22 21:37:51 +0900315 return NULL;
316 }
317
Hans Schillstromce144f22010-11-19 14:25:08 +0100318 if (dst_port == svc->port && svc->port != FTPPORT)
Simon Horman5b57a982010-08-22 21:37:51 +0900319 dport = dest->port;
320
Simon Horman85999282010-08-22 21:37:53 +0900321 /* Create a template
322 * This adds param.pe_data to the template,
323 * and thus param.pe_data will be destroyed
324 * when the template expires */
Simon Hormanf11017e2010-08-22 21:37:52 +0900325 ct = ip_vs_conn_new(&param, &dest->addr, dport,
Hans Schillstrom0e051e62010-11-19 14:25:07 +0100326 IP_VS_CONN_F_TEMPLATE, dest, skb->mark);
Simon Horman85999282010-08-22 21:37:53 +0900327 if (ct == NULL) {
328 kfree(param.pe_data);
Hans Schillstroma5959d52010-11-19 14:25:10 +0100329 *ignored = -1;
Simon Horman5b57a982010-08-22 21:37:51 +0900330 return NULL;
Simon Horman85999282010-08-22 21:37:53 +0900331 }
Simon Horman5b57a982010-08-22 21:37:51 +0900332
333 ct->timeout = svc->timeout;
Simon Horman85999282010-08-22 21:37:53 +0900334 } else {
Simon Horman5b57a982010-08-22 21:37:51 +0900335 /* set destination with the found template */
336 dest = ct->dest;
Simon Horman85999282010-08-22 21:37:53 +0900337 kfree(param.pe_data);
338 }
Simon Horman5b57a982010-08-22 21:37:51 +0900339
Hans Schillstromce144f22010-11-19 14:25:08 +0100340 dport = dst_port;
Simon Horman5b57a982010-08-22 21:37:51 +0900341 if (dport == svc->port && dest->port)
342 dport = dest->port;
343
Nick Chalk26ec0372010-06-22 08:07:01 +0200344 flags = (svc->flags & IP_VS_SVC_F_ONEPACKET
345 && iph.protocol == IPPROTO_UDP)?
346 IP_VS_CONN_F_ONE_PACKET : 0;
347
Linus Torvalds1da177e2005-04-16 15:20:36 -0700348 /*
349 * Create a new connection according to the template
350 */
Hans Schillstrom6e67e582011-01-03 14:44:57 +0100351 ip_vs_conn_fill_param(svc->net, svc->af, iph.protocol, &iph.saddr,
352 src_port, &iph.daddr, dst_port, &param);
Hans Schillstromce144f22010-11-19 14:25:08 +0100353
Hans Schillstrom0e051e62010-11-19 14:25:07 +0100354 cp = ip_vs_conn_new(&param, &dest->addr, dport, flags, dest, skb->mark);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700355 if (cp == NULL) {
356 ip_vs_conn_put(ct);
Hans Schillstroma5959d52010-11-19 14:25:10 +0100357 *ignored = -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700358 return NULL;
359 }
360
361 /*
362 * Add its control
363 */
364 ip_vs_control_add(cp, ct);
365 ip_vs_conn_put(ct);
366
367 ip_vs_conn_stats(cp, svc);
368 return cp;
369}
370
371
372/*
373 * IPVS main scheduling function
374 * It selects a server according to the virtual service, and
375 * creates a connection entry.
376 * Protocols supported: TCP, UDP
Hans Schillstroma5959d52010-11-19 14:25:10 +0100377 *
378 * Usage of *ignored
379 *
380 * 1 : protocol tried to schedule (eg. on SYN), found svc but the
381 * svc/scheduler decides that this packet should be accepted with
382 * NF_ACCEPT because it must not be scheduled.
383 *
384 * 0 : scheduler can not find destination, so try bypass or
385 * return ICMP and then NF_DROP (ip_vs_leave).
386 *
387 * -1 : scheduler tried to schedule but fatal error occurred, eg.
388 * ip_vs_conn_new failure (ENOMEM) or ip_vs_sip_fill_param
389 * failure such as missing Call-ID, ENOMEM on skb_linearize
390 * or pe_data. In this case we should return NF_DROP without
391 * any attempts to send ICMP with ip_vs_leave.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700392 */
393struct ip_vs_conn *
Julian Anastasov190ecd22010-10-17 16:24:37 +0300394ip_vs_schedule(struct ip_vs_service *svc, struct sk_buff *skb,
Hans Schillstrom93304192011-01-03 14:44:51 +0100395 struct ip_vs_proto_data *pd, int *ignored)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700396{
Hans Schillstrom93304192011-01-03 14:44:51 +0100397 struct ip_vs_protocol *pp = pd->pp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700398 struct ip_vs_conn *cp = NULL;
Julius Volz28364a52008-09-02 15:55:43 +0200399 struct ip_vs_iphdr iph;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700400 struct ip_vs_dest *dest;
Julian Anastasov35757922010-09-17 14:18:16 +0200401 __be16 _ports[2], *pptr;
402 unsigned int flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700403
Julian Anastasov190ecd22010-10-17 16:24:37 +0300404 *ignored = 1;
Julius Volz28364a52008-09-02 15:55:43 +0200405 ip_vs_fill_iphdr(svc->af, skb_network_header(skb), &iph);
406 pptr = skb_header_pointer(skb, iph.len, sizeof(_ports), _ports);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700407 if (pptr == NULL)
408 return NULL;
409
410 /*
Julian Anastasov190ecd22010-10-17 16:24:37 +0300411 * FTPDATA needs this check when using local real server.
412 * Never schedule Active FTPDATA connections from real server.
413 * For LVS-NAT they must be already created. For other methods
414 * with persistence the connection is created on SYN+ACK.
415 */
416 if (pptr[0] == FTPDATA) {
Julian Anastasov0d796412010-10-17 16:46:17 +0300417 IP_VS_DBG_PKT(12, svc->af, pp, skb, 0,
418 "Not scheduling FTPDATA");
Julian Anastasov190ecd22010-10-17 16:24:37 +0300419 return NULL;
420 }
421
422 /*
Hans Schillstroma5959d52010-11-19 14:25:10 +0100423 * Do not schedule replies from local real server.
Julian Anastasov190ecd22010-10-17 16:24:37 +0300424 */
425 if ((!skb->dev || skb->dev->flags & IFF_LOOPBACK) &&
Hans Schillstrom93304192011-01-03 14:44:51 +0100426 (cp = pp->conn_in_get(svc->af, skb, &iph, iph.len, 1))) {
Julian Anastasov0d796412010-10-17 16:46:17 +0300427 IP_VS_DBG_PKT(12, svc->af, pp, skb, 0,
Julian Anastasov190ecd22010-10-17 16:24:37 +0300428 "Not scheduling reply for existing connection");
429 __ip_vs_conn_put(cp);
430 return NULL;
431 }
432
433 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700434 * Persistent service
435 */
Hans Schillstroma5959d52010-11-19 14:25:10 +0100436 if (svc->flags & IP_VS_SVC_F_PERSISTENT)
437 return ip_vs_sched_persist(svc, skb, pptr[0], pptr[1], ignored);
438
439 *ignored = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700440
441 /*
442 * Non-persistent service
443 */
444 if (!svc->fwmark && pptr[1] != svc->port) {
445 if (!svc->port)
Hannes Eder1e3e2382009-08-02 11:05:41 +0000446 pr_err("Schedule: port zero only supported "
447 "in persistent services, "
448 "check your ipvs configuration\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700449 return NULL;
450 }
451
452 dest = svc->scheduler->schedule(svc, skb);
453 if (dest == NULL) {
454 IP_VS_DBG(1, "Schedule: no dest found.\n");
455 return NULL;
456 }
457
Nick Chalk26ec0372010-06-22 08:07:01 +0200458 flags = (svc->flags & IP_VS_SVC_F_ONEPACKET
459 && iph.protocol == IPPROTO_UDP)?
460 IP_VS_CONN_F_ONE_PACKET : 0;
461
Linus Torvalds1da177e2005-04-16 15:20:36 -0700462 /*
463 * Create a connection entry.
464 */
Simon Hormanf11017e2010-08-22 21:37:52 +0900465 {
466 struct ip_vs_conn_param p;
Hans Schillstrom6e67e582011-01-03 14:44:57 +0100467
468 ip_vs_conn_fill_param(svc->net, svc->af, iph.protocol,
469 &iph.saddr, pptr[0], &iph.daddr, pptr[1],
470 &p);
Simon Hormanf11017e2010-08-22 21:37:52 +0900471 cp = ip_vs_conn_new(&p, &dest->addr,
472 dest->port ? dest->port : pptr[1],
Hans Schillstrom0e051e62010-11-19 14:25:07 +0100473 flags, dest, skb->mark);
Hans Schillstroma5959d52010-11-19 14:25:10 +0100474 if (!cp) {
475 *ignored = -1;
Simon Hormanf11017e2010-08-22 21:37:52 +0900476 return NULL;
Hans Schillstroma5959d52010-11-19 14:25:10 +0100477 }
Simon Hormanf11017e2010-08-22 21:37:52 +0900478 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700479
Julius Volzcd17f9e2008-09-02 15:55:46 +0200480 IP_VS_DBG_BUF(6, "Schedule fwd:%c c:%s:%u v:%s:%u "
481 "d:%s:%u conn->flags:%X conn->refcnt:%d\n",
482 ip_vs_fwd_tag(cp),
483 IP_VS_DBG_ADDR(svc->af, &cp->caddr), ntohs(cp->cport),
484 IP_VS_DBG_ADDR(svc->af, &cp->vaddr), ntohs(cp->vport),
485 IP_VS_DBG_ADDR(svc->af, &cp->daddr), ntohs(cp->dport),
486 cp->flags, atomic_read(&cp->refcnt));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700487
488 ip_vs_conn_stats(cp, svc);
489 return cp;
490}
491
492
493/*
494 * Pass or drop the packet.
495 * Called by ip_vs_in, when the virtual service is available but
496 * no destination is available for a new connection.
497 */
498int ip_vs_leave(struct ip_vs_service *svc, struct sk_buff *skb,
Hans Schillstrom93304192011-01-03 14:44:51 +0100499 struct ip_vs_proto_data *pd)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700500{
Al Viro014d7302006-09-28 14:29:52 -0700501 __be16 _ports[2], *pptr;
Julius Volz28364a52008-09-02 15:55:43 +0200502 struct ip_vs_iphdr iph;
Simon Hormana7a86b82011-02-04 18:33:02 +0900503#ifdef CONFIG_SYSCTL
504 struct net *net;
505 struct netns_ipvs *ipvs;
Julius Volz2a3b7912008-09-02 15:55:47 +0200506 int unicast;
Simon Hormana7a86b82011-02-04 18:33:02 +0900507#endif
Hans Schillstrom93304192011-01-03 14:44:51 +0100508
Julius Volz2a3b7912008-09-02 15:55:47 +0200509 ip_vs_fill_iphdr(svc->af, skb_network_header(skb), &iph);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700510
Julius Volz28364a52008-09-02 15:55:43 +0200511 pptr = skb_header_pointer(skb, iph.len, sizeof(_ports), _ports);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700512 if (pptr == NULL) {
513 ip_vs_service_put(svc);
514 return NF_DROP;
515 }
Simon Hormana7a86b82011-02-04 18:33:02 +0900516
517#ifdef CONFIG_SYSCTL
Hans Schillstrom4a984802011-01-03 14:45:02 +0100518 net = skb_net(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700519
Julius Volz2a3b7912008-09-02 15:55:47 +0200520#ifdef CONFIG_IP_VS_IPV6
521 if (svc->af == AF_INET6)
522 unicast = ipv6_addr_type(&iph.daddr.in6) & IPV6_ADDR_UNICAST;
523 else
524#endif
Hans Schillstrom4a984802011-01-03 14:45:02 +0100525 unicast = (inet_addr_type(net, iph.daddr.ip) == RTN_UNICAST);
Julius Volz2a3b7912008-09-02 15:55:47 +0200526
Linus Torvalds1da177e2005-04-16 15:20:36 -0700527 /* if it is fwmark-based service, the cache_bypass sysctl is up
Julius Volz2a3b7912008-09-02 15:55:47 +0200528 and the destination is a non-local unicast, then create
Linus Torvalds1da177e2005-04-16 15:20:36 -0700529 a cache_bypass connection entry */
Hans Schillstrom4a984802011-01-03 14:45:02 +0100530 ipvs = net_ipvs(net);
Hans Schillstroma0840e22011-01-03 14:44:58 +0100531 if (ipvs->sysctl_cache_bypass && svc->fwmark && unicast) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700532 int ret, cs;
533 struct ip_vs_conn *cp;
Julian Anastasov35757922010-09-17 14:18:16 +0200534 unsigned int flags = (svc->flags & IP_VS_SVC_F_ONEPACKET &&
535 iph.protocol == IPPROTO_UDP)?
536 IP_VS_CONN_F_ONE_PACKET : 0;
Simon Hormandff630d2008-09-17 10:10:42 +1000537 union nf_inet_addr daddr = { .all = { 0, 0, 0, 0 } };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700538
539 ip_vs_service_put(svc);
540
541 /* create a new connection entry */
Hannes Eder1e3e2382009-08-02 11:05:41 +0000542 IP_VS_DBG(6, "%s(): create a cache_bypass entry\n", __func__);
Simon Hormanf11017e2010-08-22 21:37:52 +0900543 {
544 struct ip_vs_conn_param p;
Hans Schillstrom6e67e582011-01-03 14:44:57 +0100545 ip_vs_conn_fill_param(svc->net, svc->af, iph.protocol,
Simon Hormanf11017e2010-08-22 21:37:52 +0900546 &iph.saddr, pptr[0],
547 &iph.daddr, pptr[1], &p);
548 cp = ip_vs_conn_new(&p, &daddr, 0,
549 IP_VS_CONN_F_BYPASS | flags,
Hans Schillstrom0e051e62010-11-19 14:25:07 +0100550 NULL, skb->mark);
Simon Hormanf11017e2010-08-22 21:37:52 +0900551 if (!cp)
552 return NF_DROP;
553 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700554
555 /* statistics */
556 ip_vs_in_stats(cp, skb);
557
558 /* set state */
Simon Horman4a516f12011-09-16 14:11:49 +0900559 ip_vs_set_state(cp, IP_VS_DIR_INPUT, skb, pd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700560
561 /* transmit the first SYN packet */
Hans Schillstrom93304192011-01-03 14:44:51 +0100562 ret = cp->packet_xmit(skb, cp, pd->pp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700563 /* do not touch skb anymore */
564
565 atomic_inc(&cp->in_pkts);
566 ip_vs_conn_put(cp);
567 return ret;
568 }
Simon Hormana7a86b82011-02-04 18:33:02 +0900569#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700570
571 /*
572 * When the virtual ftp service is presented, packets destined
573 * for other services on the VIP may get here (except services
574 * listed in the ipvs table), pass the packets, because it is
575 * not ipvs job to decide to drop the packets.
576 */
577 if ((svc->port == FTPPORT) && (pptr[1] != FTPPORT)) {
578 ip_vs_service_put(svc);
579 return NF_ACCEPT;
580 }
581
582 ip_vs_service_put(svc);
583
584 /*
585 * Notify the client that the destination is unreachable, and
586 * release the socket buffer.
587 * Since it is in IP layer, the TCP socket is not actually
588 * created, the TCP RST packet cannot be sent, instead that
589 * ICMP_PORT_UNREACH is sent here no matter it is TCP/UDP. --WZ
590 */
Julius Volz2a3b7912008-09-02 15:55:47 +0200591#ifdef CONFIG_IP_VS_IPV6
Julian Anastasovcb591552010-10-17 16:40:51 +0300592 if (svc->af == AF_INET6) {
593 if (!skb->dev) {
594 struct net *net = dev_net(skb_dst(skb)->dev);
595
596 skb->dev = net->loopback_dev;
597 }
Alexey Dobriyan3ffe5332010-02-18 08:25:24 +0000598 icmpv6_send(skb, ICMPV6_DEST_UNREACH, ICMPV6_PORT_UNREACH, 0);
Julian Anastasovcb591552010-10-17 16:40:51 +0300599 } else
Julius Volz2a3b7912008-09-02 15:55:47 +0200600#endif
601 icmp_send(skb, ICMP_DEST_UNREACH, ICMP_PORT_UNREACH, 0);
602
Linus Torvalds1da177e2005-04-16 15:20:36 -0700603 return NF_DROP;
604}
605
Simon Horman84b3cee2011-02-04 18:33:01 +0900606#ifdef CONFIG_SYSCTL
607
608static int sysctl_snat_reroute(struct sk_buff *skb)
609{
610 struct netns_ipvs *ipvs = net_ipvs(skb_net(skb));
611 return ipvs->sysctl_snat_reroute;
612}
613
Simon Horman0cfa5582011-02-04 18:33:01 +0900614static int sysctl_nat_icmp_send(struct net *net)
615{
616 struct netns_ipvs *ipvs = net_ipvs(net);
617 return ipvs->sysctl_nat_icmp_send;
618}
619
Simon Horman71a8ab62011-02-04 18:33:01 +0900620static int sysctl_expire_nodest_conn(struct netns_ipvs *ipvs)
621{
622 return ipvs->sysctl_expire_nodest_conn;
623}
624
Simon Horman84b3cee2011-02-04 18:33:01 +0900625#else
626
627static int sysctl_snat_reroute(struct sk_buff *skb) { return 0; }
Simon Horman0cfa5582011-02-04 18:33:01 +0900628static int sysctl_nat_icmp_send(struct net *net) { return 0; }
Simon Horman71a8ab62011-02-04 18:33:01 +0900629static int sysctl_expire_nodest_conn(struct netns_ipvs *ipvs) { return 0; }
Simon Horman84b3cee2011-02-04 18:33:01 +0900630
631#endif
632
Al Virob1550f22006-11-14 21:37:50 -0800633__sum16 ip_vs_checksum_complete(struct sk_buff *skb, int offset)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700634{
Al Virod3bc23e2006-11-14 21:24:49 -0800635 return csum_fold(skb_checksum(skb, offset, skb->len - offset, 0));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700636}
637
Julian Anastasov1ca5bb52010-10-17 16:32:29 +0300638static inline enum ip_defrag_users ip_vs_defrag_user(unsigned int hooknum)
639{
640 if (NF_INET_LOCAL_IN == hooknum)
641 return IP_DEFRAG_VS_IN;
642 if (NF_INET_FORWARD == hooknum)
643 return IP_DEFRAG_VS_FWD;
644 return IP_DEFRAG_VS_OUT;
645}
646
Herbert Xu776c7292007-10-14 00:38:32 -0700647static inline int ip_vs_gather_frags(struct sk_buff *skb, u_int32_t user)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700648{
Herbert Xu776c7292007-10-14 00:38:32 -0700649 int err = ip_defrag(skb, user);
650
651 if (!err)
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -0700652 ip_send_check(ip_hdr(skb));
Herbert Xu776c7292007-10-14 00:38:32 -0700653
654 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700655}
656
Julius Volz2a3b7912008-09-02 15:55:47 +0200657#ifdef CONFIG_IP_VS_IPV6
658static inline int ip_vs_gather_frags_v6(struct sk_buff *skb, u_int32_t user)
659{
660 /* TODO IPv6: Find out what to do here for IPv6 */
661 return 0;
662}
663#endif
664
Simon Hormanba4fd7e2011-02-04 18:33:01 +0900665static int ip_vs_route_me_harder(int af, struct sk_buff *skb)
666{
Simon Hormanba4fd7e2011-02-04 18:33:01 +0900667#ifdef CONFIG_IP_VS_IPV6
668 if (af == AF_INET6) {
Simon Horman84b3cee2011-02-04 18:33:01 +0900669 if (sysctl_snat_reroute(skb) && ip6_route_me_harder(skb) != 0)
Simon Hormanba4fd7e2011-02-04 18:33:01 +0900670 return 1;
671 } else
672#endif
Simon Horman84b3cee2011-02-04 18:33:01 +0900673 if ((sysctl_snat_reroute(skb) ||
Simon Hormanba4fd7e2011-02-04 18:33:01 +0900674 skb_rtable(skb)->rt_flags & RTCF_LOCAL) &&
675 ip_route_me_harder(skb, RTN_LOCAL) != 0)
676 return 1;
677
678 return 0;
679}
680
Linus Torvalds1da177e2005-04-16 15:20:36 -0700681/*
682 * Packet has been made sufficiently writable in caller
683 * - inout: 1=in->out, 0=out->in
684 */
685void ip_vs_nat_icmp(struct sk_buff *skb, struct ip_vs_protocol *pp,
686 struct ip_vs_conn *cp, int inout)
687{
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -0700688 struct iphdr *iph = ip_hdr(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700689 unsigned int icmp_offset = iph->ihl*4;
Arnaldo Carvalho de Melod56f90a2007-04-10 20:50:43 -0700690 struct icmphdr *icmph = (struct icmphdr *)(skb_network_header(skb) +
691 icmp_offset);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700692 struct iphdr *ciph = (struct iphdr *)(icmph + 1);
693
694 if (inout) {
Julius Volze7ade462008-09-02 15:55:33 +0200695 iph->saddr = cp->vaddr.ip;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700696 ip_send_check(iph);
Julius Volze7ade462008-09-02 15:55:33 +0200697 ciph->daddr = cp->vaddr.ip;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700698 ip_send_check(ciph);
699 } else {
Julius Volze7ade462008-09-02 15:55:33 +0200700 iph->daddr = cp->daddr.ip;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700701 ip_send_check(iph);
Julius Volze7ade462008-09-02 15:55:33 +0200702 ciph->saddr = cp->daddr.ip;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700703 ip_send_check(ciph);
704 }
705
Venkata Mohan Reddy2906f662010-02-18 12:31:05 +0100706 /* the TCP/UDP/SCTP port */
707 if (IPPROTO_TCP == ciph->protocol || IPPROTO_UDP == ciph->protocol ||
708 IPPROTO_SCTP == ciph->protocol) {
Al Viro014d7302006-09-28 14:29:52 -0700709 __be16 *ports = (void *)ciph + ciph->ihl*4;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700710
711 if (inout)
712 ports[1] = cp->vport;
713 else
714 ports[0] = cp->dport;
715 }
716
717 /* And finally the ICMP checksum */
718 icmph->checksum = 0;
719 icmph->checksum = ip_vs_checksum_complete(skb, icmp_offset);
720 skb->ip_summed = CHECKSUM_UNNECESSARY;
721
722 if (inout)
Julian Anastasov0d796412010-10-17 16:46:17 +0300723 IP_VS_DBG_PKT(11, AF_INET, pp, skb, (void *)ciph - (void *)iph,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700724 "Forwarding altered outgoing ICMP");
725 else
Julian Anastasov0d796412010-10-17 16:46:17 +0300726 IP_VS_DBG_PKT(11, AF_INET, pp, skb, (void *)ciph - (void *)iph,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700727 "Forwarding altered incoming ICMP");
728}
729
Julius Volzb3cdd2a72008-09-02 15:55:45 +0200730#ifdef CONFIG_IP_VS_IPV6
731void ip_vs_nat_icmp_v6(struct sk_buff *skb, struct ip_vs_protocol *pp,
732 struct ip_vs_conn *cp, int inout)
733{
734 struct ipv6hdr *iph = ipv6_hdr(skb);
735 unsigned int icmp_offset = sizeof(struct ipv6hdr);
736 struct icmp6hdr *icmph = (struct icmp6hdr *)(skb_network_header(skb) +
737 icmp_offset);
738 struct ipv6hdr *ciph = (struct ipv6hdr *)(icmph + 1);
739
740 if (inout) {
741 iph->saddr = cp->vaddr.in6;
742 ciph->daddr = cp->vaddr.in6;
743 } else {
744 iph->daddr = cp->daddr.in6;
745 ciph->saddr = cp->daddr.in6;
746 }
747
Venkata Mohan Reddy2906f662010-02-18 12:31:05 +0100748 /* the TCP/UDP/SCTP port */
749 if (IPPROTO_TCP == ciph->nexthdr || IPPROTO_UDP == ciph->nexthdr ||
750 IPPROTO_SCTP == ciph->nexthdr) {
Julius Volzb3cdd2a72008-09-02 15:55:45 +0200751 __be16 *ports = (void *)ciph + sizeof(struct ipv6hdr);
752
753 if (inout)
754 ports[1] = cp->vport;
755 else
756 ports[0] = cp->dport;
757 }
758
759 /* And finally the ICMP checksum */
Simon Horman8870f842010-08-26 13:21:26 -0700760 icmph->icmp6_cksum = ~csum_ipv6_magic(&iph->saddr, &iph->daddr,
761 skb->len - icmp_offset,
762 IPPROTO_ICMPV6, 0);
763 skb->csum_start = skb_network_header(skb) - skb->head + icmp_offset;
764 skb->csum_offset = offsetof(struct icmp6hdr, icmp6_cksum);
765 skb->ip_summed = CHECKSUM_PARTIAL;
Julius Volzb3cdd2a72008-09-02 15:55:45 +0200766
767 if (inout)
Julian Anastasov0d796412010-10-17 16:46:17 +0300768 IP_VS_DBG_PKT(11, AF_INET6, pp, skb,
769 (void *)ciph - (void *)iph,
770 "Forwarding altered outgoing ICMPv6");
Julius Volzb3cdd2a72008-09-02 15:55:45 +0200771 else
Julian Anastasov0d796412010-10-17 16:46:17 +0300772 IP_VS_DBG_PKT(11, AF_INET6, pp, skb,
773 (void *)ciph - (void *)iph,
774 "Forwarding altered incoming ICMPv6");
Julius Volzb3cdd2a72008-09-02 15:55:45 +0200775}
776#endif
777
Malcolm Turnbull4856c842008-09-05 11:17:13 +1000778/* Handle relevant response ICMP messages - forward to the right
Julian Anastasov6cb90db2011-02-09 02:26:38 +0200779 * destination host.
Malcolm Turnbull4856c842008-09-05 11:17:13 +1000780 */
Simon Hormanf2428ed2008-09-05 11:17:14 +1000781static int handle_response_icmp(int af, struct sk_buff *skb,
782 union nf_inet_addr *snet,
783 __u8 protocol, struct ip_vs_conn *cp,
Malcolm Turnbull4856c842008-09-05 11:17:13 +1000784 struct ip_vs_protocol *pp,
785 unsigned int offset, unsigned int ihl)
786{
787 unsigned int verdict = NF_DROP;
788
789 if (IP_VS_FWD_METHOD(cp) != 0) {
Hannes Eder1e3e2382009-08-02 11:05:41 +0000790 pr_err("shouldn't reach here, because the box is on the "
791 "half connection in the tun/dr module.\n");
Malcolm Turnbull4856c842008-09-05 11:17:13 +1000792 }
793
794 /* Ensure the checksum is correct */
795 if (!skb_csum_unnecessary(skb) && ip_vs_checksum_complete(skb, ihl)) {
796 /* Failed checksum! */
Simon Hormanf2428ed2008-09-05 11:17:14 +1000797 IP_VS_DBG_BUF(1, "Forward ICMP: failed checksum from %s!\n",
798 IP_VS_DBG_ADDR(af, snet));
Malcolm Turnbull4856c842008-09-05 11:17:13 +1000799 goto out;
800 }
801
Venkata Mohan Reddy2906f662010-02-18 12:31:05 +0100802 if (IPPROTO_TCP == protocol || IPPROTO_UDP == protocol ||
803 IPPROTO_SCTP == protocol)
Malcolm Turnbull4856c842008-09-05 11:17:13 +1000804 offset += 2 * sizeof(__u16);
805 if (!skb_make_writable(skb, offset))
806 goto out;
807
Simon Hormanf2428ed2008-09-05 11:17:14 +1000808#ifdef CONFIG_IP_VS_IPV6
809 if (af == AF_INET6)
810 ip_vs_nat_icmp_v6(skb, pp, cp, 1);
811 else
812#endif
813 ip_vs_nat_icmp(skb, pp, cp, 1);
Malcolm Turnbull4856c842008-09-05 11:17:13 +1000814
Simon Hormanba4fd7e2011-02-04 18:33:01 +0900815 if (ip_vs_route_me_harder(af, skb))
816 goto out;
Julian Anastasovf5a41842010-10-17 16:35:46 +0300817
Malcolm Turnbull4856c842008-09-05 11:17:13 +1000818 /* do the statistics and put it back */
819 ip_vs_out_stats(cp, skb);
820
Julian Anastasovcf356d62010-10-17 16:21:07 +0300821 skb->ipvs_property = 1;
Julian Anastasovf4bc17c2010-09-21 17:35:41 +0200822 if (!(cp->flags & IP_VS_CONN_F_NFCT))
Julian Anastasovcf356d62010-10-17 16:21:07 +0300823 ip_vs_notrack(skb);
Julian Anastasovf4bc17c2010-09-21 17:35:41 +0200824 else
825 ip_vs_update_conntrack(skb, cp, 0);
Malcolm Turnbull4856c842008-09-05 11:17:13 +1000826 verdict = NF_ACCEPT;
827
828out:
829 __ip_vs_conn_put(cp);
830
831 return verdict;
832}
833
Linus Torvalds1da177e2005-04-16 15:20:36 -0700834/*
835 * Handle ICMP messages in the inside-to-outside direction (outgoing).
Malcolm Turnbull4856c842008-09-05 11:17:13 +1000836 * Find any that might be relevant, check against existing connections.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700837 * Currently handles error types - unreachable, quench, ttl exceeded.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700838 */
Julian Anastasov1ca5bb52010-10-17 16:32:29 +0300839static int ip_vs_out_icmp(struct sk_buff *skb, int *related,
840 unsigned int hooknum)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700841{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700842 struct iphdr *iph;
843 struct icmphdr _icmph, *ic;
844 struct iphdr _ciph, *cih; /* The ip header contained within the ICMP */
Julius Volz51ef3482008-09-02 15:55:40 +0200845 struct ip_vs_iphdr ciph;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700846 struct ip_vs_conn *cp;
847 struct ip_vs_protocol *pp;
Malcolm Turnbull4856c842008-09-05 11:17:13 +1000848 unsigned int offset, ihl;
Simon Hormanf2428ed2008-09-05 11:17:14 +1000849 union nf_inet_addr snet;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700850
851 *related = 1;
852
853 /* reassemble IP fragments */
Paul Gortmaker56f8a752011-06-21 20:33:34 -0700854 if (ip_is_fragment(ip_hdr(skb))) {
Julian Anastasov1ca5bb52010-10-17 16:32:29 +0300855 if (ip_vs_gather_frags(skb, ip_vs_defrag_user(hooknum)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700856 return NF_STOLEN;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700857 }
858
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -0700859 iph = ip_hdr(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700860 offset = ihl = iph->ihl * 4;
861 ic = skb_header_pointer(skb, offset, sizeof(_icmph), &_icmph);
862 if (ic == NULL)
863 return NF_DROP;
864
Harvey Harrison14d5e832008-10-31 00:54:29 -0700865 IP_VS_DBG(12, "Outgoing ICMP (%d,%d) %pI4->%pI4\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700866 ic->type, ntohs(icmp_id(ic)),
Harvey Harrison14d5e832008-10-31 00:54:29 -0700867 &iph->saddr, &iph->daddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700868
869 /*
870 * Work through seeing if this is for us.
871 * These checks are supposed to be in an order that means easy
872 * things are checked first to speed up processing.... however
873 * this means that some packets will manage to get a long way
874 * down this stack and then be rejected, but that's life.
875 */
876 if ((ic->type != ICMP_DEST_UNREACH) &&
877 (ic->type != ICMP_SOURCE_QUENCH) &&
878 (ic->type != ICMP_TIME_EXCEEDED)) {
879 *related = 0;
880 return NF_ACCEPT;
881 }
882
883 /* Now find the contained IP header */
884 offset += sizeof(_icmph);
885 cih = skb_header_pointer(skb, offset, sizeof(_ciph), &_ciph);
886 if (cih == NULL)
887 return NF_ACCEPT; /* The packet looks wrong, ignore */
888
889 pp = ip_vs_proto_get(cih->protocol);
890 if (!pp)
891 return NF_ACCEPT;
892
893 /* Is the embedded protocol header present? */
YOSHIFUJI Hideaki4412ec42007-03-07 14:19:10 +0900894 if (unlikely(cih->frag_off & htons(IP_OFFSET) &&
Linus Torvalds1da177e2005-04-16 15:20:36 -0700895 pp->dont_defrag))
896 return NF_ACCEPT;
897
Julian Anastasov0d796412010-10-17 16:46:17 +0300898 IP_VS_DBG_PKT(11, AF_INET, pp, skb, offset,
899 "Checking outgoing ICMP for");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700900
901 offset += cih->ihl * 4;
902
Julius Volz51ef3482008-09-02 15:55:40 +0200903 ip_vs_fill_iphdr(AF_INET, cih, &ciph);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700904 /* The embedded headers contain source and dest in reverse order */
Hans Schillstrom93304192011-01-03 14:44:51 +0100905 cp = pp->conn_out_get(AF_INET, skb, &ciph, offset, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700906 if (!cp)
907 return NF_ACCEPT;
908
Simon Hormanf2428ed2008-09-05 11:17:14 +1000909 snet.ip = iph->saddr;
910 return handle_response_icmp(AF_INET, skb, &snet, cih->protocol, cp,
911 pp, offset, ihl);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700912}
913
Julius Volz2a3b7912008-09-02 15:55:47 +0200914#ifdef CONFIG_IP_VS_IPV6
Julian Anastasov1ca5bb52010-10-17 16:32:29 +0300915static int ip_vs_out_icmp_v6(struct sk_buff *skb, int *related,
916 unsigned int hooknum)
Julius Volz2a3b7912008-09-02 15:55:47 +0200917{
918 struct ipv6hdr *iph;
919 struct icmp6hdr _icmph, *ic;
920 struct ipv6hdr _ciph, *cih; /* The ip header contained
921 within the ICMP */
922 struct ip_vs_iphdr ciph;
923 struct ip_vs_conn *cp;
924 struct ip_vs_protocol *pp;
Simon Hormanf2428ed2008-09-05 11:17:14 +1000925 unsigned int offset;
926 union nf_inet_addr snet;
Julius Volz2a3b7912008-09-02 15:55:47 +0200927
928 *related = 1;
929
930 /* reassemble IP fragments */
931 if (ipv6_hdr(skb)->nexthdr == IPPROTO_FRAGMENT) {
Julian Anastasov1ca5bb52010-10-17 16:32:29 +0300932 if (ip_vs_gather_frags_v6(skb, ip_vs_defrag_user(hooknum)))
Julius Volz2a3b7912008-09-02 15:55:47 +0200933 return NF_STOLEN;
934 }
935
936 iph = ipv6_hdr(skb);
937 offset = sizeof(struct ipv6hdr);
938 ic = skb_header_pointer(skb, offset, sizeof(_icmph), &_icmph);
939 if (ic == NULL)
940 return NF_DROP;
941
Harvey Harrison5b095d9892008-10-29 12:52:50 -0700942 IP_VS_DBG(12, "Outgoing ICMPv6 (%d,%d) %pI6->%pI6\n",
Julius Volz2a3b7912008-09-02 15:55:47 +0200943 ic->icmp6_type, ntohs(icmpv6_id(ic)),
Harvey Harrison38ff4fa2008-10-28 16:08:13 -0700944 &iph->saddr, &iph->daddr);
Julius Volz2a3b7912008-09-02 15:55:47 +0200945
946 /*
947 * Work through seeing if this is for us.
948 * These checks are supposed to be in an order that means easy
949 * things are checked first to speed up processing.... however
950 * this means that some packets will manage to get a long way
951 * down this stack and then be rejected, but that's life.
952 */
953 if ((ic->icmp6_type != ICMPV6_DEST_UNREACH) &&
954 (ic->icmp6_type != ICMPV6_PKT_TOOBIG) &&
955 (ic->icmp6_type != ICMPV6_TIME_EXCEED)) {
956 *related = 0;
957 return NF_ACCEPT;
958 }
959
960 /* Now find the contained IP header */
961 offset += sizeof(_icmph);
962 cih = skb_header_pointer(skb, offset, sizeof(_ciph), &_ciph);
963 if (cih == NULL)
964 return NF_ACCEPT; /* The packet looks wrong, ignore */
965
966 pp = ip_vs_proto_get(cih->nexthdr);
967 if (!pp)
968 return NF_ACCEPT;
969
970 /* Is the embedded protocol header present? */
971 /* TODO: we don't support fragmentation at the moment anyways */
972 if (unlikely(cih->nexthdr == IPPROTO_FRAGMENT && pp->dont_defrag))
973 return NF_ACCEPT;
974
Julian Anastasov0d796412010-10-17 16:46:17 +0300975 IP_VS_DBG_PKT(11, AF_INET6, pp, skb, offset,
976 "Checking outgoing ICMPv6 for");
Julius Volz2a3b7912008-09-02 15:55:47 +0200977
978 offset += sizeof(struct ipv6hdr);
979
980 ip_vs_fill_iphdr(AF_INET6, cih, &ciph);
981 /* The embedded headers contain source and dest in reverse order */
Hans Schillstrom93304192011-01-03 14:44:51 +0100982 cp = pp->conn_out_get(AF_INET6, skb, &ciph, offset, 1);
Julius Volz2a3b7912008-09-02 15:55:47 +0200983 if (!cp)
984 return NF_ACCEPT;
985
Simon Horman178f5e42008-09-08 09:34:46 +1000986 ipv6_addr_copy(&snet.in6, &iph->saddr);
Simon Hormanf2428ed2008-09-05 11:17:14 +1000987 return handle_response_icmp(AF_INET6, skb, &snet, cih->nexthdr, cp,
988 pp, offset, sizeof(struct ipv6hdr));
Julius Volz2a3b7912008-09-02 15:55:47 +0200989}
990#endif
991
Venkata Mohan Reddy2906f662010-02-18 12:31:05 +0100992/*
993 * Check if sctp chunc is ABORT chunk
994 */
995static inline int is_sctp_abort(const struct sk_buff *skb, int nh_len)
996{
997 sctp_chunkhdr_t *sch, schunk;
998 sch = skb_header_pointer(skb, nh_len + sizeof(sctp_sctphdr_t),
999 sizeof(schunk), &schunk);
1000 if (sch == NULL)
1001 return 0;
1002 if (sch->type == SCTP_CID_ABORT)
1003 return 1;
1004 return 0;
1005}
1006
Julius Volz2a3b7912008-09-02 15:55:47 +02001007static inline int is_tcp_reset(const struct sk_buff *skb, int nh_len)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001008{
1009 struct tcphdr _tcph, *th;
1010
Julius Volz2a3b7912008-09-02 15:55:47 +02001011 th = skb_header_pointer(skb, nh_len, sizeof(_tcph), &_tcph);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001012 if (th == NULL)
1013 return 0;
1014 return th->rst;
1015}
1016
Malcolm Turnbull4856c842008-09-05 11:17:13 +10001017/* Handle response packets: rewrite addresses and send away...
Malcolm Turnbull4856c842008-09-05 11:17:13 +10001018 */
1019static unsigned int
Hans Schillstrom93304192011-01-03 14:44:51 +01001020handle_response(int af, struct sk_buff *skb, struct ip_vs_proto_data *pd,
Malcolm Turnbull4856c842008-09-05 11:17:13 +10001021 struct ip_vs_conn *cp, int ihl)
1022{
Hans Schillstrom93304192011-01-03 14:44:51 +01001023 struct ip_vs_protocol *pp = pd->pp;
1024
Julian Anastasov0d796412010-10-17 16:46:17 +03001025 IP_VS_DBG_PKT(11, af, pp, skb, 0, "Outgoing packet");
Malcolm Turnbull4856c842008-09-05 11:17:13 +10001026
1027 if (!skb_make_writable(skb, ihl))
1028 goto drop;
1029
1030 /* mangle the packet */
1031 if (pp->snat_handler && !pp->snat_handler(skb, pp, cp))
1032 goto drop;
1033
1034#ifdef CONFIG_IP_VS_IPV6
1035 if (af == AF_INET6)
1036 ipv6_hdr(skb)->saddr = cp->vaddr.in6;
1037 else
1038#endif
1039 {
1040 ip_hdr(skb)->saddr = cp->vaddr.ip;
1041 ip_send_check(ip_hdr(skb));
1042 }
1043
Julian Anastasov8a803042010-09-21 17:38:57 +02001044 /*
1045 * nf_iterate does not expect change in the skb->dst->dev.
1046 * It looks like it is not fatal to enable this code for hooks
1047 * where our handlers are at the end of the chain list and
1048 * when all next handlers use skb->dst->dev and not outdev.
1049 * It will definitely route properly the inout NAT traffic
1050 * when multiple paths are used.
1051 */
1052
Malcolm Turnbull4856c842008-09-05 11:17:13 +10001053 /* For policy routing, packets originating from this
1054 * machine itself may be routed differently to packets
1055 * passing through. We want this packet to be routed as
1056 * if it came from this machine itself. So re-compute
1057 * the routing information.
1058 */
Simon Hormanba4fd7e2011-02-04 18:33:01 +09001059 if (ip_vs_route_me_harder(af, skb))
1060 goto drop;
Malcolm Turnbull4856c842008-09-05 11:17:13 +10001061
Julian Anastasov0d796412010-10-17 16:46:17 +03001062 IP_VS_DBG_PKT(10, af, pp, skb, 0, "After SNAT");
Malcolm Turnbull4856c842008-09-05 11:17:13 +10001063
1064 ip_vs_out_stats(cp, skb);
Hans Schillstrom93304192011-01-03 14:44:51 +01001065 ip_vs_set_state(cp, IP_VS_DIR_OUTPUT, skb, pd);
Julian Anastasovcf356d62010-10-17 16:21:07 +03001066 skb->ipvs_property = 1;
Julian Anastasovf4bc17c2010-09-21 17:35:41 +02001067 if (!(cp->flags & IP_VS_CONN_F_NFCT))
Julian Anastasovcf356d62010-10-17 16:21:07 +03001068 ip_vs_notrack(skb);
Julian Anastasovf4bc17c2010-09-21 17:35:41 +02001069 else
1070 ip_vs_update_conntrack(skb, cp, 0);
Malcolm Turnbull4856c842008-09-05 11:17:13 +10001071 ip_vs_conn_put(cp);
1072
Malcolm Turnbull4856c842008-09-05 11:17:13 +10001073 LeaveFunction(11);
1074 return NF_ACCEPT;
1075
1076drop:
1077 ip_vs_conn_put(cp);
1078 kfree_skb(skb);
Julian Anastasovf4bc17c2010-09-21 17:35:41 +02001079 LeaveFunction(11);
Malcolm Turnbull4856c842008-09-05 11:17:13 +10001080 return NF_STOLEN;
1081}
1082
Linus Torvalds1da177e2005-04-16 15:20:36 -07001083/*
Malcolm Turnbull4856c842008-09-05 11:17:13 +10001084 * Check if outgoing packet belongs to the established ip_vs_conn.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001085 */
1086static unsigned int
Julian Anastasovfc604762010-10-17 16:38:15 +03001087ip_vs_out(unsigned int hooknum, struct sk_buff *skb, int af)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001088{
Hans Schillstromfc723252011-01-03 14:44:43 +01001089 struct net *net = NULL;
Julius Volz51ef3482008-09-02 15:55:40 +02001090 struct ip_vs_iphdr iph;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001091 struct ip_vs_protocol *pp;
Hans Schillstrom93304192011-01-03 14:44:51 +01001092 struct ip_vs_proto_data *pd;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001093 struct ip_vs_conn *cp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001094
1095 EnterFunction(11);
1096
Julian Anastasovfc604762010-10-17 16:38:15 +03001097 /* Already marked as IPVS request or reply? */
Harald Welte6869c4d2005-08-09 19:24:19 -07001098 if (skb->ipvs_property)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001099 return NF_ACCEPT;
1100
Julian Anastasovfc604762010-10-17 16:38:15 +03001101 /* Bad... Do not break raw sockets */
1102 if (unlikely(skb->sk != NULL && hooknum == NF_INET_LOCAL_OUT &&
1103 af == AF_INET)) {
1104 struct sock *sk = skb->sk;
1105 struct inet_sock *inet = inet_sk(skb->sk);
1106
1107 if (inet && sk->sk_family == PF_INET && inet->nodefrag)
1108 return NF_ACCEPT;
1109 }
1110
1111 if (unlikely(!skb_dst(skb)))
1112 return NF_ACCEPT;
1113
Hans Schillstromfc723252011-01-03 14:44:43 +01001114 net = skb_net(skb);
Hans Schillstrom7a4f0762011-05-03 22:09:31 +02001115 if (!net_ipvs(net)->enable)
1116 return NF_ACCEPT;
1117
Julius Volz2a3b7912008-09-02 15:55:47 +02001118 ip_vs_fill_iphdr(af, skb_network_header(skb), &iph);
1119#ifdef CONFIG_IP_VS_IPV6
1120 if (af == AF_INET6) {
1121 if (unlikely(iph.protocol == IPPROTO_ICMPV6)) {
Julian Anastasov1ca5bb52010-10-17 16:32:29 +03001122 int related;
1123 int verdict = ip_vs_out_icmp_v6(skb, &related,
1124 hooknum);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001125
Julian Anastasovf5a41842010-10-17 16:35:46 +03001126 if (related)
Julius Volz2a3b7912008-09-02 15:55:47 +02001127 return verdict;
1128 ip_vs_fill_iphdr(af, skb_network_header(skb), &iph);
1129 }
1130 } else
1131#endif
1132 if (unlikely(iph.protocol == IPPROTO_ICMP)) {
Julian Anastasov1ca5bb52010-10-17 16:32:29 +03001133 int related;
1134 int verdict = ip_vs_out_icmp(skb, &related, hooknum);
Julius Volz2a3b7912008-09-02 15:55:47 +02001135
Julian Anastasovf5a41842010-10-17 16:35:46 +03001136 if (related)
Julius Volz2a3b7912008-09-02 15:55:47 +02001137 return verdict;
1138 ip_vs_fill_iphdr(af, skb_network_header(skb), &iph);
1139 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001140
Hans Schillstrom93304192011-01-03 14:44:51 +01001141 pd = ip_vs_proto_data_get(net, iph.protocol);
1142 if (unlikely(!pd))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001143 return NF_ACCEPT;
Hans Schillstrom93304192011-01-03 14:44:51 +01001144 pp = pd->pp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001145
1146 /* reassemble IP fragments */
Julius Volz2a3b7912008-09-02 15:55:47 +02001147#ifdef CONFIG_IP_VS_IPV6
1148 if (af == AF_INET6) {
Julian Anastasov1ca5bb52010-10-17 16:32:29 +03001149 if (ipv6_hdr(skb)->nexthdr == IPPROTO_FRAGMENT) {
1150 if (ip_vs_gather_frags_v6(skb,
1151 ip_vs_defrag_user(hooknum)))
1152 return NF_STOLEN;
Julius Volz2a3b7912008-09-02 15:55:47 +02001153 }
Julian Anastasov1ca5bb52010-10-17 16:32:29 +03001154
1155 ip_vs_fill_iphdr(af, skb_network_header(skb), &iph);
Julius Volz2a3b7912008-09-02 15:55:47 +02001156 } else
1157#endif
Paul Gortmaker56f8a752011-06-21 20:33:34 -07001158 if (unlikely(ip_is_fragment(ip_hdr(skb)) && !pp->dont_defrag)) {
Julian Anastasov1ca5bb52010-10-17 16:32:29 +03001159 if (ip_vs_gather_frags(skb,
1160 ip_vs_defrag_user(hooknum)))
Julius Volz2a3b7912008-09-02 15:55:47 +02001161 return NF_STOLEN;
1162
1163 ip_vs_fill_iphdr(af, skb_network_header(skb), &iph);
1164 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001165
1166 /*
1167 * Check if the packet belongs to an existing entry
1168 */
Hans Schillstrom93304192011-01-03 14:44:51 +01001169 cp = pp->conn_out_get(af, skb, &iph, iph.len, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001170
Julian Anastasovcb591552010-10-17 16:40:51 +03001171 if (likely(cp))
Hans Schillstrom93304192011-01-03 14:44:51 +01001172 return handle_response(af, skb, pd, cp, iph.len);
Simon Horman0cfa5582011-02-04 18:33:01 +09001173 if (sysctl_nat_icmp_send(net) &&
Julian Anastasovcb591552010-10-17 16:40:51 +03001174 (pp->protocol == IPPROTO_TCP ||
1175 pp->protocol == IPPROTO_UDP ||
1176 pp->protocol == IPPROTO_SCTP)) {
1177 __be16 _ports[2], *pptr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001178
Julian Anastasovcb591552010-10-17 16:40:51 +03001179 pptr = skb_header_pointer(skb, iph.len,
1180 sizeof(_ports), _ports);
1181 if (pptr == NULL)
1182 return NF_ACCEPT; /* Not for me */
Hans Schillstromfc723252011-01-03 14:44:43 +01001183 if (ip_vs_lookup_real_service(net, af, iph.protocol,
Julian Anastasovcb591552010-10-17 16:40:51 +03001184 &iph.saddr,
1185 pptr[0])) {
1186 /*
1187 * Notify the real server: there is no
1188 * existing entry if it is not RST
1189 * packet or not TCP packet.
1190 */
1191 if ((iph.protocol != IPPROTO_TCP &&
1192 iph.protocol != IPPROTO_SCTP)
1193 || ((iph.protocol == IPPROTO_TCP
1194 && !is_tcp_reset(skb, iph.len))
1195 || (iph.protocol == IPPROTO_SCTP
1196 && !is_sctp_abort(skb,
1197 iph.len)))) {
Julius Volz2a3b7912008-09-02 15:55:47 +02001198#ifdef CONFIG_IP_VS_IPV6
Julian Anastasovcb591552010-10-17 16:40:51 +03001199 if (af == AF_INET6) {
1200 struct net *net =
1201 dev_net(skb_dst(skb)->dev);
1202
1203 if (!skb->dev)
1204 skb->dev = net->loopback_dev;
1205 icmpv6_send(skb,
1206 ICMPV6_DEST_UNREACH,
1207 ICMPV6_PORT_UNREACH,
1208 0);
1209 } else
Julius Volz2a3b7912008-09-02 15:55:47 +02001210#endif
Julian Anastasovcb591552010-10-17 16:40:51 +03001211 icmp_send(skb,
1212 ICMP_DEST_UNREACH,
1213 ICMP_PORT_UNREACH, 0);
1214 return NF_DROP;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001215 }
1216 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001217 }
Julian Anastasov0d796412010-10-17 16:46:17 +03001218 IP_VS_DBG_PKT(12, af, pp, skb, 0,
Julian Anastasovcb591552010-10-17 16:40:51 +03001219 "ip_vs_out: packet continues traversal as normal");
1220 return NF_ACCEPT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001221}
1222
Julian Anastasovfc604762010-10-17 16:38:15 +03001223/*
Julian Anastasovcb591552010-10-17 16:40:51 +03001224 * It is hooked at the NF_INET_FORWARD and NF_INET_LOCAL_IN chain,
1225 * used only for VS/NAT.
Julian Anastasovfc604762010-10-17 16:38:15 +03001226 * Check if packet is reply for established ip_vs_conn.
1227 */
1228static unsigned int
1229ip_vs_reply4(unsigned int hooknum, struct sk_buff *skb,
1230 const struct net_device *in, const struct net_device *out,
1231 int (*okfn)(struct sk_buff *))
1232{
1233 return ip_vs_out(hooknum, skb, AF_INET);
1234}
1235
1236/*
1237 * It is hooked at the NF_INET_LOCAL_OUT chain, used only for VS/NAT.
1238 * Check if packet is reply for established ip_vs_conn.
1239 */
1240static unsigned int
1241ip_vs_local_reply4(unsigned int hooknum, struct sk_buff *skb,
1242 const struct net_device *in, const struct net_device *out,
1243 int (*okfn)(struct sk_buff *))
1244{
1245 unsigned int verdict;
1246
1247 /* Disable BH in LOCAL_OUT until all places are fixed */
1248 local_bh_disable();
1249 verdict = ip_vs_out(hooknum, skb, AF_INET);
1250 local_bh_enable();
1251 return verdict;
1252}
1253
1254#ifdef CONFIG_IP_VS_IPV6
1255
1256/*
Julian Anastasovcb591552010-10-17 16:40:51 +03001257 * It is hooked at the NF_INET_FORWARD and NF_INET_LOCAL_IN chain,
1258 * used only for VS/NAT.
Julian Anastasovfc604762010-10-17 16:38:15 +03001259 * Check if packet is reply for established ip_vs_conn.
1260 */
1261static unsigned int
1262ip_vs_reply6(unsigned int hooknum, struct sk_buff *skb,
1263 const struct net_device *in, const struct net_device *out,
1264 int (*okfn)(struct sk_buff *))
1265{
1266 return ip_vs_out(hooknum, skb, AF_INET6);
1267}
1268
1269/*
1270 * It is hooked at the NF_INET_LOCAL_OUT chain, used only for VS/NAT.
1271 * Check if packet is reply for established ip_vs_conn.
1272 */
1273static unsigned int
1274ip_vs_local_reply6(unsigned int hooknum, struct sk_buff *skb,
1275 const struct net_device *in, const struct net_device *out,
1276 int (*okfn)(struct sk_buff *))
1277{
1278 unsigned int verdict;
1279
1280 /* Disable BH in LOCAL_OUT until all places are fixed */
1281 local_bh_disable();
1282 verdict = ip_vs_out(hooknum, skb, AF_INET6);
1283 local_bh_enable();
1284 return verdict;
1285}
1286
1287#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001288
1289/*
1290 * Handle ICMP messages in the outside-to-inside direction (incoming).
1291 * Find any that might be relevant, check against existing connections,
1292 * forward to the right destination host if relevant.
1293 * Currently handles error types - unreachable, quench, ttl exceeded.
1294 */
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +09001295static int
Herbert Xu3db05fe2007-10-15 00:53:15 -07001296ip_vs_in_icmp(struct sk_buff *skb, int *related, unsigned int hooknum)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001297{
Hans Schillstrom93304192011-01-03 14:44:51 +01001298 struct net *net = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001299 struct iphdr *iph;
1300 struct icmphdr _icmph, *ic;
1301 struct iphdr _ciph, *cih; /* The ip header contained within the ICMP */
Julius Volz51ef3482008-09-02 15:55:40 +02001302 struct ip_vs_iphdr ciph;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001303 struct ip_vs_conn *cp;
1304 struct ip_vs_protocol *pp;
Hans Schillstrom93304192011-01-03 14:44:51 +01001305 struct ip_vs_proto_data *pd;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001306 unsigned int offset, ihl, verdict;
1307
1308 *related = 1;
1309
1310 /* reassemble IP fragments */
Paul Gortmaker56f8a752011-06-21 20:33:34 -07001311 if (ip_is_fragment(ip_hdr(skb))) {
Julian Anastasov1ca5bb52010-10-17 16:32:29 +03001312 if (ip_vs_gather_frags(skb, ip_vs_defrag_user(hooknum)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001313 return NF_STOLEN;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001314 }
1315
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -07001316 iph = ip_hdr(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001317 offset = ihl = iph->ihl * 4;
1318 ic = skb_header_pointer(skb, offset, sizeof(_icmph), &_icmph);
1319 if (ic == NULL)
1320 return NF_DROP;
1321
Harvey Harrison14d5e832008-10-31 00:54:29 -07001322 IP_VS_DBG(12, "Incoming ICMP (%d,%d) %pI4->%pI4\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001323 ic->type, ntohs(icmp_id(ic)),
Harvey Harrison14d5e832008-10-31 00:54:29 -07001324 &iph->saddr, &iph->daddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001325
1326 /*
1327 * Work through seeing if this is for us.
1328 * These checks are supposed to be in an order that means easy
1329 * things are checked first to speed up processing.... however
1330 * this means that some packets will manage to get a long way
1331 * down this stack and then be rejected, but that's life.
1332 */
1333 if ((ic->type != ICMP_DEST_UNREACH) &&
1334 (ic->type != ICMP_SOURCE_QUENCH) &&
1335 (ic->type != ICMP_TIME_EXCEEDED)) {
1336 *related = 0;
1337 return NF_ACCEPT;
1338 }
1339
1340 /* Now find the contained IP header */
1341 offset += sizeof(_icmph);
1342 cih = skb_header_pointer(skb, offset, sizeof(_ciph), &_ciph);
1343 if (cih == NULL)
1344 return NF_ACCEPT; /* The packet looks wrong, ignore */
1345
Hans Schillstrom93304192011-01-03 14:44:51 +01001346 net = skb_net(skb);
Hans Schillstrom7a4f0762011-05-03 22:09:31 +02001347
Hans Schillstrom93304192011-01-03 14:44:51 +01001348 pd = ip_vs_proto_data_get(net, cih->protocol);
1349 if (!pd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001350 return NF_ACCEPT;
Hans Schillstrom93304192011-01-03 14:44:51 +01001351 pp = pd->pp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001352
1353 /* Is the embedded protocol header present? */
YOSHIFUJI Hideaki4412ec42007-03-07 14:19:10 +09001354 if (unlikely(cih->frag_off & htons(IP_OFFSET) &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07001355 pp->dont_defrag))
1356 return NF_ACCEPT;
1357
Julian Anastasov0d796412010-10-17 16:46:17 +03001358 IP_VS_DBG_PKT(11, AF_INET, pp, skb, offset,
1359 "Checking incoming ICMP for");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001360
1361 offset += cih->ihl * 4;
1362
Julius Volz51ef3482008-09-02 15:55:40 +02001363 ip_vs_fill_iphdr(AF_INET, cih, &ciph);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001364 /* The embedded headers contain source and dest in reverse order */
Hans Schillstrom93304192011-01-03 14:44:51 +01001365 cp = pp->conn_in_get(AF_INET, skb, &ciph, offset, 1);
Julian Anastasov6cb90db2011-02-09 02:26:38 +02001366 if (!cp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001367 return NF_ACCEPT;
1368
1369 verdict = NF_DROP;
1370
1371 /* Ensure the checksum is correct */
Herbert Xu60476372007-04-09 11:59:39 -07001372 if (!skb_csum_unnecessary(skb) && ip_vs_checksum_complete(skb, ihl)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001373 /* Failed checksum! */
Harvey Harrison14d5e832008-10-31 00:54:29 -07001374 IP_VS_DBG(1, "Incoming ICMP: failed checksum from %pI4!\n",
1375 &iph->saddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001376 goto out;
1377 }
1378
1379 /* do the statistics and put it back */
1380 ip_vs_in_stats(cp, skb);
1381 if (IPPROTO_TCP == cih->protocol || IPPROTO_UDP == cih->protocol)
1382 offset += 2 * sizeof(__u16);
Julian Anastasovc92f5ca2011-05-10 12:46:05 +00001383 verdict = ip_vs_icmp_xmit(skb, cp, pp, offset, hooknum);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001384
Hans Schillstrom552ad652011-06-13 12:19:26 +02001385out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001386 __ip_vs_conn_put(cp);
1387
1388 return verdict;
1389}
1390
Julius Volz2a3b7912008-09-02 15:55:47 +02001391#ifdef CONFIG_IP_VS_IPV6
1392static int
1393ip_vs_in_icmp_v6(struct sk_buff *skb, int *related, unsigned int hooknum)
1394{
Hans Schillstrom93304192011-01-03 14:44:51 +01001395 struct net *net = NULL;
Julius Volz2a3b7912008-09-02 15:55:47 +02001396 struct ipv6hdr *iph;
1397 struct icmp6hdr _icmph, *ic;
1398 struct ipv6hdr _ciph, *cih; /* The ip header contained
1399 within the ICMP */
1400 struct ip_vs_iphdr ciph;
1401 struct ip_vs_conn *cp;
1402 struct ip_vs_protocol *pp;
Hans Schillstrom93304192011-01-03 14:44:51 +01001403 struct ip_vs_proto_data *pd;
Julius Volz2a3b7912008-09-02 15:55:47 +02001404 unsigned int offset, verdict;
1405
1406 *related = 1;
1407
1408 /* reassemble IP fragments */
1409 if (ipv6_hdr(skb)->nexthdr == IPPROTO_FRAGMENT) {
Julian Anastasov1ca5bb52010-10-17 16:32:29 +03001410 if (ip_vs_gather_frags_v6(skb, ip_vs_defrag_user(hooknum)))
Julius Volz2a3b7912008-09-02 15:55:47 +02001411 return NF_STOLEN;
1412 }
1413
1414 iph = ipv6_hdr(skb);
1415 offset = sizeof(struct ipv6hdr);
1416 ic = skb_header_pointer(skb, offset, sizeof(_icmph), &_icmph);
1417 if (ic == NULL)
1418 return NF_DROP;
1419
Harvey Harrison5b095d9892008-10-29 12:52:50 -07001420 IP_VS_DBG(12, "Incoming ICMPv6 (%d,%d) %pI6->%pI6\n",
Julius Volz2a3b7912008-09-02 15:55:47 +02001421 ic->icmp6_type, ntohs(icmpv6_id(ic)),
Harvey Harrison38ff4fa2008-10-28 16:08:13 -07001422 &iph->saddr, &iph->daddr);
Julius Volz2a3b7912008-09-02 15:55:47 +02001423
1424 /*
1425 * Work through seeing if this is for us.
1426 * These checks are supposed to be in an order that means easy
1427 * things are checked first to speed up processing.... however
1428 * this means that some packets will manage to get a long way
1429 * down this stack and then be rejected, but that's life.
1430 */
1431 if ((ic->icmp6_type != ICMPV6_DEST_UNREACH) &&
1432 (ic->icmp6_type != ICMPV6_PKT_TOOBIG) &&
1433 (ic->icmp6_type != ICMPV6_TIME_EXCEED)) {
1434 *related = 0;
1435 return NF_ACCEPT;
1436 }
1437
1438 /* Now find the contained IP header */
1439 offset += sizeof(_icmph);
1440 cih = skb_header_pointer(skb, offset, sizeof(_ciph), &_ciph);
1441 if (cih == NULL)
1442 return NF_ACCEPT; /* The packet looks wrong, ignore */
1443
Hans Schillstrom93304192011-01-03 14:44:51 +01001444 net = skb_net(skb);
1445 pd = ip_vs_proto_data_get(net, cih->nexthdr);
1446 if (!pd)
Julius Volz2a3b7912008-09-02 15:55:47 +02001447 return NF_ACCEPT;
Hans Schillstrom93304192011-01-03 14:44:51 +01001448 pp = pd->pp;
Julius Volz2a3b7912008-09-02 15:55:47 +02001449
1450 /* Is the embedded protocol header present? */
1451 /* TODO: we don't support fragmentation at the moment anyways */
1452 if (unlikely(cih->nexthdr == IPPROTO_FRAGMENT && pp->dont_defrag))
1453 return NF_ACCEPT;
1454
Julian Anastasov0d796412010-10-17 16:46:17 +03001455 IP_VS_DBG_PKT(11, AF_INET6, pp, skb, offset,
1456 "Checking incoming ICMPv6 for");
Julius Volz2a3b7912008-09-02 15:55:47 +02001457
1458 offset += sizeof(struct ipv6hdr);
1459
1460 ip_vs_fill_iphdr(AF_INET6, cih, &ciph);
1461 /* The embedded headers contain source and dest in reverse order */
Hans Schillstrom93304192011-01-03 14:44:51 +01001462 cp = pp->conn_in_get(AF_INET6, skb, &ciph, offset, 1);
Julian Anastasov6cb90db2011-02-09 02:26:38 +02001463 if (!cp)
Julius Volz2a3b7912008-09-02 15:55:47 +02001464 return NF_ACCEPT;
1465
Julius Volz2a3b7912008-09-02 15:55:47 +02001466 /* do the statistics and put it back */
1467 ip_vs_in_stats(cp, skb);
Venkata Mohan Reddy2906f662010-02-18 12:31:05 +01001468 if (IPPROTO_TCP == cih->nexthdr || IPPROTO_UDP == cih->nexthdr ||
1469 IPPROTO_SCTP == cih->nexthdr)
Julius Volz2a3b7912008-09-02 15:55:47 +02001470 offset += 2 * sizeof(__u16);
Julian Anastasovc92f5ca2011-05-10 12:46:05 +00001471 verdict = ip_vs_icmp_xmit_v6(skb, cp, pp, offset, hooknum);
Julius Volz2a3b7912008-09-02 15:55:47 +02001472
1473 __ip_vs_conn_put(cp);
1474
1475 return verdict;
1476}
1477#endif
1478
1479
Linus Torvalds1da177e2005-04-16 15:20:36 -07001480/*
1481 * Check if it's for virtual services, look it up,
1482 * and send it on its way...
1483 */
1484static unsigned int
Julian Anastasovcb591552010-10-17 16:40:51 +03001485ip_vs_in(unsigned int hooknum, struct sk_buff *skb, int af)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001486{
Hans Schillstromf1313152011-01-03 14:44:55 +01001487 struct net *net;
Julius Volz51ef3482008-09-02 15:55:40 +02001488 struct ip_vs_iphdr iph;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001489 struct ip_vs_protocol *pp;
Hans Schillstrom93304192011-01-03 14:44:51 +01001490 struct ip_vs_proto_data *pd;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001491 struct ip_vs_conn *cp;
Simon Horman4a516f12011-09-16 14:11:49 +09001492 int ret, pkts;
Hans Schillstromf1313152011-01-03 14:44:55 +01001493 struct netns_ipvs *ipvs;
Julius Volz51ef3482008-09-02 15:55:40 +02001494
Julian Anastasovfc604762010-10-17 16:38:15 +03001495 /* Already marked as IPVS request or reply? */
1496 if (skb->ipvs_property)
1497 return NF_ACCEPT;
1498
Julian Anastasovcb591552010-10-17 16:40:51 +03001499 /*
1500 * Big tappo:
1501 * - remote client: only PACKET_HOST
1502 * - route: used for struct net when skb->dev is unset
1503 */
1504 if (unlikely((skb->pkt_type != PACKET_HOST &&
1505 hooknum != NF_INET_LOCAL_OUT) ||
1506 !skb_dst(skb))) {
1507 ip_vs_fill_iphdr(af, skb_network_header(skb), &iph);
1508 IP_VS_DBG_BUF(12, "packet type=%d proto=%d daddr=%s"
1509 " ignored in hook %u\n",
1510 skb->pkt_type, iph.protocol,
1511 IP_VS_DBG_ADDR(af, &iph.daddr), hooknum);
1512 return NF_ACCEPT;
1513 }
Hans Schillstrom7a4f0762011-05-03 22:09:31 +02001514 /* ipvs enabled in this netns ? */
1515 net = skb_net(skb);
1516 if (!net_ipvs(net)->enable)
1517 return NF_ACCEPT;
1518
Julius Volz2a3b7912008-09-02 15:55:47 +02001519 ip_vs_fill_iphdr(af, skb_network_header(skb), &iph);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001520
Julian Anastasovcb591552010-10-17 16:40:51 +03001521 /* Bad... Do not break raw sockets */
1522 if (unlikely(skb->sk != NULL && hooknum == NF_INET_LOCAL_OUT &&
1523 af == AF_INET)) {
1524 struct sock *sk = skb->sk;
1525 struct inet_sock *inet = inet_sk(skb->sk);
1526
1527 if (inet && sk->sk_family == PF_INET && inet->nodefrag)
1528 return NF_ACCEPT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001529 }
1530
Julius Volz94b26552009-08-31 16:22:23 +02001531#ifdef CONFIG_IP_VS_IPV6
1532 if (af == AF_INET6) {
1533 if (unlikely(iph.protocol == IPPROTO_ICMPV6)) {
Julian Anastasov1ca5bb52010-10-17 16:32:29 +03001534 int related;
1535 int verdict = ip_vs_in_icmp_v6(skb, &related, hooknum);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001536
Julius Volz94b26552009-08-31 16:22:23 +02001537 if (related)
1538 return verdict;
1539 ip_vs_fill_iphdr(af, skb_network_header(skb), &iph);
1540 }
1541 } else
1542#endif
1543 if (unlikely(iph.protocol == IPPROTO_ICMP)) {
Julian Anastasov1ca5bb52010-10-17 16:32:29 +03001544 int related;
1545 int verdict = ip_vs_in_icmp(skb, &related, hooknum);
Julius Volz94b26552009-08-31 16:22:23 +02001546
1547 if (related)
1548 return verdict;
1549 ip_vs_fill_iphdr(af, skb_network_header(skb), &iph);
1550 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001551
1552 /* Protocol supported? */
Hans Schillstrom93304192011-01-03 14:44:51 +01001553 pd = ip_vs_proto_data_get(net, iph.protocol);
1554 if (unlikely(!pd))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001555 return NF_ACCEPT;
Hans Schillstrom93304192011-01-03 14:44:51 +01001556 pp = pd->pp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001557 /*
1558 * Check if the packet belongs to an existing connection entry
1559 */
Hans Schillstrom93304192011-01-03 14:44:51 +01001560 cp = pp->conn_in_get(af, skb, &iph, iph.len, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001561
1562 if (unlikely(!cp)) {
1563 int v;
1564
Hans Schillstrom93304192011-01-03 14:44:51 +01001565 if (!pp->conn_schedule(af, skb, pd, &v, &cp))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001566 return v;
1567 }
1568
1569 if (unlikely(!cp)) {
1570 /* sorry, all this trouble for a no-hit :) */
Julian Anastasov0d796412010-10-17 16:46:17 +03001571 IP_VS_DBG_PKT(12, af, pp, skb, 0,
Julian Anastasovcb591552010-10-17 16:40:51 +03001572 "ip_vs_in: packet continues traversal as normal");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001573 return NF_ACCEPT;
1574 }
1575
Julian Anastasov0d796412010-10-17 16:46:17 +03001576 IP_VS_DBG_PKT(11, af, pp, skb, 0, "Incoming packet");
Hans Schillstromf1313152011-01-03 14:44:55 +01001577 ipvs = net_ipvs(net);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001578 /* Check the server status */
1579 if (cp->dest && !(cp->dest->flags & IP_VS_DEST_F_AVAILABLE)) {
1580 /* the destination server is not available */
1581
Simon Horman71a8ab62011-02-04 18:33:01 +09001582 if (sysctl_expire_nodest_conn(ipvs)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001583 /* try to expire the connection immediately */
1584 ip_vs_conn_expire_now(cp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001585 }
Julian Anastasovdc8103f2005-11-08 09:40:05 -08001586 /* don't restart its timer, and silently
1587 drop the packet. */
1588 __ip_vs_conn_put(cp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001589 return NF_DROP;
1590 }
1591
1592 ip_vs_in_stats(cp, skb);
Simon Horman4a516f12011-09-16 14:11:49 +09001593 ip_vs_set_state(cp, IP_VS_DIR_INPUT, skb, pd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001594 if (cp->packet_xmit)
1595 ret = cp->packet_xmit(skb, cp, pp);
1596 /* do not touch skb anymore */
1597 else {
1598 IP_VS_DBG_RL("warning: packet_xmit is null");
1599 ret = NF_ACCEPT;
1600 }
1601
Rumen G. Bogdanovskiefac5272007-11-07 02:36:55 -08001602 /* Increase its packet counter and check if it is needed
1603 * to be synchronized
1604 *
1605 * Sync connection if it is about to close to
1606 * encorage the standby servers to update the connections timeout
Hans Schillstrom986a0752010-11-19 14:25:13 +01001607 *
1608 * For ONE_PKT let ip_vs_sync_conn() do the filter work.
Rumen G. Bogdanovskiefac5272007-11-07 02:36:55 -08001609 */
Hans Schillstromf1313152011-01-03 14:44:55 +01001610
Hans Schillstrom986a0752010-11-19 14:25:13 +01001611 if (cp->flags & IP_VS_CONN_F_ONE_PACKET)
Simon Horman59e03502011-02-04 18:33:01 +09001612 pkts = sysctl_sync_threshold(ipvs);
Hans Schillstrom986a0752010-11-19 14:25:13 +01001613 else
1614 pkts = atomic_add_return(1, &cp->in_pkts);
1615
Hans Schillstromf1313152011-01-03 14:44:55 +01001616 if ((ipvs->sync_state & IP_VS_STATE_MASTER) &&
Venkata Mohan Reddy2906f662010-02-18 12:31:05 +01001617 cp->protocol == IPPROTO_SCTP) {
1618 if ((cp->state == IP_VS_SCTP_S_ESTABLISHED &&
Simon Horman59e03502011-02-04 18:33:01 +09001619 (pkts % sysctl_sync_period(ipvs)
1620 == sysctl_sync_threshold(ipvs))) ||
Venkata Mohan Reddy2906f662010-02-18 12:31:05 +01001621 (cp->old_state != cp->state &&
1622 ((cp->state == IP_VS_SCTP_S_CLOSED) ||
1623 (cp->state == IP_VS_SCTP_S_SHUT_ACK_CLI) ||
1624 (cp->state == IP_VS_SCTP_S_SHUT_ACK_SER)))) {
Hans Schillstromf1313152011-01-03 14:44:55 +01001625 ip_vs_sync_conn(net, cp);
Venkata Mohan Reddy2906f662010-02-18 12:31:05 +01001626 goto out;
1627 }
1628 }
1629
Julian Anastasov8ed21632010-09-01 22:19:14 +00001630 /* Keep this block last: TCP and others with pp->num_states <= 1 */
Hans Schillstromf1313152011-01-03 14:44:55 +01001631 else if ((ipvs->sync_state & IP_VS_STATE_MASTER) &&
Rumen G. Bogdanovskiefac5272007-11-07 02:36:55 -08001632 (((cp->protocol != IPPROTO_TCP ||
1633 cp->state == IP_VS_TCP_S_ESTABLISHED) &&
Simon Horman59e03502011-02-04 18:33:01 +09001634 (pkts % sysctl_sync_period(ipvs)
1635 == sysctl_sync_threshold(ipvs))) ||
Rumen G. Bogdanovskiefac5272007-11-07 02:36:55 -08001636 ((cp->protocol == IPPROTO_TCP) && (cp->old_state != cp->state) &&
1637 ((cp->state == IP_VS_TCP_S_FIN_WAIT) ||
Xiaotian Feng9abfe312009-12-14 16:38:21 +01001638 (cp->state == IP_VS_TCP_S_CLOSE) ||
Rumen G. Bogdanovski9d3a0de2008-07-16 20:04:23 -07001639 (cp->state == IP_VS_TCP_S_CLOSE_WAIT) ||
1640 (cp->state == IP_VS_TCP_S_TIME_WAIT)))))
Hans Schillstromf1313152011-01-03 14:44:55 +01001641 ip_vs_sync_conn(net, cp);
Venkata Mohan Reddy2906f662010-02-18 12:31:05 +01001642out:
Rumen G. Bogdanovskiefac5272007-11-07 02:36:55 -08001643 cp->old_state = cp->state;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001644
1645 ip_vs_conn_put(cp);
1646 return ret;
1647}
1648
Julian Anastasovcb591552010-10-17 16:40:51 +03001649/*
1650 * AF_INET handler in NF_INET_LOCAL_IN chain
1651 * Schedule and forward packets from remote clients
1652 */
1653static unsigned int
1654ip_vs_remote_request4(unsigned int hooknum, struct sk_buff *skb,
1655 const struct net_device *in,
1656 const struct net_device *out,
1657 int (*okfn)(struct sk_buff *))
1658{
1659 return ip_vs_in(hooknum, skb, AF_INET);
1660}
1661
1662/*
1663 * AF_INET handler in NF_INET_LOCAL_OUT chain
1664 * Schedule and forward packets from local clients
1665 */
1666static unsigned int
1667ip_vs_local_request4(unsigned int hooknum, struct sk_buff *skb,
1668 const struct net_device *in, const struct net_device *out,
1669 int (*okfn)(struct sk_buff *))
1670{
1671 unsigned int verdict;
1672
1673 /* Disable BH in LOCAL_OUT until all places are fixed */
1674 local_bh_disable();
1675 verdict = ip_vs_in(hooknum, skb, AF_INET);
1676 local_bh_enable();
1677 return verdict;
1678}
1679
1680#ifdef CONFIG_IP_VS_IPV6
1681
1682/*
1683 * AF_INET6 handler in NF_INET_LOCAL_IN chain
1684 * Schedule and forward packets from remote clients
1685 */
1686static unsigned int
1687ip_vs_remote_request6(unsigned int hooknum, struct sk_buff *skb,
1688 const struct net_device *in,
1689 const struct net_device *out,
1690 int (*okfn)(struct sk_buff *))
1691{
1692 return ip_vs_in(hooknum, skb, AF_INET6);
1693}
1694
1695/*
1696 * AF_INET6 handler in NF_INET_LOCAL_OUT chain
1697 * Schedule and forward packets from local clients
1698 */
1699static unsigned int
1700ip_vs_local_request6(unsigned int hooknum, struct sk_buff *skb,
1701 const struct net_device *in, const struct net_device *out,
1702 int (*okfn)(struct sk_buff *))
1703{
1704 unsigned int verdict;
1705
1706 /* Disable BH in LOCAL_OUT until all places are fixed */
1707 local_bh_disable();
1708 verdict = ip_vs_in(hooknum, skb, AF_INET6);
1709 local_bh_enable();
1710 return verdict;
1711}
1712
1713#endif
1714
Linus Torvalds1da177e2005-04-16 15:20:36 -07001715
1716/*
Patrick McHardy6e23ae22007-11-19 18:53:30 -08001717 * It is hooked at the NF_INET_FORWARD chain, in order to catch ICMP
Linus Torvalds1da177e2005-04-16 15:20:36 -07001718 * related packets destined for 0.0.0.0/0.
1719 * When fwmark-based virtual service is used, such as transparent
1720 * cache cluster, TCP packets can be marked and routed to ip_vs_in,
1721 * but ICMP destined for 0.0.0.0/0 cannot not be easily marked and
Patrick McHardy6e23ae22007-11-19 18:53:30 -08001722 * sent to ip_vs_in_icmp. So, catch them at the NF_INET_FORWARD chain
Linus Torvalds1da177e2005-04-16 15:20:36 -07001723 * and send them to ip_vs_in_icmp.
1724 */
1725static unsigned int
Herbert Xu3db05fe2007-10-15 00:53:15 -07001726ip_vs_forward_icmp(unsigned int hooknum, struct sk_buff *skb,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001727 const struct net_device *in, const struct net_device *out,
1728 int (*okfn)(struct sk_buff *))
1729{
1730 int r;
Hans Schillstrom7a4f0762011-05-03 22:09:31 +02001731 struct net *net;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001732
Herbert Xu3db05fe2007-10-15 00:53:15 -07001733 if (ip_hdr(skb)->protocol != IPPROTO_ICMP)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001734 return NF_ACCEPT;
1735
Hans Schillstrom7a4f0762011-05-03 22:09:31 +02001736 /* ipvs enabled in this netns ? */
1737 net = skb_net(skb);
1738 if (!net_ipvs(net)->enable)
1739 return NF_ACCEPT;
1740
Herbert Xu3db05fe2007-10-15 00:53:15 -07001741 return ip_vs_in_icmp(skb, &r, hooknum);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001742}
1743
Julius Volz2a3b7912008-09-02 15:55:47 +02001744#ifdef CONFIG_IP_VS_IPV6
1745static unsigned int
1746ip_vs_forward_icmp_v6(unsigned int hooknum, struct sk_buff *skb,
1747 const struct net_device *in, const struct net_device *out,
1748 int (*okfn)(struct sk_buff *))
1749{
1750 int r;
Hans Schillstrom7a4f0762011-05-03 22:09:31 +02001751 struct net *net;
Julius Volz2a3b7912008-09-02 15:55:47 +02001752
1753 if (ipv6_hdr(skb)->nexthdr != IPPROTO_ICMPV6)
1754 return NF_ACCEPT;
1755
Hans Schillstrom7a4f0762011-05-03 22:09:31 +02001756 /* ipvs enabled in this netns ? */
1757 net = skb_net(skb);
1758 if (!net_ipvs(net)->enable)
1759 return NF_ACCEPT;
1760
Julius Volz2a3b7912008-09-02 15:55:47 +02001761 return ip_vs_in_icmp_v6(skb, &r, hooknum);
1762}
1763#endif
1764
Linus Torvalds1da177e2005-04-16 15:20:36 -07001765
Patrick McHardy19994142007-12-05 01:23:00 -08001766static struct nf_hook_ops ip_vs_ops[] __read_mostly = {
Julian Anastasovcb591552010-10-17 16:40:51 +03001767 /* After packet filtering, change source only for VS/NAT */
1768 {
1769 .hook = ip_vs_reply4,
1770 .owner = THIS_MODULE,
1771 .pf = PF_INET,
1772 .hooknum = NF_INET_LOCAL_IN,
Julian Anastasovafb523c2011-06-02 09:09:54 +09001773 .priority = NF_IP_PRI_NAT_SRC - 2,
Julian Anastasovcb591552010-10-17 16:40:51 +03001774 },
Patrick McHardy41c5b312007-12-05 01:22:43 -08001775 /* After packet filtering, forward packet through VS/DR, VS/TUN,
1776 * or VS/NAT(change destination), so that filtering rules can be
1777 * applied to IPVS. */
1778 {
Julian Anastasovcb591552010-10-17 16:40:51 +03001779 .hook = ip_vs_remote_request4,
Patrick McHardy41c5b312007-12-05 01:22:43 -08001780 .owner = THIS_MODULE,
1781 .pf = PF_INET,
Julian Anastasovcb591552010-10-17 16:40:51 +03001782 .hooknum = NF_INET_LOCAL_IN,
Julian Anastasovafb523c2011-06-02 09:09:54 +09001783 .priority = NF_IP_PRI_NAT_SRC - 1,
Patrick McHardy41c5b312007-12-05 01:22:43 -08001784 },
Julian Anastasovfc604762010-10-17 16:38:15 +03001785 /* Before ip_vs_in, change source only for VS/NAT */
Patrick McHardy41c5b312007-12-05 01:22:43 -08001786 {
Julian Anastasovfc604762010-10-17 16:38:15 +03001787 .hook = ip_vs_local_reply4,
Patrick McHardy41c5b312007-12-05 01:22:43 -08001788 .owner = THIS_MODULE,
1789 .pf = PF_INET,
Julian Anastasovfc604762010-10-17 16:38:15 +03001790 .hooknum = NF_INET_LOCAL_OUT,
Julian Anastasovafb523c2011-06-02 09:09:54 +09001791 .priority = NF_IP_PRI_NAT_DST + 1,
Patrick McHardy41c5b312007-12-05 01:22:43 -08001792 },
Julian Anastasovcb591552010-10-17 16:40:51 +03001793 /* After mangle, schedule and forward local requests */
1794 {
1795 .hook = ip_vs_local_request4,
1796 .owner = THIS_MODULE,
1797 .pf = PF_INET,
1798 .hooknum = NF_INET_LOCAL_OUT,
Julian Anastasovafb523c2011-06-02 09:09:54 +09001799 .priority = NF_IP_PRI_NAT_DST + 2,
Julian Anastasovcb591552010-10-17 16:40:51 +03001800 },
Patrick McHardy41c5b312007-12-05 01:22:43 -08001801 /* After packet filtering (but before ip_vs_out_icmp), catch icmp
1802 * destined for 0.0.0.0/0, which is for incoming IPVS connections */
1803 {
1804 .hook = ip_vs_forward_icmp,
1805 .owner = THIS_MODULE,
1806 .pf = PF_INET,
Julian Anastasovcb591552010-10-17 16:40:51 +03001807 .hooknum = NF_INET_FORWARD,
1808 .priority = 99,
Patrick McHardy41c5b312007-12-05 01:22:43 -08001809 },
Julian Anastasovfc604762010-10-17 16:38:15 +03001810 /* After packet filtering, change source only for VS/NAT */
1811 {
1812 .hook = ip_vs_reply4,
1813 .owner = THIS_MODULE,
1814 .pf = PF_INET,
1815 .hooknum = NF_INET_FORWARD,
1816 .priority = 100,
1817 },
Julius Volz473b23d2008-09-02 15:55:54 +02001818#ifdef CONFIG_IP_VS_IPV6
Julian Anastasovcb591552010-10-17 16:40:51 +03001819 /* After packet filtering, change source only for VS/NAT */
1820 {
1821 .hook = ip_vs_reply6,
1822 .owner = THIS_MODULE,
1823 .pf = PF_INET6,
1824 .hooknum = NF_INET_LOCAL_IN,
Julian Anastasovafb523c2011-06-02 09:09:54 +09001825 .priority = NF_IP6_PRI_NAT_SRC - 2,
Julian Anastasovcb591552010-10-17 16:40:51 +03001826 },
Julius Volz473b23d2008-09-02 15:55:54 +02001827 /* After packet filtering, forward packet through VS/DR, VS/TUN,
1828 * or VS/NAT(change destination), so that filtering rules can be
1829 * applied to IPVS. */
1830 {
Julian Anastasovcb591552010-10-17 16:40:51 +03001831 .hook = ip_vs_remote_request6,
Julius Volz473b23d2008-09-02 15:55:54 +02001832 .owner = THIS_MODULE,
1833 .pf = PF_INET6,
Julian Anastasovcb591552010-10-17 16:40:51 +03001834 .hooknum = NF_INET_LOCAL_IN,
Julian Anastasovafb523c2011-06-02 09:09:54 +09001835 .priority = NF_IP6_PRI_NAT_SRC - 1,
Julius Volz473b23d2008-09-02 15:55:54 +02001836 },
Julian Anastasovfc604762010-10-17 16:38:15 +03001837 /* Before ip_vs_in, change source only for VS/NAT */
Julius Volz473b23d2008-09-02 15:55:54 +02001838 {
Julian Anastasovfc604762010-10-17 16:38:15 +03001839 .hook = ip_vs_local_reply6,
Julius Volz473b23d2008-09-02 15:55:54 +02001840 .owner = THIS_MODULE,
Julian Anastasovfc604762010-10-17 16:38:15 +03001841 .pf = PF_INET,
1842 .hooknum = NF_INET_LOCAL_OUT,
Julian Anastasovafb523c2011-06-02 09:09:54 +09001843 .priority = NF_IP6_PRI_NAT_DST + 1,
Julius Volz473b23d2008-09-02 15:55:54 +02001844 },
Julian Anastasovcb591552010-10-17 16:40:51 +03001845 /* After mangle, schedule and forward local requests */
1846 {
1847 .hook = ip_vs_local_request6,
1848 .owner = THIS_MODULE,
1849 .pf = PF_INET6,
1850 .hooknum = NF_INET_LOCAL_OUT,
Julian Anastasovafb523c2011-06-02 09:09:54 +09001851 .priority = NF_IP6_PRI_NAT_DST + 2,
Julian Anastasovcb591552010-10-17 16:40:51 +03001852 },
Julius Volz473b23d2008-09-02 15:55:54 +02001853 /* After packet filtering (but before ip_vs_out_icmp), catch icmp
1854 * destined for 0.0.0.0/0, which is for incoming IPVS connections */
1855 {
1856 .hook = ip_vs_forward_icmp_v6,
1857 .owner = THIS_MODULE,
1858 .pf = PF_INET6,
Julian Anastasovcb591552010-10-17 16:40:51 +03001859 .hooknum = NF_INET_FORWARD,
1860 .priority = 99,
Julius Volz473b23d2008-09-02 15:55:54 +02001861 },
Julian Anastasovfc604762010-10-17 16:38:15 +03001862 /* After packet filtering, change source only for VS/NAT */
1863 {
1864 .hook = ip_vs_reply6,
1865 .owner = THIS_MODULE,
1866 .pf = PF_INET6,
1867 .hooknum = NF_INET_FORWARD,
1868 .priority = 100,
1869 },
Julius Volz473b23d2008-09-02 15:55:54 +02001870#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001871};
Hans Schillstrom61b1ab42011-01-03 14:44:42 +01001872/*
1873 * Initialize IP Virtual Server netns mem.
1874 */
1875static int __net_init __ip_vs_init(struct net *net)
1876{
1877 struct netns_ipvs *ipvs;
1878
Hans Schillstrom61b1ab42011-01-03 14:44:42 +01001879 ipvs = net_generic(net, ip_vs_net_id);
Joe Perches0a9ee812011-08-29 14:17:25 -07001880 if (ipvs == NULL)
Hans Schillstrom61b1ab42011-01-03 14:44:42 +01001881 return -ENOMEM;
Joe Perches0a9ee812011-08-29 14:17:25 -07001882
Hans Schillstrom7a4f0762011-05-03 22:09:31 +02001883 /* Hold the beast until a service is registerd */
1884 ipvs->enable = 0;
Hans Schillstromf6340ee2011-01-03 14:44:59 +01001885 ipvs->net = net;
Hans Schillstrom61b1ab42011-01-03 14:44:42 +01001886 /* Counters used for creating unique names */
1887 ipvs->gen = atomic_read(&ipvs_netns_cnt);
1888 atomic_inc(&ipvs_netns_cnt);
1889 net->ipvs = ipvs;
Hans Schillstrom7a4f0762011-05-03 22:09:31 +02001890
Hans Schillstrom503cf152011-05-01 18:50:16 +02001891 if (ip_vs_estimator_net_init(net) < 0)
Hans Schillstrom7a4f0762011-05-03 22:09:31 +02001892 goto estimator_fail;
1893
Hans Schillstrom503cf152011-05-01 18:50:16 +02001894 if (ip_vs_control_net_init(net) < 0)
Hans Schillstrom7a4f0762011-05-03 22:09:31 +02001895 goto control_fail;
1896
Hans Schillstrom503cf152011-05-01 18:50:16 +02001897 if (ip_vs_protocol_net_init(net) < 0)
Hans Schillstrom7a4f0762011-05-03 22:09:31 +02001898 goto protocol_fail;
1899
Hans Schillstrom503cf152011-05-01 18:50:16 +02001900 if (ip_vs_app_net_init(net) < 0)
Hans Schillstrom7a4f0762011-05-03 22:09:31 +02001901 goto app_fail;
1902
Hans Schillstrom503cf152011-05-01 18:50:16 +02001903 if (ip_vs_conn_net_init(net) < 0)
Hans Schillstrom7a4f0762011-05-03 22:09:31 +02001904 goto conn_fail;
1905
Hans Schillstrom503cf152011-05-01 18:50:16 +02001906 if (ip_vs_sync_net_init(net) < 0)
Hans Schillstrom7a4f0762011-05-03 22:09:31 +02001907 goto sync_fail;
1908
Simon Hormana870c8c2011-02-01 18:21:53 +01001909 printk(KERN_INFO "IPVS: Creating netns size=%zu id=%d\n",
Hans Schillstrom61b1ab42011-01-03 14:44:42 +01001910 sizeof(struct netns_ipvs), ipvs->gen);
1911 return 0;
Hans Schillstrom7a4f0762011-05-03 22:09:31 +02001912/*
1913 * Error handling
1914 */
1915
1916sync_fail:
Hans Schillstrom503cf152011-05-01 18:50:16 +02001917 ip_vs_conn_net_cleanup(net);
Hans Schillstrom7a4f0762011-05-03 22:09:31 +02001918conn_fail:
Hans Schillstrom503cf152011-05-01 18:50:16 +02001919 ip_vs_app_net_cleanup(net);
Hans Schillstrom7a4f0762011-05-03 22:09:31 +02001920app_fail:
Hans Schillstrom503cf152011-05-01 18:50:16 +02001921 ip_vs_protocol_net_cleanup(net);
Hans Schillstrom7a4f0762011-05-03 22:09:31 +02001922protocol_fail:
Hans Schillstrom503cf152011-05-01 18:50:16 +02001923 ip_vs_control_net_cleanup(net);
Hans Schillstrom7a4f0762011-05-03 22:09:31 +02001924control_fail:
Hans Schillstrom503cf152011-05-01 18:50:16 +02001925 ip_vs_estimator_net_cleanup(net);
Hans Schillstrom7a4f0762011-05-03 22:09:31 +02001926estimator_fail:
1927 return -ENOMEM;
Hans Schillstrom61b1ab42011-01-03 14:44:42 +01001928}
1929
1930static void __net_exit __ip_vs_cleanup(struct net *net)
1931{
Hans Schillstrom503cf152011-05-01 18:50:16 +02001932 ip_vs_service_net_cleanup(net); /* ip_vs_flush() with locks */
1933 ip_vs_conn_net_cleanup(net);
1934 ip_vs_app_net_cleanup(net);
1935 ip_vs_protocol_net_cleanup(net);
1936 ip_vs_control_net_cleanup(net);
1937 ip_vs_estimator_net_cleanup(net);
Hans Schillstrom1ae132b2011-05-03 22:09:30 +02001938 IP_VS_DBG(2, "ipvs netns %d released\n", net_ipvs(net)->gen);
Hans Schillstrom61b1ab42011-01-03 14:44:42 +01001939}
1940
Hans Schillstrom7a4f0762011-05-03 22:09:31 +02001941static void __net_exit __ip_vs_dev_cleanup(struct net *net)
1942{
1943 EnterFunction(2);
1944 net_ipvs(net)->enable = 0; /* Disable packet reception */
Hans Schillstrom8f4e0a12011-06-13 09:06:57 +02001945 smp_wmb();
Hans Schillstrom503cf152011-05-01 18:50:16 +02001946 ip_vs_sync_net_cleanup(net);
Hans Schillstrom7a4f0762011-05-03 22:09:31 +02001947 LeaveFunction(2);
1948}
1949
Hans Schillstrom61b1ab42011-01-03 14:44:42 +01001950static struct pernet_operations ipvs_core_ops = {
1951 .init = __ip_vs_init,
1952 .exit = __ip_vs_cleanup,
1953 .id = &ip_vs_net_id,
1954 .size = sizeof(struct netns_ipvs),
1955};
Linus Torvalds1da177e2005-04-16 15:20:36 -07001956
Hans Schillstrom7a4f0762011-05-03 22:09:31 +02001957static struct pernet_operations ipvs_core_dev_ops = {
1958 .exit = __ip_vs_dev_cleanup,
1959};
1960
Linus Torvalds1da177e2005-04-16 15:20:36 -07001961/*
1962 * Initialize IP Virtual Server
1963 */
1964static int __init ip_vs_init(void)
1965{
1966 int ret;
1967
1968 ret = ip_vs_control_init();
1969 if (ret < 0) {
Hannes Eder1e3e2382009-08-02 11:05:41 +00001970 pr_err("can't setup control.\n");
Hans Schillstrom6c8f7942011-06-13 12:19:27 +02001971 goto exit;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001972 }
1973
1974 ip_vs_protocol_init();
1975
Linus Torvalds1da177e2005-04-16 15:20:36 -07001976 ret = ip_vs_conn_init();
1977 if (ret < 0) {
Hannes Eder1e3e2382009-08-02 11:05:41 +00001978 pr_err("can't setup connection table.\n");
Hans Schillstrom6c8f7942011-06-13 12:19:27 +02001979 goto cleanup_protocol;
Hans Schillstrom61b1ab42011-01-03 14:44:42 +01001980 }
1981
Hans Schillstrom7a4f0762011-05-03 22:09:31 +02001982 ret = register_pernet_subsys(&ipvs_core_ops); /* Alloc ip_vs struct */
1983 if (ret < 0)
Hans Schillstrom6c8f7942011-06-13 12:19:27 +02001984 goto cleanup_conn;
Hans Schillstrom7a4f0762011-05-03 22:09:31 +02001985
1986 ret = register_pernet_device(&ipvs_core_dev_ops);
1987 if (ret < 0)
1988 goto cleanup_sub;
1989
Patrick McHardy41c5b312007-12-05 01:22:43 -08001990 ret = nf_register_hooks(ip_vs_ops, ARRAY_SIZE(ip_vs_ops));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001991 if (ret < 0) {
Hannes Eder1e3e2382009-08-02 11:05:41 +00001992 pr_err("can't register hooks.\n");
Hans Schillstrom7a4f0762011-05-03 22:09:31 +02001993 goto cleanup_dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001994 }
1995
Hannes Eder1e3e2382009-08-02 11:05:41 +00001996 pr_info("ipvs loaded.\n");
Hans Schillstrom7a4f0762011-05-03 22:09:31 +02001997
Linus Torvalds1da177e2005-04-16 15:20:36 -07001998 return ret;
1999
Hans Schillstrom7a4f0762011-05-03 22:09:31 +02002000cleanup_dev:
2001 unregister_pernet_device(&ipvs_core_dev_ops);
2002cleanup_sub:
2003 unregister_pernet_subsys(&ipvs_core_ops);
Hans Schillstrom552ad652011-06-13 12:19:26 +02002004cleanup_conn:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002005 ip_vs_conn_cleanup();
Hans Schillstrom552ad652011-06-13 12:19:26 +02002006cleanup_protocol:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002007 ip_vs_protocol_cleanup();
2008 ip_vs_control_cleanup();
Hans Schillstrom6c8f7942011-06-13 12:19:27 +02002009exit:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002010 return ret;
2011}
2012
2013static void __exit ip_vs_cleanup(void)
2014{
Patrick McHardy41c5b312007-12-05 01:22:43 -08002015 nf_unregister_hooks(ip_vs_ops, ARRAY_SIZE(ip_vs_ops));
Hans Schillstrom7a4f0762011-05-03 22:09:31 +02002016 unregister_pernet_device(&ipvs_core_dev_ops);
2017 unregister_pernet_subsys(&ipvs_core_ops); /* free ip_vs struct */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002018 ip_vs_conn_cleanup();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002019 ip_vs_protocol_cleanup();
2020 ip_vs_control_cleanup();
Hannes Eder1e3e2382009-08-02 11:05:41 +00002021 pr_info("ipvs unloaded.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002022}
2023
2024module_init(ip_vs_init);
2025module_exit(ip_vs_cleanup);
2026MODULE_LICENSE("GPL");