blob: a627fe690c19c7a2ecb5b6bfbb778455b2665f53 [file] [log] [blame]
Simon Horman07dcc682014-09-30 10:50:06 +09001/* IP Virtual Server
2 * data structure and functionality definitions
Linus Torvalds1da177e2005-04-16 15:20:36 -07003 */
4
Julius Volzbc4768e2008-07-31 20:45:24 -07005#ifndef _NET_IP_VS_H
6#define _NET_IP_VS_H
Linus Torvalds1da177e2005-04-16 15:20:36 -07007
Julius Volzbc4768e2008-07-31 20:45:24 -07008#include <linux/ip_vs.h> /* definitions shared with userland */
Linus Torvalds1da177e2005-04-16 15:20:36 -07009
Julius Volzbc4768e2008-07-31 20:45:24 -070010#include <asm/types.h> /* for __uXX types */
11
Linus Torvalds1da177e2005-04-16 15:20:36 -070012#include <linux/list.h> /* for struct list_head */
13#include <linux/spinlock.h> /* for struct rwlock_t */
Simon Horman07dcc682014-09-30 10:50:06 +090014#include <linux/atomic.h> /* for struct atomic_t */
Linus Torvalds1da177e2005-04-16 15:20:36 -070015#include <linux/compiler.h>
Arnaldo Carvalho de Melo14c85022005-12-27 02:43:12 -020016#include <linux/timer.h>
Paul Gortmaker187f1882011-11-23 20:12:59 -050017#include <linux/bug.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070018
Arnaldo Carvalho de Melo14c85022005-12-27 02:43:12 -020019#include <net/checksum.h>
Julius Volze7ade462008-09-02 15:55:33 +020020#include <linux/netfilter.h> /* for union nf_inet_addr */
KOVACS Krisztian1668e012008-10-01 07:33:10 -070021#include <linux/ip.h>
Julius Volze7ade462008-09-02 15:55:33 +020022#include <linux/ipv6.h> /* for struct ipv6hdr */
Alexey Dobriyan4e3fd7a2011-11-21 03:39:03 +000023#include <net/ipv6.h>
Jesper Dangaard Brouer54d83ef2012-10-22 21:22:45 +020024#if IS_ENABLED(CONFIG_IP_VS_IPV6)
Jesper Dangaard Brouer63dca2c2012-09-26 14:06:41 +020025#include <linux/netfilter_ipv6/ip6_tables.h>
26#endif
Jesper Dangaard Brouera638e512012-09-26 14:06:20 +020027#if IS_ENABLED(CONFIG_NF_CONNTRACK)
Julian Anastasovf4bc17c2010-09-21 17:35:41 +020028#include <net/netfilter/nf_conntrack.h>
29#endif
Hans Schillstrom61b1ab42011-01-03 14:44:42 +010030#include <net/net_namespace.h> /* Netw namespace */
31
Simon Horman07dcc682014-09-30 10:50:06 +090032/* Generic access of ipvs struct */
Hans Schillstrom61b1ab42011-01-03 14:44:42 +010033static inline struct netns_ipvs *net_ipvs(struct net* net)
34{
35 return net->ipvs;
36}
Simon Horman07dcc682014-09-30 10:50:06 +090037
38/* Get net ptr from skb in traffic cases
Hans Schillstromfc723252011-01-03 14:44:43 +010039 * use skb_sknet when call is from userland (ioctl or netlink)
40 */
Hans Schillstroma0840e22011-01-03 14:44:58 +010041static inline struct net *skb_net(const struct sk_buff *skb)
Hans Schillstromfc723252011-01-03 14:44:43 +010042{
43#ifdef CONFIG_NET_NS
44#ifdef CONFIG_IP_VS_DEBUG
45 /*
46 * This is used for debug only.
47 * Start with the most likely hit
48 * End with BUG
49 */
50 if (likely(skb->dev && skb->dev->nd_net))
51 return dev_net(skb->dev);
Hans Schillstroma09d1972011-04-04 15:25:18 +020052 if (skb_dst(skb) && skb_dst(skb)->dev)
Hans Schillstromfc723252011-01-03 14:44:43 +010053 return dev_net(skb_dst(skb)->dev);
54 WARN(skb->sk, "Maybe skb_sknet should be used in %s() at line:%d\n",
55 __func__, __LINE__);
56 if (likely(skb->sk && skb->sk->sk_net))
57 return sock_net(skb->sk);
58 pr_err("There is no net ptr to find in the skb in %s() line:%d\n",
59 __func__, __LINE__);
60 BUG();
61#else
62 return dev_net(skb->dev ? : skb_dst(skb)->dev);
63#endif
64#else
65 return &init_net;
66#endif
67}
68
Hans Schillstroma0840e22011-01-03 14:44:58 +010069static inline struct net *skb_sknet(const struct sk_buff *skb)
Hans Schillstromfc723252011-01-03 14:44:43 +010070{
71#ifdef CONFIG_NET_NS
72#ifdef CONFIG_IP_VS_DEBUG
73 /* Start with the most likely hit */
74 if (likely(skb->sk && skb->sk->sk_net))
75 return sock_net(skb->sk);
76 WARN(skb->dev, "Maybe skb_net should be used instead in %s() line:%d\n",
77 __func__, __LINE__);
78 if (likely(skb->dev && skb->dev->nd_net))
79 return dev_net(skb->dev);
80 pr_err("There is no net ptr to find in the skb in %s() line:%d\n",
81 __func__, __LINE__);
82 BUG();
83#else
84 return sock_net(skb->sk);
85#endif
86#else
87 return &init_net;
88#endif
89}
Simon Horman07dcc682014-09-30 10:50:06 +090090
91/* This one needed for single_open_net since net is stored directly in
Lucas De Marchi25985ed2011-03-30 22:57:33 -030092 * private not as a struct i.e. seq_file_net can't be used.
Hans Schillstromb17fc992011-01-03 14:44:56 +010093 */
94static inline struct net *seq_file_single_net(struct seq_file *seq)
95{
96#ifdef CONFIG_NET_NS
97 return (struct net *)seq->private;
98#else
99 return &init_net;
100#endif
101}
Catalin(ux) M. BOIE6f7edb42010-01-05 05:50:24 +0100102
103/* Connections' size value needed by ip_vs_ctl.c */
104extern int ip_vs_conn_tab_size;
105
Julius Volz64aae3c2008-09-02 15:55:34 +0200106struct ip_vs_iphdr {
Jesper Dangaard Brouer63dca2c2012-09-26 14:06:41 +0200107 __u32 len; /* IPv4 simply where L4 starts
Simon Horman07dcc682014-09-30 10:50:06 +0900108 * IPv6 where L4 Transport Header starts */
Jesper Dangaard Brouer63dca2c2012-09-26 14:06:41 +0200109 __u16 fragoffs; /* IPv6 fragment offset, 0 if first frag (or not frag)*/
110 __s16 protocol;
111 __s32 flags;
Julius Volz64aae3c2008-09-02 15:55:34 +0200112 union nf_inet_addr saddr;
113 union nf_inet_addr daddr;
114};
115
Jesper Dangaard Brouer2f747132012-09-26 14:06:59 +0200116static inline void *frag_safe_skb_hp(const struct sk_buff *skb, int offset,
117 int len, void *buffer,
118 const struct ip_vs_iphdr *ipvsh)
119{
120 return skb_header_pointer(skb, offset, len, buffer);
121}
Jesper Dangaard Brouer2f747132012-09-26 14:06:59 +0200122
Julius Volz64aae3c2008-09-02 15:55:34 +0200123static inline void
Jesper Dangaard Brouer63dca2c2012-09-26 14:06:41 +0200124ip_vs_fill_ip4hdr(const void *nh, struct ip_vs_iphdr *iphdr)
125{
126 const struct iphdr *iph = nh;
127
128 iphdr->len = iph->ihl * 4;
129 iphdr->fragoffs = 0;
130 iphdr->protocol = iph->protocol;
131 iphdr->saddr.ip = iph->saddr;
132 iphdr->daddr.ip = iph->daddr;
133}
134
135/* This function handles filling *ip_vs_iphdr, both for IPv4 and IPv6.
136 * IPv6 requires some extra work, as finding proper header position,
137 * depend on the IPv6 extension headers.
138 */
139static inline void
140ip_vs_fill_iph_skb(int af, const struct sk_buff *skb, struct ip_vs_iphdr *iphdr)
Julius Volz64aae3c2008-09-02 15:55:34 +0200141{
142#ifdef CONFIG_IP_VS_IPV6
143 if (af == AF_INET6) {
Jesper Dangaard Brouer63dca2c2012-09-26 14:06:41 +0200144 const struct ipv6hdr *iph =
145 (struct ipv6hdr *)skb_network_header(skb);
Alexey Dobriyan4e3fd7a2011-11-21 03:39:03 +0000146 iphdr->saddr.in6 = iph->saddr;
147 iphdr->daddr.in6 = iph->daddr;
Jiri Pirko6aafeef2013-11-06 17:52:20 +0100148 /* ipv6_find_hdr() updates len, flags */
Jesper Dangaard Brouer63dca2c2012-09-26 14:06:41 +0200149 iphdr->len = 0;
150 iphdr->flags = 0;
151 iphdr->protocol = ipv6_find_hdr(skb, &iphdr->len, -1,
152 &iphdr->fragoffs,
153 &iphdr->flags);
Julius Volz64aae3c2008-09-02 15:55:34 +0200154 } else
155#endif
156 {
Jesper Dangaard Brouer63dca2c2012-09-26 14:06:41 +0200157 const struct iphdr *iph =
158 (struct iphdr *)skb_network_header(skb);
159 iphdr->len = iph->ihl * 4;
160 iphdr->fragoffs = 0;
161 iphdr->protocol = iph->protocol;
162 iphdr->saddr.ip = iph->saddr;
163 iphdr->daddr.ip = iph->daddr;
164 }
165}
166
Julius Volz64aae3c2008-09-02 15:55:34 +0200167static inline void ip_vs_addr_copy(int af, union nf_inet_addr *dst,
168 const union nf_inet_addr *src)
169{
170#ifdef CONFIG_IP_VS_IPV6
171 if (af == AF_INET6)
Alexey Dobriyan4e3fd7a2011-11-21 03:39:03 +0000172 dst->in6 = src->in6;
Julius Volz64aae3c2008-09-02 15:55:34 +0200173 else
174#endif
175 dst->ip = src->ip;
176}
177
Julian Anastasov9a05475c2013-03-21 11:58:12 +0200178static inline void ip_vs_addr_set(int af, union nf_inet_addr *dst,
179 const union nf_inet_addr *src)
180{
181#ifdef CONFIG_IP_VS_IPV6
182 if (af == AF_INET6) {
183 dst->in6 = src->in6;
184 return;
185 }
186#endif
187 dst->ip = src->ip;
188 dst->all[1] = 0;
189 dst->all[2] = 0;
190 dst->all[3] = 0;
191}
192
Julius Volz64aae3c2008-09-02 15:55:34 +0200193static inline int ip_vs_addr_equal(int af, const union nf_inet_addr *a,
194 const union nf_inet_addr *b)
195{
196#ifdef CONFIG_IP_VS_IPV6
197 if (af == AF_INET6)
198 return ipv6_addr_equal(&a->in6, &b->in6);
199#endif
200 return a->ip == b->ip;
201}
202
Linus Torvalds1da177e2005-04-16 15:20:36 -0700203#ifdef CONFIG_IP_VS_DEBUG
Arnaldo Carvalho de Melo14c85022005-12-27 02:43:12 -0200204#include <linux/net.h>
205
Joe Perches5c3a0fd2013-09-21 10:22:42 -0700206int ip_vs_get_debug_level(void);
Julius Volzc842a3a2008-09-02 15:55:35 +0200207
208static inline const char *ip_vs_dbg_addr(int af, char *buf, size_t buf_len,
209 const union nf_inet_addr *addr,
210 int *idx)
211{
212 int len;
213#ifdef CONFIG_IP_VS_IPV6
214 if (af == AF_INET6)
Jesper Dangaard Brouer120b9c12012-09-26 14:05:53 +0200215 len = snprintf(&buf[*idx], buf_len - *idx, "[%pI6c]",
Harvey Harrison0c6ce782008-10-28 16:09:23 -0700216 &addr->in6) + 1;
Julius Volzc842a3a2008-09-02 15:55:35 +0200217 else
218#endif
Harvey Harrison3685f25d2008-10-31 00:56:49 -0700219 len = snprintf(&buf[*idx], buf_len - *idx, "%pI4",
220 &addr->ip) + 1;
Julius Volzc842a3a2008-09-02 15:55:35 +0200221
222 *idx += len;
223 BUG_ON(*idx > buf_len + 1);
224 return &buf[*idx - len];
225}
226
Hannes Eder9aada7a2009-07-30 14:29:44 -0700227#define IP_VS_DBG_BUF(level, msg, ...) \
228 do { \
229 char ip_vs_dbg_buf[160]; \
230 int ip_vs_dbg_idx = 0; \
231 if (level <= ip_vs_get_debug_level()) \
232 printk(KERN_DEBUG pr_fmt(msg), ##__VA_ARGS__); \
233 } while (0)
234#define IP_VS_ERR_BUF(msg...) \
235 do { \
236 char ip_vs_dbg_buf[160]; \
237 int ip_vs_dbg_idx = 0; \
238 pr_err(msg); \
239 } while (0)
Julius Volzc842a3a2008-09-02 15:55:35 +0200240
241/* Only use from within IP_VS_DBG_BUF() or IP_VS_ERR_BUF macros */
Hannes Eder9aada7a2009-07-30 14:29:44 -0700242#define IP_VS_DBG_ADDR(af, addr) \
243 ip_vs_dbg_addr(af, ip_vs_dbg_buf, \
244 sizeof(ip_vs_dbg_buf), addr, \
245 &ip_vs_dbg_idx)
Julius Volzc842a3a2008-09-02 15:55:35 +0200246
Hannes Eder9aada7a2009-07-30 14:29:44 -0700247#define IP_VS_DBG(level, msg, ...) \
248 do { \
249 if (level <= ip_vs_get_debug_level()) \
250 printk(KERN_DEBUG pr_fmt(msg), ##__VA_ARGS__); \
251 } while (0)
252#define IP_VS_DBG_RL(msg, ...) \
253 do { \
254 if (net_ratelimit()) \
255 printk(KERN_DEBUG pr_fmt(msg), ##__VA_ARGS__); \
256 } while (0)
Julian Anastasov0d796412010-10-17 16:46:17 +0300257#define IP_VS_DBG_PKT(level, af, pp, skb, ofs, msg) \
Hannes Eder9aada7a2009-07-30 14:29:44 -0700258 do { \
259 if (level <= ip_vs_get_debug_level()) \
Julian Anastasov0d796412010-10-17 16:46:17 +0300260 pp->debug_packet(af, pp, skb, ofs, msg); \
Hannes Eder9aada7a2009-07-30 14:29:44 -0700261 } while (0)
Julian Anastasov0d796412010-10-17 16:46:17 +0300262#define IP_VS_DBG_RL_PKT(level, af, pp, skb, ofs, msg) \
Hannes Eder9aada7a2009-07-30 14:29:44 -0700263 do { \
264 if (level <= ip_vs_get_debug_level() && \
265 net_ratelimit()) \
Julian Anastasov0d796412010-10-17 16:46:17 +0300266 pp->debug_packet(af, pp, skb, ofs, msg); \
Hannes Eder9aada7a2009-07-30 14:29:44 -0700267 } while (0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700268#else /* NO DEBUGGING at ALL */
Julius Volzc842a3a2008-09-02 15:55:35 +0200269#define IP_VS_DBG_BUF(level, msg...) do {} while (0)
270#define IP_VS_ERR_BUF(msg...) do {} while (0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700271#define IP_VS_DBG(level, msg...) do {} while (0)
272#define IP_VS_DBG_RL(msg...) do {} while (0)
Julian Anastasov0d796412010-10-17 16:46:17 +0300273#define IP_VS_DBG_PKT(level, af, pp, skb, ofs, msg) do {} while (0)
274#define IP_VS_DBG_RL_PKT(level, af, pp, skb, ofs, msg) do {} while (0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700275#endif
276
277#define IP_VS_BUG() BUG()
Hannes Eder1e3e2382009-08-02 11:05:41 +0000278#define IP_VS_ERR_RL(msg, ...) \
Hannes Eder9aada7a2009-07-30 14:29:44 -0700279 do { \
280 if (net_ratelimit()) \
Hannes Eder1e3e2382009-08-02 11:05:41 +0000281 pr_err(msg, ##__VA_ARGS__); \
Hannes Eder9aada7a2009-07-30 14:29:44 -0700282 } while (0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700283
284#ifdef CONFIG_IP_VS_DEBUG
285#define EnterFunction(level) \
Hannes Eder9aada7a2009-07-30 14:29:44 -0700286 do { \
287 if (level <= ip_vs_get_debug_level()) \
288 printk(KERN_DEBUG \
289 pr_fmt("Enter: %s, %s line %i\n"), \
290 __func__, __FILE__, __LINE__); \
291 } while (0)
292#define LeaveFunction(level) \
293 do { \
294 if (level <= ip_vs_get_debug_level()) \
295 printk(KERN_DEBUG \
296 pr_fmt("Leave: %s, %s line %i\n"), \
297 __func__, __FILE__, __LINE__); \
298 } while (0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700299#else
300#define EnterFunction(level) do {} while (0)
301#define LeaveFunction(level) do {} while (0)
302#endif
303
Simon Horman07dcc682014-09-30 10:50:06 +0900304/* The port number of FTP service (in network order). */
Harvey Harrisonf3a7c662009-02-14 22:58:35 -0800305#define FTPPORT cpu_to_be16(21)
306#define FTPDATA cpu_to_be16(20)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700307
Simon Horman07dcc682014-09-30 10:50:06 +0900308/* TCP State Values */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700309enum {
310 IP_VS_TCP_S_NONE = 0,
311 IP_VS_TCP_S_ESTABLISHED,
312 IP_VS_TCP_S_SYN_SENT,
313 IP_VS_TCP_S_SYN_RECV,
314 IP_VS_TCP_S_FIN_WAIT,
315 IP_VS_TCP_S_TIME_WAIT,
316 IP_VS_TCP_S_CLOSE,
317 IP_VS_TCP_S_CLOSE_WAIT,
318 IP_VS_TCP_S_LAST_ACK,
319 IP_VS_TCP_S_LISTEN,
320 IP_VS_TCP_S_SYNACK,
321 IP_VS_TCP_S_LAST
322};
323
Simon Horman07dcc682014-09-30 10:50:06 +0900324/* UDP State Values */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700325enum {
326 IP_VS_UDP_S_NORMAL,
327 IP_VS_UDP_S_LAST,
328};
329
Simon Horman07dcc682014-09-30 10:50:06 +0900330/* ICMP State Values */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700331enum {
332 IP_VS_ICMP_S_NORMAL,
333 IP_VS_ICMP_S_LAST,
334};
335
Simon Horman07dcc682014-09-30 10:50:06 +0900336/* SCTP State Values */
Venkata Mohan Reddy2906f662010-02-18 12:31:05 +0100337enum ip_vs_sctp_states {
338 IP_VS_SCTP_S_NONE,
Julian Anastasov61e7c422013-06-18 10:08:07 +0300339 IP_VS_SCTP_S_INIT1,
340 IP_VS_SCTP_S_INIT,
341 IP_VS_SCTP_S_COOKIE_SENT,
342 IP_VS_SCTP_S_COOKIE_REPLIED,
343 IP_VS_SCTP_S_COOKIE_WAIT,
344 IP_VS_SCTP_S_COOKIE,
345 IP_VS_SCTP_S_COOKIE_ECHOED,
Venkata Mohan Reddy2906f662010-02-18 12:31:05 +0100346 IP_VS_SCTP_S_ESTABLISHED,
Julian Anastasov61e7c422013-06-18 10:08:07 +0300347 IP_VS_SCTP_S_SHUTDOWN_SENT,
348 IP_VS_SCTP_S_SHUTDOWN_RECEIVED,
349 IP_VS_SCTP_S_SHUTDOWN_ACK_SENT,
350 IP_VS_SCTP_S_REJECTED,
Venkata Mohan Reddy2906f662010-02-18 12:31:05 +0100351 IP_VS_SCTP_S_CLOSED,
352 IP_VS_SCTP_S_LAST
353};
354
Simon Horman07dcc682014-09-30 10:50:06 +0900355/* Delta sequence info structure
356 * Each ip_vs_conn has 2 (output AND input seq. changes).
357 * Only used in the VS/NAT.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700358 */
359struct ip_vs_seq {
360 __u32 init_seq; /* Add delta from this seq */
361 __u32 delta; /* Delta in sequence numbers */
362 __u32 previous_delta; /* Delta in sequence numbers
Simon Horman07dcc682014-09-30 10:50:06 +0900363 * before last resized pkt */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700364};
365
Simon Horman07dcc682014-09-30 10:50:06 +0900366/* counters per cpu */
Hans Schillstromb17fc992011-01-03 14:44:56 +0100367struct ip_vs_counters {
Julian Anastasovcd67cd52015-02-06 09:44:44 +0200368 __u64 conns; /* connections scheduled */
369 __u64 inpkts; /* incoming packets */
370 __u64 outpkts; /* outgoing packets */
Hans Schillstromb17fc992011-01-03 14:44:56 +0100371 __u64 inbytes; /* incoming bytes */
372 __u64 outbytes; /* outgoing bytes */
373};
Simon Horman07dcc682014-09-30 10:50:06 +0900374/* Stats per cpu */
Hans Schillstromb17fc992011-01-03 14:44:56 +0100375struct ip_vs_cpu_stats {
Julian Anastasovcd67cd52015-02-06 09:44:44 +0200376 struct ip_vs_counters cnt;
Hans Schillstromb17fc992011-01-03 14:44:56 +0100377 struct u64_stats_sync syncp;
378};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700379
Simon Horman07dcc682014-09-30 10:50:06 +0900380/* IPVS statistics objects */
Sven Wegener3a14a312008-08-10 18:24:41 +0000381struct ip_vs_estimator {
382 struct list_head list;
383
384 u64 last_inbytes;
385 u64 last_outbytes;
Julian Anastasovcd67cd52015-02-06 09:44:44 +0200386 u64 last_conns;
387 u64 last_inpkts;
388 u64 last_outpkts;
Sven Wegener3a14a312008-08-10 18:24:41 +0000389
Julian Anastasovcd67cd52015-02-06 09:44:44 +0200390 u64 cps;
391 u64 inpps;
392 u64 outpps;
393 u64 inbps;
394 u64 outbps;
395};
396
397/*
398 * IPVS statistics object, 64-bit kernel version of struct ip_vs_stats_user
399 */
400struct ip_vs_kstats {
401 u64 conns; /* connections scheduled */
402 u64 inpkts; /* incoming packets */
403 u64 outpkts; /* outgoing packets */
404 u64 inbytes; /* incoming bytes */
405 u64 outbytes; /* outgoing bytes */
406
407 u64 cps; /* current connection rate */
408 u64 inpps; /* current in packet rate */
409 u64 outpps; /* current out packet rate */
410 u64 inbps; /* current in byte rate */
411 u64 outbps; /* current out byte rate */
Sven Wegener3a14a312008-08-10 18:24:41 +0000412};
413
Eric Dumazetfd2c3ef2009-11-03 03:26:03 +0000414struct ip_vs_stats {
Julian Anastasovcd67cd52015-02-06 09:44:44 +0200415 struct ip_vs_kstats kstats; /* kernel statistics */
Sven Wegenere9c0ce22008-09-08 13:39:04 +0200416 struct ip_vs_estimator est; /* estimator */
Julian Anastasovb962abd2013-03-09 23:25:08 +0200417 struct ip_vs_cpu_stats __percpu *cpustats; /* per cpu counters */
Hans Schillstromb17fc992011-01-03 14:44:56 +0100418 spinlock_t lock; /* spin lock */
Julian Anastasovcd67cd52015-02-06 09:44:44 +0200419 struct ip_vs_kstats kstats0; /* reset values */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700420};
421
Arnaldo Carvalho de Melo14c85022005-12-27 02:43:12 -0200422struct dst_entry;
423struct iphdr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700424struct ip_vs_conn;
425struct ip_vs_app;
Arnaldo Carvalho de Melo14c85022005-12-27 02:43:12 -0200426struct sk_buff;
Hans Schillstrom252c6412011-01-03 14:44:46 +0100427struct ip_vs_proto_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700428
429struct ip_vs_protocol {
430 struct ip_vs_protocol *next;
431 char *name;
Julian Anastasov2ad17de2008-04-29 03:21:23 -0700432 u16 protocol;
433 u16 num_states;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700434 int dont_defrag;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700435
436 void (*init)(struct ip_vs_protocol *pp);
437
438 void (*exit)(struct ip_vs_protocol *pp);
439
Hans Schillstrom582b8e3e2012-04-26 09:45:35 +0200440 int (*init_netns)(struct net *net, struct ip_vs_proto_data *pd);
Hans Schillstrom252c6412011-01-03 14:44:46 +0100441
442 void (*exit_netns)(struct net *net, struct ip_vs_proto_data *pd);
443
Julius Volz51ef3482008-09-02 15:55:40 +0200444 int (*conn_schedule)(int af, struct sk_buff *skb,
Hans Schillstrom93304192011-01-03 14:44:51 +0100445 struct ip_vs_proto_data *pd,
Jesper Dangaard Brouerd4383f02012-09-26 14:07:17 +0200446 int *verdict, struct ip_vs_conn **cpp,
447 struct ip_vs_iphdr *iph);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700448
449 struct ip_vs_conn *
Julius Volz51ef3482008-09-02 15:55:40 +0200450 (*conn_in_get)(int af,
451 const struct sk_buff *skb,
Julius Volz51ef3482008-09-02 15:55:40 +0200452 const struct ip_vs_iphdr *iph,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700453 int inverse);
454
455 struct ip_vs_conn *
Julius Volz51ef3482008-09-02 15:55:40 +0200456 (*conn_out_get)(int af,
457 const struct sk_buff *skb,
Julius Volz51ef3482008-09-02 15:55:40 +0200458 const struct ip_vs_iphdr *iph,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700459 int inverse);
460
Jesper Dangaard Brouerd4383f02012-09-26 14:07:17 +0200461 int (*snat_handler)(struct sk_buff *skb, struct ip_vs_protocol *pp,
462 struct ip_vs_conn *cp, struct ip_vs_iphdr *iph);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700463
Jesper Dangaard Brouerd4383f02012-09-26 14:07:17 +0200464 int (*dnat_handler)(struct sk_buff *skb, struct ip_vs_protocol *pp,
465 struct ip_vs_conn *cp, struct ip_vs_iphdr *iph);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700466
Julius Volz51ef3482008-09-02 15:55:40 +0200467 int (*csum_check)(int af, struct sk_buff *skb,
468 struct ip_vs_protocol *pp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700469
470 const char *(*state_name)(int state);
471
Simon Horman4a516f12011-09-16 14:11:49 +0900472 void (*state_transition)(struct ip_vs_conn *cp, int direction,
473 const struct sk_buff *skb,
474 struct ip_vs_proto_data *pd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700475
Hans Schillstromab8a5e82011-01-03 14:44:53 +0100476 int (*register_app)(struct net *net, struct ip_vs_app *inc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700477
Hans Schillstromab8a5e82011-01-03 14:44:53 +0100478 void (*unregister_app)(struct net *net, struct ip_vs_app *inc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700479
480 int (*app_conn_bind)(struct ip_vs_conn *cp);
481
Julian Anastasov0d796412010-10-17 16:46:17 +0300482 void (*debug_packet)(int af, struct ip_vs_protocol *pp,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700483 const struct sk_buff *skb,
484 int offset,
485 const char *msg);
486
Hans Schillstrom93304192011-01-03 14:44:51 +0100487 void (*timeout_change)(struct ip_vs_proto_data *pd, int flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700488};
489
Simon Horman07dcc682014-09-30 10:50:06 +0900490/* protocol data per netns */
Hans Schillstrom252c6412011-01-03 14:44:46 +0100491struct ip_vs_proto_data {
492 struct ip_vs_proto_data *next;
493 struct ip_vs_protocol *pp;
494 int *timeout_table; /* protocol timeout table */
495 atomic_t appcnt; /* counter of proto app incs. */
496 struct tcp_states_t *tcp_state_table;
497};
498
Joe Perches5c3a0fd2013-09-21 10:22:42 -0700499struct ip_vs_protocol *ip_vs_proto_get(unsigned short proto);
500struct ip_vs_proto_data *ip_vs_proto_data_get(struct net *net,
501 unsigned short proto);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700502
Simon Hormanf11017e2010-08-22 21:37:52 +0900503struct ip_vs_conn_param {
Hans Schillstrom6e67e582011-01-03 14:44:57 +0100504 struct net *net;
Simon Hormanf11017e2010-08-22 21:37:52 +0900505 const union nf_inet_addr *caddr;
506 const union nf_inet_addr *vaddr;
507 __be16 cport;
508 __be16 vport;
509 __u16 protocol;
510 u16 af;
Simon Horman85999282010-08-22 21:37:53 +0900511
512 const struct ip_vs_pe *pe;
513 char *pe_data;
514 __u8 pe_data_len;
Simon Hormanf11017e2010-08-22 21:37:52 +0900515};
516
Simon Horman07dcc682014-09-30 10:50:06 +0900517/* IP_VS structure allocated for each dynamically scheduled connection */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700518struct ip_vs_conn {
Changli Gao731109e2011-02-19 18:05:08 +0800519 struct hlist_node c_list; /* hashed list heads */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700520 /* Protocol, addresses and port numbers */
Hans Schillstrom6e67e582011-01-03 14:44:57 +0100521 __be16 cport;
Hans Schillstrom6e67e582011-01-03 14:44:57 +0100522 __be16 dport;
Julian Anastasov1845ed02013-03-21 11:58:11 +0200523 __be16 vport;
524 u16 af; /* address family */
Hans Schillstrom6e67e582011-01-03 14:44:57 +0100525 union nf_inet_addr caddr; /* client address */
526 union nf_inet_addr vaddr; /* virtual address */
527 union nf_inet_addr daddr; /* destination address */
528 volatile __u32 flags; /* status flags */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700529 __u16 protocol; /* Which protocol (TCP/UDP) */
Alex Gartrellba385282014-09-09 16:40:23 -0700530 __u16 daf; /* Address family of the dest */
Julian Anastasov1845ed02013-03-21 11:58:11 +0200531#ifdef CONFIG_NET_NS
532 struct net *net; /* Name space */
533#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700534
535 /* counter and timer */
536 atomic_t refcnt; /* reference count */
537 struct timer_list timer; /* Expiration timer */
538 volatile unsigned long timeout; /* timeout */
539
540 /* Flags and state transition */
541 spinlock_t lock; /* lock for state transition */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700542 volatile __u16 state; /* state info */
Rumen G. Bogdanovskiefac5272007-11-07 02:36:55 -0800543 volatile __u16 old_state; /* old state, to be used for
544 * state transition triggerd
545 * synchronization
546 */
Julian Anastasov1845ed02013-03-21 11:58:11 +0200547 __u32 fwmark; /* Fire wall mark from skb */
Julian Anastasov749c42b2012-04-24 23:46:40 +0300548 unsigned long sync_endtime; /* jiffies + sent_retries */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700549
550 /* Control members */
551 struct ip_vs_conn *control; /* Master control connection */
552 atomic_t n_control; /* Number of controlled ones */
553 struct ip_vs_dest *dest; /* real server */
554 atomic_t in_pkts; /* incoming packet counter */
555
Simon Horman07dcc682014-09-30 10:50:06 +0900556 /* Packet transmitter for different forwarding methods. If it
557 * mangles the packet, it must return NF_DROP or better NF_STOLEN,
558 * otherwise this must be changed to a sk_buff **.
559 * NF_ACCEPT can be returned when destination is local.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700560 */
561 int (*packet_xmit)(struct sk_buff *skb, struct ip_vs_conn *cp,
Jesper Dangaard Brouerd4383f02012-09-26 14:07:17 +0200562 struct ip_vs_protocol *pp, struct ip_vs_iphdr *iph);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700563
564 /* Note: we can group the following members into a structure,
Simon Horman07dcc682014-09-30 10:50:06 +0900565 * in order to save more space, and the following members are
566 * only used in VS/NAT anyway
567 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700568 struct ip_vs_app *app; /* bound ip_vs_app object */
569 void *app_data; /* Application private data */
570 struct ip_vs_seq in_seq; /* incoming seq. struct */
571 struct ip_vs_seq out_seq; /* outgoing seq. struct */
Simon Horman85999282010-08-22 21:37:53 +0900572
Simon Hormane9e5eee2010-11-08 20:05:57 +0900573 const struct ip_vs_pe *pe;
Simon Horman85999282010-08-22 21:37:53 +0900574 char *pe_data;
575 __u8 pe_data_len;
Julian Anastasov088339a2013-03-21 11:58:10 +0200576
577 struct rcu_head rcu_head;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700578};
579
Simon Horman07dcc682014-09-30 10:50:06 +0900580/* To save some memory in conn table when name space is disabled. */
Hans Schillstrom6e67e582011-01-03 14:44:57 +0100581static inline struct net *ip_vs_conn_net(const struct ip_vs_conn *cp)
582{
583#ifdef CONFIG_NET_NS
584 return cp->net;
585#else
586 return &init_net;
587#endif
588}
Simon Horman07dcc682014-09-30 10:50:06 +0900589
Hans Schillstrom6e67e582011-01-03 14:44:57 +0100590static inline void ip_vs_conn_net_set(struct ip_vs_conn *cp, struct net *net)
591{
592#ifdef CONFIG_NET_NS
593 cp->net = net;
594#endif
595}
596
597static inline int ip_vs_conn_net_eq(const struct ip_vs_conn *cp,
598 struct net *net)
599{
600#ifdef CONFIG_NET_NS
601 return cp->net == net;
602#else
603 return 1;
604#endif
605}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700606
Simon Horman07dcc682014-09-30 10:50:06 +0900607/* Extended internal versions of struct ip_vs_service_user and ip_vs_dest_user
608 * for IPv6 support.
Julius Volzc860c6b2008-09-02 15:55:36 +0200609 *
Simon Horman07dcc682014-09-30 10:50:06 +0900610 * We need these to conveniently pass around service and destination
611 * options, but unfortunately, we also need to keep the old definitions to
612 * maintain userspace backwards compatibility for the setsockopt interface.
Julius Volzc860c6b2008-09-02 15:55:36 +0200613 */
614struct ip_vs_service_user_kern {
615 /* virtual service addresses */
616 u16 af;
617 u16 protocol;
618 union nf_inet_addr addr; /* virtual ip address */
Julian Anastasov0a925862013-04-17 23:50:49 +0300619 __be16 port;
Julius Volzc860c6b2008-09-02 15:55:36 +0200620 u32 fwmark; /* firwall mark of service */
621
622 /* virtual service options */
623 char *sched_name;
Simon Horman0d1e71b2010-08-22 21:37:54 +0900624 char *pe_name;
Eric Dumazet95c96172012-04-15 05:58:06 +0000625 unsigned int flags; /* virtual service flags */
626 unsigned int timeout; /* persistent timeout in sec */
Julian Anastasov0a925862013-04-17 23:50:49 +0300627 __be32 netmask; /* persistent netmask or plen */
Julius Volzc860c6b2008-09-02 15:55:36 +0200628};
629
630
631struct ip_vs_dest_user_kern {
632 /* destination server address */
633 union nf_inet_addr addr;
Julian Anastasov0a925862013-04-17 23:50:49 +0300634 __be16 port;
Julius Volzc860c6b2008-09-02 15:55:36 +0200635
636 /* real server options */
Eric Dumazet95c96172012-04-15 05:58:06 +0000637 unsigned int conn_flags; /* connection flags */
Julius Volzc860c6b2008-09-02 15:55:36 +0200638 int weight; /* destination weight */
639
640 /* thresholds for active connections */
641 u32 u_threshold; /* upper threshold */
642 u32 l_threshold; /* lower threshold */
Alex Gartrell6cff3392014-09-09 16:40:20 -0700643
644 /* Address family of addr */
645 u16 af;
Julius Volzc860c6b2008-09-02 15:55:36 +0200646};
647
648
649/*
Simon Horman07dcc682014-09-30 10:50:06 +0900650 * The information about the virtual service offered to the net and the
651 * forwarding entries.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700652 */
653struct ip_vs_service {
Julian Anastasovceec4c32013-03-22 11:46:53 +0200654 struct hlist_node s_list; /* for normal service table */
655 struct hlist_node f_list; /* for fwmark-based service table */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700656 atomic_t refcnt; /* reference counter */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700657
Julius Volze7ade462008-09-02 15:55:33 +0200658 u16 af; /* address family */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700659 __u16 protocol; /* which protocol (TCP/UDP) */
Julius Volze7ade462008-09-02 15:55:33 +0200660 union nf_inet_addr addr; /* IP address for virtual service */
Al Viro014d7302006-09-28 14:29:52 -0700661 __be16 port; /* port number for the service */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700662 __u32 fwmark; /* firewall mark of the service */
Eric Dumazet95c96172012-04-15 05:58:06 +0000663 unsigned int flags; /* service status flags */
664 unsigned int timeout; /* persistent timeout in ticks */
Julian Anastasov0a925862013-04-17 23:50:49 +0300665 __be32 netmask; /* grouping granularity, mask/plen */
Hans Schillstromfc723252011-01-03 14:44:43 +0100666 struct net *net;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700667
668 struct list_head destinations; /* real server d-linked list */
669 __u32 num_dests; /* number of servers */
670 struct ip_vs_stats stats; /* statistics for the service */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700671
672 /* for scheduling */
Julian Anastasovceec4c32013-03-22 11:46:53 +0200673 struct ip_vs_scheduler __rcu *scheduler; /* bound scheduler object */
Julian Anastasovba3a3ce2013-03-22 11:46:51 +0200674 spinlock_t sched_lock; /* lock sched_data */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700675 void *sched_data; /* scheduler application data */
Simon Horman85999282010-08-22 21:37:53 +0900676
677 /* alternate persistence engine */
Julian Anastasovceec4c32013-03-22 11:46:53 +0200678 struct ip_vs_pe __rcu *pe;
679
680 struct rcu_head rcu_head;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700681};
682
Julian Anastasov026ace02013-03-21 11:58:06 +0200683/* Information for cached dst */
684struct ip_vs_dest_dst {
685 struct dst_entry *dst_cache; /* destination cache entry */
686 u32 dst_cookie;
687 union nf_inet_addr dst_saddr;
688 struct rcu_head rcu_head;
689};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700690
Simon Horman07dcc682014-09-30 10:50:06 +0900691/* The real server destination forwarding entry with ip address, port number,
692 * and so on.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700693 */
694struct ip_vs_dest {
695 struct list_head n_list; /* for the dests in the service */
Julian Anastasov276472e2013-03-21 11:58:08 +0200696 struct hlist_node d_list; /* for table with all the dests */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700697
Julius Volze7ade462008-09-02 15:55:33 +0200698 u16 af; /* address family */
Al Viro014d7302006-09-28 14:29:52 -0700699 __be16 port; /* port number of the server */
Hans Schillstromf2431e62011-01-03 14:45:00 +0100700 union nf_inet_addr addr; /* IP address of the server */
Eric Dumazet95c96172012-04-15 05:58:06 +0000701 volatile unsigned int flags; /* dest status flags */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700702 atomic_t conn_flags; /* flags to copy to conn */
703 atomic_t weight; /* server weight */
704
705 atomic_t refcnt; /* reference counter */
706 struct ip_vs_stats stats; /* statistics */
Julian Anastasovbcbde4c2013-09-12 11:21:07 +0300707 unsigned long idle_start; /* start time, jiffies */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700708
709 /* connection counters and thresholds */
710 atomic_t activeconns; /* active connections */
711 atomic_t inactconns; /* inactive connections */
712 atomic_t persistconns; /* persistent connections */
713 __u32 u_threshold; /* upper threshold */
714 __u32 l_threshold; /* lower threshold */
715
716 /* for destination cache */
717 spinlock_t dst_lock; /* lock of dst_cache */
Julian Anastasov026ace02013-03-21 11:58:06 +0200718 struct ip_vs_dest_dst __rcu *dest_dst; /* cached dst info */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700719
720 /* for virtual service */
Julian Anastasovbcbde4c2013-09-12 11:21:07 +0300721 struct ip_vs_service __rcu *svc; /* service it belongs to */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700722 __u16 protocol; /* which protocol (TCP/UDP) */
Al Viro014d7302006-09-28 14:29:52 -0700723 __be16 vport; /* virtual port number */
Hans Schillstromf2431e62011-01-03 14:45:00 +0100724 union nf_inet_addr vaddr; /* virtual IP address */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700725 __u32 vfwmark; /* firewall mark of service */
Julian Anastasov276472e2013-03-21 11:58:08 +0200726
Julian Anastasov578bc3e2013-03-22 11:46:49 +0200727 struct list_head t_list; /* in dest_trash */
Julian Anastasov276472e2013-03-21 11:58:08 +0200728 unsigned int in_rs_table:1; /* we are in rs_table */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700729};
730
Simon Horman07dcc682014-09-30 10:50:06 +0900731/* The scheduler object */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700732struct ip_vs_scheduler {
733 struct list_head n_list; /* d-linked list head */
734 char *name; /* scheduler name */
735 atomic_t refcnt; /* reference counter */
736 struct module *module; /* THIS_MODULE/NULL */
737
738 /* scheduler initializing service */
739 int (*init_service)(struct ip_vs_service *svc);
740 /* scheduling service finish */
Julian Anastasoved3ffc42013-03-22 11:46:50 +0200741 void (*done_service)(struct ip_vs_service *svc);
Julian Anastasov6b6df462013-03-22 11:46:37 +0200742 /* dest is linked */
743 int (*add_dest)(struct ip_vs_service *svc, struct ip_vs_dest *dest);
744 /* dest is unlinked */
745 int (*del_dest)(struct ip_vs_service *svc, struct ip_vs_dest *dest);
746 /* dest is updated */
747 int (*upd_dest)(struct ip_vs_service *svc, struct ip_vs_dest *dest);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700748
749 /* selecting a server from the given service */
750 struct ip_vs_dest* (*schedule)(struct ip_vs_service *svc,
Julian Anastasovbba54de2013-06-16 09:09:36 +0300751 const struct sk_buff *skb,
752 struct ip_vs_iphdr *iph);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700753};
754
Simon Horman85999282010-08-22 21:37:53 +0900755/* The persistence engine object */
756struct ip_vs_pe {
757 struct list_head n_list; /* d-linked list head */
758 char *name; /* scheduler name */
759 atomic_t refcnt; /* reference counter */
760 struct module *module; /* THIS_MODULE/NULL */
761
762 /* get the connection template, if any */
763 int (*fill_param)(struct ip_vs_conn_param *p, struct sk_buff *skb);
764 bool (*ct_match)(const struct ip_vs_conn_param *p,
765 struct ip_vs_conn *ct);
766 u32 (*hashkey_raw)(const struct ip_vs_conn_param *p, u32 initval,
767 bool inverse);
Simon Hormana3c918a2010-08-22 21:37:53 +0900768 int (*show_pe_data)(const struct ip_vs_conn *cp, char *buf);
Simon Horman85999282010-08-22 21:37:53 +0900769};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700770
Simon Horman07dcc682014-09-30 10:50:06 +0900771/* The application module object (a.k.a. app incarnation) */
Eric Dumazetfd2c3ef2009-11-03 03:26:03 +0000772struct ip_vs_app {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700773 struct list_head a_list; /* member in app list */
774 int type; /* IP_VS_APP_TYPE_xxx */
775 char *name; /* application module name */
776 __u16 protocol;
777 struct module *module; /* THIS_MODULE/NULL */
778 struct list_head incs_list; /* list of incarnations */
779
780 /* members for application incarnations */
781 struct list_head p_list; /* member in proto app list */
782 struct ip_vs_app *app; /* its real application */
Al Viro014d7302006-09-28 14:29:52 -0700783 __be16 port; /* port number in net order */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700784 atomic_t usecnt; /* usage counter */
Julian Anastasov363c97d2013-03-21 11:58:07 +0200785 struct rcu_head rcu_head;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700786
Simon Horman07dcc682014-09-30 10:50:06 +0900787 /* output hook: Process packet in inout direction, diff set for TCP.
Julian Anastasov8b27b102010-10-17 16:17:20 +0300788 * Return: 0=Error, 1=Payload Not Mangled/Mangled but checksum is ok,
789 * 2=Mangled but checksum was not updated
790 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700791 int (*pkt_out)(struct ip_vs_app *, struct ip_vs_conn *,
Herbert Xu3db05fea2007-10-15 00:53:15 -0700792 struct sk_buff *, int *diff);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700793
Simon Horman07dcc682014-09-30 10:50:06 +0900794 /* input hook: Process packet in outin direction, diff set for TCP.
Julian Anastasov8b27b102010-10-17 16:17:20 +0300795 * Return: 0=Error, 1=Payload Not Mangled/Mangled but checksum is ok,
796 * 2=Mangled but checksum was not updated
797 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700798 int (*pkt_in)(struct ip_vs_app *, struct ip_vs_conn *,
Herbert Xu3db05fea2007-10-15 00:53:15 -0700799 struct sk_buff *, int *diff);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700800
801 /* ip_vs_app initializer */
802 int (*init_conn)(struct ip_vs_app *, struct ip_vs_conn *);
803
804 /* ip_vs_app finish */
805 int (*done_conn)(struct ip_vs_app *, struct ip_vs_conn *);
806
807
808 /* not used now */
809 int (*bind_conn)(struct ip_vs_app *, struct ip_vs_conn *,
810 struct ip_vs_protocol *);
811
812 void (*unbind_conn)(struct ip_vs_app *, struct ip_vs_conn *);
813
814 int * timeout_table;
815 int * timeouts;
816 int timeouts_size;
817
818 int (*conn_schedule)(struct sk_buff *skb, struct ip_vs_app *app,
819 int *verdict, struct ip_vs_conn **cpp);
820
821 struct ip_vs_conn *
822 (*conn_in_get)(const struct sk_buff *skb, struct ip_vs_app *app,
Jesper Dangaard Brouerd4383f02012-09-26 14:07:17 +0200823 const struct iphdr *iph, int inverse);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700824
825 struct ip_vs_conn *
826 (*conn_out_get)(const struct sk_buff *skb, struct ip_vs_app *app,
Jesper Dangaard Brouerd4383f02012-09-26 14:07:17 +0200827 const struct iphdr *iph, int inverse);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700828
829 int (*state_transition)(struct ip_vs_conn *cp, int direction,
830 const struct sk_buff *skb,
831 struct ip_vs_app *app);
832
833 void (*timeout_change)(struct ip_vs_app *app, int flags);
834};
835
Pablo Neira Ayusof73181c2012-05-08 19:40:30 +0200836struct ipvs_master_sync_state {
837 struct list_head sync_queue;
838 struct ip_vs_sync_buff *sync_buff;
Zhang Yanfei07995672013-04-29 11:55:10 -0700839 unsigned long sync_queue_len;
Pablo Neira Ayusof73181c2012-05-08 19:40:30 +0200840 unsigned int sync_queue_delay;
841 struct task_struct *master_thread;
842 struct delayed_work master_wakeup_work;
843 struct netns_ipvs *ipvs;
844};
845
Julian Anastasov578bc3e2013-03-22 11:46:49 +0200846/* How much time to keep dests in trash */
847#define IP_VS_DEST_TRASH_PERIOD (120 * HZ)
848
Julian Anastasov2553d062011-03-04 12:18:07 +0200849/* IPVS in network namespace */
850struct netns_ipvs {
851 int gen; /* Generation */
Hans Schillstrom7a4f0762011-05-03 22:09:31 +0200852 int enable; /* enable like nf_hooks do */
Simon Horman07dcc682014-09-30 10:50:06 +0900853 /* Hash table: for real service lookups */
Julian Anastasov2553d062011-03-04 12:18:07 +0200854 #define IP_VS_RTAB_BITS 4
855 #define IP_VS_RTAB_SIZE (1 << IP_VS_RTAB_BITS)
856 #define IP_VS_RTAB_MASK (IP_VS_RTAB_SIZE - 1)
857
Julian Anastasov276472e2013-03-21 11:58:08 +0200858 struct hlist_head rs_table[IP_VS_RTAB_SIZE];
Julian Anastasov2553d062011-03-04 12:18:07 +0200859 /* ip_vs_app */
860 struct list_head app_list;
Julian Anastasov2553d062011-03-04 12:18:07 +0200861 /* ip_vs_proto */
862 #define IP_VS_PROTO_TAB_SIZE 32 /* must be power of 2 */
863 struct ip_vs_proto_data *proto_data_table[IP_VS_PROTO_TAB_SIZE];
864 /* ip_vs_proto_tcp */
865#ifdef CONFIG_IP_VS_PROTO_TCP
866 #define TCP_APP_TAB_BITS 4
867 #define TCP_APP_TAB_SIZE (1 << TCP_APP_TAB_BITS)
868 #define TCP_APP_TAB_MASK (TCP_APP_TAB_SIZE - 1)
869 struct list_head tcp_apps[TCP_APP_TAB_SIZE];
Julian Anastasov2553d062011-03-04 12:18:07 +0200870#endif
871 /* ip_vs_proto_udp */
872#ifdef CONFIG_IP_VS_PROTO_UDP
873 #define UDP_APP_TAB_BITS 4
874 #define UDP_APP_TAB_SIZE (1 << UDP_APP_TAB_BITS)
875 #define UDP_APP_TAB_MASK (UDP_APP_TAB_SIZE - 1)
876 struct list_head udp_apps[UDP_APP_TAB_SIZE];
Julian Anastasov2553d062011-03-04 12:18:07 +0200877#endif
878 /* ip_vs_proto_sctp */
879#ifdef CONFIG_IP_VS_PROTO_SCTP
880 #define SCTP_APP_TAB_BITS 4
881 #define SCTP_APP_TAB_SIZE (1 << SCTP_APP_TAB_BITS)
882 #define SCTP_APP_TAB_MASK (SCTP_APP_TAB_SIZE - 1)
883 /* Hash table for SCTP application incarnations */
884 struct list_head sctp_apps[SCTP_APP_TAB_SIZE];
Julian Anastasov2553d062011-03-04 12:18:07 +0200885#endif
886 /* ip_vs_conn */
Simon Horman07dcc682014-09-30 10:50:06 +0900887 atomic_t conn_count; /* connection counter */
Julian Anastasov2553d062011-03-04 12:18:07 +0200888
889 /* ip_vs_ctl */
Julian Anastasov2a0751a2011-03-04 12:20:35 +0200890 struct ip_vs_stats tot_stats; /* Statistics & est. */
Julian Anastasov2553d062011-03-04 12:18:07 +0200891
892 int num_services; /* no of virtual services */
Simon Hormanf2247fb2011-02-04 18:33:02 +0900893
Julian Anastasov2553d062011-03-04 12:18:07 +0200894 /* Trash for destinations */
895 struct list_head dest_trash;
Julian Anastasov578bc3e2013-03-22 11:46:49 +0200896 spinlock_t dest_trash_lock;
897 struct timer_list dest_trash_timer; /* expiration timer */
Julian Anastasov2553d062011-03-04 12:18:07 +0200898 /* Service counters */
899 atomic_t ftpsvc_counter;
900 atomic_t nullsvc_counter;
901
Simon Hormanf2247fb2011-02-04 18:33:02 +0900902#ifdef CONFIG_SYSCTL
903 /* 1/rate drop and drop-entry variables */
904 struct delayed_work defense_work; /* Work handler */
905 int drop_rate;
906 int drop_counter;
907 atomic_t dropentry;
908 /* locks in ctl.c */
909 spinlock_t dropentry_lock; /* drop entry handling */
910 spinlock_t droppacket_lock; /* drop packet handling */
911 spinlock_t securetcp_lock; /* state and timeout tables */
912
Julian Anastasov2553d062011-03-04 12:18:07 +0200913 /* sys-ctl struct */
914 struct ctl_table_header *sysctl_hdr;
915 struct ctl_table *sysctl_tbl;
Simon Hormanf2247fb2011-02-04 18:33:02 +0900916#endif
917
Julian Anastasov2553d062011-03-04 12:18:07 +0200918 /* sysctl variables */
919 int sysctl_amemthresh;
920 int sysctl_am_droprate;
921 int sysctl_drop_entry;
922 int sysctl_drop_packet;
923 int sysctl_secure_tcp;
924#ifdef CONFIG_IP_VS_NFCT
925 int sysctl_conntrack;
926#endif
927 int sysctl_snat_reroute;
928 int sysctl_sync_ver;
Pablo Neira Ayusof73181c2012-05-08 19:40:30 +0200929 int sysctl_sync_ports;
Julian Anastasov4d0c8752013-06-24 22:44:41 +0300930 int sysctl_sync_persist_mode;
Zhang Yanfei07995672013-04-29 11:55:10 -0700931 unsigned long sysctl_sync_qlen_max;
Pablo Neira Ayuso1c003b12012-05-08 19:39:49 +0200932 int sysctl_sync_sock_size;
Julian Anastasov2553d062011-03-04 12:18:07 +0200933 int sysctl_cache_bypass;
934 int sysctl_expire_nodest_conn;
Alexander Frolkinc6c96c12013-06-13 08:56:15 +0100935 int sysctl_sloppy_tcp;
936 int sysctl_sloppy_sctp;
Julian Anastasov2553d062011-03-04 12:18:07 +0200937 int sysctl_expire_quiescent_template;
938 int sysctl_sync_threshold[2];
Julian Anastasov749c42b2012-04-24 23:46:40 +0300939 unsigned int sysctl_sync_refresh_period;
940 int sysctl_sync_retries;
Julian Anastasov2553d062011-03-04 12:18:07 +0200941 int sysctl_nat_icmp_send;
Julian Anastasov3654e612012-07-20 11:59:53 +0300942 int sysctl_pmtu_disc;
Julian Anastasov0c125822013-03-09 23:25:04 +0200943 int sysctl_backup_only;
Julian Anastasov2553d062011-03-04 12:18:07 +0200944
945 /* ip_vs_lblc */
946 int sysctl_lblc_expiration;
947 struct ctl_table_header *lblc_ctl_header;
948 struct ctl_table *lblc_ctl_table;
949 /* ip_vs_lblcr */
950 int sysctl_lblcr_expiration;
951 struct ctl_table_header *lblcr_ctl_header;
952 struct ctl_table *lblcr_ctl_table;
953 /* ip_vs_est */
954 struct list_head est_list; /* estimator list */
955 spinlock_t est_lock;
956 struct timer_list est_timer; /* Estimation timer */
957 /* ip_vs_sync */
Julian Anastasov2553d062011-03-04 12:18:07 +0200958 spinlock_t sync_lock;
Pablo Neira Ayusof73181c2012-05-08 19:40:30 +0200959 struct ipvs_master_sync_state *ms;
Julian Anastasov2553d062011-03-04 12:18:07 +0200960 spinlock_t sync_buff_lock;
Pablo Neira Ayusof73181c2012-05-08 19:40:30 +0200961 struct task_struct **backup_threads;
962 int threads_mask;
Julian Anastasov2553d062011-03-04 12:18:07 +0200963 int send_mesg_maxlen;
964 int recv_mesg_maxlen;
965 volatile int sync_state;
966 volatile int master_syncid;
967 volatile int backup_syncid;
Hans Schillstromae1d48b2011-10-11 10:54:35 +0900968 struct mutex sync_mutex;
Julian Anastasov2553d062011-03-04 12:18:07 +0200969 /* multicast interface name */
970 char master_mcast_ifn[IP_VS_IFNAME_MAXLEN];
971 char backup_mcast_ifn[IP_VS_IFNAME_MAXLEN];
972 /* net name space ptr */
973 struct net *net; /* Needed by timer routines */
Simon Horman07dcc682014-09-30 10:50:06 +0900974 /* Number of heterogeneous destinations, needed becaus heterogeneous
975 * are not supported when synchronization is enabled.
976 */
Alex Gartrell391f503d2014-09-09 16:40:24 -0700977 unsigned int mixed_address_family_dests;
Julian Anastasov2553d062011-03-04 12:18:07 +0200978};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700979
Simon Horman59e03502011-02-04 18:33:01 +0900980#define DEFAULT_SYNC_THRESHOLD 3
981#define DEFAULT_SYNC_PERIOD 50
Simon Horman7532e8d2011-02-04 18:33:01 +0900982#define DEFAULT_SYNC_VER 1
Alexander Frolkinc6c96c12013-06-13 08:56:15 +0100983#define DEFAULT_SLOPPY_TCP 0
984#define DEFAULT_SLOPPY_SCTP 0
Julian Anastasov749c42b2012-04-24 23:46:40 +0300985#define DEFAULT_SYNC_REFRESH_PERIOD (0U * HZ)
986#define DEFAULT_SYNC_RETRIES 0
Pablo Neira Ayuso1c003b12012-05-08 19:39:49 +0200987#define IPVS_SYNC_WAKEUP_RATE 8
988#define IPVS_SYNC_QLEN_MAX (IPVS_SYNC_WAKEUP_RATE * 4)
989#define IPVS_SYNC_SEND_DELAY (HZ / 50)
990#define IPVS_SYNC_CHECK_PERIOD HZ
Julian Anastasov749c42b2012-04-24 23:46:40 +0300991#define IPVS_SYNC_FLUSH_TIME (HZ * 2)
Pablo Neira Ayusof73181c2012-05-08 19:40:30 +0200992#define IPVS_SYNC_PORTS_MAX (1 << 6)
Simon Horman59e03502011-02-04 18:33:01 +0900993
994#ifdef CONFIG_SYSCTL
995
996static inline int sysctl_sync_threshold(struct netns_ipvs *ipvs)
997{
998 return ipvs->sysctl_sync_threshold[0];
999}
1000
1001static inline int sysctl_sync_period(struct netns_ipvs *ipvs)
1002{
Julian Anastasov749c42b2012-04-24 23:46:40 +03001003 return ACCESS_ONCE(ipvs->sysctl_sync_threshold[1]);
1004}
1005
1006static inline unsigned int sysctl_sync_refresh_period(struct netns_ipvs *ipvs)
1007{
1008 return ACCESS_ONCE(ipvs->sysctl_sync_refresh_period);
1009}
1010
1011static inline int sysctl_sync_retries(struct netns_ipvs *ipvs)
1012{
1013 return ipvs->sysctl_sync_retries;
Simon Horman59e03502011-02-04 18:33:01 +09001014}
1015
Simon Horman7532e8d2011-02-04 18:33:01 +09001016static inline int sysctl_sync_ver(struct netns_ipvs *ipvs)
1017{
1018 return ipvs->sysctl_sync_ver;
1019}
1020
Alexander Frolkinc6c96c12013-06-13 08:56:15 +01001021static inline int sysctl_sloppy_tcp(struct netns_ipvs *ipvs)
1022{
1023 return ipvs->sysctl_sloppy_tcp;
1024}
1025
1026static inline int sysctl_sloppy_sctp(struct netns_ipvs *ipvs)
1027{
1028 return ipvs->sysctl_sloppy_sctp;
1029}
1030
Pablo Neira Ayusof73181c2012-05-08 19:40:30 +02001031static inline int sysctl_sync_ports(struct netns_ipvs *ipvs)
1032{
1033 return ACCESS_ONCE(ipvs->sysctl_sync_ports);
1034}
1035
Julian Anastasov4d0c8752013-06-24 22:44:41 +03001036static inline int sysctl_sync_persist_mode(struct netns_ipvs *ipvs)
1037{
1038 return ipvs->sysctl_sync_persist_mode;
1039}
1040
Zhang Yanfei07995672013-04-29 11:55:10 -07001041static inline unsigned long sysctl_sync_qlen_max(struct netns_ipvs *ipvs)
Pablo Neira Ayuso1c003b12012-05-08 19:39:49 +02001042{
1043 return ipvs->sysctl_sync_qlen_max;
1044}
1045
1046static inline int sysctl_sync_sock_size(struct netns_ipvs *ipvs)
1047{
1048 return ipvs->sysctl_sync_sock_size;
1049}
1050
Julian Anastasov3654e612012-07-20 11:59:53 +03001051static inline int sysctl_pmtu_disc(struct netns_ipvs *ipvs)
1052{
1053 return ipvs->sysctl_pmtu_disc;
1054}
1055
Julian Anastasov0c125822013-03-09 23:25:04 +02001056static inline int sysctl_backup_only(struct netns_ipvs *ipvs)
1057{
1058 return ipvs->sync_state & IP_VS_STATE_BACKUP &&
1059 ipvs->sysctl_backup_only;
1060}
1061
Simon Horman59e03502011-02-04 18:33:01 +09001062#else
1063
1064static inline int sysctl_sync_threshold(struct netns_ipvs *ipvs)
1065{
1066 return DEFAULT_SYNC_THRESHOLD;
1067}
1068
1069static inline int sysctl_sync_period(struct netns_ipvs *ipvs)
1070{
1071 return DEFAULT_SYNC_PERIOD;
1072}
1073
Julian Anastasov749c42b2012-04-24 23:46:40 +03001074static inline unsigned int sysctl_sync_refresh_period(struct netns_ipvs *ipvs)
1075{
1076 return DEFAULT_SYNC_REFRESH_PERIOD;
1077}
1078
1079static inline int sysctl_sync_retries(struct netns_ipvs *ipvs)
1080{
1081 return DEFAULT_SYNC_RETRIES & 3;
1082}
1083
Simon Horman7532e8d2011-02-04 18:33:01 +09001084static inline int sysctl_sync_ver(struct netns_ipvs *ipvs)
1085{
1086 return DEFAULT_SYNC_VER;
1087}
1088
Alexander Frolkinc6c96c12013-06-13 08:56:15 +01001089static inline int sysctl_sloppy_tcp(struct netns_ipvs *ipvs)
1090{
1091 return DEFAULT_SLOPPY_TCP;
1092}
1093
1094static inline int sysctl_sloppy_sctp(struct netns_ipvs *ipvs)
1095{
1096 return DEFAULT_SLOPPY_SCTP;
1097}
1098
Pablo Neira Ayusof73181c2012-05-08 19:40:30 +02001099static inline int sysctl_sync_ports(struct netns_ipvs *ipvs)
1100{
1101 return 1;
1102}
1103
Julian Anastasov4d0c8752013-06-24 22:44:41 +03001104static inline int sysctl_sync_persist_mode(struct netns_ipvs *ipvs)
1105{
1106 return 0;
1107}
1108
Zhang Yanfei07995672013-04-29 11:55:10 -07001109static inline unsigned long sysctl_sync_qlen_max(struct netns_ipvs *ipvs)
Pablo Neira Ayuso1c003b12012-05-08 19:39:49 +02001110{
1111 return IPVS_SYNC_QLEN_MAX;
1112}
1113
1114static inline int sysctl_sync_sock_size(struct netns_ipvs *ipvs)
1115{
1116 return 0;
1117}
1118
Julian Anastasov3654e612012-07-20 11:59:53 +03001119static inline int sysctl_pmtu_disc(struct netns_ipvs *ipvs)
1120{
1121 return 1;
1122}
1123
Julian Anastasov0c125822013-03-09 23:25:04 +02001124static inline int sysctl_backup_only(struct netns_ipvs *ipvs)
1125{
1126 return 0;
1127}
1128
Simon Horman59e03502011-02-04 18:33:01 +09001129#endif
1130
Simon Horman07dcc682014-09-30 10:50:06 +09001131/* IPVS core functions
1132 * (from ip_vs_core.c)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001133 */
Joe Perches5c3a0fd2013-09-21 10:22:42 -07001134const char *ip_vs_proto_name(unsigned int proto);
1135void ip_vs_init_hash_table(struct list_head *table, int rows);
Sven Wegenerafdd6142008-08-10 09:18:01 +00001136#define IP_VS_INIT_HASH_TABLE(t) ip_vs_init_hash_table((t), ARRAY_SIZE((t)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001137
Linus Torvalds1da177e2005-04-16 15:20:36 -07001138#define IP_VS_APP_TYPE_FTP 1
1139
Simon Horman07dcc682014-09-30 10:50:06 +09001140/* ip_vs_conn handling functions
1141 * (from ip_vs_conn.c)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001142 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001143enum {
1144 IP_VS_DIR_INPUT = 0,
1145 IP_VS_DIR_OUTPUT,
1146 IP_VS_DIR_INPUT_ONLY,
1147 IP_VS_DIR_LAST,
1148};
1149
Hans Schillstrom6e67e582011-01-03 14:44:57 +01001150static inline void ip_vs_conn_fill_param(struct net *net, int af, int protocol,
Simon Hormanf11017e2010-08-22 21:37:52 +09001151 const union nf_inet_addr *caddr,
1152 __be16 cport,
1153 const union nf_inet_addr *vaddr,
1154 __be16 vport,
1155 struct ip_vs_conn_param *p)
1156{
Hans Schillstrom6e67e582011-01-03 14:44:57 +01001157 p->net = net;
Simon Hormanf11017e2010-08-22 21:37:52 +09001158 p->af = af;
1159 p->protocol = protocol;
1160 p->caddr = caddr;
1161 p->cport = cport;
1162 p->vaddr = vaddr;
1163 p->vport = vport;
Simon Horman85999282010-08-22 21:37:53 +09001164 p->pe = NULL;
1165 p->pe_data = NULL;
Simon Hormanf11017e2010-08-22 21:37:52 +09001166}
Julius Volz28364a52008-09-02 15:55:43 +02001167
Simon Hormanf11017e2010-08-22 21:37:52 +09001168struct ip_vs_conn *ip_vs_conn_in_get(const struct ip_vs_conn_param *p);
1169struct ip_vs_conn *ip_vs_ct_in_get(const struct ip_vs_conn_param *p);
Julius Volz28364a52008-09-02 15:55:43 +02001170
Simon Horman5c0d2372010-08-02 17:12:44 +02001171struct ip_vs_conn * ip_vs_conn_in_get_proto(int af, const struct sk_buff *skb,
Simon Horman5c0d2372010-08-02 17:12:44 +02001172 const struct ip_vs_iphdr *iph,
Simon Horman5c0d2372010-08-02 17:12:44 +02001173 int inverse);
1174
Simon Hormanf11017e2010-08-22 21:37:52 +09001175struct ip_vs_conn *ip_vs_conn_out_get(const struct ip_vs_conn_param *p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001176
Simon Horman5c0d2372010-08-02 17:12:44 +02001177struct ip_vs_conn * ip_vs_conn_out_get_proto(int af, const struct sk_buff *skb,
Simon Horman5c0d2372010-08-02 17:12:44 +02001178 const struct ip_vs_iphdr *iph,
Simon Horman5c0d2372010-08-02 17:12:44 +02001179 int inverse);
1180
Julian Anastasov088339a2013-03-21 11:58:10 +02001181/* Get reference to gain full access to conn.
1182 * By default, RCU read-side critical sections have access only to
1183 * conn fields and its PE data, see ip_vs_conn_rcu_free() for reference.
1184 */
1185static inline bool __ip_vs_conn_get(struct ip_vs_conn *cp)
1186{
1187 return atomic_inc_not_zero(&cp->refcnt);
1188}
1189
Linus Torvalds1da177e2005-04-16 15:20:36 -07001190/* put back the conn without restarting its timer */
1191static inline void __ip_vs_conn_put(struct ip_vs_conn *cp)
1192{
Peter Zijlstra4e857c52014-03-17 18:06:10 +01001193 smp_mb__before_atomic();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001194 atomic_dec(&cp->refcnt);
1195}
Joe Perches5c3a0fd2013-09-21 10:22:42 -07001196void ip_vs_conn_put(struct ip_vs_conn *cp);
1197void ip_vs_conn_fill_cport(struct ip_vs_conn *cp, __be16 cport);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001198
Alex Gartrellba385282014-09-09 16:40:23 -07001199struct ip_vs_conn *ip_vs_conn_new(const struct ip_vs_conn_param *p, int dest_af,
Simon Hormanf11017e2010-08-22 21:37:52 +09001200 const union nf_inet_addr *daddr,
Eric Dumazet95c96172012-04-15 05:58:06 +00001201 __be16 dport, unsigned int flags,
Hans Schillstrom0e051e62010-11-19 14:25:07 +01001202 struct ip_vs_dest *dest, __u32 fwmark);
Joe Perches5c3a0fd2013-09-21 10:22:42 -07001203void ip_vs_conn_expire_now(struct ip_vs_conn *cp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001204
Joe Perches5c3a0fd2013-09-21 10:22:42 -07001205const char *ip_vs_state_name(__u16 proto, int state);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001206
Joe Perches5c3a0fd2013-09-21 10:22:42 -07001207void ip_vs_tcp_conn_listen(struct net *net, struct ip_vs_conn *cp);
1208int ip_vs_check_template(struct ip_vs_conn *ct);
1209void ip_vs_random_dropentry(struct net *net);
1210int ip_vs_conn_init(void);
1211void ip_vs_conn_cleanup(void);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001212
1213static inline void ip_vs_control_del(struct ip_vs_conn *cp)
1214{
1215 struct ip_vs_conn *ctl_cp = cp->control;
1216 if (!ctl_cp) {
Julius Volzcfc78c52008-09-02 15:55:53 +02001217 IP_VS_ERR_BUF("request control DEL for uncontrolled: "
1218 "%s:%d to %s:%d\n",
1219 IP_VS_DBG_ADDR(cp->af, &cp->caddr),
1220 ntohs(cp->cport),
1221 IP_VS_DBG_ADDR(cp->af, &cp->vaddr),
1222 ntohs(cp->vport));
1223
Linus Torvalds1da177e2005-04-16 15:20:36 -07001224 return;
1225 }
1226
Julius Volzcfc78c52008-09-02 15:55:53 +02001227 IP_VS_DBG_BUF(7, "DELeting control for: "
1228 "cp.dst=%s:%d ctl_cp.dst=%s:%d\n",
1229 IP_VS_DBG_ADDR(cp->af, &cp->caddr),
1230 ntohs(cp->cport),
1231 IP_VS_DBG_ADDR(cp->af, &ctl_cp->caddr),
1232 ntohs(ctl_cp->cport));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001233
1234 cp->control = NULL;
1235 if (atomic_read(&ctl_cp->n_control) == 0) {
Julius Volzcfc78c52008-09-02 15:55:53 +02001236 IP_VS_ERR_BUF("BUG control DEL with n=0 : "
1237 "%s:%d to %s:%d\n",
1238 IP_VS_DBG_ADDR(cp->af, &cp->caddr),
1239 ntohs(cp->cport),
1240 IP_VS_DBG_ADDR(cp->af, &cp->vaddr),
1241 ntohs(cp->vport));
1242
Linus Torvalds1da177e2005-04-16 15:20:36 -07001243 return;
1244 }
1245 atomic_dec(&ctl_cp->n_control);
1246}
1247
1248static inline void
1249ip_vs_control_add(struct ip_vs_conn *cp, struct ip_vs_conn *ctl_cp)
1250{
1251 if (cp->control) {
Julius Volzcfc78c52008-09-02 15:55:53 +02001252 IP_VS_ERR_BUF("request control ADD for already controlled: "
1253 "%s:%d to %s:%d\n",
1254 IP_VS_DBG_ADDR(cp->af, &cp->caddr),
1255 ntohs(cp->cport),
1256 IP_VS_DBG_ADDR(cp->af, &cp->vaddr),
1257 ntohs(cp->vport));
1258
Linus Torvalds1da177e2005-04-16 15:20:36 -07001259 ip_vs_control_del(cp);
1260 }
1261
Julius Volzcfc78c52008-09-02 15:55:53 +02001262 IP_VS_DBG_BUF(7, "ADDing control for: "
1263 "cp.dst=%s:%d ctl_cp.dst=%s:%d\n",
1264 IP_VS_DBG_ADDR(cp->af, &cp->caddr),
1265 ntohs(cp->cport),
1266 IP_VS_DBG_ADDR(cp->af, &ctl_cp->caddr),
1267 ntohs(ctl_cp->cport));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001268
1269 cp->control = ctl_cp;
1270 atomic_inc(&ctl_cp->n_control);
1271}
1272
Simon Horman07dcc682014-09-30 10:50:06 +09001273/* IPVS netns init & cleanup functions */
Joe Perches5c3a0fd2013-09-21 10:22:42 -07001274int ip_vs_estimator_net_init(struct net *net);
1275int ip_vs_control_net_init(struct net *net);
1276int ip_vs_protocol_net_init(struct net *net);
1277int ip_vs_app_net_init(struct net *net);
1278int ip_vs_conn_net_init(struct net *net);
1279int ip_vs_sync_net_init(struct net *net);
1280void ip_vs_conn_net_cleanup(struct net *net);
1281void ip_vs_app_net_cleanup(struct net *net);
1282void ip_vs_protocol_net_cleanup(struct net *net);
1283void ip_vs_control_net_cleanup(struct net *net);
1284void ip_vs_estimator_net_cleanup(struct net *net);
1285void ip_vs_sync_net_cleanup(struct net *net);
1286void ip_vs_service_net_cleanup(struct net *net);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001287
Simon Horman07dcc682014-09-30 10:50:06 +09001288/* IPVS application functions
1289 * (from ip_vs_app.c)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001290 */
1291#define IP_VS_APP_MAX_PORTS 8
Joe Perches5c3a0fd2013-09-21 10:22:42 -07001292struct ip_vs_app *register_ip_vs_app(struct net *net, struct ip_vs_app *app);
1293void unregister_ip_vs_app(struct net *net, struct ip_vs_app *app);
1294int ip_vs_bind_app(struct ip_vs_conn *cp, struct ip_vs_protocol *pp);
1295void ip_vs_unbind_app(struct ip_vs_conn *cp);
1296int register_ip_vs_app_inc(struct net *net, struct ip_vs_app *app, __u16 proto,
1297 __u16 port);
1298int ip_vs_app_inc_get(struct ip_vs_app *inc);
1299void ip_vs_app_inc_put(struct ip_vs_app *inc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001300
Joe Perches5c3a0fd2013-09-21 10:22:42 -07001301int ip_vs_app_pkt_out(struct ip_vs_conn *, struct sk_buff *skb);
1302int ip_vs_app_pkt_in(struct ip_vs_conn *, struct sk_buff *skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001303
Simon Horman8be67a62010-08-22 21:37:54 +09001304int register_ip_vs_pe(struct ip_vs_pe *pe);
1305int unregister_ip_vs_pe(struct ip_vs_pe *pe);
Simon Hormane9e5eee2010-11-08 20:05:57 +09001306struct ip_vs_pe *ip_vs_pe_getbyname(const char *name);
Hans Schillstromfe5e7a12010-11-19 14:25:12 +01001307struct ip_vs_pe *__ip_vs_pe_getbyname(const char *pe_name);
Simon Hormane9e5eee2010-11-08 20:05:57 +09001308
Simon Horman07dcc682014-09-30 10:50:06 +09001309/* Use a #define to avoid all of module.h just for these trivial ops */
Paul Gortmaker69e7dae2011-08-29 12:40:15 -04001310#define ip_vs_pe_get(pe) \
1311 if (pe && pe->module) \
Simon Hormane9e5eee2010-11-08 20:05:57 +09001312 __module_get(pe->module);
Simon Hormane9e5eee2010-11-08 20:05:57 +09001313
Paul Gortmaker69e7dae2011-08-29 12:40:15 -04001314#define ip_vs_pe_put(pe) \
1315 if (pe && pe->module) \
Simon Hormane9e5eee2010-11-08 20:05:57 +09001316 module_put(pe->module);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001317
Simon Horman07dcc682014-09-30 10:50:06 +09001318/* IPVS protocol functions (from ip_vs_proto.c) */
Joe Perches5c3a0fd2013-09-21 10:22:42 -07001319int ip_vs_protocol_init(void);
1320void ip_vs_protocol_cleanup(void);
1321void ip_vs_protocol_timeout_change(struct netns_ipvs *ipvs, int flags);
1322int *ip_vs_create_timeout_table(int *table, int size);
1323int ip_vs_set_state_timeout(int *table, int num, const char *const *names,
1324 const char *name, int to);
1325void ip_vs_tcpudp_debug_packet(int af, struct ip_vs_protocol *pp,
1326 const struct sk_buff *skb, int offset,
1327 const char *msg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001328
1329extern struct ip_vs_protocol ip_vs_protocol_tcp;
1330extern struct ip_vs_protocol ip_vs_protocol_udp;
1331extern struct ip_vs_protocol ip_vs_protocol_icmp;
1332extern struct ip_vs_protocol ip_vs_protocol_esp;
1333extern struct ip_vs_protocol ip_vs_protocol_ah;
Venkata Mohan Reddy2906f662010-02-18 12:31:05 +01001334extern struct ip_vs_protocol ip_vs_protocol_sctp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001335
Simon Horman07dcc682014-09-30 10:50:06 +09001336/* Registering/unregistering scheduler functions
1337 * (from ip_vs_sched.c)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001338 */
Joe Perches5c3a0fd2013-09-21 10:22:42 -07001339int register_ip_vs_scheduler(struct ip_vs_scheduler *scheduler);
1340int unregister_ip_vs_scheduler(struct ip_vs_scheduler *scheduler);
1341int ip_vs_bind_scheduler(struct ip_vs_service *svc,
1342 struct ip_vs_scheduler *scheduler);
1343void ip_vs_unbind_scheduler(struct ip_vs_service *svc,
1344 struct ip_vs_scheduler *sched);
1345struct ip_vs_scheduler *ip_vs_scheduler_get(const char *sched_name);
1346void ip_vs_scheduler_put(struct ip_vs_scheduler *scheduler);
1347struct ip_vs_conn *
Julian Anastasov190ecd22010-10-17 16:24:37 +03001348ip_vs_schedule(struct ip_vs_service *svc, struct sk_buff *skb,
Jesper Dangaard Brouerd4383f02012-09-26 14:07:17 +02001349 struct ip_vs_proto_data *pd, int *ignored,
1350 struct ip_vs_iphdr *iph);
Joe Perches5c3a0fd2013-09-21 10:22:42 -07001351int ip_vs_leave(struct ip_vs_service *svc, struct sk_buff *skb,
1352 struct ip_vs_proto_data *pd, struct ip_vs_iphdr *iph);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001353
Joe Perches5c3a0fd2013-09-21 10:22:42 -07001354void ip_vs_scheduler_err(struct ip_vs_service *svc, const char *msg);
Patrick Schaaf41ac51e2011-02-11 14:01:12 +01001355
Simon Horman07dcc682014-09-30 10:50:06 +09001356/* IPVS control data and functions (from ip_vs_ctl.c) */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001357extern struct ip_vs_stats ip_vs_stats;
Hans Schillstromb880c1f2010-11-19 14:25:14 +01001358extern int sysctl_ip_vs_sync_ver;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001359
Joe Perches5c3a0fd2013-09-21 10:22:42 -07001360struct ip_vs_service *
Julian Anastasovceec4c32013-03-22 11:46:53 +02001361ip_vs_service_find(struct net *net, int af, __u32 fwmark, __u16 protocol,
Julius Volz3c2e0502008-09-02 15:55:38 +02001362 const union nf_inet_addr *vaddr, __be16 vport);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001363
Joe Perches5c3a0fd2013-09-21 10:22:42 -07001364bool ip_vs_has_real_service(struct net *net, int af, __u16 protocol,
1365 const union nf_inet_addr *daddr, __be16 dport);
Julius Volz7937df12008-09-02 15:55:48 +02001366
Joe Perches5c3a0fd2013-09-21 10:22:42 -07001367int ip_vs_use_count_inc(void);
1368void ip_vs_use_count_dec(void);
1369int ip_vs_register_nl_ioctl(void);
1370void ip_vs_unregister_nl_ioctl(void);
1371int ip_vs_control_init(void);
1372void ip_vs_control_cleanup(void);
1373struct ip_vs_dest *
Alex Gartrell655eef12014-09-09 16:40:21 -07001374ip_vs_find_dest(struct net *net, int svc_af, int dest_af,
1375 const union nf_inet_addr *daddr, __be16 dport,
1376 const union nf_inet_addr *vaddr, __be16 vport,
Julian Anastasov52793db2011-12-30 14:19:02 +09001377 __u16 protocol, __u32 fwmark, __u32 flags);
Joe Perches5c3a0fd2013-09-21 10:22:42 -07001378void ip_vs_try_bind_dest(struct ip_vs_conn *cp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001379
Julian Anastasovfca9c202013-03-22 11:46:38 +02001380static inline void ip_vs_dest_hold(struct ip_vs_dest *dest)
1381{
1382 atomic_inc(&dest->refcnt);
1383}
1384
1385static inline void ip_vs_dest_put(struct ip_vs_dest *dest)
1386{
Peter Zijlstra4e857c52014-03-17 18:06:10 +01001387 smp_mb__before_atomic();
Julian Anastasovfca9c202013-03-22 11:46:38 +02001388 atomic_dec(&dest->refcnt);
1389}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001390
Julian Anastasov9e4e9482013-10-09 09:24:27 +03001391static inline void ip_vs_dest_put_and_free(struct ip_vs_dest *dest)
1392{
1393 if (atomic_dec_return(&dest->refcnt) < 0)
1394 kfree(dest);
1395}
1396
Simon Horman07dcc682014-09-30 10:50:06 +09001397/* IPVS sync daemon data and function prototypes
1398 * (from ip_vs_sync.c)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001399 */
Joe Perches5c3a0fd2013-09-21 10:22:42 -07001400int start_sync_thread(struct net *net, int state, char *mcast_ifn, __u8 syncid);
1401int stop_sync_thread(struct net *net, int state);
1402void ip_vs_sync_conn(struct net *net, struct ip_vs_conn *cp, int pkts);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001403
Simon Horman07dcc682014-09-30 10:50:06 +09001404/* IPVS rate estimator prototypes (from ip_vs_est.c) */
Joe Perches5c3a0fd2013-09-21 10:22:42 -07001405void ip_vs_start_estimator(struct net *net, struct ip_vs_stats *stats);
1406void ip_vs_stop_estimator(struct net *net, struct ip_vs_stats *stats);
1407void ip_vs_zero_estimator(struct ip_vs_stats *stats);
Julian Anastasovcd67cd52015-02-06 09:44:44 +02001408void ip_vs_read_estimator(struct ip_vs_kstats *dst, struct ip_vs_stats *stats);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001409
Simon Horman07dcc682014-09-30 10:50:06 +09001410/* Various IPVS packet transmitters (from ip_vs_xmit.c) */
Joe Perches5c3a0fd2013-09-21 10:22:42 -07001411int ip_vs_null_xmit(struct sk_buff *skb, struct ip_vs_conn *cp,
1412 struct ip_vs_protocol *pp, struct ip_vs_iphdr *iph);
1413int ip_vs_bypass_xmit(struct sk_buff *skb, struct ip_vs_conn *cp,
1414 struct ip_vs_protocol *pp, struct ip_vs_iphdr *iph);
1415int ip_vs_nat_xmit(struct sk_buff *skb, struct ip_vs_conn *cp,
1416 struct ip_vs_protocol *pp, struct ip_vs_iphdr *iph);
1417int ip_vs_tunnel_xmit(struct sk_buff *skb, struct ip_vs_conn *cp,
1418 struct ip_vs_protocol *pp, struct ip_vs_iphdr *iph);
1419int ip_vs_dr_xmit(struct sk_buff *skb, struct ip_vs_conn *cp,
1420 struct ip_vs_protocol *pp, struct ip_vs_iphdr *iph);
1421int ip_vs_icmp_xmit(struct sk_buff *skb, struct ip_vs_conn *cp,
1422 struct ip_vs_protocol *pp, int offset,
1423 unsigned int hooknum, struct ip_vs_iphdr *iph);
1424void ip_vs_dest_dst_rcu_free(struct rcu_head *head);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001425
Julius Volzb3cdd2a2008-09-02 15:55:45 +02001426#ifdef CONFIG_IP_VS_IPV6
Joe Perches5c3a0fd2013-09-21 10:22:42 -07001427int ip_vs_bypass_xmit_v6(struct sk_buff *skb, struct ip_vs_conn *cp,
1428 struct ip_vs_protocol *pp, struct ip_vs_iphdr *iph);
1429int ip_vs_nat_xmit_v6(struct sk_buff *skb, struct ip_vs_conn *cp,
1430 struct ip_vs_protocol *pp, struct ip_vs_iphdr *iph);
1431int ip_vs_tunnel_xmit_v6(struct sk_buff *skb, struct ip_vs_conn *cp,
1432 struct ip_vs_protocol *pp, struct ip_vs_iphdr *iph);
1433int ip_vs_dr_xmit_v6(struct sk_buff *skb, struct ip_vs_conn *cp,
1434 struct ip_vs_protocol *pp, struct ip_vs_iphdr *iph);
1435int ip_vs_icmp_xmit_v6(struct sk_buff *skb, struct ip_vs_conn *cp,
1436 struct ip_vs_protocol *pp, int offset,
1437 unsigned int hooknum, struct ip_vs_iphdr *iph);
Julius Volzb3cdd2a2008-09-02 15:55:45 +02001438#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001439
Simon Horman3a1bbf12011-02-04 18:33:02 +09001440#ifdef CONFIG_SYSCTL
Simon Horman07dcc682014-09-30 10:50:06 +09001441/* This is a simple mechanism to ignore packets when
1442 * we are loaded. Just set ip_vs_drop_rate to 'n' and
1443 * we start to drop 1/rate of the packets
Linus Torvalds1da177e2005-04-16 15:20:36 -07001444 */
Hans Schillstroma0840e22011-01-03 14:44:58 +01001445static inline int ip_vs_todrop(struct netns_ipvs *ipvs)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001446{
Hans Schillstroma0840e22011-01-03 14:44:58 +01001447 if (!ipvs->drop_rate)
1448 return 0;
1449 if (--ipvs->drop_counter > 0)
1450 return 0;
1451 ipvs->drop_counter = ipvs->drop_rate;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001452 return 1;
1453}
Simon Horman3a1bbf12011-02-04 18:33:02 +09001454#else
1455static inline int ip_vs_todrop(struct netns_ipvs *ipvs) { return 0; }
1456#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001457
Simon Horman07dcc682014-09-30 10:50:06 +09001458/* ip_vs_fwd_tag returns the forwarding tag of the connection */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001459#define IP_VS_FWD_METHOD(cp) (cp->flags & IP_VS_CONN_F_FWD_MASK)
1460
Adrian Bunk732db652005-09-01 17:40:26 -07001461static inline char ip_vs_fwd_tag(struct ip_vs_conn *cp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001462{
1463 char fwd;
1464
1465 switch (IP_VS_FWD_METHOD(cp)) {
1466 case IP_VS_CONN_F_MASQ:
1467 fwd = 'M'; break;
1468 case IP_VS_CONN_F_LOCALNODE:
1469 fwd = 'L'; break;
1470 case IP_VS_CONN_F_TUNNEL:
1471 fwd = 'T'; break;
1472 case IP_VS_CONN_F_DROUTE:
1473 fwd = 'R'; break;
1474 case IP_VS_CONN_F_BYPASS:
1475 fwd = 'B'; break;
1476 default:
1477 fwd = '?'; break;
1478 }
1479 return fwd;
1480}
1481
Joe Perches5c3a0fd2013-09-21 10:22:42 -07001482void ip_vs_nat_icmp(struct sk_buff *skb, struct ip_vs_protocol *pp,
1483 struct ip_vs_conn *cp, int dir);
Julius Volzb3cdd2a2008-09-02 15:55:45 +02001484
1485#ifdef CONFIG_IP_VS_IPV6
Joe Perches5c3a0fd2013-09-21 10:22:42 -07001486void ip_vs_nat_icmp_v6(struct sk_buff *skb, struct ip_vs_protocol *pp,
1487 struct ip_vs_conn *cp, int dir);
Julius Volzb3cdd2a2008-09-02 15:55:45 +02001488#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001489
Joe Perches5c3a0fd2013-09-21 10:22:42 -07001490__sum16 ip_vs_checksum_complete(struct sk_buff *skb, int offset);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001491
Al Virof9214b22006-11-16 02:41:18 -08001492static inline __wsum ip_vs_check_diff4(__be32 old, __be32 new, __wsum oldsum)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001493{
Al Virof9214b22006-11-16 02:41:18 -08001494 __be32 diff[2] = { ~old, new };
Linus Torvalds1da177e2005-04-16 15:20:36 -07001495
Joe Perches07f07572008-11-19 15:44:53 -08001496 return csum_partial(diff, sizeof(diff), oldsum);
Al Virof9214b22006-11-16 02:41:18 -08001497}
1498
Julius Volz0bbdd422008-09-02 15:55:42 +02001499#ifdef CONFIG_IP_VS_IPV6
1500static inline __wsum ip_vs_check_diff16(const __be32 *old, const __be32 *new,
1501 __wsum oldsum)
1502{
1503 __be32 diff[8] = { ~old[3], ~old[2], ~old[1], ~old[0],
1504 new[3], new[2], new[1], new[0] };
1505
Joe Perches07f07572008-11-19 15:44:53 -08001506 return csum_partial(diff, sizeof(diff), oldsum);
Julius Volz0bbdd422008-09-02 15:55:42 +02001507}
1508#endif
1509
Al Virof9214b22006-11-16 02:41:18 -08001510static inline __wsum ip_vs_check_diff2(__be16 old, __be16 new, __wsum oldsum)
1511{
1512 __be16 diff[2] = { ~old, new };
1513
Joe Perches07f07572008-11-19 15:44:53 -08001514 return csum_partial(diff, sizeof(diff), oldsum);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001515}
1516
Simon Horman07dcc682014-09-30 10:50:06 +09001517/* Forget current conntrack (unconfirmed) and attach notrack entry */
Julian Anastasovcf356d62010-10-17 16:21:07 +03001518static inline void ip_vs_notrack(struct sk_buff *skb)
1519{
1520#if defined(CONFIG_NF_CONNTRACK) || defined(CONFIG_NF_CONNTRACK_MODULE)
1521 enum ip_conntrack_info ctinfo;
Jesper Juhl06b69392011-03-09 22:55:05 +01001522 struct nf_conn *ct = nf_ct_get(skb, &ctinfo);
Julian Anastasovcf356d62010-10-17 16:21:07 +03001523
1524 if (!ct || !nf_ct_is_untracked(ct)) {
Lin Ming9e33ce42012-07-07 18:26:10 +08001525 nf_conntrack_put(skb->nfct);
Julian Anastasovcf356d62010-10-17 16:21:07 +03001526 skb->nfct = &nf_ct_untracked_get()->ct_general;
1527 skb->nfctinfo = IP_CT_NEW;
1528 nf_conntrack_get(skb->nfct);
1529 }
1530#endif
1531}
1532
Julian Anastasovf4bc17c2010-09-21 17:35:41 +02001533#ifdef CONFIG_IP_VS_NFCT
Simon Horman07dcc682014-09-30 10:50:06 +09001534/* Netfilter connection tracking
1535 * (from ip_vs_nfct.c)
Julian Anastasovf4bc17c2010-09-21 17:35:41 +02001536 */
Hans Schillstroma0840e22011-01-03 14:44:58 +01001537static inline int ip_vs_conntrack_enabled(struct netns_ipvs *ipvs)
Julian Anastasovf4bc17c2010-09-21 17:35:41 +02001538{
Simon Hormana4e2f5a2011-02-04 18:33:02 +09001539#ifdef CONFIG_SYSCTL
Hans Schillstroma0840e22011-01-03 14:44:58 +01001540 return ipvs->sysctl_conntrack;
Simon Hormana4e2f5a2011-02-04 18:33:02 +09001541#else
1542 return 0;
1543#endif
Julian Anastasovf4bc17c2010-09-21 17:35:41 +02001544}
1545
Joe Perches5c3a0fd2013-09-21 10:22:42 -07001546void ip_vs_update_conntrack(struct sk_buff *skb, struct ip_vs_conn *cp,
1547 int outin);
1548int ip_vs_confirm_conntrack(struct sk_buff *skb);
1549void ip_vs_nfct_expect_related(struct sk_buff *skb, struct nf_conn *ct,
1550 struct ip_vs_conn *cp, u_int8_t proto,
1551 const __be16 port, int from_rs);
1552void ip_vs_conn_drop_conntrack(struct ip_vs_conn *cp);
Julian Anastasovf4bc17c2010-09-21 17:35:41 +02001553
1554#else
1555
Hans Schillstroma0840e22011-01-03 14:44:58 +01001556static inline int ip_vs_conntrack_enabled(struct netns_ipvs *ipvs)
Julian Anastasovf4bc17c2010-09-21 17:35:41 +02001557{
1558 return 0;
1559}
1560
1561static inline void ip_vs_update_conntrack(struct sk_buff *skb,
1562 struct ip_vs_conn *cp, int outin)
1563{
1564}
1565
Krzysztof Wilczynskie23ebf02011-10-20 13:18:04 +01001566static inline int ip_vs_confirm_conntrack(struct sk_buff *skb)
Julian Anastasovf4bc17c2010-09-21 17:35:41 +02001567{
1568 return NF_ACCEPT;
1569}
1570
1571static inline void ip_vs_conn_drop_conntrack(struct ip_vs_conn *cp)
1572{
1573}
Simon Horman07dcc682014-09-30 10:50:06 +09001574#endif /* CONFIG_IP_VS_NFCT */
Julian Anastasov6523ce12010-09-05 18:02:29 +00001575
Simon Kirbyc16526a2013-08-10 01:26:18 -07001576static inline int
Changli Gaob552f7e2011-02-19 17:32:28 +08001577ip_vs_dest_conn_overhead(struct ip_vs_dest *dest)
1578{
Simon Horman07dcc682014-09-30 10:50:06 +09001579 /* We think the overhead of processing active connections is 256
Changli Gaob552f7e2011-02-19 17:32:28 +08001580 * times higher than that of inactive connections in average. (This
1581 * 256 times might not be accurate, we will change it later) We
1582 * use the following formula to estimate the overhead now:
1583 * dest->activeconns*256 + dest->inactconns
1584 */
1585 return (atomic_read(&dest->activeconns) << 8) +
1586 atomic_read(&dest->inactconns);
1587}
1588
Julius Volzbc4768e2008-07-31 20:45:24 -07001589#endif /* _NET_IP_VS_H */