blob: c68c2c8ae48a60db0358c9f0440213e2c47142ff [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
Alex Gartrell4fd9bee2015-08-26 09:40:29 -070032#define IP_VS_HDR_INVERSE 1
33#define IP_VS_HDR_ICMP 2
34
Simon Horman07dcc682014-09-30 10:50:06 +090035/* Generic access of ipvs struct */
Hans Schillstrom61b1ab42011-01-03 14:44:42 +010036static inline struct netns_ipvs *net_ipvs(struct net* net)
37{
38 return net->ipvs;
39}
Simon Horman07dcc682014-09-30 10:50:06 +090040
41/* Get net ptr from skb in traffic cases
Hans Schillstromfc723252011-01-03 14:44:43 +010042 * use skb_sknet when call is from userland (ioctl or netlink)
43 */
Hans Schillstroma0840e22011-01-03 14:44:58 +010044static inline struct net *skb_net(const struct sk_buff *skb)
Hans Schillstromfc723252011-01-03 14:44:43 +010045{
46#ifdef CONFIG_NET_NS
47#ifdef CONFIG_IP_VS_DEBUG
48 /*
49 * This is used for debug only.
50 * Start with the most likely hit
51 * End with BUG
52 */
Eric W. Biederman0c5c9fb2015-03-11 23:06:44 -050053 if (likely(skb->dev && dev_net(skb->dev)))
Hans Schillstromfc723252011-01-03 14:44:43 +010054 return dev_net(skb->dev);
Hans Schillstroma09d1972011-04-04 15:25:18 +020055 if (skb_dst(skb) && skb_dst(skb)->dev)
Hans Schillstromfc723252011-01-03 14:44:43 +010056 return dev_net(skb_dst(skb)->dev);
57 WARN(skb->sk, "Maybe skb_sknet should be used in %s() at line:%d\n",
58 __func__, __LINE__);
Eric W. Biederman0c5c9fb2015-03-11 23:06:44 -050059 if (likely(skb->sk && sock_net(skb->sk)))
Hans Schillstromfc723252011-01-03 14:44:43 +010060 return sock_net(skb->sk);
61 pr_err("There is no net ptr to find in the skb in %s() line:%d\n",
62 __func__, __LINE__);
63 BUG();
64#else
65 return dev_net(skb->dev ? : skb_dst(skb)->dev);
66#endif
67#else
68 return &init_net;
69#endif
70}
71
Hans Schillstroma0840e22011-01-03 14:44:58 +010072static inline struct net *skb_sknet(const struct sk_buff *skb)
Hans Schillstromfc723252011-01-03 14:44:43 +010073{
74#ifdef CONFIG_NET_NS
75#ifdef CONFIG_IP_VS_DEBUG
76 /* Start with the most likely hit */
Eric W. Biederman0c5c9fb2015-03-11 23:06:44 -050077 if (likely(skb->sk && sock_net(skb->sk)))
Hans Schillstromfc723252011-01-03 14:44:43 +010078 return sock_net(skb->sk);
79 WARN(skb->dev, "Maybe skb_net should be used instead in %s() line:%d\n",
80 __func__, __LINE__);
Eric W. Biederman0c5c9fb2015-03-11 23:06:44 -050081 if (likely(skb->dev && dev_net(skb->dev)))
Hans Schillstromfc723252011-01-03 14:44:43 +010082 return dev_net(skb->dev);
83 pr_err("There is no net ptr to find in the skb in %s() line:%d\n",
84 __func__, __LINE__);
85 BUG();
86#else
87 return sock_net(skb->sk);
88#endif
89#else
90 return &init_net;
91#endif
92}
Simon Horman07dcc682014-09-30 10:50:06 +090093
94/* This one needed for single_open_net since net is stored directly in
Lucas De Marchi25985ed2011-03-30 22:57:33 -030095 * private not as a struct i.e. seq_file_net can't be used.
Hans Schillstromb17fc992011-01-03 14:44:56 +010096 */
97static inline struct net *seq_file_single_net(struct seq_file *seq)
98{
99#ifdef CONFIG_NET_NS
100 return (struct net *)seq->private;
101#else
102 return &init_net;
103#endif
104}
Catalin(ux) M. BOIE6f7edb42010-01-05 05:50:24 +0100105
106/* Connections' size value needed by ip_vs_ctl.c */
107extern int ip_vs_conn_tab_size;
108
Julius Volz64aae3c2008-09-02 15:55:34 +0200109struct ip_vs_iphdr {
Alex Gartrell4fd9bee2015-08-26 09:40:29 -0700110 int hdr_flags; /* ipvs flags */
Alex Gartrellb0e010c2015-08-26 09:40:28 -0700111 __u32 off; /* Where IP or IPv4 header starts */
Jesper Dangaard Brouer63dca2c2012-09-26 14:06:41 +0200112 __u32 len; /* IPv4 simply where L4 starts
Simon Horman07dcc682014-09-30 10:50:06 +0900113 * IPv6 where L4 Transport Header starts */
Jesper Dangaard Brouer63dca2c2012-09-26 14:06:41 +0200114 __u16 fragoffs; /* IPv6 fragment offset, 0 if first frag (or not frag)*/
115 __s16 protocol;
116 __s32 flags;
Julius Volz64aae3c2008-09-02 15:55:34 +0200117 union nf_inet_addr saddr;
118 union nf_inet_addr daddr;
119};
120
Jesper Dangaard Brouer2f747132012-09-26 14:06:59 +0200121static inline void *frag_safe_skb_hp(const struct sk_buff *skb, int offset,
122 int len, void *buffer,
123 const struct ip_vs_iphdr *ipvsh)
124{
125 return skb_header_pointer(skb, offset, len, buffer);
126}
Jesper Dangaard Brouer2f747132012-09-26 14:06:59 +0200127
Jesper Dangaard Brouer63dca2c2012-09-26 14:06:41 +0200128/* This function handles filling *ip_vs_iphdr, both for IPv4 and IPv6.
129 * IPv6 requires some extra work, as finding proper header position,
130 * depend on the IPv6 extension headers.
131 */
Alex Gartrellb0e010c2015-08-26 09:40:28 -0700132static inline int
133ip_vs_fill_iph_skb_off(int af, const struct sk_buff *skb, int offset,
Alex Gartrell4fd9bee2015-08-26 09:40:29 -0700134 int hdr_flags, struct ip_vs_iphdr *iphdr)
Julius Volz64aae3c2008-09-02 15:55:34 +0200135{
Alex Gartrell4fd9bee2015-08-26 09:40:29 -0700136 iphdr->hdr_flags = hdr_flags;
Alex Gartrellb0e010c2015-08-26 09:40:28 -0700137 iphdr->off = offset;
Alex Gartrell4fd9bee2015-08-26 09:40:29 -0700138
Julius Volz64aae3c2008-09-02 15:55:34 +0200139#ifdef CONFIG_IP_VS_IPV6
140 if (af == AF_INET6) {
Alex Gartrellb0e010c2015-08-26 09:40:28 -0700141 struct ipv6hdr _iph;
142 const struct ipv6hdr *iph = skb_header_pointer(
143 skb, offset, sizeof(_iph), &_iph);
144 if (!iph)
145 return 0;
146
Alexey Dobriyan4e3fd7a2011-11-21 03:39:03 +0000147 iphdr->saddr.in6 = iph->saddr;
148 iphdr->daddr.in6 = iph->daddr;
Jiri Pirko6aafeef2013-11-06 17:52:20 +0100149 /* ipv6_find_hdr() updates len, flags */
Alex Gartrellb0e010c2015-08-26 09:40:28 -0700150 iphdr->len = offset;
Jesper Dangaard Brouer63dca2c2012-09-26 14:06:41 +0200151 iphdr->flags = 0;
152 iphdr->protocol = ipv6_find_hdr(skb, &iphdr->len, -1,
153 &iphdr->fragoffs,
154 &iphdr->flags);
Alex Gartrellb0e010c2015-08-26 09:40:28 -0700155 if (iphdr->protocol < 0)
156 return 0;
Julius Volz64aae3c2008-09-02 15:55:34 +0200157 } else
158#endif
159 {
Alex Gartrellb0e010c2015-08-26 09:40:28 -0700160 struct iphdr _iph;
161 const struct iphdr *iph = skb_header_pointer(
162 skb, offset, sizeof(_iph), &_iph);
163 if (!iph)
164 return 0;
165
166 iphdr->len = offset + iph->ihl * 4;
Jesper Dangaard Brouer63dca2c2012-09-26 14:06:41 +0200167 iphdr->fragoffs = 0;
168 iphdr->protocol = iph->protocol;
169 iphdr->saddr.ip = iph->saddr;
170 iphdr->daddr.ip = iph->daddr;
171 }
Alex Gartrellb0e010c2015-08-26 09:40:28 -0700172
173 return 1;
174}
175
176static inline int
Alex Gartrell4fd9bee2015-08-26 09:40:29 -0700177ip_vs_fill_iph_skb_icmp(int af, const struct sk_buff *skb, int offset,
178 bool inverse, struct ip_vs_iphdr *iphdr)
Alex Gartrellb0e010c2015-08-26 09:40:28 -0700179{
Alex Gartrell4fd9bee2015-08-26 09:40:29 -0700180 int hdr_flags = IP_VS_HDR_ICMP;
181
182 if (inverse)
183 hdr_flags |= IP_VS_HDR_INVERSE;
184
185 return ip_vs_fill_iph_skb_off(af, skb, offset, hdr_flags, iphdr);
186}
187
188static inline int
189ip_vs_fill_iph_skb(int af, const struct sk_buff *skb, bool inverse,
190 struct ip_vs_iphdr *iphdr)
191{
192 int hdr_flags = 0;
193
194 if (inverse)
195 hdr_flags |= IP_VS_HDR_INVERSE;
196
197 return ip_vs_fill_iph_skb_off(af, skb, skb_network_offset(skb),
198 hdr_flags, iphdr);
199}
200
201static inline bool
202ip_vs_iph_inverse(const struct ip_vs_iphdr *iph)
203{
204 return !!(iph->hdr_flags & IP_VS_HDR_INVERSE);
205}
206
207static inline bool
208ip_vs_iph_icmp(const struct ip_vs_iphdr *iph)
209{
210 return !!(iph->hdr_flags & IP_VS_HDR_ICMP);
Jesper Dangaard Brouer63dca2c2012-09-26 14:06:41 +0200211}
212
Julius Volz64aae3c2008-09-02 15:55:34 +0200213static inline void ip_vs_addr_copy(int af, union nf_inet_addr *dst,
214 const union nf_inet_addr *src)
215{
216#ifdef CONFIG_IP_VS_IPV6
217 if (af == AF_INET6)
Alexey Dobriyan4e3fd7a2011-11-21 03:39:03 +0000218 dst->in6 = src->in6;
Julius Volz64aae3c2008-09-02 15:55:34 +0200219 else
220#endif
221 dst->ip = src->ip;
222}
223
Julian Anastasov9a05475c2013-03-21 11:58:12 +0200224static inline void ip_vs_addr_set(int af, union nf_inet_addr *dst,
225 const union nf_inet_addr *src)
226{
227#ifdef CONFIG_IP_VS_IPV6
228 if (af == AF_INET6) {
229 dst->in6 = src->in6;
230 return;
231 }
232#endif
233 dst->ip = src->ip;
234 dst->all[1] = 0;
235 dst->all[2] = 0;
236 dst->all[3] = 0;
237}
238
Julius Volz64aae3c2008-09-02 15:55:34 +0200239static inline int ip_vs_addr_equal(int af, const union nf_inet_addr *a,
240 const union nf_inet_addr *b)
241{
242#ifdef CONFIG_IP_VS_IPV6
243 if (af == AF_INET6)
244 return ipv6_addr_equal(&a->in6, &b->in6);
245#endif
246 return a->ip == b->ip;
247}
248
Linus Torvalds1da177e2005-04-16 15:20:36 -0700249#ifdef CONFIG_IP_VS_DEBUG
Arnaldo Carvalho de Melo14c85022005-12-27 02:43:12 -0200250#include <linux/net.h>
251
Joe Perches5c3a0fd2013-09-21 10:22:42 -0700252int ip_vs_get_debug_level(void);
Julius Volzc842a3a2008-09-02 15:55:35 +0200253
254static inline const char *ip_vs_dbg_addr(int af, char *buf, size_t buf_len,
255 const union nf_inet_addr *addr,
256 int *idx)
257{
258 int len;
259#ifdef CONFIG_IP_VS_IPV6
260 if (af == AF_INET6)
Jesper Dangaard Brouer120b9c12012-09-26 14:05:53 +0200261 len = snprintf(&buf[*idx], buf_len - *idx, "[%pI6c]",
Harvey Harrison0c6ce782008-10-28 16:09:23 -0700262 &addr->in6) + 1;
Julius Volzc842a3a2008-09-02 15:55:35 +0200263 else
264#endif
Harvey Harrison3685f25d2008-10-31 00:56:49 -0700265 len = snprintf(&buf[*idx], buf_len - *idx, "%pI4",
266 &addr->ip) + 1;
Julius Volzc842a3a2008-09-02 15:55:35 +0200267
268 *idx += len;
269 BUG_ON(*idx > buf_len + 1);
270 return &buf[*idx - len];
271}
272
Hannes Eder9aada7a2009-07-30 14:29:44 -0700273#define IP_VS_DBG_BUF(level, msg, ...) \
274 do { \
275 char ip_vs_dbg_buf[160]; \
276 int ip_vs_dbg_idx = 0; \
277 if (level <= ip_vs_get_debug_level()) \
278 printk(KERN_DEBUG pr_fmt(msg), ##__VA_ARGS__); \
279 } while (0)
280#define IP_VS_ERR_BUF(msg...) \
281 do { \
282 char ip_vs_dbg_buf[160]; \
283 int ip_vs_dbg_idx = 0; \
284 pr_err(msg); \
285 } while (0)
Julius Volzc842a3a2008-09-02 15:55:35 +0200286
287/* Only use from within IP_VS_DBG_BUF() or IP_VS_ERR_BUF macros */
Hannes Eder9aada7a2009-07-30 14:29:44 -0700288#define IP_VS_DBG_ADDR(af, addr) \
289 ip_vs_dbg_addr(af, ip_vs_dbg_buf, \
290 sizeof(ip_vs_dbg_buf), addr, \
291 &ip_vs_dbg_idx)
Julius Volzc842a3a2008-09-02 15:55:35 +0200292
Hannes Eder9aada7a2009-07-30 14:29:44 -0700293#define IP_VS_DBG(level, msg, ...) \
294 do { \
295 if (level <= ip_vs_get_debug_level()) \
296 printk(KERN_DEBUG pr_fmt(msg), ##__VA_ARGS__); \
297 } while (0)
298#define IP_VS_DBG_RL(msg, ...) \
299 do { \
300 if (net_ratelimit()) \
301 printk(KERN_DEBUG pr_fmt(msg), ##__VA_ARGS__); \
302 } while (0)
Julian Anastasov0d796412010-10-17 16:46:17 +0300303#define IP_VS_DBG_PKT(level, af, pp, skb, ofs, msg) \
Hannes Eder9aada7a2009-07-30 14:29:44 -0700304 do { \
305 if (level <= ip_vs_get_debug_level()) \
Julian Anastasov0d796412010-10-17 16:46:17 +0300306 pp->debug_packet(af, pp, skb, ofs, msg); \
Hannes Eder9aada7a2009-07-30 14:29:44 -0700307 } while (0)
Julian Anastasov0d796412010-10-17 16:46:17 +0300308#define IP_VS_DBG_RL_PKT(level, af, pp, skb, ofs, msg) \
Hannes Eder9aada7a2009-07-30 14:29:44 -0700309 do { \
310 if (level <= ip_vs_get_debug_level() && \
311 net_ratelimit()) \
Julian Anastasov0d796412010-10-17 16:46:17 +0300312 pp->debug_packet(af, pp, skb, ofs, msg); \
Hannes Eder9aada7a2009-07-30 14:29:44 -0700313 } while (0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700314#else /* NO DEBUGGING at ALL */
Julius Volzc842a3a2008-09-02 15:55:35 +0200315#define IP_VS_DBG_BUF(level, msg...) do {} while (0)
316#define IP_VS_ERR_BUF(msg...) do {} while (0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700317#define IP_VS_DBG(level, msg...) do {} while (0)
318#define IP_VS_DBG_RL(msg...) do {} while (0)
Julian Anastasov0d796412010-10-17 16:46:17 +0300319#define IP_VS_DBG_PKT(level, af, pp, skb, ofs, msg) do {} while (0)
320#define IP_VS_DBG_RL_PKT(level, af, pp, skb, ofs, msg) do {} while (0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700321#endif
322
323#define IP_VS_BUG() BUG()
Hannes Eder1e3e2382009-08-02 11:05:41 +0000324#define IP_VS_ERR_RL(msg, ...) \
Hannes Eder9aada7a2009-07-30 14:29:44 -0700325 do { \
326 if (net_ratelimit()) \
Hannes Eder1e3e2382009-08-02 11:05:41 +0000327 pr_err(msg, ##__VA_ARGS__); \
Hannes Eder9aada7a2009-07-30 14:29:44 -0700328 } while (0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700329
330#ifdef CONFIG_IP_VS_DEBUG
331#define EnterFunction(level) \
Hannes Eder9aada7a2009-07-30 14:29:44 -0700332 do { \
333 if (level <= ip_vs_get_debug_level()) \
334 printk(KERN_DEBUG \
335 pr_fmt("Enter: %s, %s line %i\n"), \
336 __func__, __FILE__, __LINE__); \
337 } while (0)
338#define LeaveFunction(level) \
339 do { \
340 if (level <= ip_vs_get_debug_level()) \
341 printk(KERN_DEBUG \
342 pr_fmt("Leave: %s, %s line %i\n"), \
343 __func__, __FILE__, __LINE__); \
344 } while (0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700345#else
346#define EnterFunction(level) do {} while (0)
347#define LeaveFunction(level) do {} while (0)
348#endif
349
Simon Horman07dcc682014-09-30 10:50:06 +0900350/* The port number of FTP service (in network order). */
Harvey Harrisonf3a7c662009-02-14 22:58:35 -0800351#define FTPPORT cpu_to_be16(21)
352#define FTPDATA cpu_to_be16(20)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700353
Simon Horman07dcc682014-09-30 10:50:06 +0900354/* TCP State Values */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700355enum {
356 IP_VS_TCP_S_NONE = 0,
357 IP_VS_TCP_S_ESTABLISHED,
358 IP_VS_TCP_S_SYN_SENT,
359 IP_VS_TCP_S_SYN_RECV,
360 IP_VS_TCP_S_FIN_WAIT,
361 IP_VS_TCP_S_TIME_WAIT,
362 IP_VS_TCP_S_CLOSE,
363 IP_VS_TCP_S_CLOSE_WAIT,
364 IP_VS_TCP_S_LAST_ACK,
365 IP_VS_TCP_S_LISTEN,
366 IP_VS_TCP_S_SYNACK,
367 IP_VS_TCP_S_LAST
368};
369
Simon Horman07dcc682014-09-30 10:50:06 +0900370/* UDP State Values */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700371enum {
372 IP_VS_UDP_S_NORMAL,
373 IP_VS_UDP_S_LAST,
374};
375
Simon Horman07dcc682014-09-30 10:50:06 +0900376/* ICMP State Values */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700377enum {
378 IP_VS_ICMP_S_NORMAL,
379 IP_VS_ICMP_S_LAST,
380};
381
Simon Horman07dcc682014-09-30 10:50:06 +0900382/* SCTP State Values */
Venkata Mohan Reddy2906f662010-02-18 12:31:05 +0100383enum ip_vs_sctp_states {
384 IP_VS_SCTP_S_NONE,
Julian Anastasov61e7c422013-06-18 10:08:07 +0300385 IP_VS_SCTP_S_INIT1,
386 IP_VS_SCTP_S_INIT,
387 IP_VS_SCTP_S_COOKIE_SENT,
388 IP_VS_SCTP_S_COOKIE_REPLIED,
389 IP_VS_SCTP_S_COOKIE_WAIT,
390 IP_VS_SCTP_S_COOKIE,
391 IP_VS_SCTP_S_COOKIE_ECHOED,
Venkata Mohan Reddy2906f662010-02-18 12:31:05 +0100392 IP_VS_SCTP_S_ESTABLISHED,
Julian Anastasov61e7c422013-06-18 10:08:07 +0300393 IP_VS_SCTP_S_SHUTDOWN_SENT,
394 IP_VS_SCTP_S_SHUTDOWN_RECEIVED,
395 IP_VS_SCTP_S_SHUTDOWN_ACK_SENT,
396 IP_VS_SCTP_S_REJECTED,
Venkata Mohan Reddy2906f662010-02-18 12:31:05 +0100397 IP_VS_SCTP_S_CLOSED,
398 IP_VS_SCTP_S_LAST
399};
400
Simon Horman07dcc682014-09-30 10:50:06 +0900401/* Delta sequence info structure
402 * Each ip_vs_conn has 2 (output AND input seq. changes).
403 * Only used in the VS/NAT.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700404 */
405struct ip_vs_seq {
406 __u32 init_seq; /* Add delta from this seq */
407 __u32 delta; /* Delta in sequence numbers */
408 __u32 previous_delta; /* Delta in sequence numbers
Simon Horman07dcc682014-09-30 10:50:06 +0900409 * before last resized pkt */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700410};
411
Simon Horman07dcc682014-09-30 10:50:06 +0900412/* counters per cpu */
Hans Schillstromb17fc992011-01-03 14:44:56 +0100413struct ip_vs_counters {
Julian Anastasovcd67cd52015-02-06 09:44:44 +0200414 __u64 conns; /* connections scheduled */
415 __u64 inpkts; /* incoming packets */
416 __u64 outpkts; /* outgoing packets */
Hans Schillstromb17fc992011-01-03 14:44:56 +0100417 __u64 inbytes; /* incoming bytes */
418 __u64 outbytes; /* outgoing bytes */
419};
Simon Horman07dcc682014-09-30 10:50:06 +0900420/* Stats per cpu */
Hans Schillstromb17fc992011-01-03 14:44:56 +0100421struct ip_vs_cpu_stats {
Julian Anastasovcd67cd52015-02-06 09:44:44 +0200422 struct ip_vs_counters cnt;
Hans Schillstromb17fc992011-01-03 14:44:56 +0100423 struct u64_stats_sync syncp;
424};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700425
Simon Horman07dcc682014-09-30 10:50:06 +0900426/* IPVS statistics objects */
Sven Wegener3a14a3132008-08-10 18:24:41 +0000427struct ip_vs_estimator {
428 struct list_head list;
429
430 u64 last_inbytes;
431 u64 last_outbytes;
Julian Anastasovcd67cd52015-02-06 09:44:44 +0200432 u64 last_conns;
433 u64 last_inpkts;
434 u64 last_outpkts;
Sven Wegener3a14a3132008-08-10 18:24:41 +0000435
Julian Anastasovcd67cd52015-02-06 09:44:44 +0200436 u64 cps;
437 u64 inpps;
438 u64 outpps;
439 u64 inbps;
440 u64 outbps;
441};
442
443/*
444 * IPVS statistics object, 64-bit kernel version of struct ip_vs_stats_user
445 */
446struct ip_vs_kstats {
447 u64 conns; /* connections scheduled */
448 u64 inpkts; /* incoming packets */
449 u64 outpkts; /* outgoing packets */
450 u64 inbytes; /* incoming bytes */
451 u64 outbytes; /* outgoing bytes */
452
453 u64 cps; /* current connection rate */
454 u64 inpps; /* current in packet rate */
455 u64 outpps; /* current out packet rate */
456 u64 inbps; /* current in byte rate */
457 u64 outbps; /* current out byte rate */
Sven Wegener3a14a3132008-08-10 18:24:41 +0000458};
459
Eric Dumazetfd2c3ef2009-11-03 03:26:03 +0000460struct ip_vs_stats {
Julian Anastasovcd67cd52015-02-06 09:44:44 +0200461 struct ip_vs_kstats kstats; /* kernel statistics */
Sven Wegenere9c0ce22008-09-08 13:39:04 +0200462 struct ip_vs_estimator est; /* estimator */
Julian Anastasovb962abd2013-03-09 23:25:08 +0200463 struct ip_vs_cpu_stats __percpu *cpustats; /* per cpu counters */
Hans Schillstromb17fc992011-01-03 14:44:56 +0100464 spinlock_t lock; /* spin lock */
Julian Anastasovcd67cd52015-02-06 09:44:44 +0200465 struct ip_vs_kstats kstats0; /* reset values */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700466};
467
Arnaldo Carvalho de Melo14c85022005-12-27 02:43:12 -0200468struct dst_entry;
469struct iphdr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700470struct ip_vs_conn;
471struct ip_vs_app;
Arnaldo Carvalho de Melo14c85022005-12-27 02:43:12 -0200472struct sk_buff;
Hans Schillstrom252c6412011-01-03 14:44:46 +0100473struct ip_vs_proto_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700474
475struct ip_vs_protocol {
476 struct ip_vs_protocol *next;
477 char *name;
Julian Anastasov2ad17de2008-04-29 03:21:23 -0700478 u16 protocol;
479 u16 num_states;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700480 int dont_defrag;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700481
482 void (*init)(struct ip_vs_protocol *pp);
483
484 void (*exit)(struct ip_vs_protocol *pp);
485
Eric W. Biederman1281a9c22015-09-21 13:02:36 -0500486 int (*init_netns)(struct netns_ipvs *ipvs, struct ip_vs_proto_data *pd);
Hans Schillstrom252c6412011-01-03 14:44:46 +0100487
Eric W. Biederman1281a9c22015-09-21 13:02:36 -0500488 void (*exit_netns)(struct netns_ipvs *ipvs, struct ip_vs_proto_data *pd);
Hans Schillstrom252c6412011-01-03 14:44:46 +0100489
Eric W. Biedermand8f44c32015-09-21 13:02:43 -0500490 int (*conn_schedule)(struct netns_ipvs *ipvs,
491 int af, struct sk_buff *skb,
Hans Schillstrom93304192011-01-03 14:44:51 +0100492 struct ip_vs_proto_data *pd,
Jesper Dangaard Brouerd4383f02012-09-26 14:07:17 +0200493 int *verdict, struct ip_vs_conn **cpp,
494 struct ip_vs_iphdr *iph);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700495
496 struct ip_vs_conn *
Eric W. Biedermanab161972015-09-21 13:02:38 -0500497 (*conn_in_get)(struct netns_ipvs *ipvs,
498 int af,
Julius Volz51ef3482008-09-02 15:55:40 +0200499 const struct sk_buff *skb,
Alex Gartrell802c41a2015-08-26 09:40:32 -0700500 const struct ip_vs_iphdr *iph);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700501
502 struct ip_vs_conn *
Eric W. Biederman0cf705c8c2015-09-21 13:02:39 -0500503 (*conn_out_get)(struct netns_ipvs *ipvs,
504 int af,
Julius Volz51ef3482008-09-02 15:55:40 +0200505 const struct sk_buff *skb,
Alex Gartrell802c41a2015-08-26 09:40:32 -0700506 const struct ip_vs_iphdr *iph);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700507
Jesper Dangaard Brouerd4383f02012-09-26 14:07:17 +0200508 int (*snat_handler)(struct sk_buff *skb, struct ip_vs_protocol *pp,
509 struct ip_vs_conn *cp, struct ip_vs_iphdr *iph);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700510
Jesper Dangaard Brouerd4383f02012-09-26 14:07:17 +0200511 int (*dnat_handler)(struct sk_buff *skb, struct ip_vs_protocol *pp,
512 struct ip_vs_conn *cp, struct ip_vs_iphdr *iph);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700513
Julius Volz51ef3482008-09-02 15:55:40 +0200514 int (*csum_check)(int af, struct sk_buff *skb,
515 struct ip_vs_protocol *pp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700516
517 const char *(*state_name)(int state);
518
Simon Horman4a516f12011-09-16 14:11:49 +0900519 void (*state_transition)(struct ip_vs_conn *cp, int direction,
520 const struct sk_buff *skb,
521 struct ip_vs_proto_data *pd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700522
Eric W. Biederman19648912015-09-21 13:02:29 -0500523 int (*register_app)(struct netns_ipvs *ipvs, struct ip_vs_app *inc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700524
Eric W. Biederman19648912015-09-21 13:02:29 -0500525 void (*unregister_app)(struct netns_ipvs *ipvs, struct ip_vs_app *inc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700526
527 int (*app_conn_bind)(struct ip_vs_conn *cp);
528
Julian Anastasov0d796412010-10-17 16:46:17 +0300529 void (*debug_packet)(int af, struct ip_vs_protocol *pp,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700530 const struct sk_buff *skb,
531 int offset,
532 const char *msg);
533
Hans Schillstrom93304192011-01-03 14:44:51 +0100534 void (*timeout_change)(struct ip_vs_proto_data *pd, int flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700535};
536
Simon Horman07dcc682014-09-30 10:50:06 +0900537/* protocol data per netns */
Hans Schillstrom252c6412011-01-03 14:44:46 +0100538struct ip_vs_proto_data {
539 struct ip_vs_proto_data *next;
540 struct ip_vs_protocol *pp;
541 int *timeout_table; /* protocol timeout table */
542 atomic_t appcnt; /* counter of proto app incs. */
543 struct tcp_states_t *tcp_state_table;
544};
545
Joe Perches5c3a0fd2013-09-21 10:22:42 -0700546struct ip_vs_protocol *ip_vs_proto_get(unsigned short proto);
Eric W. Biederman18d6ade2015-09-21 13:02:01 -0500547struct ip_vs_proto_data *ip_vs_proto_data_get(struct netns_ipvs *ipvs,
Joe Perches5c3a0fd2013-09-21 10:22:42 -0700548 unsigned short proto);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700549
Simon Hormanf11017e2010-08-22 21:37:52 +0900550struct ip_vs_conn_param {
Eric W. Biedermane64e2b42015-09-21 13:01:42 -0500551 struct netns_ipvs *ipvs;
Simon Hormanf11017e2010-08-22 21:37:52 +0900552 const union nf_inet_addr *caddr;
553 const union nf_inet_addr *vaddr;
554 __be16 cport;
555 __be16 vport;
556 __u16 protocol;
557 u16 af;
Simon Horman85999282010-08-22 21:37:53 +0900558
559 const struct ip_vs_pe *pe;
560 char *pe_data;
561 __u8 pe_data_len;
Simon Hormanf11017e2010-08-22 21:37:52 +0900562};
563
Simon Horman07dcc682014-09-30 10:50:06 +0900564/* IP_VS structure allocated for each dynamically scheduled connection */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700565struct ip_vs_conn {
Changli Gao731109e2011-02-19 18:05:08 +0800566 struct hlist_node c_list; /* hashed list heads */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700567 /* Protocol, addresses and port numbers */
Hans Schillstrom6e67e582011-01-03 14:44:57 +0100568 __be16 cport;
Hans Schillstrom6e67e582011-01-03 14:44:57 +0100569 __be16 dport;
Julian Anastasov1845ed02013-03-21 11:58:11 +0200570 __be16 vport;
571 u16 af; /* address family */
Hans Schillstrom6e67e582011-01-03 14:44:57 +0100572 union nf_inet_addr caddr; /* client address */
573 union nf_inet_addr vaddr; /* virtual address */
574 union nf_inet_addr daddr; /* destination address */
575 volatile __u32 flags; /* status flags */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700576 __u16 protocol; /* Which protocol (TCP/UDP) */
Alex Gartrellba385282014-09-09 16:40:23 -0700577 __u16 daf; /* Address family of the dest */
Eric W. Biederman58dbc6f2015-09-21 13:01:41 -0500578 struct netns_ipvs *ipvs;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700579
580 /* counter and timer */
581 atomic_t refcnt; /* reference count */
582 struct timer_list timer; /* Expiration timer */
583 volatile unsigned long timeout; /* timeout */
584
585 /* Flags and state transition */
586 spinlock_t lock; /* lock for state transition */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700587 volatile __u16 state; /* state info */
Rumen G. Bogdanovskiefac5272007-11-07 02:36:55 -0800588 volatile __u16 old_state; /* old state, to be used for
589 * state transition triggerd
590 * synchronization
591 */
Julian Anastasov1845ed02013-03-21 11:58:11 +0200592 __u32 fwmark; /* Fire wall mark from skb */
Julian Anastasov749c42b2012-04-24 23:46:40 +0300593 unsigned long sync_endtime; /* jiffies + sent_retries */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700594
595 /* Control members */
596 struct ip_vs_conn *control; /* Master control connection */
597 atomic_t n_control; /* Number of controlled ones */
598 struct ip_vs_dest *dest; /* real server */
599 atomic_t in_pkts; /* incoming packet counter */
600
Simon Horman07dcc682014-09-30 10:50:06 +0900601 /* Packet transmitter for different forwarding methods. If it
602 * mangles the packet, it must return NF_DROP or better NF_STOLEN,
603 * otherwise this must be changed to a sk_buff **.
604 * NF_ACCEPT can be returned when destination is local.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700605 */
606 int (*packet_xmit)(struct sk_buff *skb, struct ip_vs_conn *cp,
Jesper Dangaard Brouerd4383f02012-09-26 14:07:17 +0200607 struct ip_vs_protocol *pp, struct ip_vs_iphdr *iph);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700608
609 /* Note: we can group the following members into a structure,
Simon Horman07dcc682014-09-30 10:50:06 +0900610 * in order to save more space, and the following members are
611 * only used in VS/NAT anyway
612 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700613 struct ip_vs_app *app; /* bound ip_vs_app object */
614 void *app_data; /* Application private data */
615 struct ip_vs_seq in_seq; /* incoming seq. struct */
616 struct ip_vs_seq out_seq; /* outgoing seq. struct */
Simon Horman85999282010-08-22 21:37:53 +0900617
Simon Hormane9e5eee2010-11-08 20:05:57 +0900618 const struct ip_vs_pe *pe;
Simon Horman85999282010-08-22 21:37:53 +0900619 char *pe_data;
620 __u8 pe_data_len;
Julian Anastasov088339a2013-03-21 11:58:10 +0200621
622 struct rcu_head rcu_head;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700623};
624
Simon Horman07dcc682014-09-30 10:50:06 +0900625/* Extended internal versions of struct ip_vs_service_user and ip_vs_dest_user
626 * for IPv6 support.
Julius Volzc860c6b2008-09-02 15:55:36 +0200627 *
Simon Horman07dcc682014-09-30 10:50:06 +0900628 * We need these to conveniently pass around service and destination
629 * options, but unfortunately, we also need to keep the old definitions to
630 * maintain userspace backwards compatibility for the setsockopt interface.
Julius Volzc860c6b2008-09-02 15:55:36 +0200631 */
632struct ip_vs_service_user_kern {
633 /* virtual service addresses */
634 u16 af;
635 u16 protocol;
636 union nf_inet_addr addr; /* virtual ip address */
Julian Anastasov0a925862013-04-17 23:50:49 +0300637 __be16 port;
Julius Volzc860c6b2008-09-02 15:55:36 +0200638 u32 fwmark; /* firwall mark of service */
639
640 /* virtual service options */
641 char *sched_name;
Simon Horman0d1e71b2010-08-22 21:37:54 +0900642 char *pe_name;
Eric Dumazet95c96172012-04-15 05:58:06 +0000643 unsigned int flags; /* virtual service flags */
644 unsigned int timeout; /* persistent timeout in sec */
Julian Anastasov0a925862013-04-17 23:50:49 +0300645 __be32 netmask; /* persistent netmask or plen */
Julius Volzc860c6b2008-09-02 15:55:36 +0200646};
647
648
649struct ip_vs_dest_user_kern {
650 /* destination server address */
651 union nf_inet_addr addr;
Julian Anastasov0a925862013-04-17 23:50:49 +0300652 __be16 port;
Julius Volzc860c6b2008-09-02 15:55:36 +0200653
654 /* real server options */
Eric Dumazet95c96172012-04-15 05:58:06 +0000655 unsigned int conn_flags; /* connection flags */
Julius Volzc860c6b2008-09-02 15:55:36 +0200656 int weight; /* destination weight */
657
658 /* thresholds for active connections */
659 u32 u_threshold; /* upper threshold */
660 u32 l_threshold; /* lower threshold */
Alex Gartrell6cff3392014-09-09 16:40:20 -0700661
662 /* Address family of addr */
663 u16 af;
Julius Volzc860c6b2008-09-02 15:55:36 +0200664};
665
666
667/*
Simon Horman07dcc682014-09-30 10:50:06 +0900668 * The information about the virtual service offered to the net and the
669 * forwarding entries.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700670 */
671struct ip_vs_service {
Julian Anastasovceec4c32013-03-22 11:46:53 +0200672 struct hlist_node s_list; /* for normal service table */
673 struct hlist_node f_list; /* for fwmark-based service table */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700674 atomic_t refcnt; /* reference counter */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700675
Julius Volze7ade462008-09-02 15:55:33 +0200676 u16 af; /* address family */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700677 __u16 protocol; /* which protocol (TCP/UDP) */
Julius Volze7ade462008-09-02 15:55:33 +0200678 union nf_inet_addr addr; /* IP address for virtual service */
Al Viro014d7302006-09-28 14:29:52 -0700679 __be16 port; /* port number for the service */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700680 __u32 fwmark; /* firewall mark of the service */
Eric Dumazet95c96172012-04-15 05:58:06 +0000681 unsigned int flags; /* service status flags */
682 unsigned int timeout; /* persistent timeout in ticks */
Julian Anastasov0a925862013-04-17 23:50:49 +0300683 __be32 netmask; /* grouping granularity, mask/plen */
Eric W. Biederman3109d2f2015-09-21 13:01:44 -0500684 struct netns_ipvs *ipvs;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700685
686 struct list_head destinations; /* real server d-linked list */
687 __u32 num_dests; /* number of servers */
688 struct ip_vs_stats stats; /* statistics for the service */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700689
690 /* for scheduling */
Julian Anastasovceec4c32013-03-22 11:46:53 +0200691 struct ip_vs_scheduler __rcu *scheduler; /* bound scheduler object */
Julian Anastasovba3a3ce2013-03-22 11:46:51 +0200692 spinlock_t sched_lock; /* lock sched_data */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700693 void *sched_data; /* scheduler application data */
Simon Horman85999282010-08-22 21:37:53 +0900694
695 /* alternate persistence engine */
Julian Anastasovceec4c32013-03-22 11:46:53 +0200696 struct ip_vs_pe __rcu *pe;
697
698 struct rcu_head rcu_head;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700699};
700
Julian Anastasov026ace02013-03-21 11:58:06 +0200701/* Information for cached dst */
702struct ip_vs_dest_dst {
703 struct dst_entry *dst_cache; /* destination cache entry */
704 u32 dst_cookie;
705 union nf_inet_addr dst_saddr;
706 struct rcu_head rcu_head;
707};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700708
Simon Horman07dcc682014-09-30 10:50:06 +0900709/* The real server destination forwarding entry with ip address, port number,
710 * and so on.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700711 */
712struct ip_vs_dest {
713 struct list_head n_list; /* for the dests in the service */
Julian Anastasov276472e2013-03-21 11:58:08 +0200714 struct hlist_node d_list; /* for table with all the dests */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700715
Julius Volze7ade462008-09-02 15:55:33 +0200716 u16 af; /* address family */
Al Viro014d7302006-09-28 14:29:52 -0700717 __be16 port; /* port number of the server */
Hans Schillstromf2431e62011-01-03 14:45:00 +0100718 union nf_inet_addr addr; /* IP address of the server */
Eric Dumazet95c96172012-04-15 05:58:06 +0000719 volatile unsigned int flags; /* dest status flags */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700720 atomic_t conn_flags; /* flags to copy to conn */
721 atomic_t weight; /* server weight */
722
723 atomic_t refcnt; /* reference counter */
724 struct ip_vs_stats stats; /* statistics */
Julian Anastasovbcbde4c2013-09-12 11:21:07 +0300725 unsigned long idle_start; /* start time, jiffies */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700726
727 /* connection counters and thresholds */
728 atomic_t activeconns; /* active connections */
729 atomic_t inactconns; /* inactive connections */
730 atomic_t persistconns; /* persistent connections */
731 __u32 u_threshold; /* upper threshold */
732 __u32 l_threshold; /* lower threshold */
733
734 /* for destination cache */
735 spinlock_t dst_lock; /* lock of dst_cache */
Julian Anastasov026ace02013-03-21 11:58:06 +0200736 struct ip_vs_dest_dst __rcu *dest_dst; /* cached dst info */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700737
738 /* for virtual service */
Julian Anastasovbcbde4c2013-09-12 11:21:07 +0300739 struct ip_vs_service __rcu *svc; /* service it belongs to */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700740 __u16 protocol; /* which protocol (TCP/UDP) */
Al Viro014d7302006-09-28 14:29:52 -0700741 __be16 vport; /* virtual port number */
Hans Schillstromf2431e62011-01-03 14:45:00 +0100742 union nf_inet_addr vaddr; /* virtual IP address */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700743 __u32 vfwmark; /* firewall mark of service */
Julian Anastasov276472e2013-03-21 11:58:08 +0200744
Julian Anastasov578bc3e2013-03-22 11:46:49 +0200745 struct list_head t_list; /* in dest_trash */
Julian Anastasov276472e2013-03-21 11:58:08 +0200746 unsigned int in_rs_table:1; /* we are in rs_table */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700747};
748
Simon Horman07dcc682014-09-30 10:50:06 +0900749/* The scheduler object */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700750struct ip_vs_scheduler {
751 struct list_head n_list; /* d-linked list head */
752 char *name; /* scheduler name */
753 atomic_t refcnt; /* reference counter */
754 struct module *module; /* THIS_MODULE/NULL */
755
756 /* scheduler initializing service */
757 int (*init_service)(struct ip_vs_service *svc);
758 /* scheduling service finish */
Julian Anastasoved3ffc42013-03-22 11:46:50 +0200759 void (*done_service)(struct ip_vs_service *svc);
Julian Anastasov6b6df462013-03-22 11:46:37 +0200760 /* dest is linked */
761 int (*add_dest)(struct ip_vs_service *svc, struct ip_vs_dest *dest);
762 /* dest is unlinked */
763 int (*del_dest)(struct ip_vs_service *svc, struct ip_vs_dest *dest);
764 /* dest is updated */
765 int (*upd_dest)(struct ip_vs_service *svc, struct ip_vs_dest *dest);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700766
767 /* selecting a server from the given service */
768 struct ip_vs_dest* (*schedule)(struct ip_vs_service *svc,
Julian Anastasovbba54de2013-06-16 09:09:36 +0300769 const struct sk_buff *skb,
770 struct ip_vs_iphdr *iph);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700771};
772
Simon Horman85999282010-08-22 21:37:53 +0900773/* The persistence engine object */
774struct ip_vs_pe {
775 struct list_head n_list; /* d-linked list head */
776 char *name; /* scheduler name */
777 atomic_t refcnt; /* reference counter */
778 struct module *module; /* THIS_MODULE/NULL */
779
780 /* get the connection template, if any */
781 int (*fill_param)(struct ip_vs_conn_param *p, struct sk_buff *skb);
782 bool (*ct_match)(const struct ip_vs_conn_param *p,
783 struct ip_vs_conn *ct);
784 u32 (*hashkey_raw)(const struct ip_vs_conn_param *p, u32 initval,
785 bool inverse);
Simon Hormana3c918a2010-08-22 21:37:53 +0900786 int (*show_pe_data)(const struct ip_vs_conn *cp, char *buf);
Simon Horman85999282010-08-22 21:37:53 +0900787};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700788
Simon Horman07dcc682014-09-30 10:50:06 +0900789/* The application module object (a.k.a. app incarnation) */
Eric Dumazetfd2c3ef2009-11-03 03:26:03 +0000790struct ip_vs_app {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700791 struct list_head a_list; /* member in app list */
792 int type; /* IP_VS_APP_TYPE_xxx */
793 char *name; /* application module name */
794 __u16 protocol;
795 struct module *module; /* THIS_MODULE/NULL */
796 struct list_head incs_list; /* list of incarnations */
797
798 /* members for application incarnations */
799 struct list_head p_list; /* member in proto app list */
800 struct ip_vs_app *app; /* its real application */
Al Viro014d7302006-09-28 14:29:52 -0700801 __be16 port; /* port number in net order */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700802 atomic_t usecnt; /* usage counter */
Julian Anastasov363c97d2013-03-21 11:58:07 +0200803 struct rcu_head rcu_head;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700804
Simon Horman07dcc682014-09-30 10:50:06 +0900805 /* output hook: Process packet in inout direction, diff set for TCP.
Julian Anastasov8b27b102010-10-17 16:17:20 +0300806 * Return: 0=Error, 1=Payload Not Mangled/Mangled but checksum is ok,
807 * 2=Mangled but checksum was not updated
808 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700809 int (*pkt_out)(struct ip_vs_app *, struct ip_vs_conn *,
Herbert Xu3db05fe2007-10-15 00:53:15 -0700810 struct sk_buff *, int *diff);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700811
Simon Horman07dcc682014-09-30 10:50:06 +0900812 /* input hook: Process packet in outin direction, diff set for TCP.
Julian Anastasov8b27b102010-10-17 16:17:20 +0300813 * Return: 0=Error, 1=Payload Not Mangled/Mangled but checksum is ok,
814 * 2=Mangled but checksum was not updated
815 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700816 int (*pkt_in)(struct ip_vs_app *, struct ip_vs_conn *,
Herbert Xu3db05fe2007-10-15 00:53:15 -0700817 struct sk_buff *, int *diff);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700818
819 /* ip_vs_app initializer */
820 int (*init_conn)(struct ip_vs_app *, struct ip_vs_conn *);
821
822 /* ip_vs_app finish */
823 int (*done_conn)(struct ip_vs_app *, struct ip_vs_conn *);
824
825
826 /* not used now */
827 int (*bind_conn)(struct ip_vs_app *, struct ip_vs_conn *,
828 struct ip_vs_protocol *);
829
830 void (*unbind_conn)(struct ip_vs_app *, struct ip_vs_conn *);
831
832 int * timeout_table;
833 int * timeouts;
834 int timeouts_size;
835
836 int (*conn_schedule)(struct sk_buff *skb, struct ip_vs_app *app,
837 int *verdict, struct ip_vs_conn **cpp);
838
839 struct ip_vs_conn *
840 (*conn_in_get)(const struct sk_buff *skb, struct ip_vs_app *app,
Jesper Dangaard Brouerd4383f02012-09-26 14:07:17 +0200841 const struct iphdr *iph, int inverse);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700842
843 struct ip_vs_conn *
844 (*conn_out_get)(const struct sk_buff *skb, struct ip_vs_app *app,
Jesper Dangaard Brouerd4383f02012-09-26 14:07:17 +0200845 const struct iphdr *iph, int inverse);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700846
847 int (*state_transition)(struct ip_vs_conn *cp, int direction,
848 const struct sk_buff *skb,
849 struct ip_vs_app *app);
850
851 void (*timeout_change)(struct ip_vs_app *app, int flags);
852};
853
Pablo Neira Ayusof73181c2012-05-08 19:40:30 +0200854struct ipvs_master_sync_state {
855 struct list_head sync_queue;
856 struct ip_vs_sync_buff *sync_buff;
Zhang Yanfei07995672013-04-29 11:55:10 -0700857 unsigned long sync_queue_len;
Pablo Neira Ayusof73181c2012-05-08 19:40:30 +0200858 unsigned int sync_queue_delay;
859 struct task_struct *master_thread;
860 struct delayed_work master_wakeup_work;
861 struct netns_ipvs *ipvs;
862};
863
Julian Anastasov578bc3e2013-03-22 11:46:49 +0200864/* How much time to keep dests in trash */
865#define IP_VS_DEST_TRASH_PERIOD (120 * HZ)
866
Julian Anastasove4ff6752015-07-26 15:03:27 +0300867struct ipvs_sync_daemon_cfg {
Julian Anastasovd3328812015-07-26 15:03:28 +0300868 union nf_inet_addr mcast_group;
Julian Anastasove4ff6752015-07-26 15:03:27 +0300869 int syncid;
870 u16 sync_maxlen;
Julian Anastasovd3328812015-07-26 15:03:28 +0300871 u16 mcast_port;
872 u8 mcast_af;
873 u8 mcast_ttl;
Julian Anastasove4ff6752015-07-26 15:03:27 +0300874 /* multicast interface name */
875 char mcast_ifn[IP_VS_IFNAME_MAXLEN];
876};
877
Julian Anastasov2553d062011-03-04 12:18:07 +0200878/* IPVS in network namespace */
879struct netns_ipvs {
880 int gen; /* Generation */
Hans Schillstrom7a4f0762011-05-03 22:09:31 +0200881 int enable; /* enable like nf_hooks do */
Simon Horman07dcc682014-09-30 10:50:06 +0900882 /* Hash table: for real service lookups */
Julian Anastasov2553d062011-03-04 12:18:07 +0200883 #define IP_VS_RTAB_BITS 4
884 #define IP_VS_RTAB_SIZE (1 << IP_VS_RTAB_BITS)
885 #define IP_VS_RTAB_MASK (IP_VS_RTAB_SIZE - 1)
886
Julian Anastasov276472e2013-03-21 11:58:08 +0200887 struct hlist_head rs_table[IP_VS_RTAB_SIZE];
Julian Anastasov2553d062011-03-04 12:18:07 +0200888 /* ip_vs_app */
889 struct list_head app_list;
Julian Anastasov2553d062011-03-04 12:18:07 +0200890 /* ip_vs_proto */
891 #define IP_VS_PROTO_TAB_SIZE 32 /* must be power of 2 */
892 struct ip_vs_proto_data *proto_data_table[IP_VS_PROTO_TAB_SIZE];
893 /* ip_vs_proto_tcp */
894#ifdef CONFIG_IP_VS_PROTO_TCP
895 #define TCP_APP_TAB_BITS 4
896 #define TCP_APP_TAB_SIZE (1 << TCP_APP_TAB_BITS)
897 #define TCP_APP_TAB_MASK (TCP_APP_TAB_SIZE - 1)
898 struct list_head tcp_apps[TCP_APP_TAB_SIZE];
Julian Anastasov2553d062011-03-04 12:18:07 +0200899#endif
900 /* ip_vs_proto_udp */
901#ifdef CONFIG_IP_VS_PROTO_UDP
902 #define UDP_APP_TAB_BITS 4
903 #define UDP_APP_TAB_SIZE (1 << UDP_APP_TAB_BITS)
904 #define UDP_APP_TAB_MASK (UDP_APP_TAB_SIZE - 1)
905 struct list_head udp_apps[UDP_APP_TAB_SIZE];
Julian Anastasov2553d062011-03-04 12:18:07 +0200906#endif
907 /* ip_vs_proto_sctp */
908#ifdef CONFIG_IP_VS_PROTO_SCTP
909 #define SCTP_APP_TAB_BITS 4
910 #define SCTP_APP_TAB_SIZE (1 << SCTP_APP_TAB_BITS)
911 #define SCTP_APP_TAB_MASK (SCTP_APP_TAB_SIZE - 1)
912 /* Hash table for SCTP application incarnations */
913 struct list_head sctp_apps[SCTP_APP_TAB_SIZE];
Julian Anastasov2553d062011-03-04 12:18:07 +0200914#endif
915 /* ip_vs_conn */
Simon Horman07dcc682014-09-30 10:50:06 +0900916 atomic_t conn_count; /* connection counter */
Julian Anastasov2553d062011-03-04 12:18:07 +0200917
918 /* ip_vs_ctl */
Julian Anastasov2a0751a2011-03-04 12:20:35 +0200919 struct ip_vs_stats tot_stats; /* Statistics & est. */
Julian Anastasov2553d062011-03-04 12:18:07 +0200920
921 int num_services; /* no of virtual services */
Simon Hormanf2247fb2011-02-04 18:33:02 +0900922
Julian Anastasov2553d062011-03-04 12:18:07 +0200923 /* Trash for destinations */
924 struct list_head dest_trash;
Julian Anastasov578bc3e2013-03-22 11:46:49 +0200925 spinlock_t dest_trash_lock;
926 struct timer_list dest_trash_timer; /* expiration timer */
Julian Anastasov2553d062011-03-04 12:18:07 +0200927 /* Service counters */
928 atomic_t ftpsvc_counter;
929 atomic_t nullsvc_counter;
930
Simon Hormanf2247fb2011-02-04 18:33:02 +0900931#ifdef CONFIG_SYSCTL
932 /* 1/rate drop and drop-entry variables */
933 struct delayed_work defense_work; /* Work handler */
934 int drop_rate;
935 int drop_counter;
936 atomic_t dropentry;
937 /* locks in ctl.c */
938 spinlock_t dropentry_lock; /* drop entry handling */
939 spinlock_t droppacket_lock; /* drop packet handling */
940 spinlock_t securetcp_lock; /* state and timeout tables */
941
Julian Anastasov2553d062011-03-04 12:18:07 +0200942 /* sys-ctl struct */
943 struct ctl_table_header *sysctl_hdr;
944 struct ctl_table *sysctl_tbl;
Simon Hormanf2247fb2011-02-04 18:33:02 +0900945#endif
946
Julian Anastasov2553d062011-03-04 12:18:07 +0200947 /* sysctl variables */
948 int sysctl_amemthresh;
949 int sysctl_am_droprate;
950 int sysctl_drop_entry;
951 int sysctl_drop_packet;
952 int sysctl_secure_tcp;
953#ifdef CONFIG_IP_VS_NFCT
954 int sysctl_conntrack;
955#endif
956 int sysctl_snat_reroute;
957 int sysctl_sync_ver;
Pablo Neira Ayusof73181c2012-05-08 19:40:30 +0200958 int sysctl_sync_ports;
Julian Anastasov4d0c8752013-06-24 22:44:41 +0300959 int sysctl_sync_persist_mode;
Zhang Yanfei07995672013-04-29 11:55:10 -0700960 unsigned long sysctl_sync_qlen_max;
Pablo Neira Ayuso1c003b12012-05-08 19:39:49 +0200961 int sysctl_sync_sock_size;
Julian Anastasov2553d062011-03-04 12:18:07 +0200962 int sysctl_cache_bypass;
963 int sysctl_expire_nodest_conn;
Alexander Frolkinc6c96c12013-06-13 08:56:15 +0100964 int sysctl_sloppy_tcp;
965 int sysctl_sloppy_sctp;
Julian Anastasov2553d062011-03-04 12:18:07 +0200966 int sysctl_expire_quiescent_template;
967 int sysctl_sync_threshold[2];
Julian Anastasov749c42b2012-04-24 23:46:40 +0300968 unsigned int sysctl_sync_refresh_period;
969 int sysctl_sync_retries;
Julian Anastasov2553d062011-03-04 12:18:07 +0200970 int sysctl_nat_icmp_send;
Julian Anastasov3654e612012-07-20 11:59:53 +0300971 int sysctl_pmtu_disc;
Julian Anastasov0c125822013-03-09 23:25:04 +0200972 int sysctl_backup_only;
Marcelo Ricardo Leitnerd752c362015-02-23 15:02:34 -0300973 int sysctl_conn_reuse_mode;
Alex Gartrell94485fe2015-08-26 09:40:34 -0700974 int sysctl_schedule_icmp;
Alex Gartrell4e478092015-09-14 23:23:05 -0700975 int sysctl_ignore_tunneled;
Julian Anastasov2553d062011-03-04 12:18:07 +0200976
977 /* ip_vs_lblc */
978 int sysctl_lblc_expiration;
979 struct ctl_table_header *lblc_ctl_header;
980 struct ctl_table *lblc_ctl_table;
981 /* ip_vs_lblcr */
982 int sysctl_lblcr_expiration;
983 struct ctl_table_header *lblcr_ctl_header;
984 struct ctl_table *lblcr_ctl_table;
985 /* ip_vs_est */
986 struct list_head est_list; /* estimator list */
987 spinlock_t est_lock;
988 struct timer_list est_timer; /* Estimation timer */
989 /* ip_vs_sync */
Julian Anastasov2553d062011-03-04 12:18:07 +0200990 spinlock_t sync_lock;
Pablo Neira Ayusof73181c2012-05-08 19:40:30 +0200991 struct ipvs_master_sync_state *ms;
Julian Anastasov2553d062011-03-04 12:18:07 +0200992 spinlock_t sync_buff_lock;
Pablo Neira Ayusof73181c2012-05-08 19:40:30 +0200993 struct task_struct **backup_threads;
994 int threads_mask;
Julian Anastasov2553d062011-03-04 12:18:07 +0200995 volatile int sync_state;
Hans Schillstromae1d48b2011-10-11 10:54:35 +0900996 struct mutex sync_mutex;
Julian Anastasove4ff6752015-07-26 15:03:27 +0300997 struct ipvs_sync_daemon_cfg mcfg; /* Master Configuration */
998 struct ipvs_sync_daemon_cfg bcfg; /* Backup Configuration */
Julian Anastasov2553d062011-03-04 12:18:07 +0200999 /* net name space ptr */
1000 struct net *net; /* Needed by timer routines */
Simon Horman07dcc682014-09-30 10:50:06 +09001001 /* Number of heterogeneous destinations, needed becaus heterogeneous
1002 * are not supported when synchronization is enabled.
1003 */
Alex Gartrell391f503d2014-09-09 16:40:24 -07001004 unsigned int mixed_address_family_dests;
Julian Anastasov2553d062011-03-04 12:18:07 +02001005};
Linus Torvalds1da177e2005-04-16 15:20:36 -07001006
Simon Horman59e03502011-02-04 18:33:01 +09001007#define DEFAULT_SYNC_THRESHOLD 3
1008#define DEFAULT_SYNC_PERIOD 50
Simon Horman7532e8d2011-02-04 18:33:01 +09001009#define DEFAULT_SYNC_VER 1
Alexander Frolkinc6c96c12013-06-13 08:56:15 +01001010#define DEFAULT_SLOPPY_TCP 0
1011#define DEFAULT_SLOPPY_SCTP 0
Julian Anastasov749c42b2012-04-24 23:46:40 +03001012#define DEFAULT_SYNC_REFRESH_PERIOD (0U * HZ)
1013#define DEFAULT_SYNC_RETRIES 0
Pablo Neira Ayuso1c003b12012-05-08 19:39:49 +02001014#define IPVS_SYNC_WAKEUP_RATE 8
1015#define IPVS_SYNC_QLEN_MAX (IPVS_SYNC_WAKEUP_RATE * 4)
1016#define IPVS_SYNC_SEND_DELAY (HZ / 50)
1017#define IPVS_SYNC_CHECK_PERIOD HZ
Julian Anastasov749c42b2012-04-24 23:46:40 +03001018#define IPVS_SYNC_FLUSH_TIME (HZ * 2)
Pablo Neira Ayusof73181c2012-05-08 19:40:30 +02001019#define IPVS_SYNC_PORTS_MAX (1 << 6)
Simon Horman59e03502011-02-04 18:33:01 +09001020
1021#ifdef CONFIG_SYSCTL
1022
1023static inline int sysctl_sync_threshold(struct netns_ipvs *ipvs)
1024{
1025 return ipvs->sysctl_sync_threshold[0];
1026}
1027
1028static inline int sysctl_sync_period(struct netns_ipvs *ipvs)
1029{
Julian Anastasov749c42b2012-04-24 23:46:40 +03001030 return ACCESS_ONCE(ipvs->sysctl_sync_threshold[1]);
1031}
1032
1033static inline unsigned int sysctl_sync_refresh_period(struct netns_ipvs *ipvs)
1034{
1035 return ACCESS_ONCE(ipvs->sysctl_sync_refresh_period);
1036}
1037
1038static inline int sysctl_sync_retries(struct netns_ipvs *ipvs)
1039{
1040 return ipvs->sysctl_sync_retries;
Simon Horman59e03502011-02-04 18:33:01 +09001041}
1042
Simon Horman7532e8d2011-02-04 18:33:01 +09001043static inline int sysctl_sync_ver(struct netns_ipvs *ipvs)
1044{
1045 return ipvs->sysctl_sync_ver;
1046}
1047
Alexander Frolkinc6c96c12013-06-13 08:56:15 +01001048static inline int sysctl_sloppy_tcp(struct netns_ipvs *ipvs)
1049{
1050 return ipvs->sysctl_sloppy_tcp;
1051}
1052
1053static inline int sysctl_sloppy_sctp(struct netns_ipvs *ipvs)
1054{
1055 return ipvs->sysctl_sloppy_sctp;
1056}
1057
Pablo Neira Ayusof73181c2012-05-08 19:40:30 +02001058static inline int sysctl_sync_ports(struct netns_ipvs *ipvs)
1059{
1060 return ACCESS_ONCE(ipvs->sysctl_sync_ports);
1061}
1062
Julian Anastasov4d0c8752013-06-24 22:44:41 +03001063static inline int sysctl_sync_persist_mode(struct netns_ipvs *ipvs)
1064{
1065 return ipvs->sysctl_sync_persist_mode;
1066}
1067
Zhang Yanfei07995672013-04-29 11:55:10 -07001068static inline unsigned long sysctl_sync_qlen_max(struct netns_ipvs *ipvs)
Pablo Neira Ayuso1c003b12012-05-08 19:39:49 +02001069{
1070 return ipvs->sysctl_sync_qlen_max;
1071}
1072
1073static inline int sysctl_sync_sock_size(struct netns_ipvs *ipvs)
1074{
1075 return ipvs->sysctl_sync_sock_size;
1076}
1077
Julian Anastasov3654e612012-07-20 11:59:53 +03001078static inline int sysctl_pmtu_disc(struct netns_ipvs *ipvs)
1079{
1080 return ipvs->sysctl_pmtu_disc;
1081}
1082
Julian Anastasov0c125822013-03-09 23:25:04 +02001083static inline int sysctl_backup_only(struct netns_ipvs *ipvs)
1084{
1085 return ipvs->sync_state & IP_VS_STATE_BACKUP &&
1086 ipvs->sysctl_backup_only;
1087}
1088
Marcelo Ricardo Leitnerd752c362015-02-23 15:02:34 -03001089static inline int sysctl_conn_reuse_mode(struct netns_ipvs *ipvs)
1090{
1091 return ipvs->sysctl_conn_reuse_mode;
1092}
1093
Alex Gartrell94485fe2015-08-26 09:40:34 -07001094static inline int sysctl_schedule_icmp(struct netns_ipvs *ipvs)
1095{
1096 return ipvs->sysctl_schedule_icmp;
1097}
1098
Alex Gartrell4e478092015-09-14 23:23:05 -07001099static inline int sysctl_ignore_tunneled(struct netns_ipvs *ipvs)
1100{
1101 return ipvs->sysctl_ignore_tunneled;
1102}
1103
Simon Horman59e03502011-02-04 18:33:01 +09001104#else
1105
1106static inline int sysctl_sync_threshold(struct netns_ipvs *ipvs)
1107{
1108 return DEFAULT_SYNC_THRESHOLD;
1109}
1110
1111static inline int sysctl_sync_period(struct netns_ipvs *ipvs)
1112{
1113 return DEFAULT_SYNC_PERIOD;
1114}
1115
Julian Anastasov749c42b2012-04-24 23:46:40 +03001116static inline unsigned int sysctl_sync_refresh_period(struct netns_ipvs *ipvs)
1117{
1118 return DEFAULT_SYNC_REFRESH_PERIOD;
1119}
1120
1121static inline int sysctl_sync_retries(struct netns_ipvs *ipvs)
1122{
1123 return DEFAULT_SYNC_RETRIES & 3;
1124}
1125
Simon Horman7532e8d2011-02-04 18:33:01 +09001126static inline int sysctl_sync_ver(struct netns_ipvs *ipvs)
1127{
1128 return DEFAULT_SYNC_VER;
1129}
1130
Alexander Frolkinc6c96c12013-06-13 08:56:15 +01001131static inline int sysctl_sloppy_tcp(struct netns_ipvs *ipvs)
1132{
1133 return DEFAULT_SLOPPY_TCP;
1134}
1135
1136static inline int sysctl_sloppy_sctp(struct netns_ipvs *ipvs)
1137{
1138 return DEFAULT_SLOPPY_SCTP;
1139}
1140
Pablo Neira Ayusof73181c2012-05-08 19:40:30 +02001141static inline int sysctl_sync_ports(struct netns_ipvs *ipvs)
1142{
1143 return 1;
1144}
1145
Julian Anastasov4d0c8752013-06-24 22:44:41 +03001146static inline int sysctl_sync_persist_mode(struct netns_ipvs *ipvs)
1147{
1148 return 0;
1149}
1150
Zhang Yanfei07995672013-04-29 11:55:10 -07001151static inline unsigned long sysctl_sync_qlen_max(struct netns_ipvs *ipvs)
Pablo Neira Ayuso1c003b12012-05-08 19:39:49 +02001152{
1153 return IPVS_SYNC_QLEN_MAX;
1154}
1155
1156static inline int sysctl_sync_sock_size(struct netns_ipvs *ipvs)
1157{
1158 return 0;
1159}
1160
Julian Anastasov3654e612012-07-20 11:59:53 +03001161static inline int sysctl_pmtu_disc(struct netns_ipvs *ipvs)
1162{
1163 return 1;
1164}
1165
Julian Anastasov0c125822013-03-09 23:25:04 +02001166static inline int sysctl_backup_only(struct netns_ipvs *ipvs)
1167{
1168 return 0;
1169}
1170
Marcelo Ricardo Leitnerd752c362015-02-23 15:02:34 -03001171static inline int sysctl_conn_reuse_mode(struct netns_ipvs *ipvs)
1172{
1173 return 1;
1174}
1175
Alex Gartrell94485fe2015-08-26 09:40:34 -07001176static inline int sysctl_schedule_icmp(struct netns_ipvs *ipvs)
1177{
1178 return 0;
1179}
1180
Alex Gartrell4e478092015-09-14 23:23:05 -07001181static inline int sysctl_ignore_tunneled(struct netns_ipvs *ipvs)
1182{
1183 return 0;
1184}
1185
Simon Horman59e03502011-02-04 18:33:01 +09001186#endif
1187
Simon Horman07dcc682014-09-30 10:50:06 +09001188/* IPVS core functions
1189 * (from ip_vs_core.c)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001190 */
Joe Perches5c3a0fd2013-09-21 10:22:42 -07001191const char *ip_vs_proto_name(unsigned int proto);
1192void ip_vs_init_hash_table(struct list_head *table, int rows);
Sven Wegenerafdd6142008-08-10 09:18:01 +00001193#define IP_VS_INIT_HASH_TABLE(t) ip_vs_init_hash_table((t), ARRAY_SIZE((t)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001194
Linus Torvalds1da177e2005-04-16 15:20:36 -07001195#define IP_VS_APP_TYPE_FTP 1
1196
Simon Horman07dcc682014-09-30 10:50:06 +09001197/* ip_vs_conn handling functions
1198 * (from ip_vs_conn.c)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001199 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001200enum {
1201 IP_VS_DIR_INPUT = 0,
1202 IP_VS_DIR_OUTPUT,
1203 IP_VS_DIR_INPUT_ONLY,
1204 IP_VS_DIR_LAST,
1205};
1206
Eric W. Biederman19913de2015-09-21 13:01:43 -05001207static inline void ip_vs_conn_fill_param(struct netns_ipvs *ipvs, int af, int protocol,
Simon Hormanf11017e2010-08-22 21:37:52 +09001208 const union nf_inet_addr *caddr,
1209 __be16 cport,
1210 const union nf_inet_addr *vaddr,
1211 __be16 vport,
1212 struct ip_vs_conn_param *p)
1213{
Eric W. Biederman19913de2015-09-21 13:01:43 -05001214 p->ipvs = ipvs;
Simon Hormanf11017e2010-08-22 21:37:52 +09001215 p->af = af;
1216 p->protocol = protocol;
1217 p->caddr = caddr;
1218 p->cport = cport;
1219 p->vaddr = vaddr;
1220 p->vport = vport;
Simon Horman85999282010-08-22 21:37:53 +09001221 p->pe = NULL;
1222 p->pe_data = NULL;
Simon Hormanf11017e2010-08-22 21:37:52 +09001223}
Julius Volz28364a52008-09-02 15:55:43 +02001224
Simon Hormanf11017e2010-08-22 21:37:52 +09001225struct ip_vs_conn *ip_vs_conn_in_get(const struct ip_vs_conn_param *p);
1226struct ip_vs_conn *ip_vs_ct_in_get(const struct ip_vs_conn_param *p);
Julius Volz28364a52008-09-02 15:55:43 +02001227
Eric W. Biedermanab161972015-09-21 13:02:38 -05001228struct ip_vs_conn * ip_vs_conn_in_get_proto(struct netns_ipvs *ipvs, int af,
1229 const struct sk_buff *skb,
Alex Gartrell802c41a2015-08-26 09:40:32 -07001230 const struct ip_vs_iphdr *iph);
Simon Horman5c0d2372010-08-02 17:12:44 +02001231
Simon Hormanf11017e2010-08-22 21:37:52 +09001232struct ip_vs_conn *ip_vs_conn_out_get(const struct ip_vs_conn_param *p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001233
Eric W. Biederman0cf705c8c2015-09-21 13:02:39 -05001234struct ip_vs_conn * ip_vs_conn_out_get_proto(struct netns_ipvs *ipvs, int af,
1235 const struct sk_buff *skb,
Alex Gartrell802c41a2015-08-26 09:40:32 -07001236 const struct ip_vs_iphdr *iph);
Simon Horman5c0d2372010-08-02 17:12:44 +02001237
Julian Anastasov088339a2013-03-21 11:58:10 +02001238/* Get reference to gain full access to conn.
1239 * By default, RCU read-side critical sections have access only to
1240 * conn fields and its PE data, see ip_vs_conn_rcu_free() for reference.
1241 */
1242static inline bool __ip_vs_conn_get(struct ip_vs_conn *cp)
1243{
1244 return atomic_inc_not_zero(&cp->refcnt);
1245}
1246
Linus Torvalds1da177e2005-04-16 15:20:36 -07001247/* put back the conn without restarting its timer */
1248static inline void __ip_vs_conn_put(struct ip_vs_conn *cp)
1249{
Peter Zijlstra4e857c52014-03-17 18:06:10 +01001250 smp_mb__before_atomic();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001251 atomic_dec(&cp->refcnt);
1252}
Joe Perches5c3a0fd2013-09-21 10:22:42 -07001253void ip_vs_conn_put(struct ip_vs_conn *cp);
1254void ip_vs_conn_fill_cport(struct ip_vs_conn *cp, __be16 cport);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001255
Alex Gartrellba385282014-09-09 16:40:23 -07001256struct ip_vs_conn *ip_vs_conn_new(const struct ip_vs_conn_param *p, int dest_af,
Simon Hormanf11017e2010-08-22 21:37:52 +09001257 const union nf_inet_addr *daddr,
Eric Dumazet95c96172012-04-15 05:58:06 +00001258 __be16 dport, unsigned int flags,
Hans Schillstrom0e051e62010-11-19 14:25:07 +01001259 struct ip_vs_dest *dest, __u32 fwmark);
Joe Perches5c3a0fd2013-09-21 10:22:42 -07001260void ip_vs_conn_expire_now(struct ip_vs_conn *cp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001261
Joe Perches5c3a0fd2013-09-21 10:22:42 -07001262const char *ip_vs_state_name(__u16 proto, int state);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001263
Joe Perches5c3a0fd2013-09-21 10:22:42 -07001264void ip_vs_tcp_conn_listen(struct net *net, struct ip_vs_conn *cp);
1265int ip_vs_check_template(struct ip_vs_conn *ct);
Eric W. Biederman423b5592015-09-21 13:02:24 -05001266void ip_vs_random_dropentry(struct netns_ipvs *ipvs);
Joe Perches5c3a0fd2013-09-21 10:22:42 -07001267int ip_vs_conn_init(void);
1268void ip_vs_conn_cleanup(void);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001269
1270static inline void ip_vs_control_del(struct ip_vs_conn *cp)
1271{
1272 struct ip_vs_conn *ctl_cp = cp->control;
1273 if (!ctl_cp) {
Julius Volzcfc78c52008-09-02 15:55:53 +02001274 IP_VS_ERR_BUF("request control DEL for uncontrolled: "
1275 "%s:%d to %s:%d\n",
1276 IP_VS_DBG_ADDR(cp->af, &cp->caddr),
1277 ntohs(cp->cport),
1278 IP_VS_DBG_ADDR(cp->af, &cp->vaddr),
1279 ntohs(cp->vport));
1280
Linus Torvalds1da177e2005-04-16 15:20:36 -07001281 return;
1282 }
1283
Julius Volzcfc78c52008-09-02 15:55:53 +02001284 IP_VS_DBG_BUF(7, "DELeting control for: "
1285 "cp.dst=%s:%d ctl_cp.dst=%s:%d\n",
1286 IP_VS_DBG_ADDR(cp->af, &cp->caddr),
1287 ntohs(cp->cport),
1288 IP_VS_DBG_ADDR(cp->af, &ctl_cp->caddr),
1289 ntohs(ctl_cp->cport));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001290
1291 cp->control = NULL;
1292 if (atomic_read(&ctl_cp->n_control) == 0) {
Julius Volzcfc78c52008-09-02 15:55:53 +02001293 IP_VS_ERR_BUF("BUG control DEL with n=0 : "
1294 "%s:%d to %s:%d\n",
1295 IP_VS_DBG_ADDR(cp->af, &cp->caddr),
1296 ntohs(cp->cport),
1297 IP_VS_DBG_ADDR(cp->af, &cp->vaddr),
1298 ntohs(cp->vport));
1299
Linus Torvalds1da177e2005-04-16 15:20:36 -07001300 return;
1301 }
1302 atomic_dec(&ctl_cp->n_control);
1303}
1304
1305static inline void
1306ip_vs_control_add(struct ip_vs_conn *cp, struct ip_vs_conn *ctl_cp)
1307{
1308 if (cp->control) {
Julius Volzcfc78c52008-09-02 15:55:53 +02001309 IP_VS_ERR_BUF("request control ADD for already controlled: "
1310 "%s:%d to %s:%d\n",
1311 IP_VS_DBG_ADDR(cp->af, &cp->caddr),
1312 ntohs(cp->cport),
1313 IP_VS_DBG_ADDR(cp->af, &cp->vaddr),
1314 ntohs(cp->vport));
1315
Linus Torvalds1da177e2005-04-16 15:20:36 -07001316 ip_vs_control_del(cp);
1317 }
1318
Julius Volzcfc78c52008-09-02 15:55:53 +02001319 IP_VS_DBG_BUF(7, "ADDing control for: "
1320 "cp.dst=%s:%d ctl_cp.dst=%s:%d\n",
1321 IP_VS_DBG_ADDR(cp->af, &cp->caddr),
1322 ntohs(cp->cport),
1323 IP_VS_DBG_ADDR(cp->af, &ctl_cp->caddr),
1324 ntohs(ctl_cp->cport));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001325
1326 cp->control = ctl_cp;
1327 atomic_inc(&ctl_cp->n_control);
1328}
1329
Simon Horman07dcc682014-09-30 10:50:06 +09001330/* IPVS netns init & cleanup functions */
Eric W. Biedermana4dd0362015-09-21 13:02:28 -05001331int ip_vs_estimator_net_init(struct netns_ipvs *ipvs);
Eric W. Biederman3d993762015-09-21 13:02:26 -05001332int ip_vs_control_net_init(struct netns_ipvs *ipvs);
Joe Perches5c3a0fd2013-09-21 10:22:42 -07001333int ip_vs_protocol_net_init(struct net *net);
Eric W. Biedermanb5dd2122015-09-21 13:02:34 -05001334int ip_vs_app_net_init(struct netns_ipvs *ipvs);
Eric W. Biederman2f3edc6a2015-09-21 13:02:42 -05001335int ip_vs_conn_net_init(struct netns_ipvs *ipvs);
Eric W. Biederman802cb432015-09-21 13:02:20 -05001336int ip_vs_sync_net_init(struct netns_ipvs *ipvs);
Eric W. Biederman2f3edc6a2015-09-21 13:02:42 -05001337void ip_vs_conn_net_cleanup(struct netns_ipvs *ipvs);
Eric W. Biedermanb5dd2122015-09-21 13:02:34 -05001338void ip_vs_app_net_cleanup(struct netns_ipvs *ipvs);
Joe Perches5c3a0fd2013-09-21 10:22:42 -07001339void ip_vs_protocol_net_cleanup(struct net *net);
Eric W. Biederman3d993762015-09-21 13:02:26 -05001340void ip_vs_control_net_cleanup(struct netns_ipvs *ipvs);
Eric W. Biedermana4dd0362015-09-21 13:02:28 -05001341void ip_vs_estimator_net_cleanup(struct netns_ipvs *ipvs);
Eric W. Biedermanebea1f72015-09-21 13:02:21 -05001342void ip_vs_sync_net_cleanup(struct netns_ipvs *ipvs);
Eric W. Biederman56d21692015-09-21 13:01:58 -05001343void ip_vs_service_net_cleanup(struct netns_ipvs *ipvs);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001344
Simon Horman07dcc682014-09-30 10:50:06 +09001345/* IPVS application functions
1346 * (from ip_vs_app.c)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001347 */
1348#define IP_VS_APP_MAX_PORTS 8
Eric W. Biederman9f8128a2015-09-21 13:02:32 -05001349struct ip_vs_app *register_ip_vs_app(struct netns_ipvs *ipvs, struct ip_vs_app *app);
1350void unregister_ip_vs_app(struct netns_ipvs *ipvs, struct ip_vs_app *app);
Joe Perches5c3a0fd2013-09-21 10:22:42 -07001351int ip_vs_bind_app(struct ip_vs_conn *cp, struct ip_vs_protocol *pp);
1352void ip_vs_unbind_app(struct ip_vs_conn *cp);
Eric W. Biederman3250dc92015-09-21 13:02:31 -05001353int register_ip_vs_app_inc(struct netns_ipvs *ipvs, struct ip_vs_app *app, __u16 proto,
Joe Perches5c3a0fd2013-09-21 10:22:42 -07001354 __u16 port);
1355int ip_vs_app_inc_get(struct ip_vs_app *inc);
1356void ip_vs_app_inc_put(struct ip_vs_app *inc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001357
Joe Perches5c3a0fd2013-09-21 10:22:42 -07001358int ip_vs_app_pkt_out(struct ip_vs_conn *, struct sk_buff *skb);
1359int ip_vs_app_pkt_in(struct ip_vs_conn *, struct sk_buff *skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001360
Simon Horman8be67a62010-08-22 21:37:54 +09001361int register_ip_vs_pe(struct ip_vs_pe *pe);
1362int unregister_ip_vs_pe(struct ip_vs_pe *pe);
Simon Hormane9e5eee2010-11-08 20:05:57 +09001363struct ip_vs_pe *ip_vs_pe_getbyname(const char *name);
Hans Schillstromfe5e7a12010-11-19 14:25:12 +01001364struct ip_vs_pe *__ip_vs_pe_getbyname(const char *pe_name);
Simon Hormane9e5eee2010-11-08 20:05:57 +09001365
Simon Horman07dcc682014-09-30 10:50:06 +09001366/* Use a #define to avoid all of module.h just for these trivial ops */
Paul Gortmaker69e7dae2011-08-29 12:40:15 -04001367#define ip_vs_pe_get(pe) \
1368 if (pe && pe->module) \
Simon Hormane9e5eee2010-11-08 20:05:57 +09001369 __module_get(pe->module);
Simon Hormane9e5eee2010-11-08 20:05:57 +09001370
Paul Gortmaker69e7dae2011-08-29 12:40:15 -04001371#define ip_vs_pe_put(pe) \
1372 if (pe && pe->module) \
Simon Hormane9e5eee2010-11-08 20:05:57 +09001373 module_put(pe->module);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001374
Simon Horman07dcc682014-09-30 10:50:06 +09001375/* IPVS protocol functions (from ip_vs_proto.c) */
Joe Perches5c3a0fd2013-09-21 10:22:42 -07001376int ip_vs_protocol_init(void);
1377void ip_vs_protocol_cleanup(void);
1378void ip_vs_protocol_timeout_change(struct netns_ipvs *ipvs, int flags);
1379int *ip_vs_create_timeout_table(int *table, int size);
1380int ip_vs_set_state_timeout(int *table, int num, const char *const *names,
1381 const char *name, int to);
1382void ip_vs_tcpudp_debug_packet(int af, struct ip_vs_protocol *pp,
1383 const struct sk_buff *skb, int offset,
1384 const char *msg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001385
1386extern struct ip_vs_protocol ip_vs_protocol_tcp;
1387extern struct ip_vs_protocol ip_vs_protocol_udp;
1388extern struct ip_vs_protocol ip_vs_protocol_icmp;
1389extern struct ip_vs_protocol ip_vs_protocol_esp;
1390extern struct ip_vs_protocol ip_vs_protocol_ah;
Venkata Mohan Reddy2906f662010-02-18 12:31:05 +01001391extern struct ip_vs_protocol ip_vs_protocol_sctp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001392
Simon Horman07dcc682014-09-30 10:50:06 +09001393/* Registering/unregistering scheduler functions
1394 * (from ip_vs_sched.c)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001395 */
Joe Perches5c3a0fd2013-09-21 10:22:42 -07001396int register_ip_vs_scheduler(struct ip_vs_scheduler *scheduler);
1397int unregister_ip_vs_scheduler(struct ip_vs_scheduler *scheduler);
1398int ip_vs_bind_scheduler(struct ip_vs_service *svc,
1399 struct ip_vs_scheduler *scheduler);
1400void ip_vs_unbind_scheduler(struct ip_vs_service *svc,
1401 struct ip_vs_scheduler *sched);
1402struct ip_vs_scheduler *ip_vs_scheduler_get(const char *sched_name);
1403void ip_vs_scheduler_put(struct ip_vs_scheduler *scheduler);
1404struct ip_vs_conn *
Julian Anastasov190ecd22010-10-17 16:24:37 +03001405ip_vs_schedule(struct ip_vs_service *svc, struct sk_buff *skb,
Jesper Dangaard Brouerd4383f02012-09-26 14:07:17 +02001406 struct ip_vs_proto_data *pd, int *ignored,
1407 struct ip_vs_iphdr *iph);
Joe Perches5c3a0fd2013-09-21 10:22:42 -07001408int ip_vs_leave(struct ip_vs_service *svc, struct sk_buff *skb,
1409 struct ip_vs_proto_data *pd, struct ip_vs_iphdr *iph);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001410
Joe Perches5c3a0fd2013-09-21 10:22:42 -07001411void ip_vs_scheduler_err(struct ip_vs_service *svc, const char *msg);
Patrick Schaaf41ac51e2011-02-11 14:01:12 +01001412
Simon Horman07dcc682014-09-30 10:50:06 +09001413/* IPVS control data and functions (from ip_vs_ctl.c) */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001414extern struct ip_vs_stats ip_vs_stats;
Hans Schillstromb880c1f2010-11-19 14:25:14 +01001415extern int sysctl_ip_vs_sync_ver;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001416
Joe Perches5c3a0fd2013-09-21 10:22:42 -07001417struct ip_vs_service *
Eric W. Biederman0a4fd6c2015-09-21 13:01:49 -05001418ip_vs_service_find(struct netns_ipvs *ipvs, int af, __u32 fwmark, __u16 protocol,
Julius Volz3c2e0502008-09-02 15:55:38 +02001419 const union nf_inet_addr *vaddr, __be16 vport);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001420
Eric W. Biederman48aed1b2015-09-21 13:01:50 -05001421bool ip_vs_has_real_service(struct netns_ipvs *ipvs, int af, __u16 protocol,
Joe Perches5c3a0fd2013-09-21 10:22:42 -07001422 const union nf_inet_addr *daddr, __be16 dport);
Julius Volz7937df12008-09-02 15:55:48 +02001423
Joe Perches5c3a0fd2013-09-21 10:22:42 -07001424int ip_vs_use_count_inc(void);
1425void ip_vs_use_count_dec(void);
1426int ip_vs_register_nl_ioctl(void);
1427void ip_vs_unregister_nl_ioctl(void);
1428int ip_vs_control_init(void);
1429void ip_vs_control_cleanup(void);
1430struct ip_vs_dest *
Eric W. Biedermandc2add62015-09-21 13:01:51 -05001431ip_vs_find_dest(struct netns_ipvs *ipvs, int svc_af, int dest_af,
Alex Gartrell655eef12014-09-09 16:40:21 -07001432 const union nf_inet_addr *daddr, __be16 dport,
1433 const union nf_inet_addr *vaddr, __be16 vport,
Julian Anastasov52793db2011-12-30 14:19:02 +09001434 __u16 protocol, __u32 fwmark, __u32 flags);
Joe Perches5c3a0fd2013-09-21 10:22:42 -07001435void ip_vs_try_bind_dest(struct ip_vs_conn *cp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001436
Julian Anastasovfca9c202013-03-22 11:46:38 +02001437static inline void ip_vs_dest_hold(struct ip_vs_dest *dest)
1438{
1439 atomic_inc(&dest->refcnt);
1440}
1441
1442static inline void ip_vs_dest_put(struct ip_vs_dest *dest)
1443{
Peter Zijlstra4e857c52014-03-17 18:06:10 +01001444 smp_mb__before_atomic();
Julian Anastasovfca9c202013-03-22 11:46:38 +02001445 atomic_dec(&dest->refcnt);
1446}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001447
Julian Anastasov9e4e9482013-10-09 09:24:27 +03001448static inline void ip_vs_dest_put_and_free(struct ip_vs_dest *dest)
1449{
1450 if (atomic_dec_return(&dest->refcnt) < 0)
1451 kfree(dest);
1452}
1453
Simon Horman07dcc682014-09-30 10:50:06 +09001454/* IPVS sync daemon data and function prototypes
1455 * (from ip_vs_sync.c)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001456 */
Eric W. Biederman6ac121d2015-09-21 13:02:10 -05001457int start_sync_thread(struct netns_ipvs *ipvs, struct ipvs_sync_daemon_cfg *cfg,
Julian Anastasove4ff6752015-07-26 15:03:27 +03001458 int state);
Eric W. Biedermanb3cf3cb2015-09-21 13:02:11 -05001459int stop_sync_thread(struct netns_ipvs *ipvs, int state);
Eric W. Biedermanb61a8c12015-09-21 13:02:17 -05001460void ip_vs_sync_conn(struct netns_ipvs *ipvs, struct ip_vs_conn *cp, int pkts);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001461
Simon Horman07dcc682014-09-30 10:50:06 +09001462/* IPVS rate estimator prototypes (from ip_vs_est.c) */
Eric W. Biederman0f34d542015-09-21 13:02:23 -05001463void ip_vs_start_estimator(struct netns_ipvs *ipvs, struct ip_vs_stats *stats);
1464void ip_vs_stop_estimator(struct netns_ipvs *ipvs, struct ip_vs_stats *stats);
Joe Perches5c3a0fd2013-09-21 10:22:42 -07001465void ip_vs_zero_estimator(struct ip_vs_stats *stats);
Julian Anastasovcd67cd52015-02-06 09:44:44 +02001466void ip_vs_read_estimator(struct ip_vs_kstats *dst, struct ip_vs_stats *stats);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001467
Simon Horman07dcc682014-09-30 10:50:06 +09001468/* Various IPVS packet transmitters (from ip_vs_xmit.c) */
Joe Perches5c3a0fd2013-09-21 10:22:42 -07001469int ip_vs_null_xmit(struct sk_buff *skb, struct ip_vs_conn *cp,
1470 struct ip_vs_protocol *pp, struct ip_vs_iphdr *iph);
1471int ip_vs_bypass_xmit(struct sk_buff *skb, struct ip_vs_conn *cp,
1472 struct ip_vs_protocol *pp, struct ip_vs_iphdr *iph);
1473int ip_vs_nat_xmit(struct sk_buff *skb, struct ip_vs_conn *cp,
1474 struct ip_vs_protocol *pp, struct ip_vs_iphdr *iph);
1475int ip_vs_tunnel_xmit(struct sk_buff *skb, struct ip_vs_conn *cp,
1476 struct ip_vs_protocol *pp, struct ip_vs_iphdr *iph);
1477int ip_vs_dr_xmit(struct sk_buff *skb, struct ip_vs_conn *cp,
1478 struct ip_vs_protocol *pp, struct ip_vs_iphdr *iph);
1479int ip_vs_icmp_xmit(struct sk_buff *skb, struct ip_vs_conn *cp,
1480 struct ip_vs_protocol *pp, int offset,
1481 unsigned int hooknum, struct ip_vs_iphdr *iph);
1482void ip_vs_dest_dst_rcu_free(struct rcu_head *head);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001483
Julius Volzb3cdd2a72008-09-02 15:55:45 +02001484#ifdef CONFIG_IP_VS_IPV6
Joe Perches5c3a0fd2013-09-21 10:22:42 -07001485int ip_vs_bypass_xmit_v6(struct sk_buff *skb, struct ip_vs_conn *cp,
1486 struct ip_vs_protocol *pp, struct ip_vs_iphdr *iph);
1487int ip_vs_nat_xmit_v6(struct sk_buff *skb, struct ip_vs_conn *cp,
1488 struct ip_vs_protocol *pp, struct ip_vs_iphdr *iph);
1489int ip_vs_tunnel_xmit_v6(struct sk_buff *skb, struct ip_vs_conn *cp,
1490 struct ip_vs_protocol *pp, struct ip_vs_iphdr *iph);
1491int ip_vs_dr_xmit_v6(struct sk_buff *skb, struct ip_vs_conn *cp,
1492 struct ip_vs_protocol *pp, struct ip_vs_iphdr *iph);
1493int ip_vs_icmp_xmit_v6(struct sk_buff *skb, struct ip_vs_conn *cp,
1494 struct ip_vs_protocol *pp, int offset,
1495 unsigned int hooknum, struct ip_vs_iphdr *iph);
Julius Volzb3cdd2a72008-09-02 15:55:45 +02001496#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001497
Simon Horman3a1bbf12011-02-04 18:33:02 +09001498#ifdef CONFIG_SYSCTL
Simon Horman07dcc682014-09-30 10:50:06 +09001499/* This is a simple mechanism to ignore packets when
1500 * we are loaded. Just set ip_vs_drop_rate to 'n' and
1501 * we start to drop 1/rate of the packets
Linus Torvalds1da177e2005-04-16 15:20:36 -07001502 */
Hans Schillstroma0840e22011-01-03 14:44:58 +01001503static inline int ip_vs_todrop(struct netns_ipvs *ipvs)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001504{
Hans Schillstroma0840e22011-01-03 14:44:58 +01001505 if (!ipvs->drop_rate)
1506 return 0;
1507 if (--ipvs->drop_counter > 0)
1508 return 0;
1509 ipvs->drop_counter = ipvs->drop_rate;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001510 return 1;
1511}
Simon Horman3a1bbf12011-02-04 18:33:02 +09001512#else
1513static inline int ip_vs_todrop(struct netns_ipvs *ipvs) { return 0; }
1514#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001515
Simon Horman07dcc682014-09-30 10:50:06 +09001516/* ip_vs_fwd_tag returns the forwarding tag of the connection */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001517#define IP_VS_FWD_METHOD(cp) (cp->flags & IP_VS_CONN_F_FWD_MASK)
1518
Adrian Bunk732db652005-09-01 17:40:26 -07001519static inline char ip_vs_fwd_tag(struct ip_vs_conn *cp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001520{
1521 char fwd;
1522
1523 switch (IP_VS_FWD_METHOD(cp)) {
1524 case IP_VS_CONN_F_MASQ:
1525 fwd = 'M'; break;
1526 case IP_VS_CONN_F_LOCALNODE:
1527 fwd = 'L'; break;
1528 case IP_VS_CONN_F_TUNNEL:
1529 fwd = 'T'; break;
1530 case IP_VS_CONN_F_DROUTE:
1531 fwd = 'R'; break;
1532 case IP_VS_CONN_F_BYPASS:
1533 fwd = 'B'; break;
1534 default:
1535 fwd = '?'; break;
1536 }
1537 return fwd;
1538}
1539
Joe Perches5c3a0fd2013-09-21 10:22:42 -07001540void ip_vs_nat_icmp(struct sk_buff *skb, struct ip_vs_protocol *pp,
1541 struct ip_vs_conn *cp, int dir);
Julius Volzb3cdd2a72008-09-02 15:55:45 +02001542
1543#ifdef CONFIG_IP_VS_IPV6
Joe Perches5c3a0fd2013-09-21 10:22:42 -07001544void ip_vs_nat_icmp_v6(struct sk_buff *skb, struct ip_vs_protocol *pp,
1545 struct ip_vs_conn *cp, int dir);
Julius Volzb3cdd2a72008-09-02 15:55:45 +02001546#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001547
Joe Perches5c3a0fd2013-09-21 10:22:42 -07001548__sum16 ip_vs_checksum_complete(struct sk_buff *skb, int offset);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001549
Al Virof9214b22006-11-16 02:41:18 -08001550static inline __wsum ip_vs_check_diff4(__be32 old, __be32 new, __wsum oldsum)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001551{
Al Virof9214b22006-11-16 02:41:18 -08001552 __be32 diff[2] = { ~old, new };
Linus Torvalds1da177e2005-04-16 15:20:36 -07001553
Joe Perches07f07572008-11-19 15:44:53 -08001554 return csum_partial(diff, sizeof(diff), oldsum);
Al Virof9214b22006-11-16 02:41:18 -08001555}
1556
Julius Volz0bbdd422008-09-02 15:55:42 +02001557#ifdef CONFIG_IP_VS_IPV6
1558static inline __wsum ip_vs_check_diff16(const __be32 *old, const __be32 *new,
1559 __wsum oldsum)
1560{
1561 __be32 diff[8] = { ~old[3], ~old[2], ~old[1], ~old[0],
1562 new[3], new[2], new[1], new[0] };
1563
Joe Perches07f07572008-11-19 15:44:53 -08001564 return csum_partial(diff, sizeof(diff), oldsum);
Julius Volz0bbdd422008-09-02 15:55:42 +02001565}
1566#endif
1567
Al Virof9214b22006-11-16 02:41:18 -08001568static inline __wsum ip_vs_check_diff2(__be16 old, __be16 new, __wsum oldsum)
1569{
1570 __be16 diff[2] = { ~old, new };
1571
Joe Perches07f07572008-11-19 15:44:53 -08001572 return csum_partial(diff, sizeof(diff), oldsum);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001573}
1574
Simon Horman07dcc682014-09-30 10:50:06 +09001575/* Forget current conntrack (unconfirmed) and attach notrack entry */
Julian Anastasovcf356d62010-10-17 16:21:07 +03001576static inline void ip_vs_notrack(struct sk_buff *skb)
1577{
1578#if defined(CONFIG_NF_CONNTRACK) || defined(CONFIG_NF_CONNTRACK_MODULE)
1579 enum ip_conntrack_info ctinfo;
Jesper Juhl06b69392011-03-09 22:55:05 +01001580 struct nf_conn *ct = nf_ct_get(skb, &ctinfo);
Julian Anastasovcf356d62010-10-17 16:21:07 +03001581
1582 if (!ct || !nf_ct_is_untracked(ct)) {
Lin Ming9e33ce42012-07-07 18:26:10 +08001583 nf_conntrack_put(skb->nfct);
Julian Anastasovcf356d62010-10-17 16:21:07 +03001584 skb->nfct = &nf_ct_untracked_get()->ct_general;
1585 skb->nfctinfo = IP_CT_NEW;
1586 nf_conntrack_get(skb->nfct);
1587 }
1588#endif
1589}
1590
Julian Anastasovf4bc17c2010-09-21 17:35:41 +02001591#ifdef CONFIG_IP_VS_NFCT
Simon Horman07dcc682014-09-30 10:50:06 +09001592/* Netfilter connection tracking
1593 * (from ip_vs_nfct.c)
Julian Anastasovf4bc17c2010-09-21 17:35:41 +02001594 */
Hans Schillstroma0840e22011-01-03 14:44:58 +01001595static inline int ip_vs_conntrack_enabled(struct netns_ipvs *ipvs)
Julian Anastasovf4bc17c2010-09-21 17:35:41 +02001596{
Simon Hormana4e2f5a2011-02-04 18:33:02 +09001597#ifdef CONFIG_SYSCTL
Hans Schillstroma0840e22011-01-03 14:44:58 +01001598 return ipvs->sysctl_conntrack;
Simon Hormana4e2f5a2011-02-04 18:33:02 +09001599#else
1600 return 0;
1601#endif
Julian Anastasovf4bc17c2010-09-21 17:35:41 +02001602}
1603
Joe Perches5c3a0fd2013-09-21 10:22:42 -07001604void ip_vs_update_conntrack(struct sk_buff *skb, struct ip_vs_conn *cp,
1605 int outin);
1606int ip_vs_confirm_conntrack(struct sk_buff *skb);
1607void ip_vs_nfct_expect_related(struct sk_buff *skb, struct nf_conn *ct,
1608 struct ip_vs_conn *cp, u_int8_t proto,
1609 const __be16 port, int from_rs);
1610void ip_vs_conn_drop_conntrack(struct ip_vs_conn *cp);
Julian Anastasovf4bc17c2010-09-21 17:35:41 +02001611
1612#else
1613
Hans Schillstroma0840e22011-01-03 14:44:58 +01001614static inline int ip_vs_conntrack_enabled(struct netns_ipvs *ipvs)
Julian Anastasovf4bc17c2010-09-21 17:35:41 +02001615{
1616 return 0;
1617}
1618
1619static inline void ip_vs_update_conntrack(struct sk_buff *skb,
1620 struct ip_vs_conn *cp, int outin)
1621{
1622}
1623
Krzysztof Wilczynskie23ebf02011-10-20 13:18:04 +01001624static inline int ip_vs_confirm_conntrack(struct sk_buff *skb)
Julian Anastasovf4bc17c2010-09-21 17:35:41 +02001625{
1626 return NF_ACCEPT;
1627}
1628
1629static inline void ip_vs_conn_drop_conntrack(struct ip_vs_conn *cp)
1630{
1631}
Simon Horman07dcc682014-09-30 10:50:06 +09001632#endif /* CONFIG_IP_VS_NFCT */
Julian Anastasov6523ce12010-09-05 18:02:29 +00001633
Simon Kirbyc16526a2013-08-10 01:26:18 -07001634static inline int
Changli Gaob552f7e2011-02-19 17:32:28 +08001635ip_vs_dest_conn_overhead(struct ip_vs_dest *dest)
1636{
Simon Horman07dcc682014-09-30 10:50:06 +09001637 /* We think the overhead of processing active connections is 256
Changli Gaob552f7e2011-02-19 17:32:28 +08001638 * times higher than that of inactive connections in average. (This
1639 * 256 times might not be accurate, we will change it later) We
1640 * use the following formula to estimate the overhead now:
1641 * dest->activeconns*256 + dest->inactconns
1642 */
1643 return (atomic_read(&dest->activeconns) << 8) +
1644 atomic_read(&dest->inactconns);
1645}
1646
Julius Volzbc4768e2008-07-31 20:45:24 -07001647#endif /* _NET_IP_VS_H */