2 * data structure and functionality definitions
8 #include <linux/ip_vs.h> /* definitions shared with userland */
10 #include <asm/types.h> /* for __uXX types */
12 #include <linux/list.h> /* for struct list_head */
13 #include <linux/spinlock.h> /* for struct rwlock_t */
14 #include <linux/atomic.h> /* for struct atomic_t */
15 #include <linux/compiler.h>
16 #include <linux/timer.h>
17 #include <linux/bug.h>
19 #include <net/checksum.h>
20 #include <linux/netfilter.h> /* for union nf_inet_addr */
22 #include <linux/ipv6.h> /* for struct ipv6hdr */
24 #if IS_ENABLED(CONFIG_IP_VS_IPV6)
25 #include <linux/netfilter_ipv6/ip6_tables.h>
27 #if IS_ENABLED(CONFIG_NF_CONNTRACK)
28 #include <net/netfilter/nf_conntrack.h>
30 #include <net/net_namespace.h> /* Netw namespace */
32 /* Generic access of ipvs struct */
33 static inline struct netns_ipvs
*net_ipvs(struct net
* net
)
38 /* Get net ptr from skb in traffic cases
39 * use skb_sknet when call is from userland (ioctl or netlink)
41 static inline struct net
*skb_net(const struct sk_buff
*skb
)
44 #ifdef CONFIG_IP_VS_DEBUG
46 * This is used for debug only.
47 * Start with the most likely hit
50 if (likely(skb
->dev
&& skb
->dev
->nd_net
))
51 return dev_net(skb
->dev
);
52 if (skb_dst(skb
) && skb_dst(skb
)->dev
)
53 return dev_net(skb_dst(skb
)->dev
);
54 WARN(skb
->sk
, "Maybe skb_sknet should be used in %s() at line:%d\n",
56 if (likely(skb
->sk
&& skb
->sk
->sk_net
))
57 return sock_net(skb
->sk
);
58 pr_err("There is no net ptr to find in the skb in %s() line:%d\n",
62 return dev_net(skb
->dev
? : skb_dst(skb
)->dev
);
69 static inline struct net
*skb_sknet(const struct sk_buff
*skb
)
72 #ifdef CONFIG_IP_VS_DEBUG
73 /* Start with the most likely hit */
74 if (likely(skb
->sk
&& skb
->sk
->sk_net
))
75 return sock_net(skb
->sk
);
76 WARN(skb
->dev
, "Maybe skb_net should be used instead in %s() line:%d\n",
78 if (likely(skb
->dev
&& skb
->dev
->nd_net
))
79 return dev_net(skb
->dev
);
80 pr_err("There is no net ptr to find in the skb in %s() line:%d\n",
84 return sock_net(skb
->sk
);
91 /* This one needed for single_open_net since net is stored directly in
92 * private not as a struct i.e. seq_file_net can't be used.
94 static inline struct net
*seq_file_single_net(struct seq_file
*seq
)
97 return (struct net
*)seq
->private;
103 /* Connections' size value needed by ip_vs_ctl.c */
104 extern int ip_vs_conn_tab_size
;
107 __u32 len
; /* IPv4 simply where L4 starts
108 * IPv6 where L4 Transport Header starts */
109 __u16 fragoffs
; /* IPv6 fragment offset, 0 if first frag (or not frag)*/
112 union nf_inet_addr saddr
;
113 union nf_inet_addr daddr
;
116 static inline void *frag_safe_skb_hp(const struct sk_buff
*skb
, int offset
,
117 int len
, void *buffer
,
118 const struct ip_vs_iphdr
*ipvsh
)
120 return skb_header_pointer(skb
, offset
, len
, buffer
);
124 ip_vs_fill_ip4hdr(const void *nh
, struct ip_vs_iphdr
*iphdr
)
126 const struct iphdr
*iph
= nh
;
128 iphdr
->len
= iph
->ihl
* 4;
130 iphdr
->protocol
= iph
->protocol
;
131 iphdr
->saddr
.ip
= iph
->saddr
;
132 iphdr
->daddr
.ip
= iph
->daddr
;
135 /* This function handles filling *ip_vs_iphdr, both for IPv4 and IPv6.
136 * IPv6 requires some extra work, as finding proper header position,
137 * depend on the IPv6 extension headers.
140 ip_vs_fill_iph_skb(int af
, const struct sk_buff
*skb
, struct ip_vs_iphdr
*iphdr
)
142 #ifdef CONFIG_IP_VS_IPV6
143 if (af
== AF_INET6
) {
144 const struct ipv6hdr
*iph
=
145 (struct ipv6hdr
*)skb_network_header(skb
);
146 iphdr
->saddr
.in6
= iph
->saddr
;
147 iphdr
->daddr
.in6
= iph
->daddr
;
148 /* ipv6_find_hdr() updates len, flags */
151 iphdr
->protocol
= ipv6_find_hdr(skb
, &iphdr
->len
, -1,
157 const struct iphdr
*iph
=
158 (struct iphdr
*)skb_network_header(skb
);
159 iphdr
->len
= iph
->ihl
* 4;
161 iphdr
->protocol
= iph
->protocol
;
162 iphdr
->saddr
.ip
= iph
->saddr
;
163 iphdr
->daddr
.ip
= iph
->daddr
;
167 static inline void ip_vs_addr_copy(int af
, union nf_inet_addr
*dst
,
168 const union nf_inet_addr
*src
)
170 #ifdef CONFIG_IP_VS_IPV6
178 static inline void ip_vs_addr_set(int af
, union nf_inet_addr
*dst
,
179 const union nf_inet_addr
*src
)
181 #ifdef CONFIG_IP_VS_IPV6
182 if (af
== AF_INET6
) {
193 static inline int ip_vs_addr_equal(int af
, const union nf_inet_addr
*a
,
194 const union nf_inet_addr
*b
)
196 #ifdef CONFIG_IP_VS_IPV6
198 return ipv6_addr_equal(&a
->in6
, &b
->in6
);
200 return a
->ip
== b
->ip
;
203 #ifdef CONFIG_IP_VS_DEBUG
204 #include <linux/net.h>
206 int ip_vs_get_debug_level(void);
208 static inline const char *ip_vs_dbg_addr(int af
, char *buf
, size_t buf_len
,
209 const union nf_inet_addr
*addr
,
213 #ifdef CONFIG_IP_VS_IPV6
215 len
= snprintf(&buf
[*idx
], buf_len
- *idx
, "[%pI6c]",
219 len
= snprintf(&buf
[*idx
], buf_len
- *idx
, "%pI4",
223 BUG_ON(*idx
> buf_len
+ 1);
224 return &buf
[*idx
- len
];
227 #define IP_VS_DBG_BUF(level, msg, ...) \
229 char ip_vs_dbg_buf[160]; \
230 int ip_vs_dbg_idx = 0; \
231 if (level <= ip_vs_get_debug_level()) \
232 printk(KERN_DEBUG pr_fmt(msg), ##__VA_ARGS__); \
234 #define IP_VS_ERR_BUF(msg...) \
236 char ip_vs_dbg_buf[160]; \
237 int ip_vs_dbg_idx = 0; \
241 /* Only use from within IP_VS_DBG_BUF() or IP_VS_ERR_BUF macros */
242 #define IP_VS_DBG_ADDR(af, addr) \
243 ip_vs_dbg_addr(af, ip_vs_dbg_buf, \
244 sizeof(ip_vs_dbg_buf), addr, \
247 #define IP_VS_DBG(level, msg, ...) \
249 if (level <= ip_vs_get_debug_level()) \
250 printk(KERN_DEBUG pr_fmt(msg), ##__VA_ARGS__); \
252 #define IP_VS_DBG_RL(msg, ...) \
254 if (net_ratelimit()) \
255 printk(KERN_DEBUG pr_fmt(msg), ##__VA_ARGS__); \
257 #define IP_VS_DBG_PKT(level, af, pp, skb, ofs, msg) \
259 if (level <= ip_vs_get_debug_level()) \
260 pp->debug_packet(af, pp, skb, ofs, msg); \
262 #define IP_VS_DBG_RL_PKT(level, af, pp, skb, ofs, msg) \
264 if (level <= ip_vs_get_debug_level() && \
266 pp->debug_packet(af, pp, skb, ofs, msg); \
268 #else /* NO DEBUGGING at ALL */
269 #define IP_VS_DBG_BUF(level, msg...) do {} while (0)
270 #define IP_VS_ERR_BUF(msg...) do {} while (0)
271 #define IP_VS_DBG(level, msg...) do {} while (0)
272 #define IP_VS_DBG_RL(msg...) do {} while (0)
273 #define IP_VS_DBG_PKT(level, af, pp, skb, ofs, msg) do {} while (0)
274 #define IP_VS_DBG_RL_PKT(level, af, pp, skb, ofs, msg) do {} while (0)
277 #define IP_VS_BUG() BUG()
278 #define IP_VS_ERR_RL(msg, ...) \
280 if (net_ratelimit()) \
281 pr_err(msg, ##__VA_ARGS__); \
284 #ifdef CONFIG_IP_VS_DEBUG
285 #define EnterFunction(level) \
287 if (level <= ip_vs_get_debug_level()) \
289 pr_fmt("Enter: %s, %s line %i\n"), \
290 __func__, __FILE__, __LINE__); \
292 #define LeaveFunction(level) \
294 if (level <= ip_vs_get_debug_level()) \
296 pr_fmt("Leave: %s, %s line %i\n"), \
297 __func__, __FILE__, __LINE__); \
300 #define EnterFunction(level) do {} while (0)
301 #define LeaveFunction(level) do {} while (0)
304 /* The port number of FTP service (in network order). */
305 #define FTPPORT cpu_to_be16(21)
306 #define FTPDATA cpu_to_be16(20)
308 /* TCP State Values */
310 IP_VS_TCP_S_NONE
= 0,
311 IP_VS_TCP_S_ESTABLISHED
,
312 IP_VS_TCP_S_SYN_SENT
,
313 IP_VS_TCP_S_SYN_RECV
,
314 IP_VS_TCP_S_FIN_WAIT
,
315 IP_VS_TCP_S_TIME_WAIT
,
317 IP_VS_TCP_S_CLOSE_WAIT
,
318 IP_VS_TCP_S_LAST_ACK
,
324 /* UDP State Values */
330 /* ICMP State Values */
336 /* SCTP State Values */
337 enum ip_vs_sctp_states
{
341 IP_VS_SCTP_S_COOKIE_SENT
,
342 IP_VS_SCTP_S_COOKIE_REPLIED
,
343 IP_VS_SCTP_S_COOKIE_WAIT
,
345 IP_VS_SCTP_S_COOKIE_ECHOED
,
346 IP_VS_SCTP_S_ESTABLISHED
,
347 IP_VS_SCTP_S_SHUTDOWN_SENT
,
348 IP_VS_SCTP_S_SHUTDOWN_RECEIVED
,
349 IP_VS_SCTP_S_SHUTDOWN_ACK_SENT
,
350 IP_VS_SCTP_S_REJECTED
,
355 /* Delta sequence info structure
356 * Each ip_vs_conn has 2 (output AND input seq. changes).
357 * Only used in the VS/NAT.
360 __u32 init_seq
; /* Add delta from this seq */
361 __u32 delta
; /* Delta in sequence numbers */
362 __u32 previous_delta
; /* Delta in sequence numbers
363 * before last resized pkt */
366 /* counters per cpu */
367 struct ip_vs_counters
{
368 __u32 conns
; /* connections scheduled */
369 __u32 inpkts
; /* incoming packets */
370 __u32 outpkts
; /* outgoing packets */
371 __u64 inbytes
; /* incoming bytes */
372 __u64 outbytes
; /* outgoing bytes */
375 struct ip_vs_cpu_stats
{
376 struct ip_vs_counters ustats
;
377 struct u64_stats_sync syncp
;
380 /* IPVS statistics objects */
381 struct ip_vs_estimator
{
382 struct list_head list
;
398 struct ip_vs_stats_user ustats
; /* statistics */
399 struct ip_vs_estimator est
; /* estimator */
400 struct ip_vs_cpu_stats __percpu
*cpustats
; /* per cpu counters */
401 spinlock_t lock
; /* spin lock */
402 struct ip_vs_stats_user ustats0
; /* reset values */
410 struct ip_vs_proto_data
;
412 struct ip_vs_protocol
{
413 struct ip_vs_protocol
*next
;
419 void (*init
)(struct ip_vs_protocol
*pp
);
421 void (*exit
)(struct ip_vs_protocol
*pp
);
423 int (*init_netns
)(struct net
*net
, struct ip_vs_proto_data
*pd
);
425 void (*exit_netns
)(struct net
*net
, struct ip_vs_proto_data
*pd
);
427 int (*conn_schedule
)(int af
, struct sk_buff
*skb
,
428 struct ip_vs_proto_data
*pd
,
429 int *verdict
, struct ip_vs_conn
**cpp
,
430 struct ip_vs_iphdr
*iph
);
433 (*conn_in_get
)(int af
,
434 const struct sk_buff
*skb
,
435 const struct ip_vs_iphdr
*iph
,
439 (*conn_out_get
)(int af
,
440 const struct sk_buff
*skb
,
441 const struct ip_vs_iphdr
*iph
,
444 int (*snat_handler
)(struct sk_buff
*skb
, struct ip_vs_protocol
*pp
,
445 struct ip_vs_conn
*cp
, struct ip_vs_iphdr
*iph
);
447 int (*dnat_handler
)(struct sk_buff
*skb
, struct ip_vs_protocol
*pp
,
448 struct ip_vs_conn
*cp
, struct ip_vs_iphdr
*iph
);
450 int (*csum_check
)(int af
, struct sk_buff
*skb
,
451 struct ip_vs_protocol
*pp
);
453 const char *(*state_name
)(int state
);
455 void (*state_transition
)(struct ip_vs_conn
*cp
, int direction
,
456 const struct sk_buff
*skb
,
457 struct ip_vs_proto_data
*pd
);
459 int (*register_app
)(struct net
*net
, struct ip_vs_app
*inc
);
461 void (*unregister_app
)(struct net
*net
, struct ip_vs_app
*inc
);
463 int (*app_conn_bind
)(struct ip_vs_conn
*cp
);
465 void (*debug_packet
)(int af
, struct ip_vs_protocol
*pp
,
466 const struct sk_buff
*skb
,
470 void (*timeout_change
)(struct ip_vs_proto_data
*pd
, int flags
);
473 /* protocol data per netns */
474 struct ip_vs_proto_data
{
475 struct ip_vs_proto_data
*next
;
476 struct ip_vs_protocol
*pp
;
477 int *timeout_table
; /* protocol timeout table */
478 atomic_t appcnt
; /* counter of proto app incs. */
479 struct tcp_states_t
*tcp_state_table
;
482 struct ip_vs_protocol
*ip_vs_proto_get(unsigned short proto
);
483 struct ip_vs_proto_data
*ip_vs_proto_data_get(struct net
*net
,
484 unsigned short proto
);
486 struct ip_vs_conn_param
{
488 const union nf_inet_addr
*caddr
;
489 const union nf_inet_addr
*vaddr
;
495 const struct ip_vs_pe
*pe
;
500 /* IP_VS structure allocated for each dynamically scheduled connection */
502 struct hlist_node c_list
; /* hashed list heads */
503 /* Protocol, addresses and port numbers */
507 u16 af
; /* address family */
508 union nf_inet_addr caddr
; /* client address */
509 union nf_inet_addr vaddr
; /* virtual address */
510 union nf_inet_addr daddr
; /* destination address */
511 volatile __u32 flags
; /* status flags */
512 __u16 protocol
; /* Which protocol (TCP/UDP) */
513 __u16 daf
; /* Address family of the dest */
515 struct net
*net
; /* Name space */
518 /* counter and timer */
519 atomic_t refcnt
; /* reference count */
520 struct timer_list timer
; /* Expiration timer */
521 volatile unsigned long timeout
; /* timeout */
523 /* Flags and state transition */
524 spinlock_t lock
; /* lock for state transition */
525 volatile __u16 state
; /* state info */
526 volatile __u16 old_state
; /* old state, to be used for
527 * state transition triggerd
530 __u32 fwmark
; /* Fire wall mark from skb */
531 unsigned long sync_endtime
; /* jiffies + sent_retries */
533 /* Control members */
534 struct ip_vs_conn
*control
; /* Master control connection */
535 atomic_t n_control
; /* Number of controlled ones */
536 struct ip_vs_dest
*dest
; /* real server */
537 atomic_t in_pkts
; /* incoming packet counter */
539 /* Packet transmitter for different forwarding methods. If it
540 * mangles the packet, it must return NF_DROP or better NF_STOLEN,
541 * otherwise this must be changed to a sk_buff **.
542 * NF_ACCEPT can be returned when destination is local.
544 int (*packet_xmit
)(struct sk_buff
*skb
, struct ip_vs_conn
*cp
,
545 struct ip_vs_protocol
*pp
, struct ip_vs_iphdr
*iph
);
547 /* Note: we can group the following members into a structure,
548 * in order to save more space, and the following members are
549 * only used in VS/NAT anyway
551 struct ip_vs_app
*app
; /* bound ip_vs_app object */
552 void *app_data
; /* Application private data */
553 struct ip_vs_seq in_seq
; /* incoming seq. struct */
554 struct ip_vs_seq out_seq
; /* outgoing seq. struct */
556 const struct ip_vs_pe
*pe
;
560 struct rcu_head rcu_head
;
563 /* To save some memory in conn table when name space is disabled. */
564 static inline struct net
*ip_vs_conn_net(const struct ip_vs_conn
*cp
)
573 static inline void ip_vs_conn_net_set(struct ip_vs_conn
*cp
, struct net
*net
)
580 static inline int ip_vs_conn_net_eq(const struct ip_vs_conn
*cp
,
584 return cp
->net
== net
;
590 /* Extended internal versions of struct ip_vs_service_user and ip_vs_dest_user
593 * We need these to conveniently pass around service and destination
594 * options, but unfortunately, we also need to keep the old definitions to
595 * maintain userspace backwards compatibility for the setsockopt interface.
597 struct ip_vs_service_user_kern
{
598 /* virtual service addresses */
601 union nf_inet_addr addr
; /* virtual ip address */
603 u32 fwmark
; /* firwall mark of service */
605 /* virtual service options */
608 unsigned int flags
; /* virtual service flags */
609 unsigned int timeout
; /* persistent timeout in sec */
610 __be32 netmask
; /* persistent netmask or plen */
614 struct ip_vs_dest_user_kern
{
615 /* destination server address */
616 union nf_inet_addr addr
;
619 /* real server options */
620 unsigned int conn_flags
; /* connection flags */
621 int weight
; /* destination weight */
623 /* thresholds for active connections */
624 u32 u_threshold
; /* upper threshold */
625 u32 l_threshold
; /* lower threshold */
627 /* Address family of addr */
633 * The information about the virtual service offered to the net and the
634 * forwarding entries.
636 struct ip_vs_service
{
637 struct hlist_node s_list
; /* for normal service table */
638 struct hlist_node f_list
; /* for fwmark-based service table */
639 atomic_t refcnt
; /* reference counter */
641 u16 af
; /* address family */
642 __u16 protocol
; /* which protocol (TCP/UDP) */
643 union nf_inet_addr addr
; /* IP address for virtual service */
644 __be16 port
; /* port number for the service */
645 __u32 fwmark
; /* firewall mark of the service */
646 unsigned int flags
; /* service status flags */
647 unsigned int timeout
; /* persistent timeout in ticks */
648 __be32 netmask
; /* grouping granularity, mask/plen */
651 struct list_head destinations
; /* real server d-linked list */
652 __u32 num_dests
; /* number of servers */
653 struct ip_vs_stats stats
; /* statistics for the service */
656 struct ip_vs_scheduler __rcu
*scheduler
; /* bound scheduler object */
657 spinlock_t sched_lock
; /* lock sched_data */
658 void *sched_data
; /* scheduler application data */
660 /* alternate persistence engine */
661 struct ip_vs_pe __rcu
*pe
;
663 struct rcu_head rcu_head
;
666 /* Information for cached dst */
667 struct ip_vs_dest_dst
{
668 struct dst_entry
*dst_cache
; /* destination cache entry */
670 union nf_inet_addr dst_saddr
;
671 struct rcu_head rcu_head
;
674 /* The real server destination forwarding entry with ip address, port number,
678 struct list_head n_list
; /* for the dests in the service */
679 struct hlist_node d_list
; /* for table with all the dests */
681 u16 af
; /* address family */
682 __be16 port
; /* port number of the server */
683 union nf_inet_addr addr
; /* IP address of the server */
684 volatile unsigned int flags
; /* dest status flags */
685 atomic_t conn_flags
; /* flags to copy to conn */
686 atomic_t weight
; /* server weight */
688 atomic_t refcnt
; /* reference counter */
689 struct ip_vs_stats stats
; /* statistics */
690 unsigned long idle_start
; /* start time, jiffies */
692 /* connection counters and thresholds */
693 atomic_t activeconns
; /* active connections */
694 atomic_t inactconns
; /* inactive connections */
695 atomic_t persistconns
; /* persistent connections */
696 __u32 u_threshold
; /* upper threshold */
697 __u32 l_threshold
; /* lower threshold */
699 /* for destination cache */
700 spinlock_t dst_lock
; /* lock of dst_cache */
701 struct ip_vs_dest_dst __rcu
*dest_dst
; /* cached dst info */
703 /* for virtual service */
704 struct ip_vs_service __rcu
*svc
; /* service it belongs to */
705 __u16 protocol
; /* which protocol (TCP/UDP) */
706 __be16 vport
; /* virtual port number */
707 union nf_inet_addr vaddr
; /* virtual IP address */
708 __u32 vfwmark
; /* firewall mark of service */
710 struct list_head t_list
; /* in dest_trash */
711 unsigned int in_rs_table
:1; /* we are in rs_table */
714 /* The scheduler object */
715 struct ip_vs_scheduler
{
716 struct list_head n_list
; /* d-linked list head */
717 char *name
; /* scheduler name */
718 atomic_t refcnt
; /* reference counter */
719 struct module
*module
; /* THIS_MODULE/NULL */
721 /* scheduler initializing service */
722 int (*init_service
)(struct ip_vs_service
*svc
);
723 /* scheduling service finish */
724 void (*done_service
)(struct ip_vs_service
*svc
);
726 int (*add_dest
)(struct ip_vs_service
*svc
, struct ip_vs_dest
*dest
);
727 /* dest is unlinked */
728 int (*del_dest
)(struct ip_vs_service
*svc
, struct ip_vs_dest
*dest
);
729 /* dest is updated */
730 int (*upd_dest
)(struct ip_vs_service
*svc
, struct ip_vs_dest
*dest
);
732 /* selecting a server from the given service */
733 struct ip_vs_dest
* (*schedule
)(struct ip_vs_service
*svc
,
734 const struct sk_buff
*skb
,
735 struct ip_vs_iphdr
*iph
);
738 /* The persistence engine object */
740 struct list_head n_list
; /* d-linked list head */
741 char *name
; /* scheduler name */
742 atomic_t refcnt
; /* reference counter */
743 struct module
*module
; /* THIS_MODULE/NULL */
745 /* get the connection template, if any */
746 int (*fill_param
)(struct ip_vs_conn_param
*p
, struct sk_buff
*skb
);
747 bool (*ct_match
)(const struct ip_vs_conn_param
*p
,
748 struct ip_vs_conn
*ct
);
749 u32 (*hashkey_raw
)(const struct ip_vs_conn_param
*p
, u32 initval
,
751 int (*show_pe_data
)(const struct ip_vs_conn
*cp
, char *buf
);
754 /* The application module object (a.k.a. app incarnation) */
756 struct list_head a_list
; /* member in app list */
757 int type
; /* IP_VS_APP_TYPE_xxx */
758 char *name
; /* application module name */
760 struct module
*module
; /* THIS_MODULE/NULL */
761 struct list_head incs_list
; /* list of incarnations */
763 /* members for application incarnations */
764 struct list_head p_list
; /* member in proto app list */
765 struct ip_vs_app
*app
; /* its real application */
766 __be16 port
; /* port number in net order */
767 atomic_t usecnt
; /* usage counter */
768 struct rcu_head rcu_head
;
770 /* output hook: Process packet in inout direction, diff set for TCP.
771 * Return: 0=Error, 1=Payload Not Mangled/Mangled but checksum is ok,
772 * 2=Mangled but checksum was not updated
774 int (*pkt_out
)(struct ip_vs_app
*, struct ip_vs_conn
*,
775 struct sk_buff
*, int *diff
);
777 /* input hook: Process packet in outin direction, diff set for TCP.
778 * Return: 0=Error, 1=Payload Not Mangled/Mangled but checksum is ok,
779 * 2=Mangled but checksum was not updated
781 int (*pkt_in
)(struct ip_vs_app
*, struct ip_vs_conn
*,
782 struct sk_buff
*, int *diff
);
784 /* ip_vs_app initializer */
785 int (*init_conn
)(struct ip_vs_app
*, struct ip_vs_conn
*);
787 /* ip_vs_app finish */
788 int (*done_conn
)(struct ip_vs_app
*, struct ip_vs_conn
*);
792 int (*bind_conn
)(struct ip_vs_app
*, struct ip_vs_conn
*,
793 struct ip_vs_protocol
*);
795 void (*unbind_conn
)(struct ip_vs_app
*, struct ip_vs_conn
*);
801 int (*conn_schedule
)(struct sk_buff
*skb
, struct ip_vs_app
*app
,
802 int *verdict
, struct ip_vs_conn
**cpp
);
805 (*conn_in_get
)(const struct sk_buff
*skb
, struct ip_vs_app
*app
,
806 const struct iphdr
*iph
, int inverse
);
809 (*conn_out_get
)(const struct sk_buff
*skb
, struct ip_vs_app
*app
,
810 const struct iphdr
*iph
, int inverse
);
812 int (*state_transition
)(struct ip_vs_conn
*cp
, int direction
,
813 const struct sk_buff
*skb
,
814 struct ip_vs_app
*app
);
816 void (*timeout_change
)(struct ip_vs_app
*app
, int flags
);
819 struct ipvs_master_sync_state
{
820 struct list_head sync_queue
;
821 struct ip_vs_sync_buff
*sync_buff
;
822 unsigned long sync_queue_len
;
823 unsigned int sync_queue_delay
;
824 struct task_struct
*master_thread
;
825 struct delayed_work master_wakeup_work
;
826 struct netns_ipvs
*ipvs
;
829 /* How much time to keep dests in trash */
830 #define IP_VS_DEST_TRASH_PERIOD (120 * HZ)
832 /* IPVS in network namespace */
834 int gen
; /* Generation */
835 int enable
; /* enable like nf_hooks do */
836 /* Hash table: for real service lookups */
837 #define IP_VS_RTAB_BITS 4
838 #define IP_VS_RTAB_SIZE (1 << IP_VS_RTAB_BITS)
839 #define IP_VS_RTAB_MASK (IP_VS_RTAB_SIZE - 1)
841 struct hlist_head rs_table
[IP_VS_RTAB_SIZE
];
843 struct list_head app_list
;
845 #define IP_VS_PROTO_TAB_SIZE 32 /* must be power of 2 */
846 struct ip_vs_proto_data
*proto_data_table
[IP_VS_PROTO_TAB_SIZE
];
847 /* ip_vs_proto_tcp */
848 #ifdef CONFIG_IP_VS_PROTO_TCP
849 #define TCP_APP_TAB_BITS 4
850 #define TCP_APP_TAB_SIZE (1 << TCP_APP_TAB_BITS)
851 #define TCP_APP_TAB_MASK (TCP_APP_TAB_SIZE - 1)
852 struct list_head tcp_apps
[TCP_APP_TAB_SIZE
];
854 /* ip_vs_proto_udp */
855 #ifdef CONFIG_IP_VS_PROTO_UDP
856 #define UDP_APP_TAB_BITS 4
857 #define UDP_APP_TAB_SIZE (1 << UDP_APP_TAB_BITS)
858 #define UDP_APP_TAB_MASK (UDP_APP_TAB_SIZE - 1)
859 struct list_head udp_apps
[UDP_APP_TAB_SIZE
];
861 /* ip_vs_proto_sctp */
862 #ifdef CONFIG_IP_VS_PROTO_SCTP
863 #define SCTP_APP_TAB_BITS 4
864 #define SCTP_APP_TAB_SIZE (1 << SCTP_APP_TAB_BITS)
865 #define SCTP_APP_TAB_MASK (SCTP_APP_TAB_SIZE - 1)
866 /* Hash table for SCTP application incarnations */
867 struct list_head sctp_apps
[SCTP_APP_TAB_SIZE
];
870 atomic_t conn_count
; /* connection counter */
873 struct ip_vs_stats tot_stats
; /* Statistics & est. */
875 int num_services
; /* no of virtual services */
877 /* Trash for destinations */
878 struct list_head dest_trash
;
879 spinlock_t dest_trash_lock
;
880 struct timer_list dest_trash_timer
; /* expiration timer */
881 /* Service counters */
882 atomic_t ftpsvc_counter
;
883 atomic_t nullsvc_counter
;
886 /* 1/rate drop and drop-entry variables */
887 struct delayed_work defense_work
; /* Work handler */
892 spinlock_t dropentry_lock
; /* drop entry handling */
893 spinlock_t droppacket_lock
; /* drop packet handling */
894 spinlock_t securetcp_lock
; /* state and timeout tables */
897 struct ctl_table_header
*sysctl_hdr
;
898 struct ctl_table
*sysctl_tbl
;
901 /* sysctl variables */
902 int sysctl_amemthresh
;
903 int sysctl_am_droprate
;
904 int sysctl_drop_entry
;
905 int sysctl_drop_packet
;
906 int sysctl_secure_tcp
;
907 #ifdef CONFIG_IP_VS_NFCT
908 int sysctl_conntrack
;
910 int sysctl_snat_reroute
;
912 int sysctl_sync_ports
;
913 int sysctl_sync_persist_mode
;
914 unsigned long sysctl_sync_qlen_max
;
915 int sysctl_sync_sock_size
;
916 int sysctl_cache_bypass
;
917 int sysctl_expire_nodest_conn
;
918 int sysctl_sloppy_tcp
;
919 int sysctl_sloppy_sctp
;
920 int sysctl_expire_quiescent_template
;
921 int sysctl_sync_threshold
[2];
922 unsigned int sysctl_sync_refresh_period
;
923 int sysctl_sync_retries
;
924 int sysctl_nat_icmp_send
;
925 int sysctl_pmtu_disc
;
926 int sysctl_backup_only
;
929 int sysctl_lblc_expiration
;
930 struct ctl_table_header
*lblc_ctl_header
;
931 struct ctl_table
*lblc_ctl_table
;
933 int sysctl_lblcr_expiration
;
934 struct ctl_table_header
*lblcr_ctl_header
;
935 struct ctl_table
*lblcr_ctl_table
;
937 struct list_head est_list
; /* estimator list */
939 struct timer_list est_timer
; /* Estimation timer */
941 spinlock_t sync_lock
;
942 struct ipvs_master_sync_state
*ms
;
943 spinlock_t sync_buff_lock
;
944 struct task_struct
**backup_threads
;
946 int send_mesg_maxlen
;
947 int recv_mesg_maxlen
;
948 volatile int sync_state
;
949 volatile int master_syncid
;
950 volatile int backup_syncid
;
951 struct mutex sync_mutex
;
952 /* multicast interface name */
953 char master_mcast_ifn
[IP_VS_IFNAME_MAXLEN
];
954 char backup_mcast_ifn
[IP_VS_IFNAME_MAXLEN
];
955 /* net name space ptr */
956 struct net
*net
; /* Needed by timer routines */
957 /* Number of heterogeneous destinations, needed becaus heterogeneous
958 * are not supported when synchronization is enabled.
960 unsigned int mixed_address_family_dests
;
963 #define DEFAULT_SYNC_THRESHOLD 3
964 #define DEFAULT_SYNC_PERIOD 50
965 #define DEFAULT_SYNC_VER 1
966 #define DEFAULT_SLOPPY_TCP 0
967 #define DEFAULT_SLOPPY_SCTP 0
968 #define DEFAULT_SYNC_REFRESH_PERIOD (0U * HZ)
969 #define DEFAULT_SYNC_RETRIES 0
970 #define IPVS_SYNC_WAKEUP_RATE 8
971 #define IPVS_SYNC_QLEN_MAX (IPVS_SYNC_WAKEUP_RATE * 4)
972 #define IPVS_SYNC_SEND_DELAY (HZ / 50)
973 #define IPVS_SYNC_CHECK_PERIOD HZ
974 #define IPVS_SYNC_FLUSH_TIME (HZ * 2)
975 #define IPVS_SYNC_PORTS_MAX (1 << 6)
979 static inline int sysctl_sync_threshold(struct netns_ipvs
*ipvs
)
981 return ipvs
->sysctl_sync_threshold
[0];
984 static inline int sysctl_sync_period(struct netns_ipvs
*ipvs
)
986 return ACCESS_ONCE(ipvs
->sysctl_sync_threshold
[1]);
989 static inline unsigned int sysctl_sync_refresh_period(struct netns_ipvs
*ipvs
)
991 return ACCESS_ONCE(ipvs
->sysctl_sync_refresh_period
);
994 static inline int sysctl_sync_retries(struct netns_ipvs
*ipvs
)
996 return ipvs
->sysctl_sync_retries
;
999 static inline int sysctl_sync_ver(struct netns_ipvs
*ipvs
)
1001 return ipvs
->sysctl_sync_ver
;
1004 static inline int sysctl_sloppy_tcp(struct netns_ipvs
*ipvs
)
1006 return ipvs
->sysctl_sloppy_tcp
;
1009 static inline int sysctl_sloppy_sctp(struct netns_ipvs
*ipvs
)
1011 return ipvs
->sysctl_sloppy_sctp
;
1014 static inline int sysctl_sync_ports(struct netns_ipvs
*ipvs
)
1016 return ACCESS_ONCE(ipvs
->sysctl_sync_ports
);
1019 static inline int sysctl_sync_persist_mode(struct netns_ipvs
*ipvs
)
1021 return ipvs
->sysctl_sync_persist_mode
;
1024 static inline unsigned long sysctl_sync_qlen_max(struct netns_ipvs
*ipvs
)
1026 return ipvs
->sysctl_sync_qlen_max
;
1029 static inline int sysctl_sync_sock_size(struct netns_ipvs
*ipvs
)
1031 return ipvs
->sysctl_sync_sock_size
;
1034 static inline int sysctl_pmtu_disc(struct netns_ipvs
*ipvs
)
1036 return ipvs
->sysctl_pmtu_disc
;
1039 static inline int sysctl_backup_only(struct netns_ipvs
*ipvs
)
1041 return ipvs
->sync_state
& IP_VS_STATE_BACKUP
&&
1042 ipvs
->sysctl_backup_only
;
1047 static inline int sysctl_sync_threshold(struct netns_ipvs
*ipvs
)
1049 return DEFAULT_SYNC_THRESHOLD
;
1052 static inline int sysctl_sync_period(struct netns_ipvs
*ipvs
)
1054 return DEFAULT_SYNC_PERIOD
;
1057 static inline unsigned int sysctl_sync_refresh_period(struct netns_ipvs
*ipvs
)
1059 return DEFAULT_SYNC_REFRESH_PERIOD
;
1062 static inline int sysctl_sync_retries(struct netns_ipvs
*ipvs
)
1064 return DEFAULT_SYNC_RETRIES
& 3;
1067 static inline int sysctl_sync_ver(struct netns_ipvs
*ipvs
)
1069 return DEFAULT_SYNC_VER
;
1072 static inline int sysctl_sloppy_tcp(struct netns_ipvs
*ipvs
)
1074 return DEFAULT_SLOPPY_TCP
;
1077 static inline int sysctl_sloppy_sctp(struct netns_ipvs
*ipvs
)
1079 return DEFAULT_SLOPPY_SCTP
;
1082 static inline int sysctl_sync_ports(struct netns_ipvs
*ipvs
)
1087 static inline int sysctl_sync_persist_mode(struct netns_ipvs
*ipvs
)
1092 static inline unsigned long sysctl_sync_qlen_max(struct netns_ipvs
*ipvs
)
1094 return IPVS_SYNC_QLEN_MAX
;
1097 static inline int sysctl_sync_sock_size(struct netns_ipvs
*ipvs
)
1102 static inline int sysctl_pmtu_disc(struct netns_ipvs
*ipvs
)
1107 static inline int sysctl_backup_only(struct netns_ipvs
*ipvs
)
1114 /* IPVS core functions
1115 * (from ip_vs_core.c)
1117 const char *ip_vs_proto_name(unsigned int proto
);
1118 void ip_vs_init_hash_table(struct list_head
*table
, int rows
);
1119 #define IP_VS_INIT_HASH_TABLE(t) ip_vs_init_hash_table((t), ARRAY_SIZE((t)))
1121 #define IP_VS_APP_TYPE_FTP 1
1123 /* ip_vs_conn handling functions
1124 * (from ip_vs_conn.c)
1127 IP_VS_DIR_INPUT
= 0,
1129 IP_VS_DIR_INPUT_ONLY
,
1133 static inline void ip_vs_conn_fill_param(struct net
*net
, int af
, int protocol
,
1134 const union nf_inet_addr
*caddr
,
1136 const union nf_inet_addr
*vaddr
,
1138 struct ip_vs_conn_param
*p
)
1142 p
->protocol
= protocol
;
1151 struct ip_vs_conn
*ip_vs_conn_in_get(const struct ip_vs_conn_param
*p
);
1152 struct ip_vs_conn
*ip_vs_ct_in_get(const struct ip_vs_conn_param
*p
);
1154 struct ip_vs_conn
* ip_vs_conn_in_get_proto(int af
, const struct sk_buff
*skb
,
1155 const struct ip_vs_iphdr
*iph
,
1158 struct ip_vs_conn
*ip_vs_conn_out_get(const struct ip_vs_conn_param
*p
);
1160 struct ip_vs_conn
* ip_vs_conn_out_get_proto(int af
, const struct sk_buff
*skb
,
1161 const struct ip_vs_iphdr
*iph
,
1164 /* Get reference to gain full access to conn.
1165 * By default, RCU read-side critical sections have access only to
1166 * conn fields and its PE data, see ip_vs_conn_rcu_free() for reference.
1168 static inline bool __ip_vs_conn_get(struct ip_vs_conn
*cp
)
1170 return atomic_inc_not_zero(&cp
->refcnt
);
1173 /* put back the conn without restarting its timer */
1174 static inline void __ip_vs_conn_put(struct ip_vs_conn
*cp
)
1176 smp_mb__before_atomic();
1177 atomic_dec(&cp
->refcnt
);
1179 void ip_vs_conn_put(struct ip_vs_conn
*cp
);
1180 void ip_vs_conn_fill_cport(struct ip_vs_conn
*cp
, __be16 cport
);
1182 struct ip_vs_conn
*ip_vs_conn_new(const struct ip_vs_conn_param
*p
, int dest_af
,
1183 const union nf_inet_addr
*daddr
,
1184 __be16 dport
, unsigned int flags
,
1185 struct ip_vs_dest
*dest
, __u32 fwmark
);
1186 void ip_vs_conn_expire_now(struct ip_vs_conn
*cp
);
1188 const char *ip_vs_state_name(__u16 proto
, int state
);
1190 void ip_vs_tcp_conn_listen(struct net
*net
, struct ip_vs_conn
*cp
);
1191 int ip_vs_check_template(struct ip_vs_conn
*ct
);
1192 void ip_vs_random_dropentry(struct net
*net
);
1193 int ip_vs_conn_init(void);
1194 void ip_vs_conn_cleanup(void);
1196 static inline void ip_vs_control_del(struct ip_vs_conn
*cp
)
1198 struct ip_vs_conn
*ctl_cp
= cp
->control
;
1200 IP_VS_ERR_BUF("request control DEL for uncontrolled: "
1202 IP_VS_DBG_ADDR(cp
->af
, &cp
->caddr
),
1204 IP_VS_DBG_ADDR(cp
->af
, &cp
->vaddr
),
1210 IP_VS_DBG_BUF(7, "DELeting control for: "
1211 "cp.dst=%s:%d ctl_cp.dst=%s:%d\n",
1212 IP_VS_DBG_ADDR(cp
->af
, &cp
->caddr
),
1214 IP_VS_DBG_ADDR(cp
->af
, &ctl_cp
->caddr
),
1215 ntohs(ctl_cp
->cport
));
1218 if (atomic_read(&ctl_cp
->n_control
) == 0) {
1219 IP_VS_ERR_BUF("BUG control DEL with n=0 : "
1221 IP_VS_DBG_ADDR(cp
->af
, &cp
->caddr
),
1223 IP_VS_DBG_ADDR(cp
->af
, &cp
->vaddr
),
1228 atomic_dec(&ctl_cp
->n_control
);
1232 ip_vs_control_add(struct ip_vs_conn
*cp
, struct ip_vs_conn
*ctl_cp
)
1235 IP_VS_ERR_BUF("request control ADD for already controlled: "
1237 IP_VS_DBG_ADDR(cp
->af
, &cp
->caddr
),
1239 IP_VS_DBG_ADDR(cp
->af
, &cp
->vaddr
),
1242 ip_vs_control_del(cp
);
1245 IP_VS_DBG_BUF(7, "ADDing control for: "
1246 "cp.dst=%s:%d ctl_cp.dst=%s:%d\n",
1247 IP_VS_DBG_ADDR(cp
->af
, &cp
->caddr
),
1249 IP_VS_DBG_ADDR(cp
->af
, &ctl_cp
->caddr
),
1250 ntohs(ctl_cp
->cport
));
1252 cp
->control
= ctl_cp
;
1253 atomic_inc(&ctl_cp
->n_control
);
1256 /* IPVS netns init & cleanup functions */
1257 int ip_vs_estimator_net_init(struct net
*net
);
1258 int ip_vs_control_net_init(struct net
*net
);
1259 int ip_vs_protocol_net_init(struct net
*net
);
1260 int ip_vs_app_net_init(struct net
*net
);
1261 int ip_vs_conn_net_init(struct net
*net
);
1262 int ip_vs_sync_net_init(struct net
*net
);
1263 void ip_vs_conn_net_cleanup(struct net
*net
);
1264 void ip_vs_app_net_cleanup(struct net
*net
);
1265 void ip_vs_protocol_net_cleanup(struct net
*net
);
1266 void ip_vs_control_net_cleanup(struct net
*net
);
1267 void ip_vs_estimator_net_cleanup(struct net
*net
);
1268 void ip_vs_sync_net_cleanup(struct net
*net
);
1269 void ip_vs_service_net_cleanup(struct net
*net
);
1271 /* IPVS application functions
1272 * (from ip_vs_app.c)
1274 #define IP_VS_APP_MAX_PORTS 8
1275 struct ip_vs_app
*register_ip_vs_app(struct net
*net
, struct ip_vs_app
*app
);
1276 void unregister_ip_vs_app(struct net
*net
, struct ip_vs_app
*app
);
1277 int ip_vs_bind_app(struct ip_vs_conn
*cp
, struct ip_vs_protocol
*pp
);
1278 void ip_vs_unbind_app(struct ip_vs_conn
*cp
);
1279 int register_ip_vs_app_inc(struct net
*net
, struct ip_vs_app
*app
, __u16 proto
,
1281 int ip_vs_app_inc_get(struct ip_vs_app
*inc
);
1282 void ip_vs_app_inc_put(struct ip_vs_app
*inc
);
1284 int ip_vs_app_pkt_out(struct ip_vs_conn
*, struct sk_buff
*skb
);
1285 int ip_vs_app_pkt_in(struct ip_vs_conn
*, struct sk_buff
*skb
);
1287 int register_ip_vs_pe(struct ip_vs_pe
*pe
);
1288 int unregister_ip_vs_pe(struct ip_vs_pe
*pe
);
1289 struct ip_vs_pe
*ip_vs_pe_getbyname(const char *name
);
1290 struct ip_vs_pe
*__ip_vs_pe_getbyname(const char *pe_name
);
1292 /* Use a #define to avoid all of module.h just for these trivial ops */
1293 #define ip_vs_pe_get(pe) \
1294 if (pe && pe->module) \
1295 __module_get(pe->module);
1297 #define ip_vs_pe_put(pe) \
1298 if (pe && pe->module) \
1299 module_put(pe->module);
1301 /* IPVS protocol functions (from ip_vs_proto.c) */
1302 int ip_vs_protocol_init(void);
1303 void ip_vs_protocol_cleanup(void);
1304 void ip_vs_protocol_timeout_change(struct netns_ipvs
*ipvs
, int flags
);
1305 int *ip_vs_create_timeout_table(int *table
, int size
);
1306 int ip_vs_set_state_timeout(int *table
, int num
, const char *const *names
,
1307 const char *name
, int to
);
1308 void ip_vs_tcpudp_debug_packet(int af
, struct ip_vs_protocol
*pp
,
1309 const struct sk_buff
*skb
, int offset
,
1312 extern struct ip_vs_protocol ip_vs_protocol_tcp
;
1313 extern struct ip_vs_protocol ip_vs_protocol_udp
;
1314 extern struct ip_vs_protocol ip_vs_protocol_icmp
;
1315 extern struct ip_vs_protocol ip_vs_protocol_esp
;
1316 extern struct ip_vs_protocol ip_vs_protocol_ah
;
1317 extern struct ip_vs_protocol ip_vs_protocol_sctp
;
1319 /* Registering/unregistering scheduler functions
1320 * (from ip_vs_sched.c)
1322 int register_ip_vs_scheduler(struct ip_vs_scheduler
*scheduler
);
1323 int unregister_ip_vs_scheduler(struct ip_vs_scheduler
*scheduler
);
1324 int ip_vs_bind_scheduler(struct ip_vs_service
*svc
,
1325 struct ip_vs_scheduler
*scheduler
);
1326 void ip_vs_unbind_scheduler(struct ip_vs_service
*svc
,
1327 struct ip_vs_scheduler
*sched
);
1328 struct ip_vs_scheduler
*ip_vs_scheduler_get(const char *sched_name
);
1329 void ip_vs_scheduler_put(struct ip_vs_scheduler
*scheduler
);
1331 ip_vs_schedule(struct ip_vs_service
*svc
, struct sk_buff
*skb
,
1332 struct ip_vs_proto_data
*pd
, int *ignored
,
1333 struct ip_vs_iphdr
*iph
);
1334 int ip_vs_leave(struct ip_vs_service
*svc
, struct sk_buff
*skb
,
1335 struct ip_vs_proto_data
*pd
, struct ip_vs_iphdr
*iph
);
1337 void ip_vs_scheduler_err(struct ip_vs_service
*svc
, const char *msg
);
1339 /* IPVS control data and functions (from ip_vs_ctl.c) */
1340 extern struct ip_vs_stats ip_vs_stats
;
1341 extern int sysctl_ip_vs_sync_ver
;
1343 struct ip_vs_service
*
1344 ip_vs_service_find(struct net
*net
, int af
, __u32 fwmark
, __u16 protocol
,
1345 const union nf_inet_addr
*vaddr
, __be16 vport
);
1347 bool ip_vs_has_real_service(struct net
*net
, int af
, __u16 protocol
,
1348 const union nf_inet_addr
*daddr
, __be16 dport
);
1350 int ip_vs_use_count_inc(void);
1351 void ip_vs_use_count_dec(void);
1352 int ip_vs_register_nl_ioctl(void);
1353 void ip_vs_unregister_nl_ioctl(void);
1354 int ip_vs_control_init(void);
1355 void ip_vs_control_cleanup(void);
1357 ip_vs_find_dest(struct net
*net
, int svc_af
, int dest_af
,
1358 const union nf_inet_addr
*daddr
, __be16 dport
,
1359 const union nf_inet_addr
*vaddr
, __be16 vport
,
1360 __u16 protocol
, __u32 fwmark
, __u32 flags
);
1361 void ip_vs_try_bind_dest(struct ip_vs_conn
*cp
);
1363 static inline void ip_vs_dest_hold(struct ip_vs_dest
*dest
)
1365 atomic_inc(&dest
->refcnt
);
1368 static inline void ip_vs_dest_put(struct ip_vs_dest
*dest
)
1370 smp_mb__before_atomic();
1371 atomic_dec(&dest
->refcnt
);
1374 static inline void ip_vs_dest_put_and_free(struct ip_vs_dest
*dest
)
1376 if (atomic_dec_return(&dest
->refcnt
) < 0)
1380 /* IPVS sync daemon data and function prototypes
1381 * (from ip_vs_sync.c)
1383 int start_sync_thread(struct net
*net
, int state
, char *mcast_ifn
, __u8 syncid
);
1384 int stop_sync_thread(struct net
*net
, int state
);
1385 void ip_vs_sync_conn(struct net
*net
, struct ip_vs_conn
*cp
, int pkts
);
1387 /* IPVS rate estimator prototypes (from ip_vs_est.c) */
1388 void ip_vs_start_estimator(struct net
*net
, struct ip_vs_stats
*stats
);
1389 void ip_vs_stop_estimator(struct net
*net
, struct ip_vs_stats
*stats
);
1390 void ip_vs_zero_estimator(struct ip_vs_stats
*stats
);
1391 void ip_vs_read_estimator(struct ip_vs_stats_user
*dst
,
1392 struct ip_vs_stats
*stats
);
1394 /* Various IPVS packet transmitters (from ip_vs_xmit.c) */
1395 int ip_vs_null_xmit(struct sk_buff
*skb
, struct ip_vs_conn
*cp
,
1396 struct ip_vs_protocol
*pp
, struct ip_vs_iphdr
*iph
);
1397 int ip_vs_bypass_xmit(struct sk_buff
*skb
, struct ip_vs_conn
*cp
,
1398 struct ip_vs_protocol
*pp
, struct ip_vs_iphdr
*iph
);
1399 int ip_vs_nat_xmit(struct sk_buff
*skb
, struct ip_vs_conn
*cp
,
1400 struct ip_vs_protocol
*pp
, struct ip_vs_iphdr
*iph
);
1401 int ip_vs_tunnel_xmit(struct sk_buff
*skb
, struct ip_vs_conn
*cp
,
1402 struct ip_vs_protocol
*pp
, struct ip_vs_iphdr
*iph
);
1403 int ip_vs_dr_xmit(struct sk_buff
*skb
, struct ip_vs_conn
*cp
,
1404 struct ip_vs_protocol
*pp
, struct ip_vs_iphdr
*iph
);
1405 int ip_vs_icmp_xmit(struct sk_buff
*skb
, struct ip_vs_conn
*cp
,
1406 struct ip_vs_protocol
*pp
, int offset
,
1407 unsigned int hooknum
, struct ip_vs_iphdr
*iph
);
1408 void ip_vs_dest_dst_rcu_free(struct rcu_head
*head
);
1410 #ifdef CONFIG_IP_VS_IPV6
1411 int ip_vs_bypass_xmit_v6(struct sk_buff
*skb
, struct ip_vs_conn
*cp
,
1412 struct ip_vs_protocol
*pp
, struct ip_vs_iphdr
*iph
);
1413 int ip_vs_nat_xmit_v6(struct sk_buff
*skb
, struct ip_vs_conn
*cp
,
1414 struct ip_vs_protocol
*pp
, struct ip_vs_iphdr
*iph
);
1415 int ip_vs_tunnel_xmit_v6(struct sk_buff
*skb
, struct ip_vs_conn
*cp
,
1416 struct ip_vs_protocol
*pp
, struct ip_vs_iphdr
*iph
);
1417 int ip_vs_dr_xmit_v6(struct sk_buff
*skb
, struct ip_vs_conn
*cp
,
1418 struct ip_vs_protocol
*pp
, struct ip_vs_iphdr
*iph
);
1419 int ip_vs_icmp_xmit_v6(struct sk_buff
*skb
, struct ip_vs_conn
*cp
,
1420 struct ip_vs_protocol
*pp
, int offset
,
1421 unsigned int hooknum
, struct ip_vs_iphdr
*iph
);
1424 #ifdef CONFIG_SYSCTL
1425 /* This is a simple mechanism to ignore packets when
1426 * we are loaded. Just set ip_vs_drop_rate to 'n' and
1427 * we start to drop 1/rate of the packets
1429 static inline int ip_vs_todrop(struct netns_ipvs
*ipvs
)
1431 if (!ipvs
->drop_rate
)
1433 if (--ipvs
->drop_counter
> 0)
1435 ipvs
->drop_counter
= ipvs
->drop_rate
;
1439 static inline int ip_vs_todrop(struct netns_ipvs
*ipvs
) { return 0; }
1442 /* ip_vs_fwd_tag returns the forwarding tag of the connection */
1443 #define IP_VS_FWD_METHOD(cp) (cp->flags & IP_VS_CONN_F_FWD_MASK)
1445 static inline char ip_vs_fwd_tag(struct ip_vs_conn
*cp
)
1449 switch (IP_VS_FWD_METHOD(cp
)) {
1450 case IP_VS_CONN_F_MASQ
:
1452 case IP_VS_CONN_F_LOCALNODE
:
1454 case IP_VS_CONN_F_TUNNEL
:
1456 case IP_VS_CONN_F_DROUTE
:
1458 case IP_VS_CONN_F_BYPASS
:
1466 void ip_vs_nat_icmp(struct sk_buff
*skb
, struct ip_vs_protocol
*pp
,
1467 struct ip_vs_conn
*cp
, int dir
);
1469 #ifdef CONFIG_IP_VS_IPV6
1470 void ip_vs_nat_icmp_v6(struct sk_buff
*skb
, struct ip_vs_protocol
*pp
,
1471 struct ip_vs_conn
*cp
, int dir
);
1474 __sum16
ip_vs_checksum_complete(struct sk_buff
*skb
, int offset
);
1476 static inline __wsum
ip_vs_check_diff4(__be32 old
, __be32
new, __wsum oldsum
)
1478 __be32 diff
[2] = { ~old
, new };
1480 return csum_partial(diff
, sizeof(diff
), oldsum
);
1483 #ifdef CONFIG_IP_VS_IPV6
1484 static inline __wsum
ip_vs_check_diff16(const __be32
*old
, const __be32
*new,
1487 __be32 diff
[8] = { ~old
[3], ~old
[2], ~old
[1], ~old
[0],
1488 new[3], new[2], new[1], new[0] };
1490 return csum_partial(diff
, sizeof(diff
), oldsum
);
1494 static inline __wsum
ip_vs_check_diff2(__be16 old
, __be16
new, __wsum oldsum
)
1496 __be16 diff
[2] = { ~old
, new };
1498 return csum_partial(diff
, sizeof(diff
), oldsum
);
1501 /* Forget current conntrack (unconfirmed) and attach notrack entry */
1502 static inline void ip_vs_notrack(struct sk_buff
*skb
)
1504 #if defined(CONFIG_NF_CONNTRACK) || defined(CONFIG_NF_CONNTRACK_MODULE)
1505 enum ip_conntrack_info ctinfo
;
1506 struct nf_conn
*ct
= nf_ct_get(skb
, &ctinfo
);
1508 if (!ct
|| !nf_ct_is_untracked(ct
)) {
1509 nf_conntrack_put(skb
->nfct
);
1510 skb
->nfct
= &nf_ct_untracked_get()->ct_general
;
1511 skb
->nfctinfo
= IP_CT_NEW
;
1512 nf_conntrack_get(skb
->nfct
);
1517 #ifdef CONFIG_IP_VS_NFCT
1518 /* Netfilter connection tracking
1519 * (from ip_vs_nfct.c)
1521 static inline int ip_vs_conntrack_enabled(struct netns_ipvs
*ipvs
)
1523 #ifdef CONFIG_SYSCTL
1524 return ipvs
->sysctl_conntrack
;
1530 void ip_vs_update_conntrack(struct sk_buff
*skb
, struct ip_vs_conn
*cp
,
1532 int ip_vs_confirm_conntrack(struct sk_buff
*skb
);
1533 void ip_vs_nfct_expect_related(struct sk_buff
*skb
, struct nf_conn
*ct
,
1534 struct ip_vs_conn
*cp
, u_int8_t proto
,
1535 const __be16 port
, int from_rs
);
1536 void ip_vs_conn_drop_conntrack(struct ip_vs_conn
*cp
);
1540 static inline int ip_vs_conntrack_enabled(struct netns_ipvs
*ipvs
)
1545 static inline void ip_vs_update_conntrack(struct sk_buff
*skb
,
1546 struct ip_vs_conn
*cp
, int outin
)
1550 static inline int ip_vs_confirm_conntrack(struct sk_buff
*skb
)
1555 static inline void ip_vs_conn_drop_conntrack(struct ip_vs_conn
*cp
)
1558 #endif /* CONFIG_IP_VS_NFCT */
1561 ip_vs_dest_conn_overhead(struct ip_vs_dest
*dest
)
1563 /* We think the overhead of processing active connections is 256
1564 * times higher than that of inactive connections in average. (This
1565 * 256 times might not be accurate, we will change it later) We
1566 * use the following formula to estimate the overhead now:
1567 * dest->activeconns*256 + dest->inactconns
1569 return (atomic_read(&dest
->activeconns
) << 8) +
1570 atomic_read(&dest
->inactconns
);
1573 #endif /* _NET_IP_VS_H */