ipvs: Add hdr_flags to iphdr
[deliverable/linux.git] / include / net / ip_vs.h
CommitLineData
07dcc686
SH
1/* IP Virtual Server
2 * data structure and functionality definitions
1da177e4
LT
3 */
4
bc4768eb
JV
5#ifndef _NET_IP_VS_H
6#define _NET_IP_VS_H
1da177e4 7
bc4768eb 8#include <linux/ip_vs.h> /* definitions shared with userland */
1da177e4 9
bc4768eb
JV
10#include <asm/types.h> /* for __uXX types */
11
1da177e4
LT
12#include <linux/list.h> /* for struct list_head */
13#include <linux/spinlock.h> /* for struct rwlock_t */
07dcc686 14#include <linux/atomic.h> /* for struct atomic_t */
1da177e4 15#include <linux/compiler.h>
14c85021 16#include <linux/timer.h>
187f1882 17#include <linux/bug.h>
1da177e4 18
14c85021 19#include <net/checksum.h>
e7ade46a 20#include <linux/netfilter.h> /* for union nf_inet_addr */
1668e010 21#include <linux/ip.h>
e7ade46a 22#include <linux/ipv6.h> /* for struct ipv6hdr */
4e3fd7a0 23#include <net/ipv6.h>
54d83efa 24#if IS_ENABLED(CONFIG_IP_VS_IPV6)
63dca2c0
JDB
25#include <linux/netfilter_ipv6/ip6_tables.h>
26#endif
a638e514 27#if IS_ENABLED(CONFIG_NF_CONNTRACK)
f4bc17cd
JA
28#include <net/netfilter/nf_conntrack.h>
29#endif
61b1ab45
HS
30#include <net/net_namespace.h> /* Netw namespace */
31
4fd9beef
AG
32#define IP_VS_HDR_INVERSE 1
33#define IP_VS_HDR_ICMP 2
34
07dcc686 35/* Generic access of ipvs struct */
61b1ab45
HS
36static inline struct netns_ipvs *net_ipvs(struct net* net)
37{
38 return net->ipvs;
39}
07dcc686
SH
40
41/* Get net ptr from skb in traffic cases
fc723250
HS
42 * use skb_sknet when call is from userland (ioctl or netlink)
43 */
a0840e2e 44static inline struct net *skb_net(const struct sk_buff *skb)
fc723250
HS
45{
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 */
0c5c9fb5 53 if (likely(skb->dev && dev_net(skb->dev)))
fc723250 54 return dev_net(skb->dev);
a09d1977 55 if (skb_dst(skb) && skb_dst(skb)->dev)
fc723250
HS
56 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__);
0c5c9fb5 59 if (likely(skb->sk && sock_net(skb->sk)))
fc723250
HS
60 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
a0840e2e 72static inline struct net *skb_sknet(const struct sk_buff *skb)
fc723250
HS
73{
74#ifdef CONFIG_NET_NS
75#ifdef CONFIG_IP_VS_DEBUG
76 /* Start with the most likely hit */
0c5c9fb5 77 if (likely(skb->sk && sock_net(skb->sk)))
fc723250
HS
78 return sock_net(skb->sk);
79 WARN(skb->dev, "Maybe skb_net should be used instead in %s() line:%d\n",
80 __func__, __LINE__);
0c5c9fb5 81 if (likely(skb->dev && dev_net(skb->dev)))
fc723250
HS
82 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}
07dcc686
SH
93
94/* This one needed for single_open_net since net is stored directly in
25985edc 95 * private not as a struct i.e. seq_file_net can't be used.
b17fc996
HS
96 */
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}
6f7edb48
CB
105
106/* Connections' size value needed by ip_vs_ctl.c */
107extern int ip_vs_conn_tab_size;
108
64aae3cb 109struct ip_vs_iphdr {
4fd9beef 110 int hdr_flags; /* ipvs flags */
b0e010c5 111 __u32 off; /* Where IP or IPv4 header starts */
63dca2c0 112 __u32 len; /* IPv4 simply where L4 starts
07dcc686 113 * IPv6 where L4 Transport Header starts */
63dca2c0
JDB
114 __u16 fragoffs; /* IPv6 fragment offset, 0 if first frag (or not frag)*/
115 __s16 protocol;
116 __s32 flags;
64aae3cb
JV
117 union nf_inet_addr saddr;
118 union nf_inet_addr daddr;
119};
120
2f74713d
JDB
121static 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}
2f74713d 127
63dca2c0
JDB
128/* 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 */
b0e010c5
AG
132static inline int
133ip_vs_fill_iph_skb_off(int af, const struct sk_buff *skb, int offset,
4fd9beef 134 int hdr_flags, struct ip_vs_iphdr *iphdr)
64aae3cb 135{
4fd9beef 136 iphdr->hdr_flags = hdr_flags;
b0e010c5 137 iphdr->off = offset;
4fd9beef 138
64aae3cb
JV
139#ifdef CONFIG_IP_VS_IPV6
140 if (af == AF_INET6) {
b0e010c5
AG
141 struct ipv6hdr _iph;
142 const struct ipv6hdr *iph = skb_header_pointer(
143 skb, offset, sizeof(_iph), &_iph);
144 if (!iph)
145 return 0;
146
4e3fd7a0
AD
147 iphdr->saddr.in6 = iph->saddr;
148 iphdr->daddr.in6 = iph->daddr;
6aafeef0 149 /* ipv6_find_hdr() updates len, flags */
b0e010c5 150 iphdr->len = offset;
63dca2c0
JDB
151 iphdr->flags = 0;
152 iphdr->protocol = ipv6_find_hdr(skb, &iphdr->len, -1,
153 &iphdr->fragoffs,
154 &iphdr->flags);
b0e010c5
AG
155 if (iphdr->protocol < 0)
156 return 0;
64aae3cb
JV
157 } else
158#endif
159 {
b0e010c5
AG
160 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;
63dca2c0
JDB
167 iphdr->fragoffs = 0;
168 iphdr->protocol = iph->protocol;
169 iphdr->saddr.ip = iph->saddr;
170 iphdr->daddr.ip = iph->daddr;
171 }
b0e010c5
AG
172
173 return 1;
174}
175
176static inline int
4fd9beef
AG
177ip_vs_fill_iph_skb_icmp(int af, const struct sk_buff *skb, int offset,
178 bool inverse, struct ip_vs_iphdr *iphdr)
179{
180 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)
b0e010c5 209{
4fd9beef 210 return !!(iph->hdr_flags & IP_VS_HDR_ICMP);
63dca2c0
JDB
211}
212
64aae3cb
JV
213static 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)
4e3fd7a0 218 dst->in6 = src->in6;
64aae3cb
JV
219 else
220#endif
221 dst->ip = src->ip;
222}
223
9a05475c
JA
224static 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
64aae3cb
JV
239static 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
1da177e4 249#ifdef CONFIG_IP_VS_DEBUG
14c85021
ACM
250#include <linux/net.h>
251
5c3a0fd7 252int ip_vs_get_debug_level(void);
c842a3ad
JV
253
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)
120b9c14 261 len = snprintf(&buf[*idx], buf_len - *idx, "[%pI6c]",
0c6ce78a 262 &addr->in6) + 1;
c842a3ad
JV
263 else
264#endif
3685f25d
HH
265 len = snprintf(&buf[*idx], buf_len - *idx, "%pI4",
266 &addr->ip) + 1;
c842a3ad
JV
267
268 *idx += len;
269 BUG_ON(*idx > buf_len + 1);
270 return &buf[*idx - len];
271}
272
9aada7ac
HE
273#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)
c842a3ad
JV
286
287/* Only use from within IP_VS_DBG_BUF() or IP_VS_ERR_BUF macros */
9aada7ac
HE
288#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)
292
293#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)
0d79641a 303#define IP_VS_DBG_PKT(level, af, pp, skb, ofs, msg) \
9aada7ac
HE
304 do { \
305 if (level <= ip_vs_get_debug_level()) \
0d79641a 306 pp->debug_packet(af, pp, skb, ofs, msg); \
9aada7ac 307 } while (0)
0d79641a 308#define IP_VS_DBG_RL_PKT(level, af, pp, skb, ofs, msg) \
9aada7ac
HE
309 do { \
310 if (level <= ip_vs_get_debug_level() && \
311 net_ratelimit()) \
0d79641a 312 pp->debug_packet(af, pp, skb, ofs, msg); \
9aada7ac 313 } while (0)
1da177e4 314#else /* NO DEBUGGING at ALL */
c842a3ad
JV
315#define IP_VS_DBG_BUF(level, msg...) do {} while (0)
316#define IP_VS_ERR_BUF(msg...) do {} while (0)
1da177e4
LT
317#define IP_VS_DBG(level, msg...) do {} while (0)
318#define IP_VS_DBG_RL(msg...) do {} while (0)
0d79641a
JA
319#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)
1da177e4
LT
321#endif
322
323#define IP_VS_BUG() BUG()
1e3e238e 324#define IP_VS_ERR_RL(msg, ...) \
9aada7ac
HE
325 do { \
326 if (net_ratelimit()) \
1e3e238e 327 pr_err(msg, ##__VA_ARGS__); \
9aada7ac 328 } while (0)
1da177e4
LT
329
330#ifdef CONFIG_IP_VS_DEBUG
331#define EnterFunction(level) \
9aada7ac
HE
332 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)
1da177e4
LT
345#else
346#define EnterFunction(level) do {} while (0)
347#define LeaveFunction(level) do {} while (0)
348#endif
349
07dcc686 350/* The port number of FTP service (in network order). */
f3a7c66b
HH
351#define FTPPORT cpu_to_be16(21)
352#define FTPDATA cpu_to_be16(20)
1da177e4 353
07dcc686 354/* TCP State Values */
1da177e4
LT
355enum {
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
07dcc686 370/* UDP State Values */
1da177e4
LT
371enum {
372 IP_VS_UDP_S_NORMAL,
373 IP_VS_UDP_S_LAST,
374};
375
07dcc686 376/* ICMP State Values */
1da177e4
LT
377enum {
378 IP_VS_ICMP_S_NORMAL,
379 IP_VS_ICMP_S_LAST,
380};
381
07dcc686 382/* SCTP State Values */
2906f66a
VMR
383enum ip_vs_sctp_states {
384 IP_VS_SCTP_S_NONE,
61e7c420
JA
385 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,
2906f66a 392 IP_VS_SCTP_S_ESTABLISHED,
61e7c420
JA
393 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,
2906f66a
VMR
397 IP_VS_SCTP_S_CLOSED,
398 IP_VS_SCTP_S_LAST
399};
400
07dcc686
SH
401/* Delta sequence info structure
402 * Each ip_vs_conn has 2 (output AND input seq. changes).
403 * Only used in the VS/NAT.
1da177e4
LT
404 */
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
07dcc686 409 * before last resized pkt */
1da177e4
LT
410};
411
07dcc686 412/* counters per cpu */
b17fc996 413struct ip_vs_counters {
cd67cd5e
JA
414 __u64 conns; /* connections scheduled */
415 __u64 inpkts; /* incoming packets */
416 __u64 outpkts; /* outgoing packets */
b17fc996
HS
417 __u64 inbytes; /* incoming bytes */
418 __u64 outbytes; /* outgoing bytes */
419};
07dcc686 420/* Stats per cpu */
b17fc996 421struct ip_vs_cpu_stats {
cd67cd5e 422 struct ip_vs_counters cnt;
b17fc996
HS
423 struct u64_stats_sync syncp;
424};
1da177e4 425
07dcc686 426/* IPVS statistics objects */
3a14a313
SW
427struct ip_vs_estimator {
428 struct list_head list;
429
430 u64 last_inbytes;
431 u64 last_outbytes;
cd67cd5e
JA
432 u64 last_conns;
433 u64 last_inpkts;
434 u64 last_outpkts;
435
436 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 */
3a14a313
SW
458};
459
fd2c3ef7 460struct ip_vs_stats {
cd67cd5e 461 struct ip_vs_kstats kstats; /* kernel statistics */
e9c0ce23 462 struct ip_vs_estimator est; /* estimator */
b962abdc 463 struct ip_vs_cpu_stats __percpu *cpustats; /* per cpu counters */
b17fc996 464 spinlock_t lock; /* spin lock */
cd67cd5e 465 struct ip_vs_kstats kstats0; /* reset values */
1da177e4
LT
466};
467
14c85021
ACM
468struct dst_entry;
469struct iphdr;
1da177e4
LT
470struct ip_vs_conn;
471struct ip_vs_app;
14c85021 472struct sk_buff;
252c6410 473struct ip_vs_proto_data;
1da177e4
LT
474
475struct ip_vs_protocol {
476 struct ip_vs_protocol *next;
477 char *name;
2ad17def
JA
478 u16 protocol;
479 u16 num_states;
1da177e4 480 int dont_defrag;
1da177e4
LT
481
482 void (*init)(struct ip_vs_protocol *pp);
483
484 void (*exit)(struct ip_vs_protocol *pp);
485
582b8e3e 486 int (*init_netns)(struct net *net, struct ip_vs_proto_data *pd);
252c6410
HS
487
488 void (*exit_netns)(struct net *net, struct ip_vs_proto_data *pd);
489
51ef348b 490 int (*conn_schedule)(int af, struct sk_buff *skb,
9330419d 491 struct ip_vs_proto_data *pd,
d4383f04
JDB
492 int *verdict, struct ip_vs_conn **cpp,
493 struct ip_vs_iphdr *iph);
1da177e4
LT
494
495 struct ip_vs_conn *
51ef348b
JV
496 (*conn_in_get)(int af,
497 const struct sk_buff *skb,
51ef348b 498 const struct ip_vs_iphdr *iph,
1da177e4
LT
499 int inverse);
500
501 struct ip_vs_conn *
51ef348b
JV
502 (*conn_out_get)(int af,
503 const struct sk_buff *skb,
51ef348b 504 const struct ip_vs_iphdr *iph,
1da177e4
LT
505 int inverse);
506
d4383f04
JDB
507 int (*snat_handler)(struct sk_buff *skb, struct ip_vs_protocol *pp,
508 struct ip_vs_conn *cp, struct ip_vs_iphdr *iph);
1da177e4 509
d4383f04
JDB
510 int (*dnat_handler)(struct sk_buff *skb, struct ip_vs_protocol *pp,
511 struct ip_vs_conn *cp, struct ip_vs_iphdr *iph);
1da177e4 512
51ef348b
JV
513 int (*csum_check)(int af, struct sk_buff *skb,
514 struct ip_vs_protocol *pp);
1da177e4
LT
515
516 const char *(*state_name)(int state);
517
4a516f11
SH
518 void (*state_transition)(struct ip_vs_conn *cp, int direction,
519 const struct sk_buff *skb,
520 struct ip_vs_proto_data *pd);
1da177e4 521
ab8a5e84 522 int (*register_app)(struct net *net, struct ip_vs_app *inc);
1da177e4 523
ab8a5e84 524 void (*unregister_app)(struct net *net, struct ip_vs_app *inc);
1da177e4
LT
525
526 int (*app_conn_bind)(struct ip_vs_conn *cp);
527
0d79641a 528 void (*debug_packet)(int af, struct ip_vs_protocol *pp,
1da177e4
LT
529 const struct sk_buff *skb,
530 int offset,
531 const char *msg);
532
9330419d 533 void (*timeout_change)(struct ip_vs_proto_data *pd, int flags);
1da177e4
LT
534};
535
07dcc686 536/* protocol data per netns */
252c6410
HS
537struct ip_vs_proto_data {
538 struct ip_vs_proto_data *next;
539 struct ip_vs_protocol *pp;
540 int *timeout_table; /* protocol timeout table */
541 atomic_t appcnt; /* counter of proto app incs. */
542 struct tcp_states_t *tcp_state_table;
543};
544
5c3a0fd7
JP
545struct ip_vs_protocol *ip_vs_proto_get(unsigned short proto);
546struct ip_vs_proto_data *ip_vs_proto_data_get(struct net *net,
547 unsigned short proto);
1da177e4 548
f11017ec 549struct ip_vs_conn_param {
6e67e586 550 struct net *net;
f11017ec
SH
551 const union nf_inet_addr *caddr;
552 const union nf_inet_addr *vaddr;
553 __be16 cport;
554 __be16 vport;
555 __u16 protocol;
556 u16 af;
85999283
SH
557
558 const struct ip_vs_pe *pe;
559 char *pe_data;
560 __u8 pe_data_len;
f11017ec
SH
561};
562
07dcc686 563/* IP_VS structure allocated for each dynamically scheduled connection */
1da177e4 564struct ip_vs_conn {
731109e7 565 struct hlist_node c_list; /* hashed list heads */
1da177e4 566 /* Protocol, addresses and port numbers */
6e67e586 567 __be16 cport;
6e67e586 568 __be16 dport;
1845ed0b
JA
569 __be16 vport;
570 u16 af; /* address family */
6e67e586
HS
571 union nf_inet_addr caddr; /* client address */
572 union nf_inet_addr vaddr; /* virtual address */
573 union nf_inet_addr daddr; /* destination address */
574 volatile __u32 flags; /* status flags */
1da177e4 575 __u16 protocol; /* Which protocol (TCP/UDP) */
ba38528a 576 __u16 daf; /* Address family of the dest */
1845ed0b
JA
577#ifdef CONFIG_NET_NS
578 struct net *net; /* Name space */
579#endif
1da177e4
LT
580
581 /* counter and timer */
582 atomic_t refcnt; /* reference count */
583 struct timer_list timer; /* Expiration timer */
584 volatile unsigned long timeout; /* timeout */
585
586 /* Flags and state transition */
587 spinlock_t lock; /* lock for state transition */
1da177e4 588 volatile __u16 state; /* state info */
efac5276
RB
589 volatile __u16 old_state; /* old state, to be used for
590 * state transition triggerd
591 * synchronization
592 */
1845ed0b 593 __u32 fwmark; /* Fire wall mark from skb */
749c42b6 594 unsigned long sync_endtime; /* jiffies + sent_retries */
1da177e4
LT
595
596 /* Control members */
597 struct ip_vs_conn *control; /* Master control connection */
598 atomic_t n_control; /* Number of controlled ones */
599 struct ip_vs_dest *dest; /* real server */
600 atomic_t in_pkts; /* incoming packet counter */
601
07dcc686
SH
602 /* Packet transmitter for different forwarding methods. If it
603 * mangles the packet, it must return NF_DROP or better NF_STOLEN,
604 * otherwise this must be changed to a sk_buff **.
605 * NF_ACCEPT can be returned when destination is local.
1da177e4
LT
606 */
607 int (*packet_xmit)(struct sk_buff *skb, struct ip_vs_conn *cp,
d4383f04 608 struct ip_vs_protocol *pp, struct ip_vs_iphdr *iph);
1da177e4
LT
609
610 /* Note: we can group the following members into a structure,
07dcc686
SH
611 * in order to save more space, and the following members are
612 * only used in VS/NAT anyway
613 */
1da177e4
LT
614 struct ip_vs_app *app; /* bound ip_vs_app object */
615 void *app_data; /* Application private data */
616 struct ip_vs_seq in_seq; /* incoming seq. struct */
617 struct ip_vs_seq out_seq; /* outgoing seq. struct */
85999283 618
e9e5eee8 619 const struct ip_vs_pe *pe;
85999283
SH
620 char *pe_data;
621 __u8 pe_data_len;
088339a5
JA
622
623 struct rcu_head rcu_head;
1da177e4
LT
624};
625
07dcc686 626/* To save some memory in conn table when name space is disabled. */
6e67e586
HS
627static inline struct net *ip_vs_conn_net(const struct ip_vs_conn *cp)
628{
629#ifdef CONFIG_NET_NS
630 return cp->net;
631#else
632 return &init_net;
633#endif
634}
07dcc686 635
6e67e586
HS
636static inline void ip_vs_conn_net_set(struct ip_vs_conn *cp, struct net *net)
637{
638#ifdef CONFIG_NET_NS
639 cp->net = net;
640#endif
641}
642
643static inline int ip_vs_conn_net_eq(const struct ip_vs_conn *cp,
644 struct net *net)
645{
646#ifdef CONFIG_NET_NS
647 return cp->net == net;
648#else
649 return 1;
650#endif
651}
1da177e4 652
07dcc686
SH
653/* Extended internal versions of struct ip_vs_service_user and ip_vs_dest_user
654 * for IPv6 support.
c860c6b1 655 *
07dcc686
SH
656 * We need these to conveniently pass around service and destination
657 * options, but unfortunately, we also need to keep the old definitions to
658 * maintain userspace backwards compatibility for the setsockopt interface.
c860c6b1
JV
659 */
660struct ip_vs_service_user_kern {
661 /* virtual service addresses */
662 u16 af;
663 u16 protocol;
664 union nf_inet_addr addr; /* virtual ip address */
0a925864 665 __be16 port;
c860c6b1
JV
666 u32 fwmark; /* firwall mark of service */
667
668 /* virtual service options */
669 char *sched_name;
0d1e71b0 670 char *pe_name;
95c96174
ED
671 unsigned int flags; /* virtual service flags */
672 unsigned int timeout; /* persistent timeout in sec */
0a925864 673 __be32 netmask; /* persistent netmask or plen */
c860c6b1
JV
674};
675
676
677struct ip_vs_dest_user_kern {
678 /* destination server address */
679 union nf_inet_addr addr;
0a925864 680 __be16 port;
c860c6b1
JV
681
682 /* real server options */
95c96174 683 unsigned int conn_flags; /* connection flags */
c860c6b1
JV
684 int weight; /* destination weight */
685
686 /* thresholds for active connections */
687 u32 u_threshold; /* upper threshold */
688 u32 l_threshold; /* lower threshold */
6cff339b
AG
689
690 /* Address family of addr */
691 u16 af;
c860c6b1
JV
692};
693
694
1da177e4 695/*
07dcc686
SH
696 * The information about the virtual service offered to the net and the
697 * forwarding entries.
1da177e4
LT
698 */
699struct ip_vs_service {
ceec4c38
JA
700 struct hlist_node s_list; /* for normal service table */
701 struct hlist_node f_list; /* for fwmark-based service table */
1da177e4 702 atomic_t refcnt; /* reference counter */
1da177e4 703
e7ade46a 704 u16 af; /* address family */
1da177e4 705 __u16 protocol; /* which protocol (TCP/UDP) */
e7ade46a 706 union nf_inet_addr addr; /* IP address for virtual service */
014d730d 707 __be16 port; /* port number for the service */
1da177e4 708 __u32 fwmark; /* firewall mark of the service */
95c96174
ED
709 unsigned int flags; /* service status flags */
710 unsigned int timeout; /* persistent timeout in ticks */
0a925864 711 __be32 netmask; /* grouping granularity, mask/plen */
fc723250 712 struct net *net;
1da177e4
LT
713
714 struct list_head destinations; /* real server d-linked list */
715 __u32 num_dests; /* number of servers */
716 struct ip_vs_stats stats; /* statistics for the service */
1da177e4
LT
717
718 /* for scheduling */
ceec4c38 719 struct ip_vs_scheduler __rcu *scheduler; /* bound scheduler object */
ba3a3ce1 720 spinlock_t sched_lock; /* lock sched_data */
1da177e4 721 void *sched_data; /* scheduler application data */
85999283
SH
722
723 /* alternate persistence engine */
ceec4c38
JA
724 struct ip_vs_pe __rcu *pe;
725
726 struct rcu_head rcu_head;
1da177e4
LT
727};
728
026ace06
JA
729/* Information for cached dst */
730struct ip_vs_dest_dst {
731 struct dst_entry *dst_cache; /* destination cache entry */
732 u32 dst_cookie;
733 union nf_inet_addr dst_saddr;
734 struct rcu_head rcu_head;
735};
1da177e4 736
07dcc686
SH
737/* The real server destination forwarding entry with ip address, port number,
738 * and so on.
1da177e4
LT
739 */
740struct ip_vs_dest {
741 struct list_head n_list; /* for the dests in the service */
276472ea 742 struct hlist_node d_list; /* for table with all the dests */
1da177e4 743
e7ade46a 744 u16 af; /* address family */
014d730d 745 __be16 port; /* port number of the server */
f2431e6e 746 union nf_inet_addr addr; /* IP address of the server */
95c96174 747 volatile unsigned int flags; /* dest status flags */
1da177e4
LT
748 atomic_t conn_flags; /* flags to copy to conn */
749 atomic_t weight; /* server weight */
750
751 atomic_t refcnt; /* reference counter */
752 struct ip_vs_stats stats; /* statistics */
bcbde4c0 753 unsigned long idle_start; /* start time, jiffies */
1da177e4
LT
754
755 /* connection counters and thresholds */
756 atomic_t activeconns; /* active connections */
757 atomic_t inactconns; /* inactive connections */
758 atomic_t persistconns; /* persistent connections */
759 __u32 u_threshold; /* upper threshold */
760 __u32 l_threshold; /* lower threshold */
761
762 /* for destination cache */
763 spinlock_t dst_lock; /* lock of dst_cache */
026ace06 764 struct ip_vs_dest_dst __rcu *dest_dst; /* cached dst info */
1da177e4
LT
765
766 /* for virtual service */
bcbde4c0 767 struct ip_vs_service __rcu *svc; /* service it belongs to */
1da177e4 768 __u16 protocol; /* which protocol (TCP/UDP) */
014d730d 769 __be16 vport; /* virtual port number */
f2431e6e 770 union nf_inet_addr vaddr; /* virtual IP address */
1da177e4 771 __u32 vfwmark; /* firewall mark of service */
276472ea 772
578bc3ef 773 struct list_head t_list; /* in dest_trash */
276472ea 774 unsigned int in_rs_table:1; /* we are in rs_table */
1da177e4
LT
775};
776
07dcc686 777/* The scheduler object */
1da177e4
LT
778struct ip_vs_scheduler {
779 struct list_head n_list; /* d-linked list head */
780 char *name; /* scheduler name */
781 atomic_t refcnt; /* reference counter */
782 struct module *module; /* THIS_MODULE/NULL */
783
784 /* scheduler initializing service */
785 int (*init_service)(struct ip_vs_service *svc);
786 /* scheduling service finish */
ed3ffc4e 787 void (*done_service)(struct ip_vs_service *svc);
6b6df466
JA
788 /* dest is linked */
789 int (*add_dest)(struct ip_vs_service *svc, struct ip_vs_dest *dest);
790 /* dest is unlinked */
791 int (*del_dest)(struct ip_vs_service *svc, struct ip_vs_dest *dest);
792 /* dest is updated */
793 int (*upd_dest)(struct ip_vs_service *svc, struct ip_vs_dest *dest);
1da177e4
LT
794
795 /* selecting a server from the given service */
796 struct ip_vs_dest* (*schedule)(struct ip_vs_service *svc,
bba54de5
JA
797 const struct sk_buff *skb,
798 struct ip_vs_iphdr *iph);
1da177e4
LT
799};
800
85999283
SH
801/* The persistence engine object */
802struct ip_vs_pe {
803 struct list_head n_list; /* d-linked list head */
804 char *name; /* scheduler name */
805 atomic_t refcnt; /* reference counter */
806 struct module *module; /* THIS_MODULE/NULL */
807
808 /* get the connection template, if any */
809 int (*fill_param)(struct ip_vs_conn_param *p, struct sk_buff *skb);
810 bool (*ct_match)(const struct ip_vs_conn_param *p,
811 struct ip_vs_conn *ct);
812 u32 (*hashkey_raw)(const struct ip_vs_conn_param *p, u32 initval,
813 bool inverse);
a3c918ac 814 int (*show_pe_data)(const struct ip_vs_conn *cp, char *buf);
85999283 815};
1da177e4 816
07dcc686 817/* The application module object (a.k.a. app incarnation) */
fd2c3ef7 818struct ip_vs_app {
1da177e4
LT
819 struct list_head a_list; /* member in app list */
820 int type; /* IP_VS_APP_TYPE_xxx */
821 char *name; /* application module name */
822 __u16 protocol;
823 struct module *module; /* THIS_MODULE/NULL */
824 struct list_head incs_list; /* list of incarnations */
825
826 /* members for application incarnations */
827 struct list_head p_list; /* member in proto app list */
828 struct ip_vs_app *app; /* its real application */
014d730d 829 __be16 port; /* port number in net order */
1da177e4 830 atomic_t usecnt; /* usage counter */
363c97d7 831 struct rcu_head rcu_head;
1da177e4 832
07dcc686 833 /* output hook: Process packet in inout direction, diff set for TCP.
8b27b10f
JA
834 * Return: 0=Error, 1=Payload Not Mangled/Mangled but checksum is ok,
835 * 2=Mangled but checksum was not updated
836 */
1da177e4 837 int (*pkt_out)(struct ip_vs_app *, struct ip_vs_conn *,
3db05fea 838 struct sk_buff *, int *diff);
1da177e4 839
07dcc686 840 /* input hook: Process packet in outin direction, diff set for TCP.
8b27b10f
JA
841 * Return: 0=Error, 1=Payload Not Mangled/Mangled but checksum is ok,
842 * 2=Mangled but checksum was not updated
843 */
1da177e4 844 int (*pkt_in)(struct ip_vs_app *, struct ip_vs_conn *,
3db05fea 845 struct sk_buff *, int *diff);
1da177e4
LT
846
847 /* ip_vs_app initializer */
848 int (*init_conn)(struct ip_vs_app *, struct ip_vs_conn *);
849
850 /* ip_vs_app finish */
851 int (*done_conn)(struct ip_vs_app *, struct ip_vs_conn *);
852
853
854 /* not used now */
855 int (*bind_conn)(struct ip_vs_app *, struct ip_vs_conn *,
856 struct ip_vs_protocol *);
857
858 void (*unbind_conn)(struct ip_vs_app *, struct ip_vs_conn *);
859
860 int * timeout_table;
861 int * timeouts;
862 int timeouts_size;
863
864 int (*conn_schedule)(struct sk_buff *skb, struct ip_vs_app *app,
865 int *verdict, struct ip_vs_conn **cpp);
866
867 struct ip_vs_conn *
868 (*conn_in_get)(const struct sk_buff *skb, struct ip_vs_app *app,
d4383f04 869 const struct iphdr *iph, int inverse);
1da177e4
LT
870
871 struct ip_vs_conn *
872 (*conn_out_get)(const struct sk_buff *skb, struct ip_vs_app *app,
d4383f04 873 const struct iphdr *iph, int inverse);
1da177e4
LT
874
875 int (*state_transition)(struct ip_vs_conn *cp, int direction,
876 const struct sk_buff *skb,
877 struct ip_vs_app *app);
878
879 void (*timeout_change)(struct ip_vs_app *app, int flags);
880};
881
f73181c8
PNA
882struct ipvs_master_sync_state {
883 struct list_head sync_queue;
884 struct ip_vs_sync_buff *sync_buff;
07995674 885 unsigned long sync_queue_len;
f73181c8
PNA
886 unsigned int sync_queue_delay;
887 struct task_struct *master_thread;
888 struct delayed_work master_wakeup_work;
889 struct netns_ipvs *ipvs;
890};
891
578bc3ef
JA
892/* How much time to keep dests in trash */
893#define IP_VS_DEST_TRASH_PERIOD (120 * HZ)
894
e4ff6751 895struct ipvs_sync_daemon_cfg {
d3328817 896 union nf_inet_addr mcast_group;
e4ff6751
JA
897 int syncid;
898 u16 sync_maxlen;
d3328817
JA
899 u16 mcast_port;
900 u8 mcast_af;
901 u8 mcast_ttl;
e4ff6751
JA
902 /* multicast interface name */
903 char mcast_ifn[IP_VS_IFNAME_MAXLEN];
904};
905
2553d064
JA
906/* IPVS in network namespace */
907struct netns_ipvs {
908 int gen; /* Generation */
7a4f0761 909 int enable; /* enable like nf_hooks do */
07dcc686 910 /* Hash table: for real service lookups */
2553d064
JA
911 #define IP_VS_RTAB_BITS 4
912 #define IP_VS_RTAB_SIZE (1 << IP_VS_RTAB_BITS)
913 #define IP_VS_RTAB_MASK (IP_VS_RTAB_SIZE - 1)
914
276472ea 915 struct hlist_head rs_table[IP_VS_RTAB_SIZE];
2553d064
JA
916 /* ip_vs_app */
917 struct list_head app_list;
2553d064
JA
918 /* ip_vs_proto */
919 #define IP_VS_PROTO_TAB_SIZE 32 /* must be power of 2 */
920 struct ip_vs_proto_data *proto_data_table[IP_VS_PROTO_TAB_SIZE];
921 /* ip_vs_proto_tcp */
922#ifdef CONFIG_IP_VS_PROTO_TCP
923 #define TCP_APP_TAB_BITS 4
924 #define TCP_APP_TAB_SIZE (1 << TCP_APP_TAB_BITS)
925 #define TCP_APP_TAB_MASK (TCP_APP_TAB_SIZE - 1)
926 struct list_head tcp_apps[TCP_APP_TAB_SIZE];
2553d064
JA
927#endif
928 /* ip_vs_proto_udp */
929#ifdef CONFIG_IP_VS_PROTO_UDP
930 #define UDP_APP_TAB_BITS 4
931 #define UDP_APP_TAB_SIZE (1 << UDP_APP_TAB_BITS)
932 #define UDP_APP_TAB_MASK (UDP_APP_TAB_SIZE - 1)
933 struct list_head udp_apps[UDP_APP_TAB_SIZE];
2553d064
JA
934#endif
935 /* ip_vs_proto_sctp */
936#ifdef CONFIG_IP_VS_PROTO_SCTP
937 #define SCTP_APP_TAB_BITS 4
938 #define SCTP_APP_TAB_SIZE (1 << SCTP_APP_TAB_BITS)
939 #define SCTP_APP_TAB_MASK (SCTP_APP_TAB_SIZE - 1)
940 /* Hash table for SCTP application incarnations */
941 struct list_head sctp_apps[SCTP_APP_TAB_SIZE];
2553d064
JA
942#endif
943 /* ip_vs_conn */
07dcc686 944 atomic_t conn_count; /* connection counter */
2553d064
JA
945
946 /* ip_vs_ctl */
2a0751af 947 struct ip_vs_stats tot_stats; /* Statistics & est. */
2553d064
JA
948
949 int num_services; /* no of virtual services */
f2247fbd 950
f2247fbd
SH
951 /* Trash for destinations */
952 struct list_head dest_trash;
578bc3ef
JA
953 spinlock_t dest_trash_lock;
954 struct timer_list dest_trash_timer; /* expiration timer */
f2247fbd
SH
955 /* Service counters */
956 atomic_t ftpsvc_counter;
957 atomic_t nullsvc_counter;
958
959#ifdef CONFIG_SYSCTL
2553d064
JA
960 /* 1/rate drop and drop-entry variables */
961 struct delayed_work defense_work; /* Work handler */
962 int drop_rate;
963 int drop_counter;
964 atomic_t dropentry;
965 /* locks in ctl.c */
966 spinlock_t dropentry_lock; /* drop entry handling */
967 spinlock_t droppacket_lock; /* drop packet handling */
968 spinlock_t securetcp_lock; /* state and timeout tables */
2553d064
JA
969
970 /* sys-ctl struct */
971 struct ctl_table_header *sysctl_hdr;
972 struct ctl_table *sysctl_tbl;
f2247fbd
SH
973#endif
974
2553d064
JA
975 /* sysctl variables */
976 int sysctl_amemthresh;
977 int sysctl_am_droprate;
978 int sysctl_drop_entry;
979 int sysctl_drop_packet;
980 int sysctl_secure_tcp;
981#ifdef CONFIG_IP_VS_NFCT
982 int sysctl_conntrack;
983#endif
984 int sysctl_snat_reroute;
985 int sysctl_sync_ver;
f73181c8 986 int sysctl_sync_ports;
4d0c875d 987 int sysctl_sync_persist_mode;
07995674 988 unsigned long sysctl_sync_qlen_max;
1c003b15 989 int sysctl_sync_sock_size;
2553d064
JA
990 int sysctl_cache_bypass;
991 int sysctl_expire_nodest_conn;
c6c96c18
AF
992 int sysctl_sloppy_tcp;
993 int sysctl_sloppy_sctp;
2553d064
JA
994 int sysctl_expire_quiescent_template;
995 int sysctl_sync_threshold[2];
749c42b6
JA
996 unsigned int sysctl_sync_refresh_period;
997 int sysctl_sync_retries;
2553d064 998 int sysctl_nat_icmp_send;
3654e611 999 int sysctl_pmtu_disc;
0c12582f 1000 int sysctl_backup_only;
d752c364 1001 int sysctl_conn_reuse_mode;
2553d064
JA
1002
1003 /* ip_vs_lblc */
1004 int sysctl_lblc_expiration;
1005 struct ctl_table_header *lblc_ctl_header;
1006 struct ctl_table *lblc_ctl_table;
1007 /* ip_vs_lblcr */
1008 int sysctl_lblcr_expiration;
1009 struct ctl_table_header *lblcr_ctl_header;
1010 struct ctl_table *lblcr_ctl_table;
1011 /* ip_vs_est */
1012 struct list_head est_list; /* estimator list */
1013 spinlock_t est_lock;
1014 struct timer_list est_timer; /* Estimation timer */
1015 /* ip_vs_sync */
2553d064 1016 spinlock_t sync_lock;
f73181c8 1017 struct ipvs_master_sync_state *ms;
2553d064 1018 spinlock_t sync_buff_lock;
f73181c8
PNA
1019 struct task_struct **backup_threads;
1020 int threads_mask;
2553d064 1021 volatile int sync_state;
ae1d48b2 1022 struct mutex sync_mutex;
e4ff6751
JA
1023 struct ipvs_sync_daemon_cfg mcfg; /* Master Configuration */
1024 struct ipvs_sync_daemon_cfg bcfg; /* Backup Configuration */
2553d064
JA
1025 /* net name space ptr */
1026 struct net *net; /* Needed by timer routines */
07dcc686
SH
1027 /* Number of heterogeneous destinations, needed becaus heterogeneous
1028 * are not supported when synchronization is enabled.
1029 */
391f503d 1030 unsigned int mixed_address_family_dests;
2553d064 1031};
1da177e4 1032
59e0350e
SH
1033#define DEFAULT_SYNC_THRESHOLD 3
1034#define DEFAULT_SYNC_PERIOD 50
7532e8d4 1035#define DEFAULT_SYNC_VER 1
c6c96c18
AF
1036#define DEFAULT_SLOPPY_TCP 0
1037#define DEFAULT_SLOPPY_SCTP 0
749c42b6
JA
1038#define DEFAULT_SYNC_REFRESH_PERIOD (0U * HZ)
1039#define DEFAULT_SYNC_RETRIES 0
1c003b15
PNA
1040#define IPVS_SYNC_WAKEUP_RATE 8
1041#define IPVS_SYNC_QLEN_MAX (IPVS_SYNC_WAKEUP_RATE * 4)
1042#define IPVS_SYNC_SEND_DELAY (HZ / 50)
1043#define IPVS_SYNC_CHECK_PERIOD HZ
749c42b6 1044#define IPVS_SYNC_FLUSH_TIME (HZ * 2)
f73181c8 1045#define IPVS_SYNC_PORTS_MAX (1 << 6)
59e0350e
SH
1046
1047#ifdef CONFIG_SYSCTL
1048
1049static inline int sysctl_sync_threshold(struct netns_ipvs *ipvs)
1050{
1051 return ipvs->sysctl_sync_threshold[0];
1052}
1053
1054static inline int sysctl_sync_period(struct netns_ipvs *ipvs)
1055{
749c42b6
JA
1056 return ACCESS_ONCE(ipvs->sysctl_sync_threshold[1]);
1057}
1058
1059static inline unsigned int sysctl_sync_refresh_period(struct netns_ipvs *ipvs)
1060{
1061 return ACCESS_ONCE(ipvs->sysctl_sync_refresh_period);
1062}
1063
1064static inline int sysctl_sync_retries(struct netns_ipvs *ipvs)
1065{
1066 return ipvs->sysctl_sync_retries;
59e0350e
SH
1067}
1068
7532e8d4
SH
1069static inline int sysctl_sync_ver(struct netns_ipvs *ipvs)
1070{
1071 return ipvs->sysctl_sync_ver;
1072}
1073
c6c96c18
AF
1074static inline int sysctl_sloppy_tcp(struct netns_ipvs *ipvs)
1075{
1076 return ipvs->sysctl_sloppy_tcp;
1077}
1078
1079static inline int sysctl_sloppy_sctp(struct netns_ipvs *ipvs)
1080{
1081 return ipvs->sysctl_sloppy_sctp;
1082}
1083
f73181c8
PNA
1084static inline int sysctl_sync_ports(struct netns_ipvs *ipvs)
1085{
1086 return ACCESS_ONCE(ipvs->sysctl_sync_ports);
1087}
1088
4d0c875d
JA
1089static inline int sysctl_sync_persist_mode(struct netns_ipvs *ipvs)
1090{
1091 return ipvs->sysctl_sync_persist_mode;
1092}
1093
07995674 1094static inline unsigned long sysctl_sync_qlen_max(struct netns_ipvs *ipvs)
1c003b15
PNA
1095{
1096 return ipvs->sysctl_sync_qlen_max;
1097}
1098
1099static inline int sysctl_sync_sock_size(struct netns_ipvs *ipvs)
1100{
1101 return ipvs->sysctl_sync_sock_size;
1102}
1103
3654e611
JA
1104static inline int sysctl_pmtu_disc(struct netns_ipvs *ipvs)
1105{
1106 return ipvs->sysctl_pmtu_disc;
1107}
1108
0c12582f
JA
1109static inline int sysctl_backup_only(struct netns_ipvs *ipvs)
1110{
1111 return ipvs->sync_state & IP_VS_STATE_BACKUP &&
1112 ipvs->sysctl_backup_only;
1113}
1114
d752c364
MRL
1115static inline int sysctl_conn_reuse_mode(struct netns_ipvs *ipvs)
1116{
1117 return ipvs->sysctl_conn_reuse_mode;
1118}
1119
59e0350e
SH
1120#else
1121
1122static inline int sysctl_sync_threshold(struct netns_ipvs *ipvs)
1123{
1124 return DEFAULT_SYNC_THRESHOLD;
1125}
1126
1127static inline int sysctl_sync_period(struct netns_ipvs *ipvs)
1128{
1129 return DEFAULT_SYNC_PERIOD;
1130}
1131
749c42b6
JA
1132static inline unsigned int sysctl_sync_refresh_period(struct netns_ipvs *ipvs)
1133{
1134 return DEFAULT_SYNC_REFRESH_PERIOD;
1135}
1136
1137static inline int sysctl_sync_retries(struct netns_ipvs *ipvs)
1138{
1139 return DEFAULT_SYNC_RETRIES & 3;
1140}
1141
7532e8d4
SH
1142static inline int sysctl_sync_ver(struct netns_ipvs *ipvs)
1143{
1144 return DEFAULT_SYNC_VER;
1145}
1146
c6c96c18
AF
1147static inline int sysctl_sloppy_tcp(struct netns_ipvs *ipvs)
1148{
1149 return DEFAULT_SLOPPY_TCP;
1150}
1151
1152static inline int sysctl_sloppy_sctp(struct netns_ipvs *ipvs)
1153{
1154 return DEFAULT_SLOPPY_SCTP;
1155}
1156
f73181c8
PNA
1157static inline int sysctl_sync_ports(struct netns_ipvs *ipvs)
1158{
1159 return 1;
1160}
1161
4d0c875d
JA
1162static inline int sysctl_sync_persist_mode(struct netns_ipvs *ipvs)
1163{
1164 return 0;
1165}
1166
07995674 1167static inline unsigned long sysctl_sync_qlen_max(struct netns_ipvs *ipvs)
1c003b15
PNA
1168{
1169 return IPVS_SYNC_QLEN_MAX;
1170}
1171
1172static inline int sysctl_sync_sock_size(struct netns_ipvs *ipvs)
1173{
1174 return 0;
1175}
1176
3654e611
JA
1177static inline int sysctl_pmtu_disc(struct netns_ipvs *ipvs)
1178{
1179 return 1;
1180}
1181
0c12582f
JA
1182static inline int sysctl_backup_only(struct netns_ipvs *ipvs)
1183{
1184 return 0;
1185}
1186
d752c364
MRL
1187static inline int sysctl_conn_reuse_mode(struct netns_ipvs *ipvs)
1188{
1189 return 1;
1190}
1191
59e0350e
SH
1192#endif
1193
07dcc686
SH
1194/* IPVS core functions
1195 * (from ip_vs_core.c)
1da177e4 1196 */
5c3a0fd7
JP
1197const char *ip_vs_proto_name(unsigned int proto);
1198void ip_vs_init_hash_table(struct list_head *table, int rows);
afdd6140 1199#define IP_VS_INIT_HASH_TABLE(t) ip_vs_init_hash_table((t), ARRAY_SIZE((t)))
1da177e4 1200
1da177e4
LT
1201#define IP_VS_APP_TYPE_FTP 1
1202
07dcc686
SH
1203/* ip_vs_conn handling functions
1204 * (from ip_vs_conn.c)
1da177e4 1205 */
1da177e4
LT
1206enum {
1207 IP_VS_DIR_INPUT = 0,
1208 IP_VS_DIR_OUTPUT,
1209 IP_VS_DIR_INPUT_ONLY,
1210 IP_VS_DIR_LAST,
1211};
1212
6e67e586 1213static inline void ip_vs_conn_fill_param(struct net *net, int af, int protocol,
f11017ec
SH
1214 const union nf_inet_addr *caddr,
1215 __be16 cport,
1216 const union nf_inet_addr *vaddr,
1217 __be16 vport,
1218 struct ip_vs_conn_param *p)
1219{
6e67e586 1220 p->net = net;
f11017ec
SH
1221 p->af = af;
1222 p->protocol = protocol;
1223 p->caddr = caddr;
1224 p->cport = cport;
1225 p->vaddr = vaddr;
1226 p->vport = vport;
85999283
SH
1227 p->pe = NULL;
1228 p->pe_data = NULL;
f11017ec 1229}
28364a59 1230
f11017ec
SH
1231struct ip_vs_conn *ip_vs_conn_in_get(const struct ip_vs_conn_param *p);
1232struct ip_vs_conn *ip_vs_ct_in_get(const struct ip_vs_conn_param *p);
28364a59 1233
5c0d2374 1234struct ip_vs_conn * ip_vs_conn_in_get_proto(int af, const struct sk_buff *skb,
5c0d2374 1235 const struct ip_vs_iphdr *iph,
5c0d2374
SH
1236 int inverse);
1237
f11017ec 1238struct ip_vs_conn *ip_vs_conn_out_get(const struct ip_vs_conn_param *p);
1da177e4 1239
5c0d2374 1240struct ip_vs_conn * ip_vs_conn_out_get_proto(int af, const struct sk_buff *skb,
5c0d2374 1241 const struct ip_vs_iphdr *iph,
5c0d2374
SH
1242 int inverse);
1243
088339a5
JA
1244/* Get reference to gain full access to conn.
1245 * By default, RCU read-side critical sections have access only to
1246 * conn fields and its PE data, see ip_vs_conn_rcu_free() for reference.
1247 */
1248static inline bool __ip_vs_conn_get(struct ip_vs_conn *cp)
1249{
1250 return atomic_inc_not_zero(&cp->refcnt);
1251}
1252
1da177e4
LT
1253/* put back the conn without restarting its timer */
1254static inline void __ip_vs_conn_put(struct ip_vs_conn *cp)
1255{
4e857c58 1256 smp_mb__before_atomic();
1da177e4
LT
1257 atomic_dec(&cp->refcnt);
1258}
5c3a0fd7
JP
1259void ip_vs_conn_put(struct ip_vs_conn *cp);
1260void ip_vs_conn_fill_cport(struct ip_vs_conn *cp, __be16 cport);
1da177e4 1261
ba38528a 1262struct ip_vs_conn *ip_vs_conn_new(const struct ip_vs_conn_param *p, int dest_af,
f11017ec 1263 const union nf_inet_addr *daddr,
95c96174 1264 __be16 dport, unsigned int flags,
0e051e68 1265 struct ip_vs_dest *dest, __u32 fwmark);
5c3a0fd7 1266void ip_vs_conn_expire_now(struct ip_vs_conn *cp);
1da177e4 1267
5c3a0fd7 1268const char *ip_vs_state_name(__u16 proto, int state);
1da177e4 1269
5c3a0fd7
JP
1270void ip_vs_tcp_conn_listen(struct net *net, struct ip_vs_conn *cp);
1271int ip_vs_check_template(struct ip_vs_conn *ct);
1272void ip_vs_random_dropentry(struct net *net);
1273int ip_vs_conn_init(void);
1274void ip_vs_conn_cleanup(void);
1da177e4
LT
1275
1276static inline void ip_vs_control_del(struct ip_vs_conn *cp)
1277{
1278 struct ip_vs_conn *ctl_cp = cp->control;
1279 if (!ctl_cp) {
cfc78c5a
JV
1280 IP_VS_ERR_BUF("request control DEL for uncontrolled: "
1281 "%s:%d to %s:%d\n",
1282 IP_VS_DBG_ADDR(cp->af, &cp->caddr),
1283 ntohs(cp->cport),
1284 IP_VS_DBG_ADDR(cp->af, &cp->vaddr),
1285 ntohs(cp->vport));
1286
1da177e4
LT
1287 return;
1288 }
1289
cfc78c5a
JV
1290 IP_VS_DBG_BUF(7, "DELeting control for: "
1291 "cp.dst=%s:%d ctl_cp.dst=%s:%d\n",
1292 IP_VS_DBG_ADDR(cp->af, &cp->caddr),
1293 ntohs(cp->cport),
1294 IP_VS_DBG_ADDR(cp->af, &ctl_cp->caddr),
1295 ntohs(ctl_cp->cport));
1da177e4
LT
1296
1297 cp->control = NULL;
1298 if (atomic_read(&ctl_cp->n_control) == 0) {
cfc78c5a
JV
1299 IP_VS_ERR_BUF("BUG control DEL with n=0 : "
1300 "%s:%d to %s:%d\n",
1301 IP_VS_DBG_ADDR(cp->af, &cp->caddr),
1302 ntohs(cp->cport),
1303 IP_VS_DBG_ADDR(cp->af, &cp->vaddr),
1304 ntohs(cp->vport));
1305
1da177e4
LT
1306 return;
1307 }
1308 atomic_dec(&ctl_cp->n_control);
1309}
1310
1311static inline void
1312ip_vs_control_add(struct ip_vs_conn *cp, struct ip_vs_conn *ctl_cp)
1313{
1314 if (cp->control) {
cfc78c5a
JV
1315 IP_VS_ERR_BUF("request control ADD for already controlled: "
1316 "%s:%d to %s:%d\n",
1317 IP_VS_DBG_ADDR(cp->af, &cp->caddr),
1318 ntohs(cp->cport),
1319 IP_VS_DBG_ADDR(cp->af, &cp->vaddr),
1320 ntohs(cp->vport));
1321
1da177e4
LT
1322 ip_vs_control_del(cp);
1323 }
1324
cfc78c5a
JV
1325 IP_VS_DBG_BUF(7, "ADDing control for: "
1326 "cp.dst=%s:%d ctl_cp.dst=%s:%d\n",
1327 IP_VS_DBG_ADDR(cp->af, &cp->caddr),
1328 ntohs(cp->cport),
1329 IP_VS_DBG_ADDR(cp->af, &ctl_cp->caddr),
1330 ntohs(ctl_cp->cport));
1da177e4
LT
1331
1332 cp->control = ctl_cp;
1333 atomic_inc(&ctl_cp->n_control);
1334}
1335
07dcc686 1336/* IPVS netns init & cleanup functions */
5c3a0fd7
JP
1337int ip_vs_estimator_net_init(struct net *net);
1338int ip_vs_control_net_init(struct net *net);
1339int ip_vs_protocol_net_init(struct net *net);
1340int ip_vs_app_net_init(struct net *net);
1341int ip_vs_conn_net_init(struct net *net);
1342int ip_vs_sync_net_init(struct net *net);
1343void ip_vs_conn_net_cleanup(struct net *net);
1344void ip_vs_app_net_cleanup(struct net *net);
1345void ip_vs_protocol_net_cleanup(struct net *net);
1346void ip_vs_control_net_cleanup(struct net *net);
1347void ip_vs_estimator_net_cleanup(struct net *net);
1348void ip_vs_sync_net_cleanup(struct net *net);
1349void ip_vs_service_net_cleanup(struct net *net);
1da177e4 1350
07dcc686
SH
1351/* IPVS application functions
1352 * (from ip_vs_app.c)
1da177e4
LT
1353 */
1354#define IP_VS_APP_MAX_PORTS 8
5c3a0fd7
JP
1355struct ip_vs_app *register_ip_vs_app(struct net *net, struct ip_vs_app *app);
1356void unregister_ip_vs_app(struct net *net, struct ip_vs_app *app);
1357int ip_vs_bind_app(struct ip_vs_conn *cp, struct ip_vs_protocol *pp);
1358void ip_vs_unbind_app(struct ip_vs_conn *cp);
1359int register_ip_vs_app_inc(struct net *net, struct ip_vs_app *app, __u16 proto,
1360 __u16 port);
1361int ip_vs_app_inc_get(struct ip_vs_app *inc);
1362void ip_vs_app_inc_put(struct ip_vs_app *inc);
1363
1364int ip_vs_app_pkt_out(struct ip_vs_conn *, struct sk_buff *skb);
1365int ip_vs_app_pkt_in(struct ip_vs_conn *, struct sk_buff *skb);
1da177e4 1366
8be67a66
SH
1367int register_ip_vs_pe(struct ip_vs_pe *pe);
1368int unregister_ip_vs_pe(struct ip_vs_pe *pe);
e9e5eee8 1369struct ip_vs_pe *ip_vs_pe_getbyname(const char *name);
fe5e7a1e 1370struct ip_vs_pe *__ip_vs_pe_getbyname(const char *pe_name);
e9e5eee8 1371
07dcc686 1372/* Use a #define to avoid all of module.h just for these trivial ops */
69e7dae4
PG
1373#define ip_vs_pe_get(pe) \
1374 if (pe && pe->module) \
e9e5eee8 1375 __module_get(pe->module);
e9e5eee8 1376
69e7dae4
PG
1377#define ip_vs_pe_put(pe) \
1378 if (pe && pe->module) \
e9e5eee8 1379 module_put(pe->module);
1da177e4 1380
07dcc686 1381/* IPVS protocol functions (from ip_vs_proto.c) */
5c3a0fd7
JP
1382int ip_vs_protocol_init(void);
1383void ip_vs_protocol_cleanup(void);
1384void ip_vs_protocol_timeout_change(struct netns_ipvs *ipvs, int flags);
1385int *ip_vs_create_timeout_table(int *table, int size);
1386int ip_vs_set_state_timeout(int *table, int num, const char *const *names,
1387 const char *name, int to);
1388void ip_vs_tcpudp_debug_packet(int af, struct ip_vs_protocol *pp,
1389 const struct sk_buff *skb, int offset,
1390 const char *msg);
1da177e4
LT
1391
1392extern struct ip_vs_protocol ip_vs_protocol_tcp;
1393extern struct ip_vs_protocol ip_vs_protocol_udp;
1394extern struct ip_vs_protocol ip_vs_protocol_icmp;
1395extern struct ip_vs_protocol ip_vs_protocol_esp;
1396extern struct ip_vs_protocol ip_vs_protocol_ah;
2906f66a 1397extern struct ip_vs_protocol ip_vs_protocol_sctp;
1da177e4 1398
07dcc686
SH
1399/* Registering/unregistering scheduler functions
1400 * (from ip_vs_sched.c)
1da177e4 1401 */
5c3a0fd7
JP
1402int register_ip_vs_scheduler(struct ip_vs_scheduler *scheduler);
1403int unregister_ip_vs_scheduler(struct ip_vs_scheduler *scheduler);
1404int ip_vs_bind_scheduler(struct ip_vs_service *svc,
1405 struct ip_vs_scheduler *scheduler);
1406void ip_vs_unbind_scheduler(struct ip_vs_service *svc,
1407 struct ip_vs_scheduler *sched);
1408struct ip_vs_scheduler *ip_vs_scheduler_get(const char *sched_name);
1409void ip_vs_scheduler_put(struct ip_vs_scheduler *scheduler);
1410struct ip_vs_conn *
190ecd27 1411ip_vs_schedule(struct ip_vs_service *svc, struct sk_buff *skb,
d4383f04
JDB
1412 struct ip_vs_proto_data *pd, int *ignored,
1413 struct ip_vs_iphdr *iph);
5c3a0fd7
JP
1414int ip_vs_leave(struct ip_vs_service *svc, struct sk_buff *skb,
1415 struct ip_vs_proto_data *pd, struct ip_vs_iphdr *iph);
1da177e4 1416
5c3a0fd7 1417void ip_vs_scheduler_err(struct ip_vs_service *svc, const char *msg);
41ac51ee 1418
07dcc686 1419/* IPVS control data and functions (from ip_vs_ctl.c) */
1da177e4 1420extern struct ip_vs_stats ip_vs_stats;
b880c1f0 1421extern int sysctl_ip_vs_sync_ver;
1da177e4 1422
5c3a0fd7 1423struct ip_vs_service *
ceec4c38 1424ip_vs_service_find(struct net *net, int af, __u32 fwmark, __u16 protocol,
3c2e0505 1425 const union nf_inet_addr *vaddr, __be16 vport);
1da177e4 1426
5c3a0fd7
JP
1427bool ip_vs_has_real_service(struct net *net, int af, __u16 protocol,
1428 const union nf_inet_addr *daddr, __be16 dport);
1429
1430int ip_vs_use_count_inc(void);
1431void ip_vs_use_count_dec(void);
1432int ip_vs_register_nl_ioctl(void);
1433void ip_vs_unregister_nl_ioctl(void);
1434int ip_vs_control_init(void);
1435void ip_vs_control_cleanup(void);
1436struct ip_vs_dest *
655eef10
AG
1437ip_vs_find_dest(struct net *net, int svc_af, int dest_af,
1438 const union nf_inet_addr *daddr, __be16 dport,
1439 const union nf_inet_addr *vaddr, __be16 vport,
52793dbe 1440 __u16 protocol, __u32 fwmark, __u32 flags);
5c3a0fd7 1441void ip_vs_try_bind_dest(struct ip_vs_conn *cp);
1da177e4 1442
fca9c20a
JA
1443static inline void ip_vs_dest_hold(struct ip_vs_dest *dest)
1444{
1445 atomic_inc(&dest->refcnt);
1446}
1447
1448static inline void ip_vs_dest_put(struct ip_vs_dest *dest)
1449{
4e857c58 1450 smp_mb__before_atomic();
fca9c20a
JA
1451 atomic_dec(&dest->refcnt);
1452}
1da177e4 1453
9e4e948a
JA
1454static inline void ip_vs_dest_put_and_free(struct ip_vs_dest *dest)
1455{
1456 if (atomic_dec_return(&dest->refcnt) < 0)
1457 kfree(dest);
1458}
1459
07dcc686
SH
1460/* IPVS sync daemon data and function prototypes
1461 * (from ip_vs_sync.c)
1da177e4 1462 */
e4ff6751
JA
1463int start_sync_thread(struct net *net, struct ipvs_sync_daemon_cfg *cfg,
1464 int state);
5c3a0fd7
JP
1465int stop_sync_thread(struct net *net, int state);
1466void ip_vs_sync_conn(struct net *net, struct ip_vs_conn *cp, int pkts);
1da177e4 1467
07dcc686 1468/* IPVS rate estimator prototypes (from ip_vs_est.c) */
5c3a0fd7
JP
1469void ip_vs_start_estimator(struct net *net, struct ip_vs_stats *stats);
1470void ip_vs_stop_estimator(struct net *net, struct ip_vs_stats *stats);
1471void ip_vs_zero_estimator(struct ip_vs_stats *stats);
cd67cd5e 1472void ip_vs_read_estimator(struct ip_vs_kstats *dst, struct ip_vs_stats *stats);
1da177e4 1473
07dcc686 1474/* Various IPVS packet transmitters (from ip_vs_xmit.c) */
5c3a0fd7
JP
1475int ip_vs_null_xmit(struct sk_buff *skb, struct ip_vs_conn *cp,
1476 struct ip_vs_protocol *pp, struct ip_vs_iphdr *iph);
1477int ip_vs_bypass_xmit(struct sk_buff *skb, struct ip_vs_conn *cp,
1478 struct ip_vs_protocol *pp, struct ip_vs_iphdr *iph);
1479int ip_vs_nat_xmit(struct sk_buff *skb, struct ip_vs_conn *cp,
1480 struct ip_vs_protocol *pp, struct ip_vs_iphdr *iph);
1481int ip_vs_tunnel_xmit(struct sk_buff *skb, struct ip_vs_conn *cp,
1482 struct ip_vs_protocol *pp, struct ip_vs_iphdr *iph);
1483int ip_vs_dr_xmit(struct sk_buff *skb, struct ip_vs_conn *cp,
1484 struct ip_vs_protocol *pp, struct ip_vs_iphdr *iph);
1485int ip_vs_icmp_xmit(struct sk_buff *skb, struct ip_vs_conn *cp,
1486 struct ip_vs_protocol *pp, int offset,
1487 unsigned int hooknum, struct ip_vs_iphdr *iph);
1488void ip_vs_dest_dst_rcu_free(struct rcu_head *head);
1da177e4 1489
b3cdd2a7 1490#ifdef CONFIG_IP_VS_IPV6
5c3a0fd7
JP
1491int ip_vs_bypass_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_nat_xmit_v6(struct sk_buff *skb, struct ip_vs_conn *cp,
1494 struct ip_vs_protocol *pp, struct ip_vs_iphdr *iph);
1495int ip_vs_tunnel_xmit_v6(struct sk_buff *skb, struct ip_vs_conn *cp,
1496 struct ip_vs_protocol *pp, struct ip_vs_iphdr *iph);
1497int ip_vs_dr_xmit_v6(struct sk_buff *skb, struct ip_vs_conn *cp,
1498 struct ip_vs_protocol *pp, struct ip_vs_iphdr *iph);
1499int ip_vs_icmp_xmit_v6(struct sk_buff *skb, struct ip_vs_conn *cp,
1500 struct ip_vs_protocol *pp, int offset,
1501 unsigned int hooknum, struct ip_vs_iphdr *iph);
b3cdd2a7 1502#endif
1da177e4 1503
3a1bbf18 1504#ifdef CONFIG_SYSCTL
07dcc686
SH
1505/* This is a simple mechanism to ignore packets when
1506 * we are loaded. Just set ip_vs_drop_rate to 'n' and
1507 * we start to drop 1/rate of the packets
1da177e4 1508 */
a0840e2e 1509static inline int ip_vs_todrop(struct netns_ipvs *ipvs)
1da177e4 1510{
a0840e2e
HS
1511 if (!ipvs->drop_rate)
1512 return 0;
1513 if (--ipvs->drop_counter > 0)
1514 return 0;
1515 ipvs->drop_counter = ipvs->drop_rate;
1da177e4
LT
1516 return 1;
1517}
3a1bbf18
SH
1518#else
1519static inline int ip_vs_todrop(struct netns_ipvs *ipvs) { return 0; }
1520#endif
1da177e4 1521
07dcc686 1522/* ip_vs_fwd_tag returns the forwarding tag of the connection */
1da177e4
LT
1523#define IP_VS_FWD_METHOD(cp) (cp->flags & IP_VS_CONN_F_FWD_MASK)
1524
732db659 1525static inline char ip_vs_fwd_tag(struct ip_vs_conn *cp)
1da177e4
LT
1526{
1527 char fwd;
1528
1529 switch (IP_VS_FWD_METHOD(cp)) {
1530 case IP_VS_CONN_F_MASQ:
1531 fwd = 'M'; break;
1532 case IP_VS_CONN_F_LOCALNODE:
1533 fwd = 'L'; break;
1534 case IP_VS_CONN_F_TUNNEL:
1535 fwd = 'T'; break;
1536 case IP_VS_CONN_F_DROUTE:
1537 fwd = 'R'; break;
1538 case IP_VS_CONN_F_BYPASS:
1539 fwd = 'B'; break;
1540 default:
1541 fwd = '?'; break;
1542 }
1543 return fwd;
1544}
1545
5c3a0fd7
JP
1546void ip_vs_nat_icmp(struct sk_buff *skb, struct ip_vs_protocol *pp,
1547 struct ip_vs_conn *cp, int dir);
b3cdd2a7
JV
1548
1549#ifdef CONFIG_IP_VS_IPV6
5c3a0fd7
JP
1550void ip_vs_nat_icmp_v6(struct sk_buff *skb, struct ip_vs_protocol *pp,
1551 struct ip_vs_conn *cp, int dir);
b3cdd2a7 1552#endif
1da177e4 1553
5c3a0fd7 1554__sum16 ip_vs_checksum_complete(struct sk_buff *skb, int offset);
1da177e4 1555
f9214b26 1556static inline __wsum ip_vs_check_diff4(__be32 old, __be32 new, __wsum oldsum)
1da177e4 1557{
f9214b26 1558 __be32 diff[2] = { ~old, new };
1da177e4 1559
07f0757a 1560 return csum_partial(diff, sizeof(diff), oldsum);
f9214b26
AV
1561}
1562
0bbdd42b
JV
1563#ifdef CONFIG_IP_VS_IPV6
1564static inline __wsum ip_vs_check_diff16(const __be32 *old, const __be32 *new,
1565 __wsum oldsum)
1566{
1567 __be32 diff[8] = { ~old[3], ~old[2], ~old[1], ~old[0],
1568 new[3], new[2], new[1], new[0] };
1569
07f0757a 1570 return csum_partial(diff, sizeof(diff), oldsum);
0bbdd42b
JV
1571}
1572#endif
1573
f9214b26
AV
1574static inline __wsum ip_vs_check_diff2(__be16 old, __be16 new, __wsum oldsum)
1575{
1576 __be16 diff[2] = { ~old, new };
1577
07f0757a 1578 return csum_partial(diff, sizeof(diff), oldsum);
1da177e4
LT
1579}
1580
07dcc686 1581/* Forget current conntrack (unconfirmed) and attach notrack entry */
cf356d69
JA
1582static inline void ip_vs_notrack(struct sk_buff *skb)
1583{
1584#if defined(CONFIG_NF_CONNTRACK) || defined(CONFIG_NF_CONNTRACK_MODULE)
1585 enum ip_conntrack_info ctinfo;
06b69390 1586 struct nf_conn *ct = nf_ct_get(skb, &ctinfo);
cf356d69
JA
1587
1588 if (!ct || !nf_ct_is_untracked(ct)) {
9e33ce45 1589 nf_conntrack_put(skb->nfct);
cf356d69
JA
1590 skb->nfct = &nf_ct_untracked_get()->ct_general;
1591 skb->nfctinfo = IP_CT_NEW;
1592 nf_conntrack_get(skb->nfct);
1593 }
1594#endif
1595}
1596
f4bc17cd 1597#ifdef CONFIG_IP_VS_NFCT
07dcc686
SH
1598/* Netfilter connection tracking
1599 * (from ip_vs_nfct.c)
f4bc17cd 1600 */
a0840e2e 1601static inline int ip_vs_conntrack_enabled(struct netns_ipvs *ipvs)
f4bc17cd 1602{
a4e2f5a7 1603#ifdef CONFIG_SYSCTL
a0840e2e 1604 return ipvs->sysctl_conntrack;
a4e2f5a7
SH
1605#else
1606 return 0;
1607#endif
f4bc17cd
JA
1608}
1609
5c3a0fd7
JP
1610void ip_vs_update_conntrack(struct sk_buff *skb, struct ip_vs_conn *cp,
1611 int outin);
1612int ip_vs_confirm_conntrack(struct sk_buff *skb);
1613void ip_vs_nfct_expect_related(struct sk_buff *skb, struct nf_conn *ct,
1614 struct ip_vs_conn *cp, u_int8_t proto,
1615 const __be16 port, int from_rs);
1616void ip_vs_conn_drop_conntrack(struct ip_vs_conn *cp);
f4bc17cd
JA
1617
1618#else
1619
a0840e2e 1620static inline int ip_vs_conntrack_enabled(struct netns_ipvs *ipvs)
f4bc17cd
JA
1621{
1622 return 0;
1623}
1624
1625static inline void ip_vs_update_conntrack(struct sk_buff *skb,
1626 struct ip_vs_conn *cp, int outin)
1627{
1628}
1629
e23ebf0f 1630static inline int ip_vs_confirm_conntrack(struct sk_buff *skb)
f4bc17cd
JA
1631{
1632 return NF_ACCEPT;
1633}
1634
1635static inline void ip_vs_conn_drop_conntrack(struct ip_vs_conn *cp)
1636{
1637}
07dcc686 1638#endif /* CONFIG_IP_VS_NFCT */
6523ce15 1639
c16526a7 1640static inline int
b552f7e3
CG
1641ip_vs_dest_conn_overhead(struct ip_vs_dest *dest)
1642{
07dcc686 1643 /* We think the overhead of processing active connections is 256
b552f7e3
CG
1644 * times higher than that of inactive connections in average. (This
1645 * 256 times might not be accurate, we will change it later) We
1646 * use the following formula to estimate the overhead now:
1647 * dest->activeconns*256 + dest->inactconns
1648 */
1649 return (atomic_read(&dest->activeconns) << 8) +
1650 atomic_read(&dest->inactconns);
1651}
1652
bc4768eb 1653#endif /* _NET_IP_VS_H */
This page took 1.220059 seconds and 5 git commands to generate.