blob: bdda346a4f301cbc4ff9a6035d2a62d2fd4ecc32 [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
135 s = this_cpu_ptr(ipvs->cpustats);
136 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
165 s = this_cpu_ptr(ipvs->cpustats);
166 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
186 s = this_cpu_ptr(ipvs->cpustats);
187 s->ustats.conns++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700188}
189
190
191static inline int
192ip_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{
Hans Schillstrom93304192011-01-03 14:44:51 +0100196 if (unlikely(!pd->pp->state_transition))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700197 return 0;
Hans Schillstrom93304192011-01-03 14:44:51 +0100198 return pd->pp->state_transition(cp, direction, skb, pd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700199}
200
Hans Schillstroma5959d52010-11-19 14:25:10 +0100201static inline int
Simon Horman85999282010-08-22 21:37:53 +0900202ip_vs_conn_fill_param_persist(const struct ip_vs_service *svc,
203 struct sk_buff *skb, int protocol,
204 const union nf_inet_addr *caddr, __be16 cport,
205 const union nf_inet_addr *vaddr, __be16 vport,
206 struct ip_vs_conn_param *p)
207{
Hans Schillstrom6e67e582011-01-03 14:44:57 +0100208 ip_vs_conn_fill_param(svc->net, svc->af, protocol, caddr, cport, vaddr,
209 vport, p);
Simon Horman85999282010-08-22 21:37:53 +0900210 p->pe = svc->pe;
211 if (p->pe && p->pe->fill_param)
Hans Schillstroma5959d52010-11-19 14:25:10 +0100212 return p->pe->fill_param(p, skb);
213
214 return 0;
Simon Horman85999282010-08-22 21:37:53 +0900215}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700216
Linus Torvalds1da177e2005-04-16 15:20:36 -0700217/*
218 * IPVS persistent scheduling function
219 * It creates a connection entry according to its template if exists,
220 * or selects a server and creates a connection entry plus a template.
221 * Locking: we are svc user (svc->refcnt), so we hold all dests too
222 * Protocols supported: TCP, UDP
223 */
224static struct ip_vs_conn *
225ip_vs_sched_persist(struct ip_vs_service *svc,
Simon Horman85999282010-08-22 21:37:53 +0900226 struct sk_buff *skb,
Hans Schillstroma5959d52010-11-19 14:25:10 +0100227 __be16 src_port, __be16 dst_port, int *ignored)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700228{
229 struct ip_vs_conn *cp = NULL;
Julius Volz28364a52008-09-02 15:55:43 +0200230 struct ip_vs_iphdr iph;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700231 struct ip_vs_dest *dest;
232 struct ip_vs_conn *ct;
Simon Horman5b57a982010-08-22 21:37:51 +0900233 __be16 dport = 0; /* destination port to forward */
Julian Anastasov35757922010-09-17 14:18:16 +0200234 unsigned int flags;
Simon Hormanf11017e2010-08-22 21:37:52 +0900235 struct ip_vs_conn_param param;
Julius Volz28364a52008-09-02 15:55:43 +0200236 union nf_inet_addr snet; /* source network of the client,
237 after masking */
Julius Volzcd17f9e2008-09-02 15:55:46 +0200238
239 ip_vs_fill_iphdr(svc->af, skb_network_header(skb), &iph);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700240
241 /* Mask saddr with the netmask to adjust template granularity */
Julius Volzcd17f9e2008-09-02 15:55:46 +0200242#ifdef CONFIG_IP_VS_IPV6
243 if (svc->af == AF_INET6)
244 ipv6_addr_prefix(&snet.in6, &iph.saddr.in6, svc->netmask);
245 else
246#endif
247 snet.ip = iph.saddr.ip & svc->netmask;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700248
Julius Volzcd17f9e2008-09-02 15:55:46 +0200249 IP_VS_DBG_BUF(6, "p-schedule: src %s:%u dest %s:%u "
250 "mnet %s\n",
Hans Schillstromce144f22010-11-19 14:25:08 +0100251 IP_VS_DBG_ADDR(svc->af, &iph.saddr), ntohs(src_port),
252 IP_VS_DBG_ADDR(svc->af, &iph.daddr), ntohs(dst_port),
Julius Volzcd17f9e2008-09-02 15:55:46 +0200253 IP_VS_DBG_ADDR(svc->af, &snet));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700254
255 /*
256 * As far as we know, FTP is a very complicated network protocol, and
257 * it uses control connection and data connections. For active FTP,
258 * FTP server initialize data connection to the client, its source port
259 * is often 20. For passive FTP, FTP server tells the clients the port
260 * that it passively listens to, and the client issues the data
261 * connection. In the tunneling or direct routing mode, the load
262 * balancer is on the client-to-server half of connection, the port
263 * number is unknown to the load balancer. So, a conn template like
264 * <caddr, 0, vaddr, 0, daddr, 0> is created for persistent FTP
265 * service, and a template like <caddr, 0, vaddr, vport, daddr, dport>
266 * is created for other persistent services.
267 */
Simon Horman5b57a982010-08-22 21:37:51 +0900268 {
Simon Hormanf11017e2010-08-22 21:37:52 +0900269 int protocol = iph.protocol;
270 const union nf_inet_addr *vaddr = &iph.daddr;
271 const union nf_inet_addr fwmark = { .ip = htonl(svc->fwmark) };
272 __be16 vport = 0;
273
Hans Schillstromce144f22010-11-19 14:25:08 +0100274 if (dst_port == svc->port) {
Simon Horman5b57a982010-08-22 21:37:51 +0900275 /* non-FTP template:
276 * <protocol, caddr, 0, vaddr, vport, daddr, dport>
277 * FTP template:
278 * <protocol, caddr, 0, vaddr, 0, daddr, 0>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700279 */
280 if (svc->port != FTPPORT)
Hans Schillstromce144f22010-11-19 14:25:08 +0100281 vport = dst_port;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700282 } else {
Simon Horman5b57a982010-08-22 21:37:51 +0900283 /* Note: persistent fwmark-based services and
284 * persistent port zero service are handled here.
285 * fwmark template:
286 * <IPPROTO_IP,caddr,0,fwmark,0,daddr,0>
287 * port zero template:
288 * <protocol,caddr,0,vaddr,0,daddr,0>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700289 */
Julius Volz28364a52008-09-02 15:55:43 +0200290 if (svc->fwmark) {
Simon Horman5b57a982010-08-22 21:37:51 +0900291 protocol = IPPROTO_IP;
292 vaddr = &fwmark;
293 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700294 }
Hans Schillstroma5959d52010-11-19 14:25:10 +0100295 /* return *ignored = -1 so NF_DROP can be used */
296 if (ip_vs_conn_fill_param_persist(svc, skb, protocol, &snet, 0,
297 vaddr, vport, &param) < 0) {
298 *ignored = -1;
299 return NULL;
300 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700301 }
302
Simon Horman5b57a982010-08-22 21:37:51 +0900303 /* Check if a template already exists */
Simon Hormanf11017e2010-08-22 21:37:52 +0900304 ct = ip_vs_ct_in_get(&param);
Simon Horman5b57a982010-08-22 21:37:51 +0900305 if (!ct || !ip_vs_check_template(ct)) {
Hans Schillstroma5959d52010-11-19 14:25:10 +0100306 /*
307 * No template found or the dest of the connection
Simon Horman5b57a982010-08-22 21:37:51 +0900308 * template is not available.
Hans Schillstroma5959d52010-11-19 14:25:10 +0100309 * return *ignored=0 i.e. ICMP and NF_DROP
Simon Horman5b57a982010-08-22 21:37:51 +0900310 */
311 dest = svc->scheduler->schedule(svc, skb);
312 if (!dest) {
313 IP_VS_DBG(1, "p-schedule: no dest found.\n");
Simon Horman85999282010-08-22 21:37:53 +0900314 kfree(param.pe_data);
Hans Schillstroma5959d52010-11-19 14:25:10 +0100315 *ignored = 0;
Simon Horman5b57a982010-08-22 21:37:51 +0900316 return NULL;
317 }
318
Hans Schillstromce144f22010-11-19 14:25:08 +0100319 if (dst_port == svc->port && svc->port != FTPPORT)
Simon Horman5b57a982010-08-22 21:37:51 +0900320 dport = dest->port;
321
Simon Horman85999282010-08-22 21:37:53 +0900322 /* Create a template
323 * This adds param.pe_data to the template,
324 * and thus param.pe_data will be destroyed
325 * when the template expires */
Simon Hormanf11017e2010-08-22 21:37:52 +0900326 ct = ip_vs_conn_new(&param, &dest->addr, dport,
Hans Schillstrom0e051e62010-11-19 14:25:07 +0100327 IP_VS_CONN_F_TEMPLATE, dest, skb->mark);
Simon Horman85999282010-08-22 21:37:53 +0900328 if (ct == NULL) {
329 kfree(param.pe_data);
Hans Schillstroma5959d52010-11-19 14:25:10 +0100330 *ignored = -1;
Simon Horman5b57a982010-08-22 21:37:51 +0900331 return NULL;
Simon Horman85999282010-08-22 21:37:53 +0900332 }
Simon Horman5b57a982010-08-22 21:37:51 +0900333
334 ct->timeout = svc->timeout;
Simon Horman85999282010-08-22 21:37:53 +0900335 } else {
Simon Horman5b57a982010-08-22 21:37:51 +0900336 /* set destination with the found template */
337 dest = ct->dest;
Simon Horman85999282010-08-22 21:37:53 +0900338 kfree(param.pe_data);
339 }
Simon Horman5b57a982010-08-22 21:37:51 +0900340
Hans Schillstromce144f22010-11-19 14:25:08 +0100341 dport = dst_port;
Simon Horman5b57a982010-08-22 21:37:51 +0900342 if (dport == svc->port && dest->port)
343 dport = dest->port;
344
Nick Chalk26ec0372010-06-22 08:07:01 +0200345 flags = (svc->flags & IP_VS_SVC_F_ONEPACKET
346 && iph.protocol == IPPROTO_UDP)?
347 IP_VS_CONN_F_ONE_PACKET : 0;
348
Linus Torvalds1da177e2005-04-16 15:20:36 -0700349 /*
350 * Create a new connection according to the template
351 */
Hans Schillstrom6e67e582011-01-03 14:44:57 +0100352 ip_vs_conn_fill_param(svc->net, svc->af, iph.protocol, &iph.saddr,
353 src_port, &iph.daddr, dst_port, &param);
Hans Schillstromce144f22010-11-19 14:25:08 +0100354
Hans Schillstrom0e051e62010-11-19 14:25:07 +0100355 cp = ip_vs_conn_new(&param, &dest->addr, dport, flags, dest, skb->mark);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700356 if (cp == NULL) {
357 ip_vs_conn_put(ct);
Hans Schillstroma5959d52010-11-19 14:25:10 +0100358 *ignored = -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700359 return NULL;
360 }
361
362 /*
363 * Add its control
364 */
365 ip_vs_control_add(cp, ct);
366 ip_vs_conn_put(ct);
367
368 ip_vs_conn_stats(cp, svc);
369 return cp;
370}
371
372
373/*
374 * IPVS main scheduling function
375 * It selects a server according to the virtual service, and
376 * creates a connection entry.
377 * Protocols supported: TCP, UDP
Hans Schillstroma5959d52010-11-19 14:25:10 +0100378 *
379 * Usage of *ignored
380 *
381 * 1 : protocol tried to schedule (eg. on SYN), found svc but the
382 * svc/scheduler decides that this packet should be accepted with
383 * NF_ACCEPT because it must not be scheduled.
384 *
385 * 0 : scheduler can not find destination, so try bypass or
386 * return ICMP and then NF_DROP (ip_vs_leave).
387 *
388 * -1 : scheduler tried to schedule but fatal error occurred, eg.
389 * ip_vs_conn_new failure (ENOMEM) or ip_vs_sip_fill_param
390 * failure such as missing Call-ID, ENOMEM on skb_linearize
391 * or pe_data. In this case we should return NF_DROP without
392 * any attempts to send ICMP with ip_vs_leave.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700393 */
394struct ip_vs_conn *
Julian Anastasov190ecd22010-10-17 16:24:37 +0300395ip_vs_schedule(struct ip_vs_service *svc, struct sk_buff *skb,
Hans Schillstrom93304192011-01-03 14:44:51 +0100396 struct ip_vs_proto_data *pd, int *ignored)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700397{
Hans Schillstrom93304192011-01-03 14:44:51 +0100398 struct ip_vs_protocol *pp = pd->pp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700399 struct ip_vs_conn *cp = NULL;
Julius Volz28364a52008-09-02 15:55:43 +0200400 struct ip_vs_iphdr iph;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700401 struct ip_vs_dest *dest;
Julian Anastasov35757922010-09-17 14:18:16 +0200402 __be16 _ports[2], *pptr;
403 unsigned int flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700404
Julian Anastasov190ecd22010-10-17 16:24:37 +0300405 *ignored = 1;
Julius Volz28364a52008-09-02 15:55:43 +0200406 ip_vs_fill_iphdr(svc->af, skb_network_header(skb), &iph);
407 pptr = skb_header_pointer(skb, iph.len, sizeof(_ports), _ports);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700408 if (pptr == NULL)
409 return NULL;
410
411 /*
Julian Anastasov190ecd22010-10-17 16:24:37 +0300412 * FTPDATA needs this check when using local real server.
413 * Never schedule Active FTPDATA connections from real server.
414 * For LVS-NAT they must be already created. For other methods
415 * with persistence the connection is created on SYN+ACK.
416 */
417 if (pptr[0] == FTPDATA) {
Julian Anastasov0d796412010-10-17 16:46:17 +0300418 IP_VS_DBG_PKT(12, svc->af, pp, skb, 0,
419 "Not scheduling FTPDATA");
Julian Anastasov190ecd22010-10-17 16:24:37 +0300420 return NULL;
421 }
422
423 /*
Hans Schillstroma5959d52010-11-19 14:25:10 +0100424 * Do not schedule replies from local real server.
Julian Anastasov190ecd22010-10-17 16:24:37 +0300425 */
426 if ((!skb->dev || skb->dev->flags & IFF_LOOPBACK) &&
Hans Schillstrom93304192011-01-03 14:44:51 +0100427 (cp = pp->conn_in_get(svc->af, skb, &iph, iph.len, 1))) {
Julian Anastasov0d796412010-10-17 16:46:17 +0300428 IP_VS_DBG_PKT(12, svc->af, pp, skb, 0,
Julian Anastasov190ecd22010-10-17 16:24:37 +0300429 "Not scheduling reply for existing connection");
430 __ip_vs_conn_put(cp);
431 return NULL;
432 }
433
434 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700435 * Persistent service
436 */
Hans Schillstroma5959d52010-11-19 14:25:10 +0100437 if (svc->flags & IP_VS_SVC_F_PERSISTENT)
438 return ip_vs_sched_persist(svc, skb, pptr[0], pptr[1], ignored);
439
440 *ignored = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700441
442 /*
443 * Non-persistent service
444 */
445 if (!svc->fwmark && pptr[1] != svc->port) {
446 if (!svc->port)
Hannes Eder1e3e2382009-08-02 11:05:41 +0000447 pr_err("Schedule: port zero only supported "
448 "in persistent services, "
449 "check your ipvs configuration\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700450 return NULL;
451 }
452
453 dest = svc->scheduler->schedule(svc, skb);
454 if (dest == NULL) {
455 IP_VS_DBG(1, "Schedule: no dest found.\n");
456 return NULL;
457 }
458
Nick Chalk26ec0372010-06-22 08:07:01 +0200459 flags = (svc->flags & IP_VS_SVC_F_ONEPACKET
460 && iph.protocol == IPPROTO_UDP)?
461 IP_VS_CONN_F_ONE_PACKET : 0;
462
Linus Torvalds1da177e2005-04-16 15:20:36 -0700463 /*
464 * Create a connection entry.
465 */
Simon Hormanf11017e2010-08-22 21:37:52 +0900466 {
467 struct ip_vs_conn_param p;
Hans Schillstrom6e67e582011-01-03 14:44:57 +0100468
469 ip_vs_conn_fill_param(svc->net, svc->af, iph.protocol,
470 &iph.saddr, pptr[0], &iph.daddr, pptr[1],
471 &p);
Simon Hormanf11017e2010-08-22 21:37:52 +0900472 cp = ip_vs_conn_new(&p, &dest->addr,
473 dest->port ? dest->port : pptr[1],
Hans Schillstrom0e051e62010-11-19 14:25:07 +0100474 flags, dest, skb->mark);
Hans Schillstroma5959d52010-11-19 14:25:10 +0100475 if (!cp) {
476 *ignored = -1;
Simon Hormanf11017e2010-08-22 21:37:52 +0900477 return NULL;
Hans Schillstroma5959d52010-11-19 14:25:10 +0100478 }
Simon Hormanf11017e2010-08-22 21:37:52 +0900479 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700480
Julius Volzcd17f9e2008-09-02 15:55:46 +0200481 IP_VS_DBG_BUF(6, "Schedule fwd:%c c:%s:%u v:%s:%u "
482 "d:%s:%u conn->flags:%X conn->refcnt:%d\n",
483 ip_vs_fwd_tag(cp),
484 IP_VS_DBG_ADDR(svc->af, &cp->caddr), ntohs(cp->cport),
485 IP_VS_DBG_ADDR(svc->af, &cp->vaddr), ntohs(cp->vport),
486 IP_VS_DBG_ADDR(svc->af, &cp->daddr), ntohs(cp->dport),
487 cp->flags, atomic_read(&cp->refcnt));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700488
489 ip_vs_conn_stats(cp, svc);
490 return cp;
491}
492
493
494/*
495 * Pass or drop the packet.
496 * Called by ip_vs_in, when the virtual service is available but
497 * no destination is available for a new connection.
498 */
499int ip_vs_leave(struct ip_vs_service *svc, struct sk_buff *skb,
Hans Schillstrom93304192011-01-03 14:44:51 +0100500 struct ip_vs_proto_data *pd)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700501{
Hans Schillstroma0840e22011-01-03 14:44:58 +0100502 struct netns_ipvs *ipvs;
Al Viro014d7302006-09-28 14:29:52 -0700503 __be16 _ports[2], *pptr;
Julius Volz28364a52008-09-02 15:55:43 +0200504 struct ip_vs_iphdr iph;
Julius Volz2a3b7912008-09-02 15:55:47 +0200505 int unicast;
Hans Schillstrom93304192011-01-03 14:44:51 +0100506
Julius Volz2a3b7912008-09-02 15:55:47 +0200507 ip_vs_fill_iphdr(svc->af, skb_network_header(skb), &iph);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700508
Julius Volz28364a52008-09-02 15:55:43 +0200509 pptr = skb_header_pointer(skb, iph.len, sizeof(_ports), _ports);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700510 if (pptr == NULL) {
511 ip_vs_service_put(svc);
512 return NF_DROP;
513 }
514
Julius Volz2a3b7912008-09-02 15:55:47 +0200515#ifdef CONFIG_IP_VS_IPV6
516 if (svc->af == AF_INET6)
517 unicast = ipv6_addr_type(&iph.daddr.in6) & IPV6_ADDR_UNICAST;
518 else
519#endif
520 unicast = (inet_addr_type(&init_net, iph.daddr.ip) == RTN_UNICAST);
521
Linus Torvalds1da177e2005-04-16 15:20:36 -0700522 /* if it is fwmark-based service, the cache_bypass sysctl is up
Julius Volz2a3b7912008-09-02 15:55:47 +0200523 and the destination is a non-local unicast, then create
Linus Torvalds1da177e2005-04-16 15:20:36 -0700524 a cache_bypass connection entry */
Hans Schillstroma0840e22011-01-03 14:44:58 +0100525 ipvs = net_ipvs(skb_net(skb));
526 if (ipvs->sysctl_cache_bypass && svc->fwmark && unicast) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700527 int ret, cs;
528 struct ip_vs_conn *cp;
Julian Anastasov35757922010-09-17 14:18:16 +0200529 unsigned int flags = (svc->flags & IP_VS_SVC_F_ONEPACKET &&
530 iph.protocol == IPPROTO_UDP)?
531 IP_VS_CONN_F_ONE_PACKET : 0;
Simon Hormandff630d2008-09-17 10:10:42 +1000532 union nf_inet_addr daddr = { .all = { 0, 0, 0, 0 } };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700533
534 ip_vs_service_put(svc);
535
536 /* create a new connection entry */
Hannes Eder1e3e2382009-08-02 11:05:41 +0000537 IP_VS_DBG(6, "%s(): create a cache_bypass entry\n", __func__);
Simon Hormanf11017e2010-08-22 21:37:52 +0900538 {
539 struct ip_vs_conn_param p;
Hans Schillstrom6e67e582011-01-03 14:44:57 +0100540 ip_vs_conn_fill_param(svc->net, svc->af, iph.protocol,
Simon Hormanf11017e2010-08-22 21:37:52 +0900541 &iph.saddr, pptr[0],
542 &iph.daddr, pptr[1], &p);
543 cp = ip_vs_conn_new(&p, &daddr, 0,
544 IP_VS_CONN_F_BYPASS | flags,
Hans Schillstrom0e051e62010-11-19 14:25:07 +0100545 NULL, skb->mark);
Simon Hormanf11017e2010-08-22 21:37:52 +0900546 if (!cp)
547 return NF_DROP;
548 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700549
550 /* statistics */
551 ip_vs_in_stats(cp, skb);
552
553 /* set state */
Hans Schillstrom93304192011-01-03 14:44:51 +0100554 cs = ip_vs_set_state(cp, IP_VS_DIR_INPUT, skb, pd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700555
556 /* transmit the first SYN packet */
Hans Schillstrom93304192011-01-03 14:44:51 +0100557 ret = cp->packet_xmit(skb, cp, pd->pp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700558 /* do not touch skb anymore */
559
560 atomic_inc(&cp->in_pkts);
561 ip_vs_conn_put(cp);
562 return ret;
563 }
564
565 /*
566 * When the virtual ftp service is presented, packets destined
567 * for other services on the VIP may get here (except services
568 * listed in the ipvs table), pass the packets, because it is
569 * not ipvs job to decide to drop the packets.
570 */
571 if ((svc->port == FTPPORT) && (pptr[1] != FTPPORT)) {
572 ip_vs_service_put(svc);
573 return NF_ACCEPT;
574 }
575
576 ip_vs_service_put(svc);
577
578 /*
579 * Notify the client that the destination is unreachable, and
580 * release the socket buffer.
581 * Since it is in IP layer, the TCP socket is not actually
582 * created, the TCP RST packet cannot be sent, instead that
583 * ICMP_PORT_UNREACH is sent here no matter it is TCP/UDP. --WZ
584 */
Julius Volz2a3b7912008-09-02 15:55:47 +0200585#ifdef CONFIG_IP_VS_IPV6
Julian Anastasovcb591552010-10-17 16:40:51 +0300586 if (svc->af == AF_INET6) {
587 if (!skb->dev) {
588 struct net *net = dev_net(skb_dst(skb)->dev);
589
590 skb->dev = net->loopback_dev;
591 }
Alexey Dobriyan3ffe5332010-02-18 08:25:24 +0000592 icmpv6_send(skb, ICMPV6_DEST_UNREACH, ICMPV6_PORT_UNREACH, 0);
Julian Anastasovcb591552010-10-17 16:40:51 +0300593 } else
Julius Volz2a3b7912008-09-02 15:55:47 +0200594#endif
595 icmp_send(skb, ICMP_DEST_UNREACH, ICMP_PORT_UNREACH, 0);
596
Linus Torvalds1da177e2005-04-16 15:20:36 -0700597 return NF_DROP;
598}
599
Al Virob1550f22006-11-14 21:37:50 -0800600__sum16 ip_vs_checksum_complete(struct sk_buff *skb, int offset)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700601{
Al Virod3bc23e2006-11-14 21:24:49 -0800602 return csum_fold(skb_checksum(skb, offset, skb->len - offset, 0));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700603}
604
Julian Anastasov1ca5bb52010-10-17 16:32:29 +0300605static inline enum ip_defrag_users ip_vs_defrag_user(unsigned int hooknum)
606{
607 if (NF_INET_LOCAL_IN == hooknum)
608 return IP_DEFRAG_VS_IN;
609 if (NF_INET_FORWARD == hooknum)
610 return IP_DEFRAG_VS_FWD;
611 return IP_DEFRAG_VS_OUT;
612}
613
Herbert Xu776c7292007-10-14 00:38:32 -0700614static inline int ip_vs_gather_frags(struct sk_buff *skb, u_int32_t user)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700615{
Herbert Xu776c7292007-10-14 00:38:32 -0700616 int err = ip_defrag(skb, user);
617
618 if (!err)
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -0700619 ip_send_check(ip_hdr(skb));
Herbert Xu776c7292007-10-14 00:38:32 -0700620
621 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700622}
623
Julius Volz2a3b7912008-09-02 15:55:47 +0200624#ifdef CONFIG_IP_VS_IPV6
625static inline int ip_vs_gather_frags_v6(struct sk_buff *skb, u_int32_t user)
626{
627 /* TODO IPv6: Find out what to do here for IPv6 */
628 return 0;
629}
630#endif
631
Linus Torvalds1da177e2005-04-16 15:20:36 -0700632/*
633 * Packet has been made sufficiently writable in caller
634 * - inout: 1=in->out, 0=out->in
635 */
636void ip_vs_nat_icmp(struct sk_buff *skb, struct ip_vs_protocol *pp,
637 struct ip_vs_conn *cp, int inout)
638{
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -0700639 struct iphdr *iph = ip_hdr(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700640 unsigned int icmp_offset = iph->ihl*4;
Arnaldo Carvalho de Melod56f90a2007-04-10 20:50:43 -0700641 struct icmphdr *icmph = (struct icmphdr *)(skb_network_header(skb) +
642 icmp_offset);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700643 struct iphdr *ciph = (struct iphdr *)(icmph + 1);
644
645 if (inout) {
Julius Volze7ade462008-09-02 15:55:33 +0200646 iph->saddr = cp->vaddr.ip;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700647 ip_send_check(iph);
Julius Volze7ade462008-09-02 15:55:33 +0200648 ciph->daddr = cp->vaddr.ip;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700649 ip_send_check(ciph);
650 } else {
Julius Volze7ade462008-09-02 15:55:33 +0200651 iph->daddr = cp->daddr.ip;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700652 ip_send_check(iph);
Julius Volze7ade462008-09-02 15:55:33 +0200653 ciph->saddr = cp->daddr.ip;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700654 ip_send_check(ciph);
655 }
656
Venkata Mohan Reddy2906f662010-02-18 12:31:05 +0100657 /* the TCP/UDP/SCTP port */
658 if (IPPROTO_TCP == ciph->protocol || IPPROTO_UDP == ciph->protocol ||
659 IPPROTO_SCTP == ciph->protocol) {
Al Viro014d7302006-09-28 14:29:52 -0700660 __be16 *ports = (void *)ciph + ciph->ihl*4;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700661
662 if (inout)
663 ports[1] = cp->vport;
664 else
665 ports[0] = cp->dport;
666 }
667
668 /* And finally the ICMP checksum */
669 icmph->checksum = 0;
670 icmph->checksum = ip_vs_checksum_complete(skb, icmp_offset);
671 skb->ip_summed = CHECKSUM_UNNECESSARY;
672
673 if (inout)
Julian Anastasov0d796412010-10-17 16:46:17 +0300674 IP_VS_DBG_PKT(11, AF_INET, pp, skb, (void *)ciph - (void *)iph,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700675 "Forwarding altered outgoing ICMP");
676 else
Julian Anastasov0d796412010-10-17 16:46:17 +0300677 IP_VS_DBG_PKT(11, AF_INET, pp, skb, (void *)ciph - (void *)iph,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700678 "Forwarding altered incoming ICMP");
679}
680
Julius Volzb3cdd2a72008-09-02 15:55:45 +0200681#ifdef CONFIG_IP_VS_IPV6
682void ip_vs_nat_icmp_v6(struct sk_buff *skb, struct ip_vs_protocol *pp,
683 struct ip_vs_conn *cp, int inout)
684{
685 struct ipv6hdr *iph = ipv6_hdr(skb);
686 unsigned int icmp_offset = sizeof(struct ipv6hdr);
687 struct icmp6hdr *icmph = (struct icmp6hdr *)(skb_network_header(skb) +
688 icmp_offset);
689 struct ipv6hdr *ciph = (struct ipv6hdr *)(icmph + 1);
690
691 if (inout) {
692 iph->saddr = cp->vaddr.in6;
693 ciph->daddr = cp->vaddr.in6;
694 } else {
695 iph->daddr = cp->daddr.in6;
696 ciph->saddr = cp->daddr.in6;
697 }
698
Venkata Mohan Reddy2906f662010-02-18 12:31:05 +0100699 /* the TCP/UDP/SCTP port */
700 if (IPPROTO_TCP == ciph->nexthdr || IPPROTO_UDP == ciph->nexthdr ||
701 IPPROTO_SCTP == ciph->nexthdr) {
Julius Volzb3cdd2a72008-09-02 15:55:45 +0200702 __be16 *ports = (void *)ciph + sizeof(struct ipv6hdr);
703
704 if (inout)
705 ports[1] = cp->vport;
706 else
707 ports[0] = cp->dport;
708 }
709
710 /* And finally the ICMP checksum */
Simon Horman8870f842010-08-26 13:21:26 -0700711 icmph->icmp6_cksum = ~csum_ipv6_magic(&iph->saddr, &iph->daddr,
712 skb->len - icmp_offset,
713 IPPROTO_ICMPV6, 0);
714 skb->csum_start = skb_network_header(skb) - skb->head + icmp_offset;
715 skb->csum_offset = offsetof(struct icmp6hdr, icmp6_cksum);
716 skb->ip_summed = CHECKSUM_PARTIAL;
Julius Volzb3cdd2a72008-09-02 15:55:45 +0200717
718 if (inout)
Julian Anastasov0d796412010-10-17 16:46:17 +0300719 IP_VS_DBG_PKT(11, AF_INET6, pp, skb,
720 (void *)ciph - (void *)iph,
721 "Forwarding altered outgoing ICMPv6");
Julius Volzb3cdd2a72008-09-02 15:55:45 +0200722 else
Julian Anastasov0d796412010-10-17 16:46:17 +0300723 IP_VS_DBG_PKT(11, AF_INET6, pp, skb,
724 (void *)ciph - (void *)iph,
725 "Forwarding altered incoming ICMPv6");
Julius Volzb3cdd2a72008-09-02 15:55:45 +0200726}
727#endif
728
Malcolm Turnbull4856c842008-09-05 11:17:13 +1000729/* Handle relevant response ICMP messages - forward to the right
730 * destination host. Used for NAT and local client.
731 */
Simon Hormanf2428ed2008-09-05 11:17:14 +1000732static int handle_response_icmp(int af, struct sk_buff *skb,
733 union nf_inet_addr *snet,
734 __u8 protocol, struct ip_vs_conn *cp,
Malcolm Turnbull4856c842008-09-05 11:17:13 +1000735 struct ip_vs_protocol *pp,
736 unsigned int offset, unsigned int ihl)
737{
Hans Schillstroma0840e22011-01-03 14:44:58 +0100738 struct netns_ipvs *ipvs;
Malcolm Turnbull4856c842008-09-05 11:17:13 +1000739 unsigned int verdict = NF_DROP;
740
741 if (IP_VS_FWD_METHOD(cp) != 0) {
Hannes Eder1e3e2382009-08-02 11:05:41 +0000742 pr_err("shouldn't reach here, because the box is on the "
743 "half connection in the tun/dr module.\n");
Malcolm Turnbull4856c842008-09-05 11:17:13 +1000744 }
745
746 /* Ensure the checksum is correct */
747 if (!skb_csum_unnecessary(skb) && ip_vs_checksum_complete(skb, ihl)) {
748 /* Failed checksum! */
Simon Hormanf2428ed2008-09-05 11:17:14 +1000749 IP_VS_DBG_BUF(1, "Forward ICMP: failed checksum from %s!\n",
750 IP_VS_DBG_ADDR(af, snet));
Malcolm Turnbull4856c842008-09-05 11:17:13 +1000751 goto out;
752 }
753
Venkata Mohan Reddy2906f662010-02-18 12:31:05 +0100754 if (IPPROTO_TCP == protocol || IPPROTO_UDP == protocol ||
755 IPPROTO_SCTP == protocol)
Malcolm Turnbull4856c842008-09-05 11:17:13 +1000756 offset += 2 * sizeof(__u16);
757 if (!skb_make_writable(skb, offset))
758 goto out;
759
Hans Schillstroma0840e22011-01-03 14:44:58 +0100760 ipvs = net_ipvs(skb_net(skb));
761
Simon Hormanf2428ed2008-09-05 11:17:14 +1000762#ifdef CONFIG_IP_VS_IPV6
763 if (af == AF_INET6)
764 ip_vs_nat_icmp_v6(skb, pp, cp, 1);
765 else
766#endif
767 ip_vs_nat_icmp(skb, pp, cp, 1);
Malcolm Turnbull4856c842008-09-05 11:17:13 +1000768
Julian Anastasovf5a41842010-10-17 16:35:46 +0300769#ifdef CONFIG_IP_VS_IPV6
770 if (af == AF_INET6) {
Hans Schillstroma0840e22011-01-03 14:44:58 +0100771 if (ipvs->sysctl_snat_reroute && ip6_route_me_harder(skb) != 0)
Julian Anastasovf5a41842010-10-17 16:35:46 +0300772 goto out;
773 } else
774#endif
Hans Schillstroma0840e22011-01-03 14:44:58 +0100775 if ((ipvs->sysctl_snat_reroute ||
Julian Anastasovf5a41842010-10-17 16:35:46 +0300776 skb_rtable(skb)->rt_flags & RTCF_LOCAL) &&
777 ip_route_me_harder(skb, RTN_LOCAL) != 0)
778 goto out;
779
Malcolm Turnbull4856c842008-09-05 11:17:13 +1000780 /* do the statistics and put it back */
781 ip_vs_out_stats(cp, skb);
782
Julian Anastasovcf356d62010-10-17 16:21:07 +0300783 skb->ipvs_property = 1;
Julian Anastasovf4bc17c2010-09-21 17:35:41 +0200784 if (!(cp->flags & IP_VS_CONN_F_NFCT))
Julian Anastasovcf356d62010-10-17 16:21:07 +0300785 ip_vs_notrack(skb);
Julian Anastasovf4bc17c2010-09-21 17:35:41 +0200786 else
787 ip_vs_update_conntrack(skb, cp, 0);
Malcolm Turnbull4856c842008-09-05 11:17:13 +1000788 verdict = NF_ACCEPT;
789
790out:
791 __ip_vs_conn_put(cp);
792
793 return verdict;
794}
795
Linus Torvalds1da177e2005-04-16 15:20:36 -0700796/*
797 * Handle ICMP messages in the inside-to-outside direction (outgoing).
Malcolm Turnbull4856c842008-09-05 11:17:13 +1000798 * Find any that might be relevant, check against existing connections.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700799 * Currently handles error types - unreachable, quench, ttl exceeded.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700800 */
Julian Anastasov1ca5bb52010-10-17 16:32:29 +0300801static int ip_vs_out_icmp(struct sk_buff *skb, int *related,
802 unsigned int hooknum)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700803{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700804 struct iphdr *iph;
805 struct icmphdr _icmph, *ic;
806 struct iphdr _ciph, *cih; /* The ip header contained within the ICMP */
Julius Volz51ef3482008-09-02 15:55:40 +0200807 struct ip_vs_iphdr ciph;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700808 struct ip_vs_conn *cp;
809 struct ip_vs_protocol *pp;
Malcolm Turnbull4856c842008-09-05 11:17:13 +1000810 unsigned int offset, ihl;
Simon Hormanf2428ed2008-09-05 11:17:14 +1000811 union nf_inet_addr snet;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700812
813 *related = 1;
814
815 /* reassemble IP fragments */
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -0700816 if (ip_hdr(skb)->frag_off & htons(IP_MF | IP_OFFSET)) {
Julian Anastasov1ca5bb52010-10-17 16:32:29 +0300817 if (ip_vs_gather_frags(skb, ip_vs_defrag_user(hooknum)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700818 return NF_STOLEN;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700819 }
820
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -0700821 iph = ip_hdr(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700822 offset = ihl = iph->ihl * 4;
823 ic = skb_header_pointer(skb, offset, sizeof(_icmph), &_icmph);
824 if (ic == NULL)
825 return NF_DROP;
826
Harvey Harrison14d5e832008-10-31 00:54:29 -0700827 IP_VS_DBG(12, "Outgoing ICMP (%d,%d) %pI4->%pI4\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700828 ic->type, ntohs(icmp_id(ic)),
Harvey Harrison14d5e832008-10-31 00:54:29 -0700829 &iph->saddr, &iph->daddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700830
831 /*
832 * Work through seeing if this is for us.
833 * These checks are supposed to be in an order that means easy
834 * things are checked first to speed up processing.... however
835 * this means that some packets will manage to get a long way
836 * down this stack and then be rejected, but that's life.
837 */
838 if ((ic->type != ICMP_DEST_UNREACH) &&
839 (ic->type != ICMP_SOURCE_QUENCH) &&
840 (ic->type != ICMP_TIME_EXCEEDED)) {
841 *related = 0;
842 return NF_ACCEPT;
843 }
844
845 /* Now find the contained IP header */
846 offset += sizeof(_icmph);
847 cih = skb_header_pointer(skb, offset, sizeof(_ciph), &_ciph);
848 if (cih == NULL)
849 return NF_ACCEPT; /* The packet looks wrong, ignore */
850
851 pp = ip_vs_proto_get(cih->protocol);
852 if (!pp)
853 return NF_ACCEPT;
854
855 /* Is the embedded protocol header present? */
YOSHIFUJI Hideaki4412ec42007-03-07 14:19:10 +0900856 if (unlikely(cih->frag_off & htons(IP_OFFSET) &&
Linus Torvalds1da177e2005-04-16 15:20:36 -0700857 pp->dont_defrag))
858 return NF_ACCEPT;
859
Julian Anastasov0d796412010-10-17 16:46:17 +0300860 IP_VS_DBG_PKT(11, AF_INET, pp, skb, offset,
861 "Checking outgoing ICMP for");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700862
863 offset += cih->ihl * 4;
864
Julius Volz51ef3482008-09-02 15:55:40 +0200865 ip_vs_fill_iphdr(AF_INET, cih, &ciph);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700866 /* The embedded headers contain source and dest in reverse order */
Hans Schillstrom93304192011-01-03 14:44:51 +0100867 cp = pp->conn_out_get(AF_INET, skb, &ciph, offset, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700868 if (!cp)
869 return NF_ACCEPT;
870
Simon Hormanf2428ed2008-09-05 11:17:14 +1000871 snet.ip = iph->saddr;
872 return handle_response_icmp(AF_INET, skb, &snet, cih->protocol, cp,
873 pp, offset, ihl);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700874}
875
Julius Volz2a3b7912008-09-02 15:55:47 +0200876#ifdef CONFIG_IP_VS_IPV6
Julian Anastasov1ca5bb52010-10-17 16:32:29 +0300877static int ip_vs_out_icmp_v6(struct sk_buff *skb, int *related,
878 unsigned int hooknum)
Julius Volz2a3b7912008-09-02 15:55:47 +0200879{
880 struct ipv6hdr *iph;
881 struct icmp6hdr _icmph, *ic;
882 struct ipv6hdr _ciph, *cih; /* The ip header contained
883 within the ICMP */
884 struct ip_vs_iphdr ciph;
885 struct ip_vs_conn *cp;
886 struct ip_vs_protocol *pp;
Simon Hormanf2428ed2008-09-05 11:17:14 +1000887 unsigned int offset;
888 union nf_inet_addr snet;
Julius Volz2a3b7912008-09-02 15:55:47 +0200889
890 *related = 1;
891
892 /* reassemble IP fragments */
893 if (ipv6_hdr(skb)->nexthdr == IPPROTO_FRAGMENT) {
Julian Anastasov1ca5bb52010-10-17 16:32:29 +0300894 if (ip_vs_gather_frags_v6(skb, ip_vs_defrag_user(hooknum)))
Julius Volz2a3b7912008-09-02 15:55:47 +0200895 return NF_STOLEN;
896 }
897
898 iph = ipv6_hdr(skb);
899 offset = sizeof(struct ipv6hdr);
900 ic = skb_header_pointer(skb, offset, sizeof(_icmph), &_icmph);
901 if (ic == NULL)
902 return NF_DROP;
903
Harvey Harrison5b095d9892008-10-29 12:52:50 -0700904 IP_VS_DBG(12, "Outgoing ICMPv6 (%d,%d) %pI6->%pI6\n",
Julius Volz2a3b7912008-09-02 15:55:47 +0200905 ic->icmp6_type, ntohs(icmpv6_id(ic)),
Harvey Harrison38ff4fa2008-10-28 16:08:13 -0700906 &iph->saddr, &iph->daddr);
Julius Volz2a3b7912008-09-02 15:55:47 +0200907
908 /*
909 * Work through seeing if this is for us.
910 * These checks are supposed to be in an order that means easy
911 * things are checked first to speed up processing.... however
912 * this means that some packets will manage to get a long way
913 * down this stack and then be rejected, but that's life.
914 */
915 if ((ic->icmp6_type != ICMPV6_DEST_UNREACH) &&
916 (ic->icmp6_type != ICMPV6_PKT_TOOBIG) &&
917 (ic->icmp6_type != ICMPV6_TIME_EXCEED)) {
918 *related = 0;
919 return NF_ACCEPT;
920 }
921
922 /* Now find the contained IP header */
923 offset += sizeof(_icmph);
924 cih = skb_header_pointer(skb, offset, sizeof(_ciph), &_ciph);
925 if (cih == NULL)
926 return NF_ACCEPT; /* The packet looks wrong, ignore */
927
928 pp = ip_vs_proto_get(cih->nexthdr);
929 if (!pp)
930 return NF_ACCEPT;
931
932 /* Is the embedded protocol header present? */
933 /* TODO: we don't support fragmentation at the moment anyways */
934 if (unlikely(cih->nexthdr == IPPROTO_FRAGMENT && pp->dont_defrag))
935 return NF_ACCEPT;
936
Julian Anastasov0d796412010-10-17 16:46:17 +0300937 IP_VS_DBG_PKT(11, AF_INET6, pp, skb, offset,
938 "Checking outgoing ICMPv6 for");
Julius Volz2a3b7912008-09-02 15:55:47 +0200939
940 offset += sizeof(struct ipv6hdr);
941
942 ip_vs_fill_iphdr(AF_INET6, cih, &ciph);
943 /* The embedded headers contain source and dest in reverse order */
Hans Schillstrom93304192011-01-03 14:44:51 +0100944 cp = pp->conn_out_get(AF_INET6, skb, &ciph, offset, 1);
Julius Volz2a3b7912008-09-02 15:55:47 +0200945 if (!cp)
946 return NF_ACCEPT;
947
Simon Horman178f5e42008-09-08 09:34:46 +1000948 ipv6_addr_copy(&snet.in6, &iph->saddr);
Simon Hormanf2428ed2008-09-05 11:17:14 +1000949 return handle_response_icmp(AF_INET6, skb, &snet, cih->nexthdr, cp,
950 pp, offset, sizeof(struct ipv6hdr));
Julius Volz2a3b7912008-09-02 15:55:47 +0200951}
952#endif
953
Venkata Mohan Reddy2906f662010-02-18 12:31:05 +0100954/*
955 * Check if sctp chunc is ABORT chunk
956 */
957static inline int is_sctp_abort(const struct sk_buff *skb, int nh_len)
958{
959 sctp_chunkhdr_t *sch, schunk;
960 sch = skb_header_pointer(skb, nh_len + sizeof(sctp_sctphdr_t),
961 sizeof(schunk), &schunk);
962 if (sch == NULL)
963 return 0;
964 if (sch->type == SCTP_CID_ABORT)
965 return 1;
966 return 0;
967}
968
Julius Volz2a3b7912008-09-02 15:55:47 +0200969static inline int is_tcp_reset(const struct sk_buff *skb, int nh_len)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700970{
971 struct tcphdr _tcph, *th;
972
Julius Volz2a3b7912008-09-02 15:55:47 +0200973 th = skb_header_pointer(skb, nh_len, sizeof(_tcph), &_tcph);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700974 if (th == NULL)
975 return 0;
976 return th->rst;
977}
978
Malcolm Turnbull4856c842008-09-05 11:17:13 +1000979/* Handle response packets: rewrite addresses and send away...
980 * Used for NAT and local client.
981 */
982static unsigned int
Hans Schillstrom93304192011-01-03 14:44:51 +0100983handle_response(int af, struct sk_buff *skb, struct ip_vs_proto_data *pd,
Malcolm Turnbull4856c842008-09-05 11:17:13 +1000984 struct ip_vs_conn *cp, int ihl)
985{
Hans Schillstrom93304192011-01-03 14:44:51 +0100986 struct ip_vs_protocol *pp = pd->pp;
Hans Schillstroma0840e22011-01-03 14:44:58 +0100987 struct netns_ipvs *ipvs;
Hans Schillstrom93304192011-01-03 14:44:51 +0100988
Julian Anastasov0d796412010-10-17 16:46:17 +0300989 IP_VS_DBG_PKT(11, af, pp, skb, 0, "Outgoing packet");
Malcolm Turnbull4856c842008-09-05 11:17:13 +1000990
991 if (!skb_make_writable(skb, ihl))
992 goto drop;
993
994 /* mangle the packet */
995 if (pp->snat_handler && !pp->snat_handler(skb, pp, cp))
996 goto drop;
997
998#ifdef CONFIG_IP_VS_IPV6
999 if (af == AF_INET6)
1000 ipv6_hdr(skb)->saddr = cp->vaddr.in6;
1001 else
1002#endif
1003 {
1004 ip_hdr(skb)->saddr = cp->vaddr.ip;
1005 ip_send_check(ip_hdr(skb));
1006 }
1007
Julian Anastasov8a803042010-09-21 17:38:57 +02001008 /*
1009 * nf_iterate does not expect change in the skb->dst->dev.
1010 * It looks like it is not fatal to enable this code for hooks
1011 * where our handlers are at the end of the chain list and
1012 * when all next handlers use skb->dst->dev and not outdev.
1013 * It will definitely route properly the inout NAT traffic
1014 * when multiple paths are used.
1015 */
1016
Malcolm Turnbull4856c842008-09-05 11:17:13 +10001017 /* For policy routing, packets originating from this
1018 * machine itself may be routed differently to packets
1019 * passing through. We want this packet to be routed as
1020 * if it came from this machine itself. So re-compute
1021 * the routing information.
1022 */
Hans Schillstroma0840e22011-01-03 14:44:58 +01001023 ipvs = net_ipvs(skb_net(skb));
1024
Malcolm Turnbull4856c842008-09-05 11:17:13 +10001025#ifdef CONFIG_IP_VS_IPV6
Julian Anastasovf5a41842010-10-17 16:35:46 +03001026 if (af == AF_INET6) {
Hans Schillstroma0840e22011-01-03 14:44:58 +01001027 if (ipvs->sysctl_snat_reroute && ip6_route_me_harder(skb) != 0)
Julian Anastasovf5a41842010-10-17 16:35:46 +03001028 goto drop;
1029 } else
Malcolm Turnbull4856c842008-09-05 11:17:13 +10001030#endif
Hans Schillstroma0840e22011-01-03 14:44:58 +01001031 if ((ipvs->sysctl_snat_reroute ||
Julian Anastasovf5a41842010-10-17 16:35:46 +03001032 skb_rtable(skb)->rt_flags & RTCF_LOCAL) &&
1033 ip_route_me_harder(skb, RTN_LOCAL) != 0)
1034 goto drop;
Malcolm Turnbull4856c842008-09-05 11:17:13 +10001035
Julian Anastasov0d796412010-10-17 16:46:17 +03001036 IP_VS_DBG_PKT(10, af, pp, skb, 0, "After SNAT");
Malcolm Turnbull4856c842008-09-05 11:17:13 +10001037
1038 ip_vs_out_stats(cp, skb);
Hans Schillstrom93304192011-01-03 14:44:51 +01001039 ip_vs_set_state(cp, IP_VS_DIR_OUTPUT, skb, pd);
Julian Anastasovcf356d62010-10-17 16:21:07 +03001040 skb->ipvs_property = 1;
Julian Anastasovf4bc17c2010-09-21 17:35:41 +02001041 if (!(cp->flags & IP_VS_CONN_F_NFCT))
Julian Anastasovcf356d62010-10-17 16:21:07 +03001042 ip_vs_notrack(skb);
Julian Anastasovf4bc17c2010-09-21 17:35:41 +02001043 else
1044 ip_vs_update_conntrack(skb, cp, 0);
Malcolm Turnbull4856c842008-09-05 11:17:13 +10001045 ip_vs_conn_put(cp);
1046
Malcolm Turnbull4856c842008-09-05 11:17:13 +10001047 LeaveFunction(11);
1048 return NF_ACCEPT;
1049
1050drop:
1051 ip_vs_conn_put(cp);
1052 kfree_skb(skb);
Julian Anastasovf4bc17c2010-09-21 17:35:41 +02001053 LeaveFunction(11);
Malcolm Turnbull4856c842008-09-05 11:17:13 +10001054 return NF_STOLEN;
1055}
1056
Linus Torvalds1da177e2005-04-16 15:20:36 -07001057/*
Malcolm Turnbull4856c842008-09-05 11:17:13 +10001058 * Check if outgoing packet belongs to the established ip_vs_conn.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001059 */
1060static unsigned int
Julian Anastasovfc604762010-10-17 16:38:15 +03001061ip_vs_out(unsigned int hooknum, struct sk_buff *skb, int af)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001062{
Hans Schillstromfc723252011-01-03 14:44:43 +01001063 struct net *net = NULL;
Julius Volz51ef3482008-09-02 15:55:40 +02001064 struct ip_vs_iphdr iph;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001065 struct ip_vs_protocol *pp;
Hans Schillstrom93304192011-01-03 14:44:51 +01001066 struct ip_vs_proto_data *pd;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001067 struct ip_vs_conn *cp;
Hans Schillstroma0840e22011-01-03 14:44:58 +01001068 struct netns_ipvs *ipvs;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001069
1070 EnterFunction(11);
1071
Julian Anastasovfc604762010-10-17 16:38:15 +03001072 /* Already marked as IPVS request or reply? */
Harald Welte6869c4d2005-08-09 19:24:19 -07001073 if (skb->ipvs_property)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001074 return NF_ACCEPT;
1075
Julian Anastasovfc604762010-10-17 16:38:15 +03001076 /* Bad... Do not break raw sockets */
1077 if (unlikely(skb->sk != NULL && hooknum == NF_INET_LOCAL_OUT &&
1078 af == AF_INET)) {
1079 struct sock *sk = skb->sk;
1080 struct inet_sock *inet = inet_sk(skb->sk);
1081
1082 if (inet && sk->sk_family == PF_INET && inet->nodefrag)
1083 return NF_ACCEPT;
1084 }
1085
1086 if (unlikely(!skb_dst(skb)))
1087 return NF_ACCEPT;
1088
Hans Schillstromfc723252011-01-03 14:44:43 +01001089 net = skb_net(skb);
Julius Volz2a3b7912008-09-02 15:55:47 +02001090 ip_vs_fill_iphdr(af, skb_network_header(skb), &iph);
1091#ifdef CONFIG_IP_VS_IPV6
1092 if (af == AF_INET6) {
1093 if (unlikely(iph.protocol == IPPROTO_ICMPV6)) {
Julian Anastasov1ca5bb52010-10-17 16:32:29 +03001094 int related;
1095 int verdict = ip_vs_out_icmp_v6(skb, &related,
1096 hooknum);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001097
Julian Anastasovf5a41842010-10-17 16:35:46 +03001098 if (related)
Julius Volz2a3b7912008-09-02 15:55:47 +02001099 return verdict;
1100 ip_vs_fill_iphdr(af, skb_network_header(skb), &iph);
1101 }
1102 } else
1103#endif
1104 if (unlikely(iph.protocol == IPPROTO_ICMP)) {
Julian Anastasov1ca5bb52010-10-17 16:32:29 +03001105 int related;
1106 int verdict = ip_vs_out_icmp(skb, &related, hooknum);
Julius Volz2a3b7912008-09-02 15:55:47 +02001107
Julian Anastasovf5a41842010-10-17 16:35:46 +03001108 if (related)
Julius Volz2a3b7912008-09-02 15:55:47 +02001109 return verdict;
1110 ip_vs_fill_iphdr(af, skb_network_header(skb), &iph);
1111 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001112
Hans Schillstrom93304192011-01-03 14:44:51 +01001113 pd = ip_vs_proto_data_get(net, iph.protocol);
1114 if (unlikely(!pd))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001115 return NF_ACCEPT;
Hans Schillstrom93304192011-01-03 14:44:51 +01001116 pp = pd->pp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001117
1118 /* reassemble IP fragments */
Julius Volz2a3b7912008-09-02 15:55:47 +02001119#ifdef CONFIG_IP_VS_IPV6
1120 if (af == AF_INET6) {
Julian Anastasov1ca5bb52010-10-17 16:32:29 +03001121 if (ipv6_hdr(skb)->nexthdr == IPPROTO_FRAGMENT) {
1122 if (ip_vs_gather_frags_v6(skb,
1123 ip_vs_defrag_user(hooknum)))
1124 return NF_STOLEN;
Julius Volz2a3b7912008-09-02 15:55:47 +02001125 }
Julian Anastasov1ca5bb52010-10-17 16:32:29 +03001126
1127 ip_vs_fill_iphdr(af, skb_network_header(skb), &iph);
Julius Volz2a3b7912008-09-02 15:55:47 +02001128 } else
1129#endif
1130 if (unlikely(ip_hdr(skb)->frag_off & htons(IP_MF|IP_OFFSET) &&
1131 !pp->dont_defrag)) {
Julian Anastasov1ca5bb52010-10-17 16:32:29 +03001132 if (ip_vs_gather_frags(skb,
1133 ip_vs_defrag_user(hooknum)))
Julius Volz2a3b7912008-09-02 15:55:47 +02001134 return NF_STOLEN;
1135
1136 ip_vs_fill_iphdr(af, skb_network_header(skb), &iph);
1137 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001138
1139 /*
1140 * Check if the packet belongs to an existing entry
1141 */
Hans Schillstrom93304192011-01-03 14:44:51 +01001142 cp = pp->conn_out_get(af, skb, &iph, iph.len, 0);
Hans Schillstroma0840e22011-01-03 14:44:58 +01001143 ipvs = net_ipvs(net);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001144
Julian Anastasovcb591552010-10-17 16:40:51 +03001145 if (likely(cp))
Hans Schillstrom93304192011-01-03 14:44:51 +01001146 return handle_response(af, skb, pd, cp, iph.len);
Hans Schillstroma0840e22011-01-03 14:44:58 +01001147 if (ipvs->sysctl_nat_icmp_send &&
Julian Anastasovcb591552010-10-17 16:40:51 +03001148 (pp->protocol == IPPROTO_TCP ||
1149 pp->protocol == IPPROTO_UDP ||
1150 pp->protocol == IPPROTO_SCTP)) {
1151 __be16 _ports[2], *pptr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001152
Julian Anastasovcb591552010-10-17 16:40:51 +03001153 pptr = skb_header_pointer(skb, iph.len,
1154 sizeof(_ports), _ports);
1155 if (pptr == NULL)
1156 return NF_ACCEPT; /* Not for me */
Hans Schillstromfc723252011-01-03 14:44:43 +01001157 if (ip_vs_lookup_real_service(net, af, iph.protocol,
Julian Anastasovcb591552010-10-17 16:40:51 +03001158 &iph.saddr,
1159 pptr[0])) {
1160 /*
1161 * Notify the real server: there is no
1162 * existing entry if it is not RST
1163 * packet or not TCP packet.
1164 */
1165 if ((iph.protocol != IPPROTO_TCP &&
1166 iph.protocol != IPPROTO_SCTP)
1167 || ((iph.protocol == IPPROTO_TCP
1168 && !is_tcp_reset(skb, iph.len))
1169 || (iph.protocol == IPPROTO_SCTP
1170 && !is_sctp_abort(skb,
1171 iph.len)))) {
Julius Volz2a3b7912008-09-02 15:55:47 +02001172#ifdef CONFIG_IP_VS_IPV6
Julian Anastasovcb591552010-10-17 16:40:51 +03001173 if (af == AF_INET6) {
1174 struct net *net =
1175 dev_net(skb_dst(skb)->dev);
1176
1177 if (!skb->dev)
1178 skb->dev = net->loopback_dev;
1179 icmpv6_send(skb,
1180 ICMPV6_DEST_UNREACH,
1181 ICMPV6_PORT_UNREACH,
1182 0);
1183 } else
Julius Volz2a3b7912008-09-02 15:55:47 +02001184#endif
Julian Anastasovcb591552010-10-17 16:40:51 +03001185 icmp_send(skb,
1186 ICMP_DEST_UNREACH,
1187 ICMP_PORT_UNREACH, 0);
1188 return NF_DROP;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001189 }
1190 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001191 }
Julian Anastasov0d796412010-10-17 16:46:17 +03001192 IP_VS_DBG_PKT(12, af, pp, skb, 0,
Julian Anastasovcb591552010-10-17 16:40:51 +03001193 "ip_vs_out: packet continues traversal as normal");
1194 return NF_ACCEPT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001195}
1196
Julian Anastasovfc604762010-10-17 16:38:15 +03001197/*
Julian Anastasovcb591552010-10-17 16:40:51 +03001198 * It is hooked at the NF_INET_FORWARD and NF_INET_LOCAL_IN chain,
1199 * used only for VS/NAT.
Julian Anastasovfc604762010-10-17 16:38:15 +03001200 * Check if packet is reply for established ip_vs_conn.
1201 */
1202static unsigned int
1203ip_vs_reply4(unsigned int hooknum, struct sk_buff *skb,
1204 const struct net_device *in, const struct net_device *out,
1205 int (*okfn)(struct sk_buff *))
1206{
1207 return ip_vs_out(hooknum, skb, AF_INET);
1208}
1209
1210/*
1211 * It is hooked at the NF_INET_LOCAL_OUT chain, used only for VS/NAT.
1212 * Check if packet is reply for established ip_vs_conn.
1213 */
1214static unsigned int
1215ip_vs_local_reply4(unsigned int hooknum, struct sk_buff *skb,
1216 const struct net_device *in, const struct net_device *out,
1217 int (*okfn)(struct sk_buff *))
1218{
1219 unsigned int verdict;
1220
1221 /* Disable BH in LOCAL_OUT until all places are fixed */
1222 local_bh_disable();
1223 verdict = ip_vs_out(hooknum, skb, AF_INET);
1224 local_bh_enable();
1225 return verdict;
1226}
1227
1228#ifdef CONFIG_IP_VS_IPV6
1229
1230/*
Julian Anastasovcb591552010-10-17 16:40:51 +03001231 * It is hooked at the NF_INET_FORWARD and NF_INET_LOCAL_IN chain,
1232 * used only for VS/NAT.
Julian Anastasovfc604762010-10-17 16:38:15 +03001233 * Check if packet is reply for established ip_vs_conn.
1234 */
1235static unsigned int
1236ip_vs_reply6(unsigned int hooknum, struct sk_buff *skb,
1237 const struct net_device *in, const struct net_device *out,
1238 int (*okfn)(struct sk_buff *))
1239{
1240 return ip_vs_out(hooknum, skb, AF_INET6);
1241}
1242
1243/*
1244 * It is hooked at the NF_INET_LOCAL_OUT chain, used only for VS/NAT.
1245 * Check if packet is reply for established ip_vs_conn.
1246 */
1247static unsigned int
1248ip_vs_local_reply6(unsigned int hooknum, struct sk_buff *skb,
1249 const struct net_device *in, const struct net_device *out,
1250 int (*okfn)(struct sk_buff *))
1251{
1252 unsigned int verdict;
1253
1254 /* Disable BH in LOCAL_OUT until all places are fixed */
1255 local_bh_disable();
1256 verdict = ip_vs_out(hooknum, skb, AF_INET6);
1257 local_bh_enable();
1258 return verdict;
1259}
1260
1261#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001262
1263/*
1264 * Handle ICMP messages in the outside-to-inside direction (incoming).
1265 * Find any that might be relevant, check against existing connections,
1266 * forward to the right destination host if relevant.
1267 * Currently handles error types - unreachable, quench, ttl exceeded.
1268 */
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +09001269static int
Herbert Xu3db05fe2007-10-15 00:53:15 -07001270ip_vs_in_icmp(struct sk_buff *skb, int *related, unsigned int hooknum)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001271{
Hans Schillstrom93304192011-01-03 14:44:51 +01001272 struct net *net = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001273 struct iphdr *iph;
1274 struct icmphdr _icmph, *ic;
1275 struct iphdr _ciph, *cih; /* The ip header contained within the ICMP */
Julius Volz51ef3482008-09-02 15:55:40 +02001276 struct ip_vs_iphdr ciph;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001277 struct ip_vs_conn *cp;
1278 struct ip_vs_protocol *pp;
Hans Schillstrom93304192011-01-03 14:44:51 +01001279 struct ip_vs_proto_data *pd;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001280 unsigned int offset, ihl, verdict;
Simon Hormanf2428ed2008-09-05 11:17:14 +10001281 union nf_inet_addr snet;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001282
1283 *related = 1;
1284
1285 /* reassemble IP fragments */
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -07001286 if (ip_hdr(skb)->frag_off & htons(IP_MF | IP_OFFSET)) {
Julian Anastasov1ca5bb52010-10-17 16:32:29 +03001287 if (ip_vs_gather_frags(skb, ip_vs_defrag_user(hooknum)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001288 return NF_STOLEN;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001289 }
1290
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -07001291 iph = ip_hdr(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001292 offset = ihl = iph->ihl * 4;
1293 ic = skb_header_pointer(skb, offset, sizeof(_icmph), &_icmph);
1294 if (ic == NULL)
1295 return NF_DROP;
1296
Harvey Harrison14d5e832008-10-31 00:54:29 -07001297 IP_VS_DBG(12, "Incoming ICMP (%d,%d) %pI4->%pI4\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001298 ic->type, ntohs(icmp_id(ic)),
Harvey Harrison14d5e832008-10-31 00:54:29 -07001299 &iph->saddr, &iph->daddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001300
1301 /*
1302 * Work through seeing if this is for us.
1303 * These checks are supposed to be in an order that means easy
1304 * things are checked first to speed up processing.... however
1305 * this means that some packets will manage to get a long way
1306 * down this stack and then be rejected, but that's life.
1307 */
1308 if ((ic->type != ICMP_DEST_UNREACH) &&
1309 (ic->type != ICMP_SOURCE_QUENCH) &&
1310 (ic->type != ICMP_TIME_EXCEEDED)) {
1311 *related = 0;
1312 return NF_ACCEPT;
1313 }
1314
1315 /* Now find the contained IP header */
1316 offset += sizeof(_icmph);
1317 cih = skb_header_pointer(skb, offset, sizeof(_ciph), &_ciph);
1318 if (cih == NULL)
1319 return NF_ACCEPT; /* The packet looks wrong, ignore */
1320
Hans Schillstrom93304192011-01-03 14:44:51 +01001321 net = skb_net(skb);
1322 pd = ip_vs_proto_data_get(net, cih->protocol);
1323 if (!pd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001324 return NF_ACCEPT;
Hans Schillstrom93304192011-01-03 14:44:51 +01001325 pp = pd->pp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001326
1327 /* Is the embedded protocol header present? */
YOSHIFUJI Hideaki4412ec42007-03-07 14:19:10 +09001328 if (unlikely(cih->frag_off & htons(IP_OFFSET) &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07001329 pp->dont_defrag))
1330 return NF_ACCEPT;
1331
Julian Anastasov0d796412010-10-17 16:46:17 +03001332 IP_VS_DBG_PKT(11, AF_INET, pp, skb, offset,
1333 "Checking incoming ICMP for");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001334
1335 offset += cih->ihl * 4;
1336
Julius Volz51ef3482008-09-02 15:55:40 +02001337 ip_vs_fill_iphdr(AF_INET, cih, &ciph);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001338 /* The embedded headers contain source and dest in reverse order */
Hans Schillstrom93304192011-01-03 14:44:51 +01001339 cp = pp->conn_in_get(AF_INET, skb, &ciph, offset, 1);
Malcolm Turnbull4856c842008-09-05 11:17:13 +10001340 if (!cp) {
1341 /* The packet could also belong to a local client */
Hans Schillstrom93304192011-01-03 14:44:51 +01001342 cp = pp->conn_out_get(AF_INET, skb, &ciph, offset, 1);
Simon Hormanf2428ed2008-09-05 11:17:14 +10001343 if (cp) {
1344 snet.ip = iph->saddr;
1345 return handle_response_icmp(AF_INET, skb, &snet,
1346 cih->protocol, cp, pp,
Malcolm Turnbull4856c842008-09-05 11:17:13 +10001347 offset, ihl);
Simon Hormanf2428ed2008-09-05 11:17:14 +10001348 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001349 return NF_ACCEPT;
Malcolm Turnbull4856c842008-09-05 11:17:13 +10001350 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001351
1352 verdict = NF_DROP;
1353
1354 /* Ensure the checksum is correct */
Herbert Xu60476372007-04-09 11:59:39 -07001355 if (!skb_csum_unnecessary(skb) && ip_vs_checksum_complete(skb, ihl)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001356 /* Failed checksum! */
Harvey Harrison14d5e832008-10-31 00:54:29 -07001357 IP_VS_DBG(1, "Incoming ICMP: failed checksum from %pI4!\n",
1358 &iph->saddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001359 goto out;
1360 }
1361
1362 /* do the statistics and put it back */
1363 ip_vs_in_stats(cp, skb);
1364 if (IPPROTO_TCP == cih->protocol || IPPROTO_UDP == cih->protocol)
1365 offset += 2 * sizeof(__u16);
1366 verdict = ip_vs_icmp_xmit(skb, cp, pp, offset);
Julian Anastasov489fded2010-10-17 16:27:31 +03001367 /* LOCALNODE from FORWARD hook is not supported */
1368 if (verdict == NF_ACCEPT && hooknum == NF_INET_FORWARD &&
1369 skb_rtable(skb)->rt_flags & RTCF_LOCAL) {
1370 IP_VS_DBG(1, "%s(): "
1371 "local delivery to %pI4 but in FORWARD\n",
1372 __func__, &skb_rtable(skb)->rt_dst);
1373 verdict = NF_DROP;
1374 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001375
1376 out:
1377 __ip_vs_conn_put(cp);
1378
1379 return verdict;
1380}
1381
Julius Volz2a3b7912008-09-02 15:55:47 +02001382#ifdef CONFIG_IP_VS_IPV6
1383static int
1384ip_vs_in_icmp_v6(struct sk_buff *skb, int *related, unsigned int hooknum)
1385{
Hans Schillstrom93304192011-01-03 14:44:51 +01001386 struct net *net = NULL;
Julius Volz2a3b7912008-09-02 15:55:47 +02001387 struct ipv6hdr *iph;
1388 struct icmp6hdr _icmph, *ic;
1389 struct ipv6hdr _ciph, *cih; /* The ip header contained
1390 within the ICMP */
1391 struct ip_vs_iphdr ciph;
1392 struct ip_vs_conn *cp;
1393 struct ip_vs_protocol *pp;
Hans Schillstrom93304192011-01-03 14:44:51 +01001394 struct ip_vs_proto_data *pd;
Julius Volz2a3b7912008-09-02 15:55:47 +02001395 unsigned int offset, verdict;
Simon Hormanf2428ed2008-09-05 11:17:14 +10001396 union nf_inet_addr snet;
Julian Anastasov489fded2010-10-17 16:27:31 +03001397 struct rt6_info *rt;
Julius Volz2a3b7912008-09-02 15:55:47 +02001398
1399 *related = 1;
1400
1401 /* reassemble IP fragments */
1402 if (ipv6_hdr(skb)->nexthdr == IPPROTO_FRAGMENT) {
Julian Anastasov1ca5bb52010-10-17 16:32:29 +03001403 if (ip_vs_gather_frags_v6(skb, ip_vs_defrag_user(hooknum)))
Julius Volz2a3b7912008-09-02 15:55:47 +02001404 return NF_STOLEN;
1405 }
1406
1407 iph = ipv6_hdr(skb);
1408 offset = sizeof(struct ipv6hdr);
1409 ic = skb_header_pointer(skb, offset, sizeof(_icmph), &_icmph);
1410 if (ic == NULL)
1411 return NF_DROP;
1412
Harvey Harrison5b095d9892008-10-29 12:52:50 -07001413 IP_VS_DBG(12, "Incoming ICMPv6 (%d,%d) %pI6->%pI6\n",
Julius Volz2a3b7912008-09-02 15:55:47 +02001414 ic->icmp6_type, ntohs(icmpv6_id(ic)),
Harvey Harrison38ff4fa2008-10-28 16:08:13 -07001415 &iph->saddr, &iph->daddr);
Julius Volz2a3b7912008-09-02 15:55:47 +02001416
1417 /*
1418 * Work through seeing if this is for us.
1419 * These checks are supposed to be in an order that means easy
1420 * things are checked first to speed up processing.... however
1421 * this means that some packets will manage to get a long way
1422 * down this stack and then be rejected, but that's life.
1423 */
1424 if ((ic->icmp6_type != ICMPV6_DEST_UNREACH) &&
1425 (ic->icmp6_type != ICMPV6_PKT_TOOBIG) &&
1426 (ic->icmp6_type != ICMPV6_TIME_EXCEED)) {
1427 *related = 0;
1428 return NF_ACCEPT;
1429 }
1430
1431 /* Now find the contained IP header */
1432 offset += sizeof(_icmph);
1433 cih = skb_header_pointer(skb, offset, sizeof(_ciph), &_ciph);
1434 if (cih == NULL)
1435 return NF_ACCEPT; /* The packet looks wrong, ignore */
1436
Hans Schillstrom93304192011-01-03 14:44:51 +01001437 net = skb_net(skb);
1438 pd = ip_vs_proto_data_get(net, cih->nexthdr);
1439 if (!pd)
Julius Volz2a3b7912008-09-02 15:55:47 +02001440 return NF_ACCEPT;
Hans Schillstrom93304192011-01-03 14:44:51 +01001441 pp = pd->pp;
Julius Volz2a3b7912008-09-02 15:55:47 +02001442
1443 /* Is the embedded protocol header present? */
1444 /* TODO: we don't support fragmentation at the moment anyways */
1445 if (unlikely(cih->nexthdr == IPPROTO_FRAGMENT && pp->dont_defrag))
1446 return NF_ACCEPT;
1447
Julian Anastasov0d796412010-10-17 16:46:17 +03001448 IP_VS_DBG_PKT(11, AF_INET6, pp, skb, offset,
1449 "Checking incoming ICMPv6 for");
Julius Volz2a3b7912008-09-02 15:55:47 +02001450
1451 offset += sizeof(struct ipv6hdr);
1452
1453 ip_vs_fill_iphdr(AF_INET6, cih, &ciph);
1454 /* The embedded headers contain source and dest in reverse order */
Hans Schillstrom93304192011-01-03 14:44:51 +01001455 cp = pp->conn_in_get(AF_INET6, skb, &ciph, offset, 1);
Simon Hormanf2428ed2008-09-05 11:17:14 +10001456 if (!cp) {
1457 /* The packet could also belong to a local client */
Hans Schillstrom93304192011-01-03 14:44:51 +01001458 cp = pp->conn_out_get(AF_INET6, skb, &ciph, offset, 1);
Simon Hormanf2428ed2008-09-05 11:17:14 +10001459 if (cp) {
Simon Horman178f5e42008-09-08 09:34:46 +10001460 ipv6_addr_copy(&snet.in6, &iph->saddr);
Simon Hormanf2428ed2008-09-05 11:17:14 +10001461 return handle_response_icmp(AF_INET6, skb, &snet,
1462 cih->nexthdr,
1463 cp, pp, offset,
1464 sizeof(struct ipv6hdr));
1465 }
Julius Volz2a3b7912008-09-02 15:55:47 +02001466 return NF_ACCEPT;
Simon Hormanf2428ed2008-09-05 11:17:14 +10001467 }
Julius Volz2a3b7912008-09-02 15:55:47 +02001468
1469 verdict = NF_DROP;
1470
1471 /* do the statistics and put it back */
1472 ip_vs_in_stats(cp, skb);
Venkata Mohan Reddy2906f662010-02-18 12:31:05 +01001473 if (IPPROTO_TCP == cih->nexthdr || IPPROTO_UDP == cih->nexthdr ||
1474 IPPROTO_SCTP == cih->nexthdr)
Julius Volz2a3b7912008-09-02 15:55:47 +02001475 offset += 2 * sizeof(__u16);
1476 verdict = ip_vs_icmp_xmit_v6(skb, cp, pp, offset);
Julian Anastasov489fded2010-10-17 16:27:31 +03001477 /* LOCALNODE from FORWARD hook is not supported */
1478 if (verdict == NF_ACCEPT && hooknum == NF_INET_FORWARD &&
1479 (rt = (struct rt6_info *) skb_dst(skb)) &&
1480 rt->rt6i_dev && rt->rt6i_dev->flags & IFF_LOOPBACK) {
1481 IP_VS_DBG(1, "%s(): "
1482 "local delivery to %pI6 but in FORWARD\n",
1483 __func__, &rt->rt6i_dst);
1484 verdict = NF_DROP;
1485 }
Julius Volz2a3b7912008-09-02 15:55:47 +02001486
1487 __ip_vs_conn_put(cp);
1488
1489 return verdict;
1490}
1491#endif
1492
1493
Linus Torvalds1da177e2005-04-16 15:20:36 -07001494/*
1495 * Check if it's for virtual services, look it up,
1496 * and send it on its way...
1497 */
1498static unsigned int
Julian Anastasovcb591552010-10-17 16:40:51 +03001499ip_vs_in(unsigned int hooknum, struct sk_buff *skb, int af)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001500{
Hans Schillstromf1313152011-01-03 14:44:55 +01001501 struct net *net;
Julius Volz51ef3482008-09-02 15:55:40 +02001502 struct ip_vs_iphdr iph;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001503 struct ip_vs_protocol *pp;
Hans Schillstrom93304192011-01-03 14:44:51 +01001504 struct ip_vs_proto_data *pd;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001505 struct ip_vs_conn *cp;
Julian Anastasovcb591552010-10-17 16:40:51 +03001506 int ret, restart, pkts;
Hans Schillstromf1313152011-01-03 14:44:55 +01001507 struct netns_ipvs *ipvs;
Julius Volz51ef3482008-09-02 15:55:40 +02001508
Julian Anastasovfc604762010-10-17 16:38:15 +03001509 /* Already marked as IPVS request or reply? */
1510 if (skb->ipvs_property)
1511 return NF_ACCEPT;
1512
Julian Anastasovcb591552010-10-17 16:40:51 +03001513 /*
1514 * Big tappo:
1515 * - remote client: only PACKET_HOST
1516 * - route: used for struct net when skb->dev is unset
1517 */
1518 if (unlikely((skb->pkt_type != PACKET_HOST &&
1519 hooknum != NF_INET_LOCAL_OUT) ||
1520 !skb_dst(skb))) {
1521 ip_vs_fill_iphdr(af, skb_network_header(skb), &iph);
1522 IP_VS_DBG_BUF(12, "packet type=%d proto=%d daddr=%s"
1523 " ignored in hook %u\n",
1524 skb->pkt_type, iph.protocol,
1525 IP_VS_DBG_ADDR(af, &iph.daddr), hooknum);
1526 return NF_ACCEPT;
1527 }
Julius Volz2a3b7912008-09-02 15:55:47 +02001528 ip_vs_fill_iphdr(af, skb_network_header(skb), &iph);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001529
Julian Anastasovcb591552010-10-17 16:40:51 +03001530 /* Bad... Do not break raw sockets */
1531 if (unlikely(skb->sk != NULL && hooknum == NF_INET_LOCAL_OUT &&
1532 af == AF_INET)) {
1533 struct sock *sk = skb->sk;
1534 struct inet_sock *inet = inet_sk(skb->sk);
1535
1536 if (inet && sk->sk_family == PF_INET && inet->nodefrag)
1537 return NF_ACCEPT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001538 }
1539
Julius Volz94b26552009-08-31 16:22:23 +02001540#ifdef CONFIG_IP_VS_IPV6
1541 if (af == AF_INET6) {
1542 if (unlikely(iph.protocol == IPPROTO_ICMPV6)) {
Julian Anastasov1ca5bb52010-10-17 16:32:29 +03001543 int related;
1544 int verdict = ip_vs_in_icmp_v6(skb, &related, hooknum);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001545
Julius Volz94b26552009-08-31 16:22:23 +02001546 if (related)
1547 return verdict;
1548 ip_vs_fill_iphdr(af, skb_network_header(skb), &iph);
1549 }
1550 } else
1551#endif
1552 if (unlikely(iph.protocol == IPPROTO_ICMP)) {
Julian Anastasov1ca5bb52010-10-17 16:32:29 +03001553 int related;
1554 int verdict = ip_vs_in_icmp(skb, &related, hooknum);
Julius Volz94b26552009-08-31 16:22:23 +02001555
1556 if (related)
1557 return verdict;
1558 ip_vs_fill_iphdr(af, skb_network_header(skb), &iph);
1559 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001560
Hans Schillstrom93304192011-01-03 14:44:51 +01001561 net = skb_net(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001562 /* Protocol supported? */
Hans Schillstrom93304192011-01-03 14:44:51 +01001563 pd = ip_vs_proto_data_get(net, iph.protocol);
1564 if (unlikely(!pd))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001565 return NF_ACCEPT;
Hans Schillstrom93304192011-01-03 14:44:51 +01001566 pp = pd->pp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001567 /*
1568 * Check if the packet belongs to an existing connection entry
1569 */
Hans Schillstrom93304192011-01-03 14:44:51 +01001570 cp = pp->conn_in_get(af, skb, &iph, iph.len, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001571
1572 if (unlikely(!cp)) {
1573 int v;
1574
Hans Schillstrom93304192011-01-03 14:44:51 +01001575 if (!pp->conn_schedule(af, skb, pd, &v, &cp))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001576 return v;
1577 }
1578
1579 if (unlikely(!cp)) {
1580 /* sorry, all this trouble for a no-hit :) */
Julian Anastasov0d796412010-10-17 16:46:17 +03001581 IP_VS_DBG_PKT(12, af, pp, skb, 0,
Julian Anastasovcb591552010-10-17 16:40:51 +03001582 "ip_vs_in: packet continues traversal as normal");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001583 return NF_ACCEPT;
1584 }
1585
Julian Anastasov0d796412010-10-17 16:46:17 +03001586 IP_VS_DBG_PKT(11, af, pp, skb, 0, "Incoming packet");
Hans Schillstromf1313152011-01-03 14:44:55 +01001587 net = skb_net(skb);
1588 ipvs = net_ipvs(net);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001589 /* Check the server status */
1590 if (cp->dest && !(cp->dest->flags & IP_VS_DEST_F_AVAILABLE)) {
1591 /* the destination server is not available */
1592
Hans Schillstroma0840e22011-01-03 14:44:58 +01001593 if (ipvs->sysctl_expire_nodest_conn) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001594 /* try to expire the connection immediately */
1595 ip_vs_conn_expire_now(cp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001596 }
Julian Anastasovdc8103f2005-11-08 09:40:05 -08001597 /* don't restart its timer, and silently
1598 drop the packet. */
1599 __ip_vs_conn_put(cp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001600 return NF_DROP;
1601 }
1602
1603 ip_vs_in_stats(cp, skb);
Hans Schillstrom93304192011-01-03 14:44:51 +01001604 restart = ip_vs_set_state(cp, IP_VS_DIR_INPUT, skb, pd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001605 if (cp->packet_xmit)
1606 ret = cp->packet_xmit(skb, cp, pp);
1607 /* do not touch skb anymore */
1608 else {
1609 IP_VS_DBG_RL("warning: packet_xmit is null");
1610 ret = NF_ACCEPT;
1611 }
1612
Rumen G. Bogdanovskiefac5272007-11-07 02:36:55 -08001613 /* Increase its packet counter and check if it is needed
1614 * to be synchronized
1615 *
1616 * Sync connection if it is about to close to
1617 * encorage the standby servers to update the connections timeout
Hans Schillstrom986a0752010-11-19 14:25:13 +01001618 *
1619 * For ONE_PKT let ip_vs_sync_conn() do the filter work.
Rumen G. Bogdanovskiefac5272007-11-07 02:36:55 -08001620 */
Hans Schillstromf1313152011-01-03 14:44:55 +01001621
Hans Schillstrom986a0752010-11-19 14:25:13 +01001622 if (cp->flags & IP_VS_CONN_F_ONE_PACKET)
Hans Schillstroma0840e22011-01-03 14:44:58 +01001623 pkts = ipvs->sysctl_sync_threshold[0];
Hans Schillstrom986a0752010-11-19 14:25:13 +01001624 else
1625 pkts = atomic_add_return(1, &cp->in_pkts);
1626
Hans Schillstromf1313152011-01-03 14:44:55 +01001627 if ((ipvs->sync_state & IP_VS_STATE_MASTER) &&
Venkata Mohan Reddy2906f662010-02-18 12:31:05 +01001628 cp->protocol == IPPROTO_SCTP) {
1629 if ((cp->state == IP_VS_SCTP_S_ESTABLISHED &&
Hans Schillstroma0840e22011-01-03 14:44:58 +01001630 (pkts % ipvs->sysctl_sync_threshold[1]
1631 == ipvs->sysctl_sync_threshold[0])) ||
Venkata Mohan Reddy2906f662010-02-18 12:31:05 +01001632 (cp->old_state != cp->state &&
1633 ((cp->state == IP_VS_SCTP_S_CLOSED) ||
1634 (cp->state == IP_VS_SCTP_S_SHUT_ACK_CLI) ||
1635 (cp->state == IP_VS_SCTP_S_SHUT_ACK_SER)))) {
Hans Schillstromf1313152011-01-03 14:44:55 +01001636 ip_vs_sync_conn(net, cp);
Venkata Mohan Reddy2906f662010-02-18 12:31:05 +01001637 goto out;
1638 }
1639 }
1640
Julian Anastasov8ed21632010-09-01 22:19:14 +00001641 /* Keep this block last: TCP and others with pp->num_states <= 1 */
Hans Schillstromf1313152011-01-03 14:44:55 +01001642 else if ((ipvs->sync_state & IP_VS_STATE_MASTER) &&
Rumen G. Bogdanovskiefac5272007-11-07 02:36:55 -08001643 (((cp->protocol != IPPROTO_TCP ||
1644 cp->state == IP_VS_TCP_S_ESTABLISHED) &&
Hans Schillstroma0840e22011-01-03 14:44:58 +01001645 (pkts % ipvs->sysctl_sync_threshold[1]
1646 == ipvs->sysctl_sync_threshold[0])) ||
Rumen G. Bogdanovskiefac5272007-11-07 02:36:55 -08001647 ((cp->protocol == IPPROTO_TCP) && (cp->old_state != cp->state) &&
1648 ((cp->state == IP_VS_TCP_S_FIN_WAIT) ||
Xiaotian Feng9abfe312009-12-14 16:38:21 +01001649 (cp->state == IP_VS_TCP_S_CLOSE) ||
Rumen G. Bogdanovski9d3a0de2008-07-16 20:04:23 -07001650 (cp->state == IP_VS_TCP_S_CLOSE_WAIT) ||
1651 (cp->state == IP_VS_TCP_S_TIME_WAIT)))))
Hans Schillstromf1313152011-01-03 14:44:55 +01001652 ip_vs_sync_conn(net, cp);
Venkata Mohan Reddy2906f662010-02-18 12:31:05 +01001653out:
Rumen G. Bogdanovskiefac5272007-11-07 02:36:55 -08001654 cp->old_state = cp->state;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001655
1656 ip_vs_conn_put(cp);
1657 return ret;
1658}
1659
Julian Anastasovcb591552010-10-17 16:40:51 +03001660/*
1661 * AF_INET handler in NF_INET_LOCAL_IN chain
1662 * Schedule and forward packets from remote clients
1663 */
1664static unsigned int
1665ip_vs_remote_request4(unsigned int hooknum, struct sk_buff *skb,
1666 const struct net_device *in,
1667 const struct net_device *out,
1668 int (*okfn)(struct sk_buff *))
1669{
1670 return ip_vs_in(hooknum, skb, AF_INET);
1671}
1672
1673/*
1674 * AF_INET handler in NF_INET_LOCAL_OUT chain
1675 * Schedule and forward packets from local clients
1676 */
1677static unsigned int
1678ip_vs_local_request4(unsigned int hooknum, struct sk_buff *skb,
1679 const struct net_device *in, const struct net_device *out,
1680 int (*okfn)(struct sk_buff *))
1681{
1682 unsigned int verdict;
1683
1684 /* Disable BH in LOCAL_OUT until all places are fixed */
1685 local_bh_disable();
1686 verdict = ip_vs_in(hooknum, skb, AF_INET);
1687 local_bh_enable();
1688 return verdict;
1689}
1690
1691#ifdef CONFIG_IP_VS_IPV6
1692
1693/*
1694 * AF_INET6 handler in NF_INET_LOCAL_IN chain
1695 * Schedule and forward packets from remote clients
1696 */
1697static unsigned int
1698ip_vs_remote_request6(unsigned int hooknum, struct sk_buff *skb,
1699 const struct net_device *in,
1700 const struct net_device *out,
1701 int (*okfn)(struct sk_buff *))
1702{
1703 return ip_vs_in(hooknum, skb, AF_INET6);
1704}
1705
1706/*
1707 * AF_INET6 handler in NF_INET_LOCAL_OUT chain
1708 * Schedule and forward packets from local clients
1709 */
1710static unsigned int
1711ip_vs_local_request6(unsigned int hooknum, struct sk_buff *skb,
1712 const struct net_device *in, const struct net_device *out,
1713 int (*okfn)(struct sk_buff *))
1714{
1715 unsigned int verdict;
1716
1717 /* Disable BH in LOCAL_OUT until all places are fixed */
1718 local_bh_disable();
1719 verdict = ip_vs_in(hooknum, skb, AF_INET6);
1720 local_bh_enable();
1721 return verdict;
1722}
1723
1724#endif
1725
Linus Torvalds1da177e2005-04-16 15:20:36 -07001726
1727/*
Patrick McHardy6e23ae22007-11-19 18:53:30 -08001728 * It is hooked at the NF_INET_FORWARD chain, in order to catch ICMP
Linus Torvalds1da177e2005-04-16 15:20:36 -07001729 * related packets destined for 0.0.0.0/0.
1730 * When fwmark-based virtual service is used, such as transparent
1731 * cache cluster, TCP packets can be marked and routed to ip_vs_in,
1732 * but ICMP destined for 0.0.0.0/0 cannot not be easily marked and
Patrick McHardy6e23ae22007-11-19 18:53:30 -08001733 * sent to ip_vs_in_icmp. So, catch them at the NF_INET_FORWARD chain
Linus Torvalds1da177e2005-04-16 15:20:36 -07001734 * and send them to ip_vs_in_icmp.
1735 */
1736static unsigned int
Herbert Xu3db05fe2007-10-15 00:53:15 -07001737ip_vs_forward_icmp(unsigned int hooknum, struct sk_buff *skb,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001738 const struct net_device *in, const struct net_device *out,
1739 int (*okfn)(struct sk_buff *))
1740{
1741 int r;
1742
Herbert Xu3db05fe2007-10-15 00:53:15 -07001743 if (ip_hdr(skb)->protocol != IPPROTO_ICMP)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001744 return NF_ACCEPT;
1745
Herbert Xu3db05fe2007-10-15 00:53:15 -07001746 return ip_vs_in_icmp(skb, &r, hooknum);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001747}
1748
Julius Volz2a3b7912008-09-02 15:55:47 +02001749#ifdef CONFIG_IP_VS_IPV6
1750static unsigned int
1751ip_vs_forward_icmp_v6(unsigned int hooknum, struct sk_buff *skb,
1752 const struct net_device *in, const struct net_device *out,
1753 int (*okfn)(struct sk_buff *))
1754{
1755 int r;
1756
1757 if (ipv6_hdr(skb)->nexthdr != IPPROTO_ICMPV6)
1758 return NF_ACCEPT;
1759
1760 return ip_vs_in_icmp_v6(skb, &r, hooknum);
1761}
1762#endif
1763
Linus Torvalds1da177e2005-04-16 15:20:36 -07001764
Patrick McHardy19994142007-12-05 01:23:00 -08001765static struct nf_hook_ops ip_vs_ops[] __read_mostly = {
Julian Anastasovcb591552010-10-17 16:40:51 +03001766 /* After packet filtering, change source only for VS/NAT */
1767 {
1768 .hook = ip_vs_reply4,
1769 .owner = THIS_MODULE,
1770 .pf = PF_INET,
1771 .hooknum = NF_INET_LOCAL_IN,
1772 .priority = 99,
1773 },
Patrick McHardy41c5b312007-12-05 01:22:43 -08001774 /* After packet filtering, forward packet through VS/DR, VS/TUN,
1775 * or VS/NAT(change destination), so that filtering rules can be
1776 * applied to IPVS. */
1777 {
Julian Anastasovcb591552010-10-17 16:40:51 +03001778 .hook = ip_vs_remote_request4,
Patrick McHardy41c5b312007-12-05 01:22:43 -08001779 .owner = THIS_MODULE,
1780 .pf = PF_INET,
Julian Anastasovcb591552010-10-17 16:40:51 +03001781 .hooknum = NF_INET_LOCAL_IN,
1782 .priority = 101,
Patrick McHardy41c5b312007-12-05 01:22:43 -08001783 },
Julian Anastasovfc604762010-10-17 16:38:15 +03001784 /* Before ip_vs_in, change source only for VS/NAT */
Patrick McHardy41c5b312007-12-05 01:22:43 -08001785 {
Julian Anastasovfc604762010-10-17 16:38:15 +03001786 .hook = ip_vs_local_reply4,
Patrick McHardy41c5b312007-12-05 01:22:43 -08001787 .owner = THIS_MODULE,
1788 .pf = PF_INET,
Julian Anastasovfc604762010-10-17 16:38:15 +03001789 .hooknum = NF_INET_LOCAL_OUT,
1790 .priority = -99,
Patrick McHardy41c5b312007-12-05 01:22:43 -08001791 },
Julian Anastasovcb591552010-10-17 16:40:51 +03001792 /* After mangle, schedule and forward local requests */
1793 {
1794 .hook = ip_vs_local_request4,
1795 .owner = THIS_MODULE,
1796 .pf = PF_INET,
1797 .hooknum = NF_INET_LOCAL_OUT,
1798 .priority = -98,
1799 },
Patrick McHardy41c5b312007-12-05 01:22:43 -08001800 /* After packet filtering (but before ip_vs_out_icmp), catch icmp
1801 * destined for 0.0.0.0/0, which is for incoming IPVS connections */
1802 {
1803 .hook = ip_vs_forward_icmp,
1804 .owner = THIS_MODULE,
1805 .pf = PF_INET,
Julian Anastasovcb591552010-10-17 16:40:51 +03001806 .hooknum = NF_INET_FORWARD,
1807 .priority = 99,
Patrick McHardy41c5b312007-12-05 01:22:43 -08001808 },
Julian Anastasovfc604762010-10-17 16:38:15 +03001809 /* After packet filtering, change source only for VS/NAT */
1810 {
1811 .hook = ip_vs_reply4,
1812 .owner = THIS_MODULE,
1813 .pf = PF_INET,
1814 .hooknum = NF_INET_FORWARD,
1815 .priority = 100,
1816 },
Julius Volz473b23d2008-09-02 15:55:54 +02001817#ifdef CONFIG_IP_VS_IPV6
Julian Anastasovcb591552010-10-17 16:40:51 +03001818 /* After packet filtering, change source only for VS/NAT */
1819 {
1820 .hook = ip_vs_reply6,
1821 .owner = THIS_MODULE,
1822 .pf = PF_INET6,
1823 .hooknum = NF_INET_LOCAL_IN,
1824 .priority = 99,
1825 },
Julius Volz473b23d2008-09-02 15:55:54 +02001826 /* After packet filtering, forward packet through VS/DR, VS/TUN,
1827 * or VS/NAT(change destination), so that filtering rules can be
1828 * applied to IPVS. */
1829 {
Julian Anastasovcb591552010-10-17 16:40:51 +03001830 .hook = ip_vs_remote_request6,
Julius Volz473b23d2008-09-02 15:55:54 +02001831 .owner = THIS_MODULE,
1832 .pf = PF_INET6,
Julian Anastasovcb591552010-10-17 16:40:51 +03001833 .hooknum = NF_INET_LOCAL_IN,
1834 .priority = 101,
Julius Volz473b23d2008-09-02 15:55:54 +02001835 },
Julian Anastasovfc604762010-10-17 16:38:15 +03001836 /* Before ip_vs_in, change source only for VS/NAT */
Julius Volz473b23d2008-09-02 15:55:54 +02001837 {
Julian Anastasovfc604762010-10-17 16:38:15 +03001838 .hook = ip_vs_local_reply6,
Julius Volz473b23d2008-09-02 15:55:54 +02001839 .owner = THIS_MODULE,
Julian Anastasovfc604762010-10-17 16:38:15 +03001840 .pf = PF_INET,
1841 .hooknum = NF_INET_LOCAL_OUT,
1842 .priority = -99,
Julius Volz473b23d2008-09-02 15:55:54 +02001843 },
Julian Anastasovcb591552010-10-17 16:40:51 +03001844 /* After mangle, schedule and forward local requests */
1845 {
1846 .hook = ip_vs_local_request6,
1847 .owner = THIS_MODULE,
1848 .pf = PF_INET6,
1849 .hooknum = NF_INET_LOCAL_OUT,
1850 .priority = -98,
1851 },
Julius Volz473b23d2008-09-02 15:55:54 +02001852 /* After packet filtering (but before ip_vs_out_icmp), catch icmp
1853 * destined for 0.0.0.0/0, which is for incoming IPVS connections */
1854 {
1855 .hook = ip_vs_forward_icmp_v6,
1856 .owner = THIS_MODULE,
1857 .pf = PF_INET6,
Julian Anastasovcb591552010-10-17 16:40:51 +03001858 .hooknum = NF_INET_FORWARD,
1859 .priority = 99,
Julius Volz473b23d2008-09-02 15:55:54 +02001860 },
Julian Anastasovfc604762010-10-17 16:38:15 +03001861 /* After packet filtering, change source only for VS/NAT */
1862 {
1863 .hook = ip_vs_reply6,
1864 .owner = THIS_MODULE,
1865 .pf = PF_INET6,
1866 .hooknum = NF_INET_FORWARD,
1867 .priority = 100,
1868 },
Julius Volz473b23d2008-09-02 15:55:54 +02001869#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001870};
Hans Schillstrom61b1ab42011-01-03 14:44:42 +01001871/*
1872 * Initialize IP Virtual Server netns mem.
1873 */
1874static int __net_init __ip_vs_init(struct net *net)
1875{
1876 struct netns_ipvs *ipvs;
1877
1878 if (!net_eq(net, &init_net)) {
1879 pr_err("The final patch for enabling netns is missing\n");
1880 return -EPERM;
1881 }
1882 ipvs = net_generic(net, ip_vs_net_id);
1883 if (ipvs == NULL) {
1884 pr_err("%s(): no memory.\n", __func__);
1885 return -ENOMEM;
1886 }
Hans Schillstromf6340ee2011-01-03 14:44:59 +01001887 ipvs->net = net;
Hans Schillstrom61b1ab42011-01-03 14:44:42 +01001888 /* Counters used for creating unique names */
1889 ipvs->gen = atomic_read(&ipvs_netns_cnt);
1890 atomic_inc(&ipvs_netns_cnt);
1891 net->ipvs = ipvs;
1892 printk(KERN_INFO "IPVS: Creating netns size=%lu id=%d\n",
1893 sizeof(struct netns_ipvs), ipvs->gen);
1894 return 0;
1895}
1896
1897static void __net_exit __ip_vs_cleanup(struct net *net)
1898{
1899 struct netns_ipvs *ipvs = net_ipvs(net);
1900
1901 IP_VS_DBG(10, "ipvs netns %d released\n", ipvs->gen);
1902}
1903
1904static struct pernet_operations ipvs_core_ops = {
1905 .init = __ip_vs_init,
1906 .exit = __ip_vs_cleanup,
1907 .id = &ip_vs_net_id,
1908 .size = sizeof(struct netns_ipvs),
1909};
Linus Torvalds1da177e2005-04-16 15:20:36 -07001910
1911/*
1912 * Initialize IP Virtual Server
1913 */
1914static int __init ip_vs_init(void)
1915{
1916 int ret;
1917
Hans Schillstrom61b1ab42011-01-03 14:44:42 +01001918 ret = register_pernet_subsys(&ipvs_core_ops); /* Alloc ip_vs struct */
1919 if (ret < 0)
1920 return ret;
Sven Wegenera919cf42008-08-14 00:47:16 +02001921
Hans Schillstrom61b1ab42011-01-03 14:44:42 +01001922 ip_vs_estimator_init();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001923 ret = ip_vs_control_init();
1924 if (ret < 0) {
Hannes Eder1e3e2382009-08-02 11:05:41 +00001925 pr_err("can't setup control.\n");
Sven Wegenera919cf42008-08-14 00:47:16 +02001926 goto cleanup_estimator;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001927 }
1928
1929 ip_vs_protocol_init();
1930
1931 ret = ip_vs_app_init();
1932 if (ret < 0) {
Hannes Eder1e3e2382009-08-02 11:05:41 +00001933 pr_err("can't setup application helper.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001934 goto cleanup_protocol;
1935 }
1936
1937 ret = ip_vs_conn_init();
1938 if (ret < 0) {
Hannes Eder1e3e2382009-08-02 11:05:41 +00001939 pr_err("can't setup connection table.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001940 goto cleanup_app;
1941 }
1942
Hans Schillstrom61b1ab42011-01-03 14:44:42 +01001943 ret = ip_vs_sync_init();
1944 if (ret < 0) {
1945 pr_err("can't setup sync data.\n");
1946 goto cleanup_conn;
1947 }
1948
Patrick McHardy41c5b312007-12-05 01:22:43 -08001949 ret = nf_register_hooks(ip_vs_ops, ARRAY_SIZE(ip_vs_ops));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001950 if (ret < 0) {
Hannes Eder1e3e2382009-08-02 11:05:41 +00001951 pr_err("can't register hooks.\n");
Hans Schillstrom61b1ab42011-01-03 14:44:42 +01001952 goto cleanup_sync;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001953 }
1954
Hannes Eder1e3e2382009-08-02 11:05:41 +00001955 pr_info("ipvs loaded.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001956 return ret;
1957
Hans Schillstrom61b1ab42011-01-03 14:44:42 +01001958cleanup_sync:
1959 ip_vs_sync_cleanup();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001960 cleanup_conn:
1961 ip_vs_conn_cleanup();
1962 cleanup_app:
1963 ip_vs_app_cleanup();
1964 cleanup_protocol:
1965 ip_vs_protocol_cleanup();
1966 ip_vs_control_cleanup();
Sven Wegenera919cf42008-08-14 00:47:16 +02001967 cleanup_estimator:
1968 ip_vs_estimator_cleanup();
Hans Schillstrom61b1ab42011-01-03 14:44:42 +01001969 unregister_pernet_subsys(&ipvs_core_ops); /* free ip_vs struct */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001970 return ret;
1971}
1972
1973static void __exit ip_vs_cleanup(void)
1974{
Patrick McHardy41c5b312007-12-05 01:22:43 -08001975 nf_unregister_hooks(ip_vs_ops, ARRAY_SIZE(ip_vs_ops));
Hans Schillstrom61b1ab42011-01-03 14:44:42 +01001976 ip_vs_sync_cleanup();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001977 ip_vs_conn_cleanup();
1978 ip_vs_app_cleanup();
1979 ip_vs_protocol_cleanup();
1980 ip_vs_control_cleanup();
Sven Wegenera919cf42008-08-14 00:47:16 +02001981 ip_vs_estimator_cleanup();
Hans Schillstrom61b1ab42011-01-03 14:44:42 +01001982 unregister_pernet_subsys(&ipvs_core_ops); /* free ip_vs struct */
Hannes Eder1e3e2382009-08-02 11:05:41 +00001983 pr_info("ipvs unloaded.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001984}
1985
1986module_init(ip_vs_init);
1987module_exit(ip_vs_cleanup);
1988MODULE_LICENSE("GPL");