]> git.proxmox.com Git - mirror_ubuntu-hirsute-kernel.git/blame - net/netfilter/ipvs/ip_vs_core.c
Merge remote-tracking branches 'spi/topic/dw', 'spi/topic/dw-mid', 'spi/topic/fsl...
[mirror_ubuntu-hirsute-kernel.git] / net / netfilter / ipvs / ip_vs_core.c
CommitLineData
1da177e4
LT
1/*
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 *
1da177e4
LT
8 * 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
6869c4d8 23 * Harald Welte don't use nfcache
1da177e4
LT
24 *
25 */
26
9aada7ac
HE
27#define KMSG_COMPONENT "IPVS"
28#define pr_fmt(fmt) KMSG_COMPONENT ": " fmt
29
1da177e4
LT
30#include <linux/module.h>
31#include <linux/kernel.h>
32#include <linux/ip.h>
33#include <linux/tcp.h>
2906f66a 34#include <linux/sctp.h>
1da177e4 35#include <linux/icmp.h>
5a0e3ad6 36#include <linux/slab.h>
1da177e4
LT
37
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>
2c70b519 43#include <net/ip6_checksum.h>
61b1ab45 44#include <net/netns/generic.h> /* net_generic() */
1da177e4
LT
45
46#include <linux/netfilter.h>
47#include <linux/netfilter_ipv4.h>
48
2a3b791e
JV
49#ifdef CONFIG_IP_VS_IPV6
50#include <net/ipv6.h>
51#include <linux/netfilter_ipv6.h>
489fdeda 52#include <net/ip6_route.h>
2a3b791e
JV
53#endif
54
1da177e4
LT
55#include <net/ip_vs.h>
56
57
58EXPORT_SYMBOL(register_ip_vs_scheduler);
59EXPORT_SYMBOL(unregister_ip_vs_scheduler);
1da177e4
LT
60EXPORT_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
1da177e4 71
b962abdc 72static int ip_vs_net_id __read_mostly;
61b1ab45
HS
73/* netns cnt used for uniqueness */
74static atomic_t ipvs_netns_cnt = ATOMIC_INIT(0);
1da177e4
LT
75
76/* ID used in ICMP lookups */
77#define icmp_id(icmph) (((icmph)->un).echo.id)
2a3b791e 78#define icmpv6_id(icmph) (icmph->icmp6_dataun.u_echo.identifier)
1da177e4 79
95c96174 80const char *ip_vs_proto_name(unsigned int proto)
1da177e4
LT
81{
82 static char buf[20];
83
84 switch (proto) {
85 case IPPROTO_IP:
86 return "IP";
87 case IPPROTO_UDP:
88 return "UDP";
89 case IPPROTO_TCP:
90 return "TCP";
2906f66a
VMR
91 case IPPROTO_SCTP:
92 return "SCTP";
1da177e4
LT
93 case IPPROTO_ICMP:
94 return "ICMP";
2a3b791e
JV
95#ifdef CONFIG_IP_VS_IPV6
96 case IPPROTO_ICMPV6:
97 return "ICMPv6";
98#endif
1da177e4 99 default:
1404c3ab 100 sprintf(buf, "IP_%u", proto);
1da177e4
LT
101 return buf;
102 }
103}
104
105void ip_vs_init_hash_table(struct list_head *table, int rows)
106{
107 while (--rows >= 0)
108 INIT_LIST_HEAD(&table[rows]);
109}
110
111static inline void
112ip_vs_in_stats(struct ip_vs_conn *cp, struct sk_buff *skb)
113{
114 struct ip_vs_dest *dest = cp->dest;
7c08d78e 115 struct netns_ipvs *ipvs = cp->ipvs;
b17fc996 116
1da177e4 117 if (dest && (dest->flags & IP_VS_DEST_F_AVAILABLE)) {
b17fc996 118 struct ip_vs_cpu_stats *s;
bcbde4c0 119 struct ip_vs_service *svc;
b17fc996
HS
120
121 s = this_cpu_ptr(dest->stats.cpustats);
b17fc996 122 u64_stats_update_begin(&s->syncp);
cd67cd5e
JA
123 s->cnt.inpkts++;
124 s->cnt.inbytes += skb->len;
b17fc996
HS
125 u64_stats_update_end(&s->syncp);
126
bcbde4c0
JA
127 rcu_read_lock();
128 svc = rcu_dereference(dest->svc);
129 s = this_cpu_ptr(svc->stats.cpustats);
b17fc996 130 u64_stats_update_begin(&s->syncp);
cd67cd5e
JA
131 s->cnt.inpkts++;
132 s->cnt.inbytes += skb->len;
b17fc996 133 u64_stats_update_end(&s->syncp);
bcbde4c0 134 rcu_read_unlock();
b17fc996 135
2a0751af 136 s = this_cpu_ptr(ipvs->tot_stats.cpustats);
b17fc996 137 u64_stats_update_begin(&s->syncp);
cd67cd5e
JA
138 s->cnt.inpkts++;
139 s->cnt.inbytes += skb->len;
b17fc996 140 u64_stats_update_end(&s->syncp);
1da177e4
LT
141 }
142}
143
144
145static inline void
146ip_vs_out_stats(struct ip_vs_conn *cp, struct sk_buff *skb)
147{
148 struct ip_vs_dest *dest = cp->dest;
7c08d78e 149 struct netns_ipvs *ipvs = cp->ipvs;
b17fc996 150
1da177e4 151 if (dest && (dest->flags & IP_VS_DEST_F_AVAILABLE)) {
b17fc996 152 struct ip_vs_cpu_stats *s;
bcbde4c0 153 struct ip_vs_service *svc;
b17fc996
HS
154
155 s = this_cpu_ptr(dest->stats.cpustats);
b17fc996 156 u64_stats_update_begin(&s->syncp);
cd67cd5e
JA
157 s->cnt.outpkts++;
158 s->cnt.outbytes += skb->len;
b17fc996
HS
159 u64_stats_update_end(&s->syncp);
160
bcbde4c0
JA
161 rcu_read_lock();
162 svc = rcu_dereference(dest->svc);
163 s = this_cpu_ptr(svc->stats.cpustats);
b17fc996 164 u64_stats_update_begin(&s->syncp);
cd67cd5e
JA
165 s->cnt.outpkts++;
166 s->cnt.outbytes += skb->len;
b17fc996 167 u64_stats_update_end(&s->syncp);
bcbde4c0 168 rcu_read_unlock();
b17fc996 169
2a0751af 170 s = this_cpu_ptr(ipvs->tot_stats.cpustats);
b17fc996 171 u64_stats_update_begin(&s->syncp);
cd67cd5e
JA
172 s->cnt.outpkts++;
173 s->cnt.outbytes += skb->len;
b17fc996 174 u64_stats_update_end(&s->syncp);
1da177e4
LT
175 }
176}
177
178
179static inline void
180ip_vs_conn_stats(struct ip_vs_conn *cp, struct ip_vs_service *svc)
181{
3109d2f2 182 struct netns_ipvs *ipvs = svc->ipvs;
b17fc996 183 struct ip_vs_cpu_stats *s;
1da177e4 184
b17fc996 185 s = this_cpu_ptr(cp->dest->stats.cpustats);
cd67cd5e
JA
186 u64_stats_update_begin(&s->syncp);
187 s->cnt.conns++;
188 u64_stats_update_end(&s->syncp);
1da177e4 189
b17fc996 190 s = this_cpu_ptr(svc->stats.cpustats);
cd67cd5e
JA
191 u64_stats_update_begin(&s->syncp);
192 s->cnt.conns++;
193 u64_stats_update_end(&s->syncp);
b17fc996 194
2a0751af 195 s = this_cpu_ptr(ipvs->tot_stats.cpustats);
cd67cd5e
JA
196 u64_stats_update_begin(&s->syncp);
197 s->cnt.conns++;
198 u64_stats_update_end(&s->syncp);
1da177e4
LT
199}
200
201
4a516f11 202static inline void
1da177e4
LT
203ip_vs_set_state(struct ip_vs_conn *cp, int direction,
204 const struct sk_buff *skb,
9330419d 205 struct ip_vs_proto_data *pd)
1da177e4 206{
4a516f11
SH
207 if (likely(pd->pp->state_transition))
208 pd->pp->state_transition(cp, direction, skb, pd);
1da177e4
LT
209}
210
a5959d53 211static inline int
85999283
SH
212ip_vs_conn_fill_param_persist(const struct ip_vs_service *svc,
213 struct sk_buff *skb, int protocol,
214 const union nf_inet_addr *caddr, __be16 cport,
215 const union nf_inet_addr *vaddr, __be16 vport,
216 struct ip_vs_conn_param *p)
217{
3109d2f2 218 ip_vs_conn_fill_param(svc->ipvs, svc->af, protocol, caddr, cport, vaddr,
6e67e586 219 vport, p);
ceec4c38 220 p->pe = rcu_dereference(svc->pe);
85999283 221 if (p->pe && p->pe->fill_param)
a5959d53
HS
222 return p->pe->fill_param(p, skb);
223
224 return 0;
85999283 225}
1da177e4 226
1da177e4
LT
227/*
228 * IPVS persistent scheduling function
229 * It creates a connection entry according to its template if exists,
230 * or selects a server and creates a connection entry plus a template.
231 * Locking: we are svc user (svc->refcnt), so we hold all dests too
232 * Protocols supported: TCP, UDP
233 */
234static struct ip_vs_conn *
235ip_vs_sched_persist(struct ip_vs_service *svc,
d4383f04
JDB
236 struct sk_buff *skb, __be16 src_port, __be16 dst_port,
237 int *ignored, struct ip_vs_iphdr *iph)
1da177e4
LT
238{
239 struct ip_vs_conn *cp = NULL;
1da177e4
LT
240 struct ip_vs_dest *dest;
241 struct ip_vs_conn *ct;
5b57a98c 242 __be16 dport = 0; /* destination port to forward */
3575792e 243 unsigned int flags;
f11017ec 244 struct ip_vs_conn_param param;
e0aac52e 245 const union nf_inet_addr fwmark = { .ip = htonl(svc->fwmark) };
28364a59
JV
246 union nf_inet_addr snet; /* source network of the client,
247 after masking */
ee78378f
AG
248 const union nf_inet_addr *src_addr, *dst_addr;
249
250 if (likely(!ip_vs_iph_inverse(iph))) {
251 src_addr = &iph->saddr;
252 dst_addr = &iph->daddr;
253 } else {
254 src_addr = &iph->daddr;
255 dst_addr = &iph->saddr;
256 }
257
cd17f9ed 258
1da177e4 259 /* Mask saddr with the netmask to adjust template granularity */
cd17f9ed
JV
260#ifdef CONFIG_IP_VS_IPV6
261 if (svc->af == AF_INET6)
ee78378f 262 ipv6_addr_prefix(&snet.in6, &src_addr->in6,
0a925864 263 (__force __u32) svc->netmask);
cd17f9ed
JV
264 else
265#endif
ee78378f 266 snet.ip = src_addr->ip & svc->netmask;
1da177e4 267
cd17f9ed
JV
268 IP_VS_DBG_BUF(6, "p-schedule: src %s:%u dest %s:%u "
269 "mnet %s\n",
ee78378f
AG
270 IP_VS_DBG_ADDR(svc->af, src_addr), ntohs(src_port),
271 IP_VS_DBG_ADDR(svc->af, dst_addr), ntohs(dst_port),
cd17f9ed 272 IP_VS_DBG_ADDR(svc->af, &snet));
1da177e4
LT
273
274 /*
275 * As far as we know, FTP is a very complicated network protocol, and
276 * it uses control connection and data connections. For active FTP,
277 * FTP server initialize data connection to the client, its source port
278 * is often 20. For passive FTP, FTP server tells the clients the port
279 * that it passively listens to, and the client issues the data
280 * connection. In the tunneling or direct routing mode, the load
281 * balancer is on the client-to-server half of connection, the port
282 * number is unknown to the load balancer. So, a conn template like
283 * <caddr, 0, vaddr, 0, daddr, 0> is created for persistent FTP
284 * service, and a template like <caddr, 0, vaddr, vport, daddr, dport>
285 * is created for other persistent services.
286 */
5b57a98c 287 {
d4383f04 288 int protocol = iph->protocol;
ee78378f 289 const union nf_inet_addr *vaddr = dst_addr;
f11017ec
SH
290 __be16 vport = 0;
291
ce144f24 292 if (dst_port == svc->port) {
5b57a98c
SH
293 /* non-FTP template:
294 * <protocol, caddr, 0, vaddr, vport, daddr, dport>
295 * FTP template:
296 * <protocol, caddr, 0, vaddr, 0, daddr, 0>
1da177e4
LT
297 */
298 if (svc->port != FTPPORT)
ce144f24 299 vport = dst_port;
1da177e4 300 } else {
5b57a98c
SH
301 /* Note: persistent fwmark-based services and
302 * persistent port zero service are handled here.
303 * fwmark template:
304 * <IPPROTO_IP,caddr,0,fwmark,0,daddr,0>
305 * port zero template:
306 * <protocol,caddr,0,vaddr,0,daddr,0>
1da177e4 307 */
28364a59 308 if (svc->fwmark) {
5b57a98c
SH
309 protocol = IPPROTO_IP;
310 vaddr = &fwmark;
311 }
1da177e4 312 }
a5959d53
HS
313 /* return *ignored = -1 so NF_DROP can be used */
314 if (ip_vs_conn_fill_param_persist(svc, skb, protocol, &snet, 0,
315 vaddr, vport, &param) < 0) {
316 *ignored = -1;
317 return NULL;
318 }
1da177e4
LT
319 }
320
5b57a98c 321 /* Check if a template already exists */
f11017ec 322 ct = ip_vs_ct_in_get(&param);
5b57a98c 323 if (!ct || !ip_vs_check_template(ct)) {
ceec4c38
JA
324 struct ip_vs_scheduler *sched;
325
a5959d53
HS
326 /*
327 * No template found or the dest of the connection
5b57a98c 328 * template is not available.
a5959d53 329 * return *ignored=0 i.e. ICMP and NF_DROP
5b57a98c 330 */
ceec4c38 331 sched = rcu_dereference(svc->scheduler);
05f00505
JA
332 if (sched) {
333 /* read svc->sched_data after svc->scheduler */
334 smp_rmb();
335 dest = sched->schedule(svc, skb, iph);
336 } else {
337 dest = NULL;
338 }
5b57a98c
SH
339 if (!dest) {
340 IP_VS_DBG(1, "p-schedule: no dest found.\n");
85999283 341 kfree(param.pe_data);
a5959d53 342 *ignored = 0;
5b57a98c
SH
343 return NULL;
344 }
345
ce144f24 346 if (dst_port == svc->port && svc->port != FTPPORT)
5b57a98c
SH
347 dport = dest->port;
348
85999283
SH
349 /* Create a template
350 * This adds param.pe_data to the template,
351 * and thus param.pe_data will be destroyed
352 * when the template expires */
ba38528a 353 ct = ip_vs_conn_new(&param, dest->af, &dest->addr, dport,
0e051e68 354 IP_VS_CONN_F_TEMPLATE, dest, skb->mark);
85999283
SH
355 if (ct == NULL) {
356 kfree(param.pe_data);
a5959d53 357 *ignored = -1;
5b57a98c 358 return NULL;
85999283 359 }
5b57a98c
SH
360
361 ct->timeout = svc->timeout;
85999283 362 } else {
5b57a98c
SH
363 /* set destination with the found template */
364 dest = ct->dest;
85999283
SH
365 kfree(param.pe_data);
366 }
5b57a98c 367
ce144f24 368 dport = dst_port;
5b57a98c
SH
369 if (dport == svc->port && dest->port)
370 dport = dest->port;
371
26ec037f 372 flags = (svc->flags & IP_VS_SVC_F_ONEPACKET
d4383f04 373 && iph->protocol == IPPROTO_UDP) ?
26ec037f
NC
374 IP_VS_CONN_F_ONE_PACKET : 0;
375
1da177e4
LT
376 /*
377 * Create a new connection according to the template
378 */
3109d2f2 379 ip_vs_conn_fill_param(svc->ipvs, svc->af, iph->protocol, src_addr,
ee78378f 380 src_port, dst_addr, dst_port, &param);
ce144f24 381
ba38528a
AG
382 cp = ip_vs_conn_new(&param, dest->af, &dest->addr, dport, flags, dest,
383 skb->mark);
1da177e4
LT
384 if (cp == NULL) {
385 ip_vs_conn_put(ct);
a5959d53 386 *ignored = -1;
1da177e4
LT
387 return NULL;
388 }
389
390 /*
391 * Add its control
392 */
393 ip_vs_control_add(cp, ct);
394 ip_vs_conn_put(ct);
395
396 ip_vs_conn_stats(cp, svc);
397 return cp;
398}
399
400
401/*
402 * IPVS main scheduling function
403 * It selects a server according to the virtual service, and
404 * creates a connection entry.
405 * Protocols supported: TCP, UDP
a5959d53
HS
406 *
407 * Usage of *ignored
408 *
409 * 1 : protocol tried to schedule (eg. on SYN), found svc but the
410 * svc/scheduler decides that this packet should be accepted with
411 * NF_ACCEPT because it must not be scheduled.
412 *
413 * 0 : scheduler can not find destination, so try bypass or
414 * return ICMP and then NF_DROP (ip_vs_leave).
415 *
416 * -1 : scheduler tried to schedule but fatal error occurred, eg.
417 * ip_vs_conn_new failure (ENOMEM) or ip_vs_sip_fill_param
418 * failure such as missing Call-ID, ENOMEM on skb_linearize
419 * or pe_data. In this case we should return NF_DROP without
420 * any attempts to send ICMP with ip_vs_leave.
1da177e4
LT
421 */
422struct ip_vs_conn *
190ecd27 423ip_vs_schedule(struct ip_vs_service *svc, struct sk_buff *skb,
d4383f04
JDB
424 struct ip_vs_proto_data *pd, int *ignored,
425 struct ip_vs_iphdr *iph)
1da177e4 426{
9330419d 427 struct ip_vs_protocol *pp = pd->pp;
1da177e4 428 struct ip_vs_conn *cp = NULL;
ceec4c38 429 struct ip_vs_scheduler *sched;
1da177e4 430 struct ip_vs_dest *dest;
ee78378f
AG
431 __be16 _ports[2], *pptr, cport, vport;
432 const void *caddr, *vaddr;
3575792e 433 unsigned int flags;
1da177e4 434
190ecd27 435 *ignored = 1;
2f74713d
JDB
436 /*
437 * IPv6 frags, only the first hit here.
438 */
d4383f04 439 pptr = frag_safe_skb_hp(skb, iph->len, sizeof(_ports), _ports, iph);
1da177e4
LT
440 if (pptr == NULL)
441 return NULL;
442
ee78378f
AG
443 if (likely(!ip_vs_iph_inverse(iph))) {
444 cport = pptr[0];
445 caddr = &iph->saddr;
446 vport = pptr[1];
447 vaddr = &iph->daddr;
448 } else {
449 cport = pptr[1];
450 caddr = &iph->daddr;
451 vport = pptr[0];
452 vaddr = &iph->saddr;
453 }
454
190ecd27
JA
455 /*
456 * FTPDATA needs this check when using local real server.
457 * Never schedule Active FTPDATA connections from real server.
458 * For LVS-NAT they must be already created. For other methods
459 * with persistence the connection is created on SYN+ACK.
460 */
ee78378f 461 if (cport == FTPDATA) {
b0e010c5 462 IP_VS_DBG_PKT(12, svc->af, pp, skb, iph->off,
0d79641a 463 "Not scheduling FTPDATA");
190ecd27
JA
464 return NULL;
465 }
466
467 /*
a5959d53 468 * Do not schedule replies from local real server.
190ecd27 469 */
802c41ad
AG
470 if ((!skb->dev || skb->dev->flags & IFF_LOOPBACK)) {
471 iph->hdr_flags ^= IP_VS_HDR_INVERSE;
ab161976 472 cp = pp->conn_in_get(svc->ipvs, svc->af, skb, iph);
802c41ad
AG
473 iph->hdr_flags ^= IP_VS_HDR_INVERSE;
474
475 if (cp) {
476 IP_VS_DBG_PKT(12, svc->af, pp, skb, iph->off,
477 "Not scheduling reply for existing"
478 " connection");
479 __ip_vs_conn_put(cp);
480 return NULL;
481 }
190ecd27
JA
482 }
483
1da177e4
LT
484 /*
485 * Persistent service
486 */
a5959d53 487 if (svc->flags & IP_VS_SVC_F_PERSISTENT)
ee78378f 488 return ip_vs_sched_persist(svc, skb, cport, vport, ignored,
d4383f04 489 iph);
a5959d53
HS
490
491 *ignored = 0;
1da177e4
LT
492
493 /*
494 * Non-persistent service
495 */
ee78378f 496 if (!svc->fwmark && vport != svc->port) {
1da177e4 497 if (!svc->port)
1e3e238e
HE
498 pr_err("Schedule: port zero only supported "
499 "in persistent services, "
500 "check your ipvs configuration\n");
1da177e4
LT
501 return NULL;
502 }
503
ceec4c38 504 sched = rcu_dereference(svc->scheduler);
05f00505
JA
505 if (sched) {
506 /* read svc->sched_data after svc->scheduler */
507 smp_rmb();
508 dest = sched->schedule(svc, skb, iph);
509 } else {
510 dest = NULL;
511 }
1da177e4
LT
512 if (dest == NULL) {
513 IP_VS_DBG(1, "Schedule: no dest found.\n");
514 return NULL;
515 }
516
26ec037f 517 flags = (svc->flags & IP_VS_SVC_F_ONEPACKET
d4383f04 518 && iph->protocol == IPPROTO_UDP) ?
26ec037f
NC
519 IP_VS_CONN_F_ONE_PACKET : 0;
520
1da177e4
LT
521 /*
522 * Create a connection entry.
523 */
f11017ec
SH
524 {
525 struct ip_vs_conn_param p;
6e67e586 526
3109d2f2 527 ip_vs_conn_fill_param(svc->ipvs, svc->af, iph->protocol,
ee78378f 528 caddr, cport, vaddr, vport, &p);
ba38528a 529 cp = ip_vs_conn_new(&p, dest->af, &dest->addr,
ee78378f 530 dest->port ? dest->port : vport,
0e051e68 531 flags, dest, skb->mark);
a5959d53
HS
532 if (!cp) {
533 *ignored = -1;
f11017ec 534 return NULL;
a5959d53 535 }
f11017ec 536 }
1da177e4 537
cd17f9ed
JV
538 IP_VS_DBG_BUF(6, "Schedule fwd:%c c:%s:%u v:%s:%u "
539 "d:%s:%u conn->flags:%X conn->refcnt:%d\n",
540 ip_vs_fwd_tag(cp),
f18ae720
JA
541 IP_VS_DBG_ADDR(cp->af, &cp->caddr), ntohs(cp->cport),
542 IP_VS_DBG_ADDR(cp->af, &cp->vaddr), ntohs(cp->vport),
543 IP_VS_DBG_ADDR(cp->daf, &cp->daddr), ntohs(cp->dport),
cd17f9ed 544 cp->flags, atomic_read(&cp->refcnt));
1da177e4
LT
545
546 ip_vs_conn_stats(cp, svc);
547 return cp;
548}
549
0b729021
AG
550static inline int ip_vs_addr_is_unicast(struct net *net, int af,
551 union nf_inet_addr *addr)
552{
553#ifdef CONFIG_IP_VS_IPV6
554 if (af == AF_INET6)
555 return ipv6_addr_type(&addr->in6) & IPV6_ADDR_UNICAST;
556#endif
557 return (inet_addr_type(net, addr->ip) == RTN_UNICAST);
558}
1da177e4
LT
559
560/*
561 * Pass or drop the packet.
562 * Called by ip_vs_in, when the virtual service is available but
563 * no destination is available for a new connection.
564 */
565int ip_vs_leave(struct ip_vs_service *svc, struct sk_buff *skb,
d4383f04 566 struct ip_vs_proto_data *pd, struct ip_vs_iphdr *iph)
1da177e4 567{
0b729021 568 __be16 _ports[2], *pptr, dport;
51efbcbb
EB
569 struct netns_ipvs *ipvs = svc->ipvs;
570 struct net *net = ipvs->net;
9330419d 571
d4383f04 572 pptr = frag_safe_skb_hp(skb, iph->len, sizeof(_ports), _ports, iph);
0b729021 573 if (!pptr)
1da177e4 574 return NF_DROP;
0b729021 575 dport = likely(!ip_vs_iph_inverse(iph)) ? pptr[1] : pptr[0];
a7a86b86 576
1da177e4 577 /* if it is fwmark-based service, the cache_bypass sysctl is up
2a3b791e 578 and the destination is a non-local unicast, then create
1da177e4 579 a cache_bypass connection entry */
57032948 580 if (sysctl_cache_bypass(ipvs) && svc->fwmark &&
0b729021
AG
581 !(iph->hdr_flags & (IP_VS_HDR_INVERSE | IP_VS_HDR_ICMP)) &&
582 ip_vs_addr_is_unicast(net, svc->af, &iph->daddr)) {
ad542ced 583 int ret;
1da177e4 584 struct ip_vs_conn *cp;
3575792e 585 unsigned int flags = (svc->flags & IP_VS_SVC_F_ONEPACKET &&
d4383f04 586 iph->protocol == IPPROTO_UDP) ?
3575792e 587 IP_VS_CONN_F_ONE_PACKET : 0;
dff630dd 588 union nf_inet_addr daddr = { .all = { 0, 0, 0, 0 } };
1da177e4 589
1da177e4 590 /* create a new connection entry */
1e3e238e 591 IP_VS_DBG(6, "%s(): create a cache_bypass entry\n", __func__);
f11017ec
SH
592 {
593 struct ip_vs_conn_param p;
3109d2f2 594 ip_vs_conn_fill_param(svc->ipvs, svc->af, iph->protocol,
d4383f04
JDB
595 &iph->saddr, pptr[0],
596 &iph->daddr, pptr[1], &p);
ba38528a 597 cp = ip_vs_conn_new(&p, svc->af, &daddr, 0,
f11017ec 598 IP_VS_CONN_F_BYPASS | flags,
0e051e68 599 NULL, skb->mark);
f11017ec
SH
600 if (!cp)
601 return NF_DROP;
602 }
1da177e4
LT
603
604 /* statistics */
605 ip_vs_in_stats(cp, skb);
606
607 /* set state */
4a516f11 608 ip_vs_set_state(cp, IP_VS_DIR_INPUT, skb, pd);
1da177e4
LT
609
610 /* transmit the first SYN packet */
d4383f04 611 ret = cp->packet_xmit(skb, cp, pd->pp, iph);
1da177e4
LT
612 /* do not touch skb anymore */
613
614 atomic_inc(&cp->in_pkts);
615 ip_vs_conn_put(cp);
616 return ret;
617 }
618
619 /*
620 * When the virtual ftp service is presented, packets destined
621 * for other services on the VIP may get here (except services
622 * listed in the ipvs table), pass the packets, because it is
623 * not ipvs job to decide to drop the packets.
624 */
0b729021 625 if (svc->port == FTPPORT && dport != FTPPORT)
1da177e4 626 return NF_ACCEPT;
0b729021
AG
627
628 if (unlikely(ip_vs_iph_icmp(iph)))
629 return NF_DROP;
1da177e4
LT
630
631 /*
632 * Notify the client that the destination is unreachable, and
633 * release the socket buffer.
634 * Since it is in IP layer, the TCP socket is not actually
635 * created, the TCP RST packet cannot be sent, instead that
636 * ICMP_PORT_UNREACH is sent here no matter it is TCP/UDP. --WZ
637 */
2a3b791e 638#ifdef CONFIG_IP_VS_IPV6
cb59155f 639 if (svc->af == AF_INET6) {
57032948
EB
640 if (!skb->dev)
641 skb->dev = net->loopback_dev;
3ffe533c 642 icmpv6_send(skb, ICMPV6_DEST_UNREACH, ICMPV6_PORT_UNREACH, 0);
cb59155f 643 } else
2a3b791e
JV
644#endif
645 icmp_send(skb, ICMP_DEST_UNREACH, ICMP_PORT_UNREACH, 0);
646
1da177e4
LT
647 return NF_DROP;
648}
649
84b3cee3
SH
650#ifdef CONFIG_SYSCTL
651
a43d1a6b 652static int sysctl_snat_reroute(struct netns_ipvs *ipvs)
84b3cee3 653{
84b3cee3
SH
654 return ipvs->sysctl_snat_reroute;
655}
656
2300f045 657static int sysctl_nat_icmp_send(struct netns_ipvs *ipvs)
0cfa558e 658{
0cfa558e
SH
659 return ipvs->sysctl_nat_icmp_send;
660}
661
71a8ab6c
SH
662static int sysctl_expire_nodest_conn(struct netns_ipvs *ipvs)
663{
664 return ipvs->sysctl_expire_nodest_conn;
665}
666
84b3cee3
SH
667#else
668
a43d1a6b 669static int sysctl_snat_reroute(struct netns_ipvs *ipvs) { return 0; }
2300f045 670static int sysctl_nat_icmp_send(struct netns_ipvs *ipvs) { return 0; }
71a8ab6c 671static int sysctl_expire_nodest_conn(struct netns_ipvs *ipvs) { return 0; }
84b3cee3
SH
672
673#endif
674
b1550f22 675__sum16 ip_vs_checksum_complete(struct sk_buff *skb, int offset)
1da177e4 676{
d3bc23e7 677 return csum_fold(skb_checksum(skb, offset, skb->len - offset, 0));
1da177e4
LT
678}
679
1ca5bb54
JA
680static inline enum ip_defrag_users ip_vs_defrag_user(unsigned int hooknum)
681{
682 if (NF_INET_LOCAL_IN == hooknum)
683 return IP_DEFRAG_VS_IN;
684 if (NF_INET_FORWARD == hooknum)
685 return IP_DEFRAG_VS_FWD;
686 return IP_DEFRAG_VS_OUT;
687}
688
57781c1c
EB
689static inline int ip_vs_gather_frags(struct netns_ipvs *ipvs,
690 struct sk_buff *skb, u_int32_t user)
1da177e4 691{
ac69269a 692 int err;
776c729e 693
ac69269a 694 local_bh_disable();
19bcf9f2 695 err = ip_defrag(ipvs->net, skb, user);
ac69269a 696 local_bh_enable();
776c729e 697 if (!err)
eddc9ec5 698 ip_send_check(ip_hdr(skb));
776c729e
HX
699
700 return err;
1da177e4
LT
701}
702
a43d1a6b
EB
703static int ip_vs_route_me_harder(struct netns_ipvs *ipvs, int af,
704 struct sk_buff *skb, unsigned int hooknum)
ba4fd7e9 705{
a43d1a6b 706 if (!sysctl_snat_reroute(ipvs))
579eb62a
JA
707 return 0;
708 /* Reroute replies only to remote clients (FORWARD and LOCAL_OUT) */
709 if (NF_INET_LOCAL_IN == hooknum)
710 return 0;
ba4fd7e9
SH
711#ifdef CONFIG_IP_VS_IPV6
712 if (af == AF_INET6) {
579eb62a
JA
713 struct dst_entry *dst = skb_dst(skb);
714
715 if (dst->dev && !(dst->dev->flags & IFF_LOOPBACK) &&
5f5d74d7 716 ip6_route_me_harder(ipvs->net, skb) != 0)
ba4fd7e9
SH
717 return 1;
718 } else
719#endif
579eb62a 720 if (!(skb_rtable(skb)->rt_flags & RTCF_LOCAL) &&
e45f5066 721 ip_route_me_harder(ipvs->net, skb, RTN_LOCAL) != 0)
ba4fd7e9
SH
722 return 1;
723
724 return 0;
725}
726
1da177e4
LT
727/*
728 * Packet has been made sufficiently writable in caller
729 * - inout: 1=in->out, 0=out->in
730 */
731void ip_vs_nat_icmp(struct sk_buff *skb, struct ip_vs_protocol *pp,
732 struct ip_vs_conn *cp, int inout)
733{
eddc9ec5 734 struct iphdr *iph = ip_hdr(skb);
1da177e4 735 unsigned int icmp_offset = iph->ihl*4;
d56f90a7
ACM
736 struct icmphdr *icmph = (struct icmphdr *)(skb_network_header(skb) +
737 icmp_offset);
1da177e4
LT
738 struct iphdr *ciph = (struct iphdr *)(icmph + 1);
739
740 if (inout) {
e7ade46a 741 iph->saddr = cp->vaddr.ip;
1da177e4 742 ip_send_check(iph);
e7ade46a 743 ciph->daddr = cp->vaddr.ip;
1da177e4
LT
744 ip_send_check(ciph);
745 } else {
e7ade46a 746 iph->daddr = cp->daddr.ip;
1da177e4 747 ip_send_check(iph);
e7ade46a 748 ciph->saddr = cp->daddr.ip;
1da177e4
LT
749 ip_send_check(ciph);
750 }
751
2906f66a
VMR
752 /* the TCP/UDP/SCTP port */
753 if (IPPROTO_TCP == ciph->protocol || IPPROTO_UDP == ciph->protocol ||
754 IPPROTO_SCTP == ciph->protocol) {
014d730d 755 __be16 *ports = (void *)ciph + ciph->ihl*4;
1da177e4
LT
756
757 if (inout)
758 ports[1] = cp->vport;
759 else
760 ports[0] = cp->dport;
761 }
762
763 /* And finally the ICMP checksum */
764 icmph->checksum = 0;
765 icmph->checksum = ip_vs_checksum_complete(skb, icmp_offset);
766 skb->ip_summed = CHECKSUM_UNNECESSARY;
767
768 if (inout)
0d79641a 769 IP_VS_DBG_PKT(11, AF_INET, pp, skb, (void *)ciph - (void *)iph,
1da177e4
LT
770 "Forwarding altered outgoing ICMP");
771 else
0d79641a 772 IP_VS_DBG_PKT(11, AF_INET, pp, skb, (void *)ciph - (void *)iph,
1da177e4
LT
773 "Forwarding altered incoming ICMP");
774}
775
b3cdd2a7
JV
776#ifdef CONFIG_IP_VS_IPV6
777void ip_vs_nat_icmp_v6(struct sk_buff *skb, struct ip_vs_protocol *pp,
778 struct ip_vs_conn *cp, int inout)
779{
780 struct ipv6hdr *iph = ipv6_hdr(skb);
63dca2c0
JDB
781 unsigned int icmp_offset = 0;
782 unsigned int offs = 0; /* header offset*/
783 int protocol;
784 struct icmp6hdr *icmph;
785 struct ipv6hdr *ciph;
786 unsigned short fragoffs;
787
788 ipv6_find_hdr(skb, &icmp_offset, IPPROTO_ICMPV6, &fragoffs, NULL);
789 icmph = (struct icmp6hdr *)(skb_network_header(skb) + icmp_offset);
790 offs = icmp_offset + sizeof(struct icmp6hdr);
791 ciph = (struct ipv6hdr *)(skb_network_header(skb) + offs);
792
793 protocol = ipv6_find_hdr(skb, &offs, -1, &fragoffs, NULL);
b3cdd2a7
JV
794
795 if (inout) {
796 iph->saddr = cp->vaddr.in6;
797 ciph->daddr = cp->vaddr.in6;
798 } else {
799 iph->daddr = cp->daddr.in6;
800 ciph->saddr = cp->daddr.in6;
801 }
802
2906f66a 803 /* the TCP/UDP/SCTP port */
63dca2c0
JDB
804 if (!fragoffs && (IPPROTO_TCP == protocol || IPPROTO_UDP == protocol ||
805 IPPROTO_SCTP == protocol)) {
806 __be16 *ports = (void *)(skb_network_header(skb) + offs);
b3cdd2a7 807
63dca2c0
JDB
808 IP_VS_DBG(11, "%s() changed port %d to %d\n", __func__,
809 ntohs(inout ? ports[1] : ports[0]),
810 ntohs(inout ? cp->vport : cp->dport));
b3cdd2a7
JV
811 if (inout)
812 ports[1] = cp->vport;
813 else
814 ports[0] = cp->dport;
815 }
816
817 /* And finally the ICMP checksum */
8870f842
SH
818 icmph->icmp6_cksum = ~csum_ipv6_magic(&iph->saddr, &iph->daddr,
819 skb->len - icmp_offset,
820 IPPROTO_ICMPV6, 0);
821 skb->csum_start = skb_network_header(skb) - skb->head + icmp_offset;
822 skb->csum_offset = offsetof(struct icmp6hdr, icmp6_cksum);
823 skb->ip_summed = CHECKSUM_PARTIAL;
b3cdd2a7
JV
824
825 if (inout)
0d79641a
JA
826 IP_VS_DBG_PKT(11, AF_INET6, pp, skb,
827 (void *)ciph - (void *)iph,
828 "Forwarding altered outgoing ICMPv6");
b3cdd2a7 829 else
0d79641a
JA
830 IP_VS_DBG_PKT(11, AF_INET6, pp, skb,
831 (void *)ciph - (void *)iph,
832 "Forwarding altered incoming ICMPv6");
b3cdd2a7
JV
833}
834#endif
835
4856c84c 836/* Handle relevant response ICMP messages - forward to the right
6cb90db5 837 * destination host.
4856c84c 838 */
f2428ed5
SH
839static int handle_response_icmp(int af, struct sk_buff *skb,
840 union nf_inet_addr *snet,
841 __u8 protocol, struct ip_vs_conn *cp,
4856c84c 842 struct ip_vs_protocol *pp,
579eb62a
JA
843 unsigned int offset, unsigned int ihl,
844 unsigned int hooknum)
4856c84c
MT
845{
846 unsigned int verdict = NF_DROP;
847
848 if (IP_VS_FWD_METHOD(cp) != 0) {
1e3e238e
HE
849 pr_err("shouldn't reach here, because the box is on the "
850 "half connection in the tun/dr module.\n");
4856c84c
MT
851 }
852
853 /* Ensure the checksum is correct */
854 if (!skb_csum_unnecessary(skb) && ip_vs_checksum_complete(skb, ihl)) {
855 /* Failed checksum! */
f2428ed5
SH
856 IP_VS_DBG_BUF(1, "Forward ICMP: failed checksum from %s!\n",
857 IP_VS_DBG_ADDR(af, snet));
4856c84c
MT
858 goto out;
859 }
860
2906f66a
VMR
861 if (IPPROTO_TCP == protocol || IPPROTO_UDP == protocol ||
862 IPPROTO_SCTP == protocol)
4856c84c
MT
863 offset += 2 * sizeof(__u16);
864 if (!skb_make_writable(skb, offset))
865 goto out;
866
f2428ed5
SH
867#ifdef CONFIG_IP_VS_IPV6
868 if (af == AF_INET6)
869 ip_vs_nat_icmp_v6(skb, pp, cp, 1);
870 else
871#endif
872 ip_vs_nat_icmp(skb, pp, cp, 1);
4856c84c 873
a43d1a6b 874 if (ip_vs_route_me_harder(cp->ipvs, af, skb, hooknum))
ba4fd7e9 875 goto out;
f5a41847 876
4856c84c
MT
877 /* do the statistics and put it back */
878 ip_vs_out_stats(cp, skb);
879
cf356d69 880 skb->ipvs_property = 1;
f4bc17cd 881 if (!(cp->flags & IP_VS_CONN_F_NFCT))
cf356d69 882 ip_vs_notrack(skb);
f4bc17cd
JA
883 else
884 ip_vs_update_conntrack(skb, cp, 0);
4856c84c
MT
885 verdict = NF_ACCEPT;
886
887out:
888 __ip_vs_conn_put(cp);
889
890 return verdict;
891}
892
1da177e4
LT
893/*
894 * Handle ICMP messages in the inside-to-outside direction (outgoing).
4856c84c 895 * Find any that might be relevant, check against existing connections.
1da177e4 896 * Currently handles error types - unreachable, quench, ttl exceeded.
1da177e4 897 */
7b5f689a
EB
898static int ip_vs_out_icmp(struct netns_ipvs *ipvs, struct sk_buff *skb,
899 int *related, unsigned int hooknum)
1da177e4 900{
1da177e4
LT
901 struct iphdr *iph;
902 struct icmphdr _icmph, *ic;
903 struct iphdr _ciph, *cih; /* The ip header contained within the ICMP */
51ef348b 904 struct ip_vs_iphdr ciph;
1da177e4
LT
905 struct ip_vs_conn *cp;
906 struct ip_vs_protocol *pp;
4856c84c 907 unsigned int offset, ihl;
f2428ed5 908 union nf_inet_addr snet;
1da177e4
LT
909
910 *related = 1;
911
912 /* reassemble IP fragments */
56f8a75c 913 if (ip_is_fragment(ip_hdr(skb))) {
57781c1c 914 if (ip_vs_gather_frags(ipvs, skb, ip_vs_defrag_user(hooknum)))
1da177e4 915 return NF_STOLEN;
1da177e4
LT
916 }
917
eddc9ec5 918 iph = ip_hdr(skb);
1da177e4
LT
919 offset = ihl = iph->ihl * 4;
920 ic = skb_header_pointer(skb, offset, sizeof(_icmph), &_icmph);
921 if (ic == NULL)
922 return NF_DROP;
923
14d5e834 924 IP_VS_DBG(12, "Outgoing ICMP (%d,%d) %pI4->%pI4\n",
1da177e4 925 ic->type, ntohs(icmp_id(ic)),
14d5e834 926 &iph->saddr, &iph->daddr);
1da177e4
LT
927
928 /*
929 * Work through seeing if this is for us.
930 * These checks are supposed to be in an order that means easy
931 * things are checked first to speed up processing.... however
932 * this means that some packets will manage to get a long way
933 * down this stack and then be rejected, but that's life.
934 */
935 if ((ic->type != ICMP_DEST_UNREACH) &&
936 (ic->type != ICMP_SOURCE_QUENCH) &&
937 (ic->type != ICMP_TIME_EXCEEDED)) {
938 *related = 0;
939 return NF_ACCEPT;
940 }
941
942 /* Now find the contained IP header */
943 offset += sizeof(_icmph);
944 cih = skb_header_pointer(skb, offset, sizeof(_ciph), &_ciph);
945 if (cih == NULL)
946 return NF_ACCEPT; /* The packet looks wrong, ignore */
947
948 pp = ip_vs_proto_get(cih->protocol);
949 if (!pp)
950 return NF_ACCEPT;
951
952 /* Is the embedded protocol header present? */
4412ec49 953 if (unlikely(cih->frag_off & htons(IP_OFFSET) &&
1da177e4
LT
954 pp->dont_defrag))
955 return NF_ACCEPT;
956
0d79641a
JA
957 IP_VS_DBG_PKT(11, AF_INET, pp, skb, offset,
958 "Checking outgoing ICMP for");
1da177e4 959
4fd9beef 960 ip_vs_fill_iph_skb_icmp(AF_INET, skb, offset, true, &ciph);
b0e010c5 961
1da177e4 962 /* The embedded headers contain source and dest in reverse order */
0cf705c8 963 cp = pp->conn_out_get(ipvs, AF_INET, skb, &ciph);
1da177e4
LT
964 if (!cp)
965 return NF_ACCEPT;
966
f2428ed5
SH
967 snet.ip = iph->saddr;
968 return handle_response_icmp(AF_INET, skb, &snet, cih->protocol, cp,
579eb62a 969 pp, ciph.len, ihl, hooknum);
1da177e4
LT
970}
971
2a3b791e 972#ifdef CONFIG_IP_VS_IPV6
7b5f689a
EB
973static int ip_vs_out_icmp_v6(struct netns_ipvs *ipvs, struct sk_buff *skb,
974 int *related, unsigned int hooknum,
975 struct ip_vs_iphdr *ipvsh)
2a3b791e 976{
2a3b791e 977 struct icmp6hdr _icmph, *ic;
63dca2c0 978 struct ip_vs_iphdr ciph = {.flags = 0, .fragoffs = 0};/*Contained IP */
2a3b791e
JV
979 struct ip_vs_conn *cp;
980 struct ip_vs_protocol *pp;
f2428ed5 981 union nf_inet_addr snet;
b0e010c5 982 unsigned int offset;
2a3b791e 983
63dca2c0 984 *related = 1;
2f74713d 985 ic = frag_safe_skb_hp(skb, ipvsh->len, sizeof(_icmph), &_icmph, ipvsh);
2a3b791e
JV
986 if (ic == NULL)
987 return NF_DROP;
988
2a3b791e
JV
989 /*
990 * Work through seeing if this is for us.
991 * These checks are supposed to be in an order that means easy
992 * things are checked first to speed up processing.... however
993 * this means that some packets will manage to get a long way
994 * down this stack and then be rejected, but that's life.
995 */
2fab8917 996 if (ic->icmp6_type & ICMPV6_INFOMSG_MASK) {
2a3b791e
JV
997 *related = 0;
998 return NF_ACCEPT;
999 }
2f74713d
JDB
1000 /* Fragment header that is before ICMP header tells us that:
1001 * it's not an error message since they can't be fragmented.
1002 */
e7165030 1003 if (ipvsh->flags & IP6_FH_F_FRAG)
2f74713d 1004 return NF_DROP;
2a3b791e 1005
63dca2c0
JDB
1006 IP_VS_DBG(8, "Outgoing ICMPv6 (%d,%d) %pI6c->%pI6c\n",
1007 ic->icmp6_type, ntohs(icmpv6_id(ic)),
1008 &ipvsh->saddr, &ipvsh->daddr);
1009
4fd9beef
AG
1010 if (!ip_vs_fill_iph_skb_icmp(AF_INET6, skb, ipvsh->len + sizeof(_icmph),
1011 true, &ciph))
2a3b791e 1012 return NF_ACCEPT; /* The packet looks wrong, ignore */
63dca2c0
JDB
1013
1014 pp = ip_vs_proto_get(ciph.protocol);
2a3b791e
JV
1015 if (!pp)
1016 return NF_ACCEPT;
1017
2a3b791e 1018 /* The embedded headers contain source and dest in reverse order */
0cf705c8 1019 cp = pp->conn_out_get(ipvs, AF_INET6, skb, &ciph);
2a3b791e
JV
1020 if (!cp)
1021 return NF_ACCEPT;
1022
63dca2c0 1023 snet.in6 = ciph.saddr.in6;
b0e010c5 1024 offset = ciph.len;
63dca2c0 1025 return handle_response_icmp(AF_INET6, skb, &snet, ciph.protocol, cp,
b0e010c5 1026 pp, offset, sizeof(struct ipv6hdr),
579eb62a 1027 hooknum);
2a3b791e
JV
1028}
1029#endif
1030
2906f66a
VMR
1031/*
1032 * Check if sctp chunc is ABORT chunk
1033 */
1034static inline int is_sctp_abort(const struct sk_buff *skb, int nh_len)
1035{
1036 sctp_chunkhdr_t *sch, schunk;
1037 sch = skb_header_pointer(skb, nh_len + sizeof(sctp_sctphdr_t),
1038 sizeof(schunk), &schunk);
1039 if (sch == NULL)
1040 return 0;
1041 if (sch->type == SCTP_CID_ABORT)
1042 return 1;
1043 return 0;
1044}
1045
2a3b791e 1046static inline int is_tcp_reset(const struct sk_buff *skb, int nh_len)
1da177e4
LT
1047{
1048 struct tcphdr _tcph, *th;
1049
2a3b791e 1050 th = skb_header_pointer(skb, nh_len, sizeof(_tcph), &_tcph);
1da177e4
LT
1051 if (th == NULL)
1052 return 0;
1053 return th->rst;
1054}
1055
dc7b3eb9
GL
1056static inline bool is_new_conn(const struct sk_buff *skb,
1057 struct ip_vs_iphdr *iph)
1058{
1059 switch (iph->protocol) {
1060 case IPPROTO_TCP: {
1061 struct tcphdr _tcph, *th;
1062
1063 th = skb_header_pointer(skb, iph->len, sizeof(_tcph), &_tcph);
1064 if (th == NULL)
1065 return false;
1066 return th->syn;
1067 }
1068 case IPPROTO_SCTP: {
1069 sctp_chunkhdr_t *sch, schunk;
1070
1071 sch = skb_header_pointer(skb, iph->len + sizeof(sctp_sctphdr_t),
1072 sizeof(schunk), &schunk);
1073 if (sch == NULL)
1074 return false;
1075 return sch->type == SCTP_CID_INIT;
1076 }
1077 default:
1078 return false;
1079 }
1080}
1081
d752c364
MRL
1082static inline bool is_new_conn_expected(const struct ip_vs_conn *cp,
1083 int conn_reuse_mode)
1084{
1085 /* Controlled (FTP DATA or persistence)? */
1086 if (cp->control)
1087 return false;
1088
1089 switch (cp->protocol) {
1090 case IPPROTO_TCP:
1091 return (cp->state == IP_VS_TCP_S_TIME_WAIT) ||
1092 ((conn_reuse_mode & 2) &&
1093 (cp->state == IP_VS_TCP_S_FIN_WAIT) &&
1094 (cp->flags & IP_VS_CONN_F_NOOUTPUT));
1095 case IPPROTO_SCTP:
1096 return cp->state == IP_VS_SCTP_S_CLOSED;
1097 default:
1098 return false;
1099 }
1100}
1101
4856c84c 1102/* Handle response packets: rewrite addresses and send away...
4856c84c
MT
1103 */
1104static unsigned int
9330419d 1105handle_response(int af, struct sk_buff *skb, struct ip_vs_proto_data *pd,
579eb62a
JA
1106 struct ip_vs_conn *cp, struct ip_vs_iphdr *iph,
1107 unsigned int hooknum)
4856c84c 1108{
9330419d
HS
1109 struct ip_vs_protocol *pp = pd->pp;
1110
b0e010c5 1111 IP_VS_DBG_PKT(11, af, pp, skb, iph->off, "Outgoing packet");
4856c84c 1112
d4383f04 1113 if (!skb_make_writable(skb, iph->len))
4856c84c
MT
1114 goto drop;
1115
1116 /* mangle the packet */
d4383f04 1117 if (pp->snat_handler && !pp->snat_handler(skb, pp, cp, iph))
4856c84c
MT
1118 goto drop;
1119
1120#ifdef CONFIG_IP_VS_IPV6
1121 if (af == AF_INET6)
1122 ipv6_hdr(skb)->saddr = cp->vaddr.in6;
1123 else
1124#endif
1125 {
1126 ip_hdr(skb)->saddr = cp->vaddr.ip;
1127 ip_send_check(ip_hdr(skb));
1128 }
1129
8a803040
JA
1130 /*
1131 * nf_iterate does not expect change in the skb->dst->dev.
1132 * It looks like it is not fatal to enable this code for hooks
1133 * where our handlers are at the end of the chain list and
1134 * when all next handlers use skb->dst->dev and not outdev.
1135 * It will definitely route properly the inout NAT traffic
1136 * when multiple paths are used.
1137 */
1138
4856c84c
MT
1139 /* For policy routing, packets originating from this
1140 * machine itself may be routed differently to packets
1141 * passing through. We want this packet to be routed as
1142 * if it came from this machine itself. So re-compute
1143 * the routing information.
1144 */
a43d1a6b 1145 if (ip_vs_route_me_harder(cp->ipvs, af, skb, hooknum))
ba4fd7e9 1146 goto drop;
4856c84c 1147
b0e010c5 1148 IP_VS_DBG_PKT(10, af, pp, skb, iph->off, "After SNAT");
4856c84c
MT
1149
1150 ip_vs_out_stats(cp, skb);
9330419d 1151 ip_vs_set_state(cp, IP_VS_DIR_OUTPUT, skb, pd);
cf356d69 1152 skb->ipvs_property = 1;
f4bc17cd 1153 if (!(cp->flags & IP_VS_CONN_F_NFCT))
cf356d69 1154 ip_vs_notrack(skb);
f4bc17cd
JA
1155 else
1156 ip_vs_update_conntrack(skb, cp, 0);
4856c84c
MT
1157 ip_vs_conn_put(cp);
1158
4856c84c
MT
1159 LeaveFunction(11);
1160 return NF_ACCEPT;
1161
1162drop:
1163 ip_vs_conn_put(cp);
1164 kfree_skb(skb);
f4bc17cd 1165 LeaveFunction(11);
4856c84c
MT
1166 return NF_STOLEN;
1167}
1168
1da177e4 1169/*
4856c84c 1170 * Check if outgoing packet belongs to the established ip_vs_conn.
1da177e4
LT
1171 */
1172static unsigned int
1b75097d 1173ip_vs_out(struct netns_ipvs *ipvs, unsigned int hooknum, struct sk_buff *skb, int af)
1da177e4 1174{
51ef348b 1175 struct ip_vs_iphdr iph;
1da177e4 1176 struct ip_vs_protocol *pp;
9330419d 1177 struct ip_vs_proto_data *pd;
1da177e4 1178 struct ip_vs_conn *cp;
340c78e5 1179 struct sock *sk;
1da177e4
LT
1180
1181 EnterFunction(11);
1182
fc604767 1183 /* Already marked as IPVS request or reply? */
6869c4d8 1184 if (skb->ipvs_property)
1da177e4
LT
1185 return NF_ACCEPT;
1186
340c78e5 1187 sk = skb_to_full_sk(skb);
fc604767 1188 /* Bad... Do not break raw sockets */
340c78e5 1189 if (unlikely(sk && hooknum == NF_INET_LOCAL_OUT &&
fc604767 1190 af == AF_INET)) {
fc604767 1191
340c78e5 1192 if (sk->sk_family == PF_INET && inet_sk(sk)->nodefrag)
fc604767
JA
1193 return NF_ACCEPT;
1194 }
1195
1196 if (unlikely(!skb_dst(skb)))
1197 return NF_ACCEPT;
1198
48aed1b0 1199 if (!ipvs->enable)
7a4f0761
HS
1200 return NF_ACCEPT;
1201
4fd9beef 1202 ip_vs_fill_iph_skb(af, skb, false, &iph);
2a3b791e
JV
1203#ifdef CONFIG_IP_VS_IPV6
1204 if (af == AF_INET6) {
1205 if (unlikely(iph.protocol == IPPROTO_ICMPV6)) {
1ca5bb54 1206 int related;
7b5f689a 1207 int verdict = ip_vs_out_icmp_v6(ipvs, skb, &related,
d4383f04 1208 hooknum, &iph);
1da177e4 1209
f5a41847 1210 if (related)
2a3b791e 1211 return verdict;
2a3b791e
JV
1212 }
1213 } else
1214#endif
1215 if (unlikely(iph.protocol == IPPROTO_ICMP)) {
1ca5bb54 1216 int related;
7b5f689a 1217 int verdict = ip_vs_out_icmp(ipvs, skb, &related, hooknum);
2a3b791e 1218
f5a41847 1219 if (related)
2a3b791e 1220 return verdict;
2a3b791e 1221 }
1da177e4 1222
18d6ade6 1223 pd = ip_vs_proto_data_get(ipvs, iph.protocol);
9330419d 1224 if (unlikely(!pd))
1da177e4 1225 return NF_ACCEPT;
9330419d 1226 pp = pd->pp;
1da177e4
LT
1227
1228 /* reassemble IP fragments */
2a3b791e 1229#ifdef CONFIG_IP_VS_IPV6
63dca2c0 1230 if (af == AF_INET)
2a3b791e 1231#endif
56f8a75c 1232 if (unlikely(ip_is_fragment(ip_hdr(skb)) && !pp->dont_defrag)) {
57781c1c 1233 if (ip_vs_gather_frags(ipvs, skb,
1ca5bb54 1234 ip_vs_defrag_user(hooknum)))
2a3b791e
JV
1235 return NF_STOLEN;
1236
4fd9beef 1237 ip_vs_fill_iph_skb(AF_INET, skb, false, &iph);
2a3b791e 1238 }
1da177e4
LT
1239
1240 /*
1241 * Check if the packet belongs to an existing entry
1242 */
0cf705c8 1243 cp = pp->conn_out_get(ipvs, af, skb, &iph);
1da177e4 1244
cb59155f 1245 if (likely(cp))
579eb62a 1246 return handle_response(af, skb, pd, cp, &iph, hooknum);
2300f045 1247 if (sysctl_nat_icmp_send(ipvs) &&
cb59155f
JA
1248 (pp->protocol == IPPROTO_TCP ||
1249 pp->protocol == IPPROTO_UDP ||
1250 pp->protocol == IPPROTO_SCTP)) {
1251 __be16 _ports[2], *pptr;
1252
2f74713d
JDB
1253 pptr = frag_safe_skb_hp(skb, iph.len,
1254 sizeof(_ports), _ports, &iph);
cb59155f
JA
1255 if (pptr == NULL)
1256 return NF_ACCEPT; /* Not for me */
48aed1b0 1257 if (ip_vs_has_real_service(ipvs, af, iph.protocol, &iph.saddr,
276472ea 1258 pptr[0])) {
cb59155f
JA
1259 /*
1260 * Notify the real server: there is no
1261 * existing entry if it is not RST
1262 * packet or not TCP packet.
1263 */
1264 if ((iph.protocol != IPPROTO_TCP &&
1265 iph.protocol != IPPROTO_SCTP)
1266 || ((iph.protocol == IPPROTO_TCP
1267 && !is_tcp_reset(skb, iph.len))
1268 || (iph.protocol == IPPROTO_SCTP
1269 && !is_sctp_abort(skb,
1270 iph.len)))) {
2a3b791e 1271#ifdef CONFIG_IP_VS_IPV6
cb59155f 1272 if (af == AF_INET6) {
cb59155f 1273 if (!skb->dev)
ed1c9f0e 1274 skb->dev = ipvs->net->loopback_dev;
cb59155f
JA
1275 icmpv6_send(skb,
1276 ICMPV6_DEST_UNREACH,
1277 ICMPV6_PORT_UNREACH,
1278 0);
1279 } else
2a3b791e 1280#endif
cb59155f
JA
1281 icmp_send(skb,
1282 ICMP_DEST_UNREACH,
1283 ICMP_PORT_UNREACH, 0);
1284 return NF_DROP;
1da177e4
LT
1285 }
1286 }
1da177e4 1287 }
b0e010c5 1288 IP_VS_DBG_PKT(12, af, pp, skb, iph.off,
cb59155f
JA
1289 "ip_vs_out: packet continues traversal as normal");
1290 return NF_ACCEPT;
1da177e4
LT
1291}
1292
fc604767 1293/*
cb59155f
JA
1294 * It is hooked at the NF_INET_FORWARD and NF_INET_LOCAL_IN chain,
1295 * used only for VS/NAT.
fc604767
JA
1296 * Check if packet is reply for established ip_vs_conn.
1297 */
1298static unsigned int
06198b34 1299ip_vs_reply4(void *priv, struct sk_buff *skb,
238e54c9 1300 const struct nf_hook_state *state)
fc604767 1301{
1b75097d 1302 return ip_vs_out(net_ipvs(state->net), state->hook, skb, AF_INET);
fc604767
JA
1303}
1304
1305/*
1306 * It is hooked at the NF_INET_LOCAL_OUT chain, used only for VS/NAT.
1307 * Check if packet is reply for established ip_vs_conn.
1308 */
1309static unsigned int
06198b34 1310ip_vs_local_reply4(void *priv, struct sk_buff *skb,
238e54c9 1311 const struct nf_hook_state *state)
fc604767 1312{
1b75097d 1313 return ip_vs_out(net_ipvs(state->net), state->hook, skb, AF_INET);
fc604767
JA
1314}
1315
1316#ifdef CONFIG_IP_VS_IPV6
1317
1318/*
cb59155f
JA
1319 * It is hooked at the NF_INET_FORWARD and NF_INET_LOCAL_IN chain,
1320 * used only for VS/NAT.
fc604767
JA
1321 * Check if packet is reply for established ip_vs_conn.
1322 */
1323static unsigned int
06198b34 1324ip_vs_reply6(void *priv, struct sk_buff *skb,
238e54c9 1325 const struct nf_hook_state *state)
fc604767 1326{
1b75097d 1327 return ip_vs_out(net_ipvs(state->net), state->hook, skb, AF_INET6);
fc604767
JA
1328}
1329
1330/*
1331 * It is hooked at the NF_INET_LOCAL_OUT chain, used only for VS/NAT.
1332 * Check if packet is reply for established ip_vs_conn.
1333 */
1334static unsigned int
06198b34 1335ip_vs_local_reply6(void *priv, struct sk_buff *skb,
238e54c9 1336 const struct nf_hook_state *state)
fc604767 1337{
1b75097d 1338 return ip_vs_out(net_ipvs(state->net), state->hook, skb, AF_INET6);
fc604767
JA
1339}
1340
1341#endif
1da177e4 1342
3b5ca617 1343static unsigned int
d8f44c33
EB
1344ip_vs_try_to_schedule(struct netns_ipvs *ipvs, int af, struct sk_buff *skb,
1345 struct ip_vs_proto_data *pd,
3b5ca617
AG
1346 int *verdict, struct ip_vs_conn **cpp,
1347 struct ip_vs_iphdr *iph)
1348{
1349 struct ip_vs_protocol *pp = pd->pp;
1350
1351 if (!iph->fragoffs) {
1352 /* No (second) fragments need to enter here, as nf_defrag_ipv6
1353 * replayed fragment zero will already have created the cp
1354 */
1355
1356 /* Schedule and create new connection entry into cpp */
d8f44c33 1357 if (!pp->conn_schedule(ipvs, af, skb, pd, verdict, cpp, iph))
3b5ca617
AG
1358 return 0;
1359 }
1360
1361 if (unlikely(!*cpp)) {
1362 /* sorry, all this trouble for a no-hit :) */
1363 IP_VS_DBG_PKT(12, af, pp, skb, iph->off,
1364 "ip_vs_in: packet continues traversal as normal");
1365 if (iph->fragoffs) {
1366 /* Fragment that couldn't be mapped to a conn entry
1367 * is missing module nf_defrag_ipv6
1368 */
1369 IP_VS_DBG_RL("Unhandled frag, load nf_defrag_ipv6\n");
1370 IP_VS_DBG_PKT(7, af, pp, skb, iph->off,
1371 "unhandled fragment");
1372 }
1373 *verdict = NF_ACCEPT;
1374 return 0;
1375 }
1376
1377 return 1;
1378}
1379
1da177e4
LT
1380/*
1381 * Handle ICMP messages in the outside-to-inside direction (incoming).
1382 * Find any that might be relevant, check against existing connections,
1383 * forward to the right destination host if relevant.
1384 * Currently handles error types - unreachable, quench, ttl exceeded.
1385 */
e905a9ed 1386static int
6f2bcea9
EB
1387ip_vs_in_icmp(struct netns_ipvs *ipvs, struct sk_buff *skb, int *related,
1388 unsigned int hooknum)
1da177e4 1389{
1da177e4
LT
1390 struct iphdr *iph;
1391 struct icmphdr _icmph, *ic;
1392 struct iphdr _ciph, *cih; /* The ip header contained within the ICMP */
51ef348b 1393 struct ip_vs_iphdr ciph;
1da177e4
LT
1394 struct ip_vs_conn *cp;
1395 struct ip_vs_protocol *pp;
9330419d 1396 struct ip_vs_proto_data *pd;
f2edb9f7 1397 unsigned int offset, offset2, ihl, verdict;
6044eeff 1398 bool ipip, new_cp = false;
1da177e4
LT
1399
1400 *related = 1;
1401
1402 /* reassemble IP fragments */
56f8a75c 1403 if (ip_is_fragment(ip_hdr(skb))) {
57781c1c 1404 if (ip_vs_gather_frags(ipvs, skb, ip_vs_defrag_user(hooknum)))
1da177e4 1405 return NF_STOLEN;
1da177e4
LT
1406 }
1407
eddc9ec5 1408 iph = ip_hdr(skb);
1da177e4
LT
1409 offset = ihl = iph->ihl * 4;
1410 ic = skb_header_pointer(skb, offset, sizeof(_icmph), &_icmph);
1411 if (ic == NULL)
1412 return NF_DROP;
1413
14d5e834 1414 IP_VS_DBG(12, "Incoming ICMP (%d,%d) %pI4->%pI4\n",
1da177e4 1415 ic->type, ntohs(icmp_id(ic)),
14d5e834 1416 &iph->saddr, &iph->daddr);
1da177e4
LT
1417
1418 /*
1419 * Work through seeing if this is for us.
1420 * These checks are supposed to be in an order that means easy
1421 * things are checked first to speed up processing.... however
1422 * this means that some packets will manage to get a long way
1423 * down this stack and then be rejected, but that's life.
1424 */
1425 if ((ic->type != ICMP_DEST_UNREACH) &&
1426 (ic->type != ICMP_SOURCE_QUENCH) &&
1427 (ic->type != ICMP_TIME_EXCEEDED)) {
1428 *related = 0;
1429 return NF_ACCEPT;
1430 }
1431
1432 /* Now find the contained IP header */
1433 offset += sizeof(_icmph);
1434 cih = skb_header_pointer(skb, offset, sizeof(_ciph), &_ciph);
1435 if (cih == NULL)
1436 return NF_ACCEPT; /* The packet looks wrong, ignore */
1437
f2edb9f7
JA
1438 /* Special case for errors for IPIP packets */
1439 ipip = false;
1440 if (cih->protocol == IPPROTO_IPIP) {
1441 if (unlikely(cih->frag_off & htons(IP_OFFSET)))
1442 return NF_ACCEPT;
1443 /* Error for our IPIP must arrive at LOCAL_IN */
1444 if (!(skb_rtable(skb)->rt_flags & RTCF_LOCAL))
1445 return NF_ACCEPT;
1446 offset += cih->ihl * 4;
1447 cih = skb_header_pointer(skb, offset, sizeof(_ciph), &_ciph);
1448 if (cih == NULL)
1449 return NF_ACCEPT; /* The packet looks wrong, ignore */
1450 ipip = true;
1451 }
1452
18d6ade6 1453 pd = ip_vs_proto_data_get(ipvs, cih->protocol);
9330419d 1454 if (!pd)
1da177e4 1455 return NF_ACCEPT;
9330419d 1456 pp = pd->pp;
1da177e4
LT
1457
1458 /* Is the embedded protocol header present? */
4412ec49 1459 if (unlikely(cih->frag_off & htons(IP_OFFSET) &&
1da177e4
LT
1460 pp->dont_defrag))
1461 return NF_ACCEPT;
1462
0d79641a
JA
1463 IP_VS_DBG_PKT(11, AF_INET, pp, skb, offset,
1464 "Checking incoming ICMP for");
1da177e4 1465
f2edb9f7 1466 offset2 = offset;
4fd9beef 1467 ip_vs_fill_iph_skb_icmp(AF_INET, skb, offset, !ipip, &ciph);
63dca2c0 1468 offset = ciph.len;
b0e010c5 1469
f2edb9f7
JA
1470 /* The embedded headers contain source and dest in reverse order.
1471 * For IPIP this is error for request, not for reply.
1472 */
ab161976 1473 cp = pp->conn_in_get(ipvs, AF_INET, skb, &ciph);
6044eeff
AG
1474
1475 if (!cp) {
1476 int v;
1477
a47b4300 1478 if (!sysctl_schedule_icmp(ipvs))
6044eeff
AG
1479 return NF_ACCEPT;
1480
d8f44c33 1481 if (!ip_vs_try_to_schedule(ipvs, AF_INET, skb, pd, &v, &cp, &ciph))
6044eeff
AG
1482 return v;
1483 new_cp = true;
1484 }
1da177e4
LT
1485
1486 verdict = NF_DROP;
1487
1488 /* Ensure the checksum is correct */
60476372 1489 if (!skb_csum_unnecessary(skb) && ip_vs_checksum_complete(skb, ihl)) {
1da177e4 1490 /* Failed checksum! */
14d5e834
HH
1491 IP_VS_DBG(1, "Incoming ICMP: failed checksum from %pI4!\n",
1492 &iph->saddr);
1da177e4
LT
1493 goto out;
1494 }
1495
f2edb9f7
JA
1496 if (ipip) {
1497 __be32 info = ic->un.gateway;
f44a5f45
PC
1498 __u8 type = ic->type;
1499 __u8 code = ic->code;
f2edb9f7
JA
1500
1501 /* Update the MTU */
1502 if (ic->type == ICMP_DEST_UNREACH &&
1503 ic->code == ICMP_FRAG_NEEDED) {
1504 struct ip_vs_dest *dest = cp->dest;
1505 u32 mtu = ntohs(ic->un.frag.mtu);
f44a5f45 1506 __be16 frag_off = cih->frag_off;
f2edb9f7
JA
1507
1508 /* Strip outer IP and ICMP, go to IPIP header */
f44a5f45
PC
1509 if (pskb_pull(skb, ihl + sizeof(_icmph)) == NULL)
1510 goto ignore_ipip;
f2edb9f7
JA
1511 offset2 -= ihl + sizeof(_icmph);
1512 skb_reset_network_header(skb);
1513 IP_VS_DBG(12, "ICMP for IPIP %pI4->%pI4: mtu=%u\n",
1514 &ip_hdr(skb)->saddr, &ip_hdr(skb)->daddr, mtu);
6f2bcea9 1515 ipv4_update_pmtu(skb, ipvs->net,
f2edb9f7 1516 mtu, 0, 0, 0, 0);
f2edb9f7 1517 /* Client uses PMTUD? */
f44a5f45 1518 if (!(frag_off & htons(IP_DF)))
f2edb9f7
JA
1519 goto ignore_ipip;
1520 /* Prefer the resulting PMTU */
1521 if (dest) {
026ace06
JA
1522 struct ip_vs_dest_dst *dest_dst;
1523
1524 rcu_read_lock();
1525 dest_dst = rcu_dereference(dest->dest_dst);
1526 if (dest_dst)
1527 mtu = dst_mtu(dest_dst->dst_cache);
1528 rcu_read_unlock();
f2edb9f7
JA
1529 }
1530 if (mtu > 68 + sizeof(struct iphdr))
1531 mtu -= sizeof(struct iphdr);
1532 info = htonl(mtu);
1533 }
1534 /* Strip outer IP, ICMP and IPIP, go to IP header of
1535 * original request.
1536 */
f44a5f45
PC
1537 if (pskb_pull(skb, offset2) == NULL)
1538 goto ignore_ipip;
f2edb9f7
JA
1539 skb_reset_network_header(skb);
1540 IP_VS_DBG(12, "Sending ICMP for %pI4->%pI4: t=%u, c=%u, i=%u\n",
1541 &ip_hdr(skb)->saddr, &ip_hdr(skb)->daddr,
f44a5f45
PC
1542 type, code, ntohl(info));
1543 icmp_send(skb, type, code, info);
f2edb9f7
JA
1544 /* ICMP can be shorter but anyways, account it */
1545 ip_vs_out_stats(cp, skb);
1546
1547ignore_ipip:
1548 consume_skb(skb);
1549 verdict = NF_STOLEN;
1550 goto out;
1551 }
1552
1da177e4
LT
1553 /* do the statistics and put it back */
1554 ip_vs_in_stats(cp, skb);
06f3d7f9
JA
1555 if (IPPROTO_TCP == cih->protocol || IPPROTO_UDP == cih->protocol ||
1556 IPPROTO_SCTP == cih->protocol)
1da177e4 1557 offset += 2 * sizeof(__u16);
d4383f04 1558 verdict = ip_vs_icmp_xmit(skb, cp, pp, offset, hooknum, &ciph);
1da177e4 1559
552ad65a 1560out:
6044eeff
AG
1561 if (likely(!new_cp))
1562 __ip_vs_conn_put(cp);
1563 else
1564 ip_vs_conn_put(cp);
1da177e4
LT
1565
1566 return verdict;
1567}
1568
2a3b791e 1569#ifdef CONFIG_IP_VS_IPV6
6f2bcea9
EB
1570static int ip_vs_in_icmp_v6(struct netns_ipvs *ipvs, struct sk_buff *skb,
1571 int *related, unsigned int hooknum,
1572 struct ip_vs_iphdr *iph)
2a3b791e 1573{
2a3b791e 1574 struct icmp6hdr _icmph, *ic;
63dca2c0 1575 struct ip_vs_iphdr ciph = {.flags = 0, .fragoffs = 0};/*Contained IP */
2a3b791e
JV
1576 struct ip_vs_conn *cp;
1577 struct ip_vs_protocol *pp;
9330419d 1578 struct ip_vs_proto_data *pd;
b0e010c5 1579 unsigned int offset, verdict;
6044eeff 1580 bool new_cp = false;
2a3b791e 1581
63dca2c0 1582 *related = 1;
2a3b791e 1583
2f74713d 1584 ic = frag_safe_skb_hp(skb, iph->len, sizeof(_icmph), &_icmph, iph);
2a3b791e
JV
1585 if (ic == NULL)
1586 return NF_DROP;
1587
2a3b791e
JV
1588 /*
1589 * Work through seeing if this is for us.
1590 * These checks are supposed to be in an order that means easy
1591 * things are checked first to speed up processing.... however
1592 * this means that some packets will manage to get a long way
1593 * down this stack and then be rejected, but that's life.
1594 */
2fab8917 1595 if (ic->icmp6_type & ICMPV6_INFOMSG_MASK) {
2a3b791e
JV
1596 *related = 0;
1597 return NF_ACCEPT;
1598 }
2f74713d
JDB
1599 /* Fragment header that is before ICMP header tells us that:
1600 * it's not an error message since they can't be fragmented.
1601 */
e7165030 1602 if (iph->flags & IP6_FH_F_FRAG)
2f74713d 1603 return NF_DROP;
2a3b791e 1604
63dca2c0
JDB
1605 IP_VS_DBG(8, "Incoming ICMPv6 (%d,%d) %pI6c->%pI6c\n",
1606 ic->icmp6_type, ntohs(icmpv6_id(ic)),
1607 &iph->saddr, &iph->daddr);
1608
b0e010c5 1609 offset = iph->len + sizeof(_icmph);
4fd9beef 1610 if (!ip_vs_fill_iph_skb_icmp(AF_INET6, skb, offset, true, &ciph))
b0e010c5 1611 return NF_ACCEPT;
2a3b791e 1612
18d6ade6 1613 pd = ip_vs_proto_data_get(ipvs, ciph.protocol);
9330419d 1614 if (!pd)
2a3b791e 1615 return NF_ACCEPT;
9330419d 1616 pp = pd->pp;
2a3b791e 1617
63dca2c0
JDB
1618 /* Cannot handle fragmented embedded protocol */
1619 if (ciph.fragoffs)
2a3b791e
JV
1620 return NF_ACCEPT;
1621
b0e010c5 1622 IP_VS_DBG_PKT(11, AF_INET6, pp, skb, offset,
0d79641a 1623 "Checking incoming ICMPv6 for");
2a3b791e 1624
2f74713d
JDB
1625 /* The embedded headers contain source and dest in reverse order
1626 * if not from localhost
1627 */
ab161976 1628 cp = pp->conn_in_get(ipvs, AF_INET6, skb, &ciph);
2f74713d 1629
6044eeff
AG
1630 if (!cp) {
1631 int v;
1632
a47b4300 1633 if (!sysctl_schedule_icmp(ipvs))
6044eeff
AG
1634 return NF_ACCEPT;
1635
d8f44c33 1636 if (!ip_vs_try_to_schedule(ipvs, AF_INET6, skb, pd, &v, &cp, &ciph))
6044eeff
AG
1637 return v;
1638
1639 new_cp = true;
1640 }
1641
2f74713d
JDB
1642 /* VS/TUN, VS/DR and LOCALNODE just let it go */
1643 if ((hooknum == NF_INET_LOCAL_OUT) &&
1644 (IP_VS_FWD_METHOD(cp) != IP_VS_CONN_F_MASQ)) {
6044eeff
AG
1645 verdict = NF_ACCEPT;
1646 goto out;
2f74713d 1647 }
2a3b791e 1648
2a3b791e
JV
1649 /* do the statistics and put it back */
1650 ip_vs_in_stats(cp, skb);
63dca2c0
JDB
1651
1652 /* Need to mangle contained IPv6 header in ICMPv6 packet */
b0e010c5 1653 offset = ciph.len;
63dca2c0
JDB
1654 if (IPPROTO_TCP == ciph.protocol || IPPROTO_UDP == ciph.protocol ||
1655 IPPROTO_SCTP == ciph.protocol)
b0e010c5 1656 offset += 2 * sizeof(__u16); /* Also mangle ports */
63dca2c0 1657
b0e010c5 1658 verdict = ip_vs_icmp_xmit_v6(skb, cp, pp, offset, hooknum, &ciph);
2a3b791e 1659
6044eeff
AG
1660out:
1661 if (likely(!new_cp))
1662 __ip_vs_conn_put(cp);
1663 else
1664 ip_vs_conn_put(cp);
2a3b791e
JV
1665
1666 return verdict;
1667}
1668#endif
1669
1670
1da177e4
LT
1671/*
1672 * Check if it's for virtual services, look it up,
1673 * and send it on its way...
1674 */
1675static unsigned int
6e385bb3 1676ip_vs_in(struct netns_ipvs *ipvs, unsigned int hooknum, struct sk_buff *skb, int af)
1da177e4 1677{
51ef348b 1678 struct ip_vs_iphdr iph;
1da177e4 1679 struct ip_vs_protocol *pp;
9330419d 1680 struct ip_vs_proto_data *pd;
1da177e4 1681 struct ip_vs_conn *cp;
4a516f11 1682 int ret, pkts;
d752c364 1683 int conn_reuse_mode;
340c78e5 1684 struct sock *sk;
2a3b791e 1685
fc604767
JA
1686 /* Already marked as IPVS request or reply? */
1687 if (skb->ipvs_property)
1688 return NF_ACCEPT;
1689
1da177e4 1690 /*
cb59155f
JA
1691 * Big tappo:
1692 * - remote client: only PACKET_HOST
1693 * - route: used for struct net when skb->dev is unset
1da177e4 1694 */
cb59155f
JA
1695 if (unlikely((skb->pkt_type != PACKET_HOST &&
1696 hooknum != NF_INET_LOCAL_OUT) ||
1697 !skb_dst(skb))) {
4fd9beef 1698 ip_vs_fill_iph_skb(af, skb, false, &iph);
cb59155f
JA
1699 IP_VS_DBG_BUF(12, "packet type=%d proto=%d daddr=%s"
1700 " ignored in hook %u\n",
1701 skb->pkt_type, iph.protocol,
1702 IP_VS_DBG_ADDR(af, &iph.daddr), hooknum);
1da177e4
LT
1703 return NF_ACCEPT;
1704 }
7a4f0761 1705 /* ipvs enabled in this netns ? */
0c12582f 1706 if (unlikely(sysctl_backup_only(ipvs) || !ipvs->enable))
7a4f0761
HS
1707 return NF_ACCEPT;
1708
4fd9beef 1709 ip_vs_fill_iph_skb(af, skb, false, &iph);
cb59155f
JA
1710
1711 /* Bad... Do not break raw sockets */
340c78e5
ED
1712 sk = skb_to_full_sk(skb);
1713 if (unlikely(sk && hooknum == NF_INET_LOCAL_OUT &&
cb59155f 1714 af == AF_INET)) {
cb59155f 1715
340c78e5 1716 if (sk->sk_family == PF_INET && inet_sk(sk)->nodefrag)
cb59155f
JA
1717 return NF_ACCEPT;
1718 }
1da177e4 1719
94b26551
JV
1720#ifdef CONFIG_IP_VS_IPV6
1721 if (af == AF_INET6) {
1722 if (unlikely(iph.protocol == IPPROTO_ICMPV6)) {
1ca5bb54 1723 int related;
6f2bcea9
EB
1724 int verdict = ip_vs_in_icmp_v6(ipvs, skb, &related,
1725 hooknum, &iph);
1da177e4 1726
94b26551
JV
1727 if (related)
1728 return verdict;
94b26551
JV
1729 }
1730 } else
1731#endif
1732 if (unlikely(iph.protocol == IPPROTO_ICMP)) {
1ca5bb54 1733 int related;
6f2bcea9
EB
1734 int verdict = ip_vs_in_icmp(ipvs, skb, &related,
1735 hooknum);
94b26551
JV
1736
1737 if (related)
1738 return verdict;
94b26551 1739 }
1da177e4
LT
1740
1741 /* Protocol supported? */
18d6ade6 1742 pd = ip_vs_proto_data_get(ipvs, iph.protocol);
4e478098
AG
1743 if (unlikely(!pd)) {
1744 /* The only way we'll see this packet again is if it's
1745 * encapsulated, so mark it with ipvs_property=1 so we
1746 * skip it if we're ignoring tunneled packets
1747 */
1748 if (sysctl_ignore_tunneled(ipvs))
1749 skb->ipvs_property = 1;
1750
1da177e4 1751 return NF_ACCEPT;
4e478098 1752 }
9330419d 1753 pp = pd->pp;
1da177e4
LT
1754 /*
1755 * Check if the packet belongs to an existing connection entry
1756 */
ab161976 1757 cp = pp->conn_in_get(ipvs, af, skb, &iph);
dc7b3eb9 1758
d752c364
MRL
1759 conn_reuse_mode = sysctl_conn_reuse_mode(ipvs);
1760 if (conn_reuse_mode && !iph.fragoffs &&
1761 is_new_conn(skb, &iph) && cp &&
1762 ((unlikely(sysctl_expire_nodest_conn(ipvs)) && cp->dest &&
1763 unlikely(!atomic_read(&cp->dest->weight))) ||
1764 unlikely(is_new_conn_expected(cp, conn_reuse_mode)))) {
1765 if (!atomic_read(&cp->n_control))
1766 ip_vs_conn_expire_now(cp);
dc7b3eb9
GL
1767 __ip_vs_conn_put(cp);
1768 cp = NULL;
1769 }
1770
3b5ca617 1771 if (unlikely(!cp)) {
1da177e4
LT
1772 int v;
1773
d8f44c33 1774 if (!ip_vs_try_to_schedule(ipvs, af, skb, pd, &v, &cp, &iph))
1da177e4
LT
1775 return v;
1776 }
1777
b0e010c5 1778 IP_VS_DBG_PKT(11, af, pp, skb, iph.off, "Incoming packet");
3b5ca617 1779
1da177e4
LT
1780 /* Check the server status */
1781 if (cp->dest && !(cp->dest->flags & IP_VS_DEST_F_AVAILABLE)) {
1782 /* the destination server is not available */
1783
71a8ab6c 1784 if (sysctl_expire_nodest_conn(ipvs)) {
1da177e4
LT
1785 /* try to expire the connection immediately */
1786 ip_vs_conn_expire_now(cp);
1da177e4 1787 }
dc8103f2
JA
1788 /* don't restart its timer, and silently
1789 drop the packet. */
1790 __ip_vs_conn_put(cp);
1da177e4
LT
1791 return NF_DROP;
1792 }
1793
1794 ip_vs_in_stats(cp, skb);
4a516f11 1795 ip_vs_set_state(cp, IP_VS_DIR_INPUT, skb, pd);
1da177e4 1796 if (cp->packet_xmit)
d4383f04 1797 ret = cp->packet_xmit(skb, cp, pp, &iph);
1da177e4
LT
1798 /* do not touch skb anymore */
1799 else {
1800 IP_VS_DBG_RL("warning: packet_xmit is null");
1801 ret = NF_ACCEPT;
1802 }
1803
efac5276
RB
1804 /* Increase its packet counter and check if it is needed
1805 * to be synchronized
1806 *
1807 * Sync connection if it is about to close to
1808 * encorage the standby servers to update the connections timeout
986a0757
HS
1809 *
1810 * For ONE_PKT let ip_vs_sync_conn() do the filter work.
efac5276 1811 */
f131315f 1812
986a0757 1813 if (cp->flags & IP_VS_CONN_F_ONE_PACKET)
59e0350e 1814 pkts = sysctl_sync_threshold(ipvs);
986a0757
HS
1815 else
1816 pkts = atomic_add_return(1, &cp->in_pkts);
1817
749c42b6 1818 if (ipvs->sync_state & IP_VS_STATE_MASTER)
b61a8c1a 1819 ip_vs_sync_conn(ipvs, cp, pkts);
1da177e4
LT
1820
1821 ip_vs_conn_put(cp);
1822 return ret;
1823}
1824
cb59155f
JA
1825/*
1826 * AF_INET handler in NF_INET_LOCAL_IN chain
1827 * Schedule and forward packets from remote clients
1828 */
1829static unsigned int
06198b34 1830ip_vs_remote_request4(void *priv, struct sk_buff *skb,
238e54c9 1831 const struct nf_hook_state *state)
cb59155f 1832{
6e385bb3 1833 return ip_vs_in(net_ipvs(state->net), state->hook, skb, AF_INET);
cb59155f
JA
1834}
1835
1836/*
1837 * AF_INET handler in NF_INET_LOCAL_OUT chain
1838 * Schedule and forward packets from local clients
1839 */
1840static unsigned int
06198b34 1841ip_vs_local_request4(void *priv, struct sk_buff *skb,
238e54c9 1842 const struct nf_hook_state *state)
cb59155f 1843{
6e385bb3 1844 return ip_vs_in(net_ipvs(state->net), state->hook, skb, AF_INET);
cb59155f
JA
1845}
1846
1847#ifdef CONFIG_IP_VS_IPV6
1848
1849/*
1850 * AF_INET6 handler in NF_INET_LOCAL_IN chain
1851 * Schedule and forward packets from remote clients
1852 */
1853static unsigned int
06198b34 1854ip_vs_remote_request6(void *priv, struct sk_buff *skb,
238e54c9 1855 const struct nf_hook_state *state)
cb59155f 1856{
6e385bb3 1857 return ip_vs_in(net_ipvs(state->net), state->hook, skb, AF_INET6);
cb59155f
JA
1858}
1859
1860/*
1861 * AF_INET6 handler in NF_INET_LOCAL_OUT chain
1862 * Schedule and forward packets from local clients
1863 */
1864static unsigned int
06198b34 1865ip_vs_local_request6(void *priv, struct sk_buff *skb,
238e54c9 1866 const struct nf_hook_state *state)
cb59155f 1867{
6e385bb3 1868 return ip_vs_in(net_ipvs(state->net), state->hook, skb, AF_INET6);
cb59155f
JA
1869}
1870
1871#endif
1872
1da177e4
LT
1873
1874/*
6e23ae2a 1875 * It is hooked at the NF_INET_FORWARD chain, in order to catch ICMP
1da177e4
LT
1876 * related packets destined for 0.0.0.0/0.
1877 * When fwmark-based virtual service is used, such as transparent
1878 * cache cluster, TCP packets can be marked and routed to ip_vs_in,
1879 * but ICMP destined for 0.0.0.0/0 cannot not be easily marked and
6e23ae2a 1880 * sent to ip_vs_in_icmp. So, catch them at the NF_INET_FORWARD chain
1da177e4
LT
1881 * and send them to ip_vs_in_icmp.
1882 */
1883static unsigned int
06198b34 1884ip_vs_forward_icmp(void *priv, struct sk_buff *skb,
238e54c9 1885 const struct nf_hook_state *state)
1da177e4
LT
1886{
1887 int r;
6f2bcea9 1888 struct netns_ipvs *ipvs = net_ipvs(state->net);
1da177e4 1889
3db05fea 1890 if (ip_hdr(skb)->protocol != IPPROTO_ICMP)
1da177e4
LT
1891 return NF_ACCEPT;
1892
7a4f0761 1893 /* ipvs enabled in this netns ? */
0c12582f 1894 if (unlikely(sysctl_backup_only(ipvs) || !ipvs->enable))
7a4f0761
HS
1895 return NF_ACCEPT;
1896
6f2bcea9 1897 return ip_vs_in_icmp(ipvs, skb, &r, state->hook);
1da177e4
LT
1898}
1899
2a3b791e
JV
1900#ifdef CONFIG_IP_VS_IPV6
1901static unsigned int
06198b34 1902ip_vs_forward_icmp_v6(void *priv, struct sk_buff *skb,
238e54c9 1903 const struct nf_hook_state *state)
2a3b791e
JV
1904{
1905 int r;
6f2bcea9 1906 struct netns_ipvs *ipvs = net_ipvs(state->net);
63dca2c0 1907 struct ip_vs_iphdr iphdr;
2a3b791e 1908
4fd9beef 1909 ip_vs_fill_iph_skb(AF_INET6, skb, false, &iphdr);
63dca2c0 1910 if (iphdr.protocol != IPPROTO_ICMPV6)
2a3b791e
JV
1911 return NF_ACCEPT;
1912
7a4f0761 1913 /* ipvs enabled in this netns ? */
0c12582f 1914 if (unlikely(sysctl_backup_only(ipvs) || !ipvs->enable))
7a4f0761
HS
1915 return NF_ACCEPT;
1916
6f2bcea9 1917 return ip_vs_in_icmp_v6(ipvs, skb, &r, state->hook, &iphdr);
2a3b791e
JV
1918}
1919#endif
1920
1da177e4 1921
1999414a 1922static struct nf_hook_ops ip_vs_ops[] __read_mostly = {
cb59155f
JA
1923 /* After packet filtering, change source only for VS/NAT */
1924 {
1925 .hook = ip_vs_reply4,
4c809d63 1926 .pf = NFPROTO_IPV4,
cb59155f 1927 .hooknum = NF_INET_LOCAL_IN,
afb523c5 1928 .priority = NF_IP_PRI_NAT_SRC - 2,
cb59155f 1929 },
41c5b317
PM
1930 /* After packet filtering, forward packet through VS/DR, VS/TUN,
1931 * or VS/NAT(change destination), so that filtering rules can be
1932 * applied to IPVS. */
1933 {
cb59155f 1934 .hook = ip_vs_remote_request4,
4c809d63 1935 .pf = NFPROTO_IPV4,
cb59155f 1936 .hooknum = NF_INET_LOCAL_IN,
afb523c5 1937 .priority = NF_IP_PRI_NAT_SRC - 1,
41c5b317 1938 },
fc604767 1939 /* Before ip_vs_in, change source only for VS/NAT */
41c5b317 1940 {
fc604767 1941 .hook = ip_vs_local_reply4,
4c809d63 1942 .pf = NFPROTO_IPV4,
fc604767 1943 .hooknum = NF_INET_LOCAL_OUT,
afb523c5 1944 .priority = NF_IP_PRI_NAT_DST + 1,
41c5b317 1945 },
cb59155f
JA
1946 /* After mangle, schedule and forward local requests */
1947 {
1948 .hook = ip_vs_local_request4,
4c809d63 1949 .pf = NFPROTO_IPV4,
cb59155f 1950 .hooknum = NF_INET_LOCAL_OUT,
afb523c5 1951 .priority = NF_IP_PRI_NAT_DST + 2,
cb59155f 1952 },
41c5b317
PM
1953 /* After packet filtering (but before ip_vs_out_icmp), catch icmp
1954 * destined for 0.0.0.0/0, which is for incoming IPVS connections */
1955 {
1956 .hook = ip_vs_forward_icmp,
4c809d63 1957 .pf = NFPROTO_IPV4,
cb59155f
JA
1958 .hooknum = NF_INET_FORWARD,
1959 .priority = 99,
41c5b317 1960 },
fc604767
JA
1961 /* After packet filtering, change source only for VS/NAT */
1962 {
1963 .hook = ip_vs_reply4,
4c809d63 1964 .pf = NFPROTO_IPV4,
fc604767
JA
1965 .hooknum = NF_INET_FORWARD,
1966 .priority = 100,
1967 },
473b23d3 1968#ifdef CONFIG_IP_VS_IPV6
cb59155f
JA
1969 /* After packet filtering, change source only for VS/NAT */
1970 {
1971 .hook = ip_vs_reply6,
4c809d63 1972 .pf = NFPROTO_IPV6,
cb59155f 1973 .hooknum = NF_INET_LOCAL_IN,
afb523c5 1974 .priority = NF_IP6_PRI_NAT_SRC - 2,
cb59155f 1975 },
473b23d3
JV
1976 /* After packet filtering, forward packet through VS/DR, VS/TUN,
1977 * or VS/NAT(change destination), so that filtering rules can be
1978 * applied to IPVS. */
1979 {
cb59155f 1980 .hook = ip_vs_remote_request6,
4c809d63 1981 .pf = NFPROTO_IPV6,
cb59155f 1982 .hooknum = NF_INET_LOCAL_IN,
afb523c5 1983 .priority = NF_IP6_PRI_NAT_SRC - 1,
473b23d3 1984 },
fc604767 1985 /* Before ip_vs_in, change source only for VS/NAT */
473b23d3 1986 {
fc604767 1987 .hook = ip_vs_local_reply6,
eb90b0c7 1988 .pf = NFPROTO_IPV6,
fc604767 1989 .hooknum = NF_INET_LOCAL_OUT,
afb523c5 1990 .priority = NF_IP6_PRI_NAT_DST + 1,
473b23d3 1991 },
cb59155f
JA
1992 /* After mangle, schedule and forward local requests */
1993 {
1994 .hook = ip_vs_local_request6,
4c809d63 1995 .pf = NFPROTO_IPV6,
cb59155f 1996 .hooknum = NF_INET_LOCAL_OUT,
afb523c5 1997 .priority = NF_IP6_PRI_NAT_DST + 2,
cb59155f 1998 },
473b23d3
JV
1999 /* After packet filtering (but before ip_vs_out_icmp), catch icmp
2000 * destined for 0.0.0.0/0, which is for incoming IPVS connections */
2001 {
2002 .hook = ip_vs_forward_icmp_v6,
4c809d63 2003 .pf = NFPROTO_IPV6,
cb59155f
JA
2004 .hooknum = NF_INET_FORWARD,
2005 .priority = 99,
473b23d3 2006 },
fc604767
JA
2007 /* After packet filtering, change source only for VS/NAT */
2008 {
2009 .hook = ip_vs_reply6,
4c809d63 2010 .pf = NFPROTO_IPV6,
fc604767
JA
2011 .hooknum = NF_INET_FORWARD,
2012 .priority = 100,
2013 },
473b23d3 2014#endif
1da177e4 2015};
61b1ab45
HS
2016/*
2017 * Initialize IP Virtual Server netns mem.
2018 */
2019static int __net_init __ip_vs_init(struct net *net)
2020{
2021 struct netns_ipvs *ipvs;
2022
61b1ab45 2023 ipvs = net_generic(net, ip_vs_net_id);
0a9ee813 2024 if (ipvs == NULL)
61b1ab45 2025 return -ENOMEM;
0a9ee813 2026
7a4f0761
HS
2027 /* Hold the beast until a service is registerd */
2028 ipvs->enable = 0;
f6340ee0 2029 ipvs->net = net;
61b1ab45
HS
2030 /* Counters used for creating unique names */
2031 ipvs->gen = atomic_read(&ipvs_netns_cnt);
2032 atomic_inc(&ipvs_netns_cnt);
2033 net->ipvs = ipvs;
7a4f0761 2034
a4dd0360 2035 if (ip_vs_estimator_net_init(ipvs) < 0)
7a4f0761
HS
2036 goto estimator_fail;
2037
3d993766 2038 if (ip_vs_control_net_init(ipvs) < 0)
7a4f0761
HS
2039 goto control_fail;
2040
7d1f88ec 2041 if (ip_vs_protocol_net_init(ipvs) < 0)
7a4f0761
HS
2042 goto protocol_fail;
2043
b5dd212c 2044 if (ip_vs_app_net_init(ipvs) < 0)
7a4f0761
HS
2045 goto app_fail;
2046
2f3edc6a 2047 if (ip_vs_conn_net_init(ipvs) < 0)
7a4f0761
HS
2048 goto conn_fail;
2049
802cb437 2050 if (ip_vs_sync_net_init(ipvs) < 0)
7a4f0761
HS
2051 goto sync_fail;
2052
a870c8c5 2053 printk(KERN_INFO "IPVS: Creating netns size=%zu id=%d\n",
61b1ab45
HS
2054 sizeof(struct netns_ipvs), ipvs->gen);
2055 return 0;
7a4f0761
HS
2056/*
2057 * Error handling
2058 */
2059
2060sync_fail:
2f3edc6a 2061 ip_vs_conn_net_cleanup(ipvs);
7a4f0761 2062conn_fail:
b5dd212c 2063 ip_vs_app_net_cleanup(ipvs);
7a4f0761 2064app_fail:
7d1f88ec 2065 ip_vs_protocol_net_cleanup(ipvs);
7a4f0761 2066protocol_fail:
3d993766 2067 ip_vs_control_net_cleanup(ipvs);
7a4f0761 2068control_fail:
a4dd0360 2069 ip_vs_estimator_net_cleanup(ipvs);
7a4f0761 2070estimator_fail:
39f618b4 2071 net->ipvs = NULL;
7a4f0761 2072 return -ENOMEM;
61b1ab45
HS
2073}
2074
2075static void __net_exit __ip_vs_cleanup(struct net *net)
2076{
56d2169b
EB
2077 struct netns_ipvs *ipvs = net_ipvs(net);
2078
2079 ip_vs_service_net_cleanup(ipvs); /* ip_vs_flush() with locks */
2f3edc6a 2080 ip_vs_conn_net_cleanup(ipvs);
b5dd212c 2081 ip_vs_app_net_cleanup(ipvs);
7d1f88ec 2082 ip_vs_protocol_net_cleanup(ipvs);
3d993766 2083 ip_vs_control_net_cleanup(ipvs);
a4dd0360 2084 ip_vs_estimator_net_cleanup(ipvs);
56d2169b 2085 IP_VS_DBG(2, "ipvs netns %d released\n", ipvs->gen);
39f618b4 2086 net->ipvs = NULL;
61b1ab45
HS
2087}
2088
7a4f0761
HS
2089static void __net_exit __ip_vs_dev_cleanup(struct net *net)
2090{
ebea1f7c 2091 struct netns_ipvs *ipvs = net_ipvs(net);
7a4f0761 2092 EnterFunction(2);
ebea1f7c 2093 ipvs->enable = 0; /* Disable packet reception */
8f4e0a18 2094 smp_wmb();
ebea1f7c 2095 ip_vs_sync_net_cleanup(ipvs);
7a4f0761
HS
2096 LeaveFunction(2);
2097}
2098
61b1ab45
HS
2099static struct pernet_operations ipvs_core_ops = {
2100 .init = __ip_vs_init,
2101 .exit = __ip_vs_cleanup,
2102 .id = &ip_vs_net_id,
2103 .size = sizeof(struct netns_ipvs),
2104};
1da177e4 2105
7a4f0761
HS
2106static struct pernet_operations ipvs_core_dev_ops = {
2107 .exit = __ip_vs_dev_cleanup,
2108};
2109
1da177e4
LT
2110/*
2111 * Initialize IP Virtual Server
2112 */
2113static int __init ip_vs_init(void)
2114{
2115 int ret;
2116
2117 ret = ip_vs_control_init();
2118 if (ret < 0) {
1e3e238e 2119 pr_err("can't setup control.\n");
6c8f7949 2120 goto exit;
1da177e4
LT
2121 }
2122
2123 ip_vs_protocol_init();
2124
1da177e4
LT
2125 ret = ip_vs_conn_init();
2126 if (ret < 0) {
1e3e238e 2127 pr_err("can't setup connection table.\n");
6c8f7949 2128 goto cleanup_protocol;
61b1ab45
HS
2129 }
2130
7a4f0761
HS
2131 ret = register_pernet_subsys(&ipvs_core_ops); /* Alloc ip_vs struct */
2132 if (ret < 0)
6c8f7949 2133 goto cleanup_conn;
7a4f0761
HS
2134
2135 ret = register_pernet_device(&ipvs_core_dev_ops);
2136 if (ret < 0)
2137 goto cleanup_sub;
2138
41c5b317 2139 ret = nf_register_hooks(ip_vs_ops, ARRAY_SIZE(ip_vs_ops));
1da177e4 2140 if (ret < 0) {
1e3e238e 2141 pr_err("can't register hooks.\n");
7a4f0761 2142 goto cleanup_dev;
1da177e4
LT
2143 }
2144
8537de8a
HS
2145 ret = ip_vs_register_nl_ioctl();
2146 if (ret < 0) {
2147 pr_err("can't register netlink/ioctl.\n");
2148 goto cleanup_hooks;
2149 }
2150
1e3e238e 2151 pr_info("ipvs loaded.\n");
7a4f0761 2152
1da177e4
LT
2153 return ret;
2154
8537de8a
HS
2155cleanup_hooks:
2156 nf_unregister_hooks(ip_vs_ops, ARRAY_SIZE(ip_vs_ops));
7a4f0761
HS
2157cleanup_dev:
2158 unregister_pernet_device(&ipvs_core_dev_ops);
2159cleanup_sub:
2160 unregister_pernet_subsys(&ipvs_core_ops);
552ad65a 2161cleanup_conn:
1da177e4 2162 ip_vs_conn_cleanup();
552ad65a 2163cleanup_protocol:
1da177e4
LT
2164 ip_vs_protocol_cleanup();
2165 ip_vs_control_cleanup();
6c8f7949 2166exit:
1da177e4
LT
2167 return ret;
2168}
2169
2170static void __exit ip_vs_cleanup(void)
2171{
8537de8a 2172 ip_vs_unregister_nl_ioctl();
41c5b317 2173 nf_unregister_hooks(ip_vs_ops, ARRAY_SIZE(ip_vs_ops));
7a4f0761
HS
2174 unregister_pernet_device(&ipvs_core_dev_ops);
2175 unregister_pernet_subsys(&ipvs_core_ops); /* free ip_vs struct */
1da177e4 2176 ip_vs_conn_cleanup();
1da177e4
LT
2177 ip_vs_protocol_cleanup();
2178 ip_vs_control_cleanup();
1e3e238e 2179 pr_info("ipvs unloaded.\n");
1da177e4
LT
2180}
2181
2182module_init(ip_vs_init);
2183module_exit(ip_vs_cleanup);
2184MODULE_LICENSE("GPL");