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 && dev_net(skb->dev)))
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 && sock_net(skb->sk)))
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 && sock_net(skb->sk)))
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 && dev_net(skb->dev)))
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 __u64 conns; /* connections scheduled */
369 __u64 inpkts; /* incoming packets */
370 __u64 outpkts; /* outgoing packets */
371 __u64 inbytes; /* incoming bytes */
372 __u64 outbytes; /* outgoing bytes */
375 struct ip_vs_cpu_stats {
376 struct ip_vs_counters cnt;
377 struct u64_stats_sync syncp;
380 /* IPVS statistics objects */
381 struct ip_vs_estimator {
382 struct list_head list;
398 * IPVS statistics object, 64-bit kernel version of struct ip_vs_stats_user
400 struct ip_vs_kstats {
401 u64 conns; /* connections scheduled */
402 u64 inpkts; /* incoming packets */
403 u64 outpkts; /* outgoing packets */
404 u64 inbytes; /* incoming bytes */
405 u64 outbytes; /* outgoing bytes */
407 u64 cps; /* current connection rate */
408 u64 inpps; /* current in packet rate */
409 u64 outpps; /* current out packet rate */
410 u64 inbps; /* current in byte rate */
411 u64 outbps; /* current out byte rate */
415 struct ip_vs_kstats kstats; /* kernel statistics */
416 struct ip_vs_estimator est; /* estimator */
417 struct ip_vs_cpu_stats __percpu *cpustats; /* per cpu counters */
418 spinlock_t lock; /* spin lock */
419 struct ip_vs_kstats kstats0; /* reset values */
427 struct ip_vs_proto_data;
429 struct ip_vs_protocol {
430 struct ip_vs_protocol *next;
436 void (*init)(struct ip_vs_protocol *pp);
438 void (*exit)(struct ip_vs_protocol *pp);
440 int (*init_netns)(struct net *net, struct ip_vs_proto_data *pd);
442 void (*exit_netns)(struct net *net, struct ip_vs_proto_data *pd);
444 int (*conn_schedule)(int af, struct sk_buff *skb,
445 struct ip_vs_proto_data *pd,
446 int *verdict, struct ip_vs_conn **cpp,
447 struct ip_vs_iphdr *iph);
450 (*conn_in_get)(int af,
451 const struct sk_buff *skb,
452 const struct ip_vs_iphdr *iph,
456 (*conn_out_get)(int af,
457 const struct sk_buff *skb,
458 const struct ip_vs_iphdr *iph,
461 int (*snat_handler)(struct sk_buff *skb, struct ip_vs_protocol *pp,
462 struct ip_vs_conn *cp, struct ip_vs_iphdr *iph);
464 int (*dnat_handler)(struct sk_buff *skb, struct ip_vs_protocol *pp,
465 struct ip_vs_conn *cp, struct ip_vs_iphdr *iph);
467 int (*csum_check)(int af, struct sk_buff *skb,
468 struct ip_vs_protocol *pp);
470 const char *(*state_name)(int state);
472 void (*state_transition)(struct ip_vs_conn *cp, int direction,
473 const struct sk_buff *skb,
474 struct ip_vs_proto_data *pd);
476 int (*register_app)(struct net *net, struct ip_vs_app *inc);
478 void (*unregister_app)(struct net *net, struct ip_vs_app *inc);
480 int (*app_conn_bind)(struct ip_vs_conn *cp);
482 void (*debug_packet)(int af, struct ip_vs_protocol *pp,
483 const struct sk_buff *skb,
487 void (*timeout_change)(struct ip_vs_proto_data *pd, int flags);
490 /* protocol data per netns */
491 struct ip_vs_proto_data {
492 struct ip_vs_proto_data *next;
493 struct ip_vs_protocol *pp;
494 int *timeout_table; /* protocol timeout table */
495 atomic_t appcnt; /* counter of proto app incs. */
496 struct tcp_states_t *tcp_state_table;
499 struct ip_vs_protocol *ip_vs_proto_get(unsigned short proto);
500 struct ip_vs_proto_data *ip_vs_proto_data_get(struct net *net,
501 unsigned short proto);
503 struct ip_vs_conn_param {
505 const union nf_inet_addr *caddr;
506 const union nf_inet_addr *vaddr;
512 const struct ip_vs_pe *pe;
517 /* IP_VS structure allocated for each dynamically scheduled connection */
519 struct hlist_node c_list; /* hashed list heads */
520 /* Protocol, addresses and port numbers */
524 u16 af; /* address family */
525 union nf_inet_addr caddr; /* client address */
526 union nf_inet_addr vaddr; /* virtual address */
527 union nf_inet_addr daddr; /* destination address */
528 volatile __u32 flags; /* status flags */
529 __u16 protocol; /* Which protocol (TCP/UDP) */
530 __u16 daf; /* Address family of the dest */
532 struct net *net; /* Name space */
535 /* counter and timer */
536 atomic_t refcnt; /* reference count */
537 struct timer_list timer; /* Expiration timer */
538 volatile unsigned long timeout; /* timeout */
540 /* Flags and state transition */
541 spinlock_t lock; /* lock for state transition */
542 volatile __u16 state; /* state info */
543 volatile __u16 old_state; /* old state, to be used for
544 * state transition triggerd
547 __u32 fwmark; /* Fire wall mark from skb */
548 unsigned long sync_endtime; /* jiffies + sent_retries */
550 /* Control members */
551 struct ip_vs_conn *control; /* Master control connection */
552 atomic_t n_control; /* Number of controlled ones */
553 struct ip_vs_dest *dest; /* real server */
554 atomic_t in_pkts; /* incoming packet counter */
556 /* Packet transmitter for different forwarding methods. If it
557 * mangles the packet, it must return NF_DROP or better NF_STOLEN,
558 * otherwise this must be changed to a sk_buff **.
559 * NF_ACCEPT can be returned when destination is local.
561 int (*packet_xmit)(struct sk_buff *skb, struct ip_vs_conn *cp,
562 struct ip_vs_protocol *pp, struct ip_vs_iphdr *iph);
564 /* Note: we can group the following members into a structure,
565 * in order to save more space, and the following members are
566 * only used in VS/NAT anyway
568 struct ip_vs_app *app; /* bound ip_vs_app object */
569 void *app_data; /* Application private data */
570 struct ip_vs_seq in_seq; /* incoming seq. struct */
571 struct ip_vs_seq out_seq; /* outgoing seq. struct */
573 const struct ip_vs_pe *pe;
577 struct rcu_head rcu_head;
580 /* To save some memory in conn table when name space is disabled. */
581 static inline struct net *ip_vs_conn_net(const struct ip_vs_conn *cp)
590 static inline void ip_vs_conn_net_set(struct ip_vs_conn *cp, struct net *net)
597 static inline int ip_vs_conn_net_eq(const struct ip_vs_conn *cp,
601 return cp->net == net;
607 /* Extended internal versions of struct ip_vs_service_user and ip_vs_dest_user
610 * We need these to conveniently pass around service and destination
611 * options, but unfortunately, we also need to keep the old definitions to
612 * maintain userspace backwards compatibility for the setsockopt interface.
614 struct ip_vs_service_user_kern {
615 /* virtual service addresses */
618 union nf_inet_addr addr; /* virtual ip address */
620 u32 fwmark; /* firwall mark of service */
622 /* virtual service options */
625 unsigned int flags; /* virtual service flags */
626 unsigned int timeout; /* persistent timeout in sec */
627 __be32 netmask; /* persistent netmask or plen */
631 struct ip_vs_dest_user_kern {
632 /* destination server address */
633 union nf_inet_addr addr;
636 /* real server options */
637 unsigned int conn_flags; /* connection flags */
638 int weight; /* destination weight */
640 /* thresholds for active connections */
641 u32 u_threshold; /* upper threshold */
642 u32 l_threshold; /* lower threshold */
644 /* Address family of addr */
650 * The information about the virtual service offered to the net and the
651 * forwarding entries.
653 struct ip_vs_service {
654 struct hlist_node s_list; /* for normal service table */
655 struct hlist_node f_list; /* for fwmark-based service table */
656 atomic_t refcnt; /* reference counter */
658 u16 af; /* address family */
659 __u16 protocol; /* which protocol (TCP/UDP) */
660 union nf_inet_addr addr; /* IP address for virtual service */
661 __be16 port; /* port number for the service */
662 __u32 fwmark; /* firewall mark of the service */
663 unsigned int flags; /* service status flags */
664 unsigned int timeout; /* persistent timeout in ticks */
665 __be32 netmask; /* grouping granularity, mask/plen */
668 struct list_head destinations; /* real server d-linked list */
669 __u32 num_dests; /* number of servers */
670 struct ip_vs_stats stats; /* statistics for the service */
673 struct ip_vs_scheduler __rcu *scheduler; /* bound scheduler object */
674 spinlock_t sched_lock; /* lock sched_data */
675 void *sched_data; /* scheduler application data */
677 /* alternate persistence engine */
678 struct ip_vs_pe __rcu *pe;
680 struct rcu_head rcu_head;
683 /* Information for cached dst */
684 struct ip_vs_dest_dst {
685 struct dst_entry *dst_cache; /* destination cache entry */
687 union nf_inet_addr dst_saddr;
688 struct rcu_head rcu_head;
691 /* The real server destination forwarding entry with ip address, port number,
695 struct list_head n_list; /* for the dests in the service */
696 struct hlist_node d_list; /* for table with all the dests */
698 u16 af; /* address family */
699 __be16 port; /* port number of the server */
700 union nf_inet_addr addr; /* IP address of the server */
701 volatile unsigned int flags; /* dest status flags */
702 atomic_t conn_flags; /* flags to copy to conn */
703 atomic_t weight; /* server weight */
705 atomic_t refcnt; /* reference counter */
706 struct ip_vs_stats stats; /* statistics */
707 unsigned long idle_start; /* start time, jiffies */
709 /* connection counters and thresholds */
710 atomic_t activeconns; /* active connections */
711 atomic_t inactconns; /* inactive connections */
712 atomic_t persistconns; /* persistent connections */
713 __u32 u_threshold; /* upper threshold */
714 __u32 l_threshold; /* lower threshold */
716 /* for destination cache */
717 spinlock_t dst_lock; /* lock of dst_cache */
718 struct ip_vs_dest_dst __rcu *dest_dst; /* cached dst info */
720 /* for virtual service */
721 struct ip_vs_service __rcu *svc; /* service it belongs to */
722 __u16 protocol; /* which protocol (TCP/UDP) */
723 __be16 vport; /* virtual port number */
724 union nf_inet_addr vaddr; /* virtual IP address */
725 __u32 vfwmark; /* firewall mark of service */
727 struct list_head t_list; /* in dest_trash */
728 unsigned int in_rs_table:1; /* we are in rs_table */
731 /* The scheduler object */
732 struct ip_vs_scheduler {
733 struct list_head n_list; /* d-linked list head */
734 char *name; /* scheduler name */
735 atomic_t refcnt; /* reference counter */
736 struct module *module; /* THIS_MODULE/NULL */
738 /* scheduler initializing service */
739 int (*init_service)(struct ip_vs_service *svc);
740 /* scheduling service finish */
741 void (*done_service)(struct ip_vs_service *svc);
743 int (*add_dest)(struct ip_vs_service *svc, struct ip_vs_dest *dest);
744 /* dest is unlinked */
745 int (*del_dest)(struct ip_vs_service *svc, struct ip_vs_dest *dest);
746 /* dest is updated */
747 int (*upd_dest)(struct ip_vs_service *svc, struct ip_vs_dest *dest);
749 /* selecting a server from the given service */
750 struct ip_vs_dest* (*schedule)(struct ip_vs_service *svc,
751 const struct sk_buff *skb,
752 struct ip_vs_iphdr *iph);
755 /* The persistence engine object */
757 struct list_head n_list; /* d-linked list head */
758 char *name; /* scheduler name */
759 atomic_t refcnt; /* reference counter */
760 struct module *module; /* THIS_MODULE/NULL */
762 /* get the connection template, if any */
763 int (*fill_param)(struct ip_vs_conn_param *p, struct sk_buff *skb);
764 bool (*ct_match)(const struct ip_vs_conn_param *p,
765 struct ip_vs_conn *ct);
766 u32 (*hashkey_raw)(const struct ip_vs_conn_param *p, u32 initval,
768 int (*show_pe_data)(const struct ip_vs_conn *cp, char *buf);
771 /* The application module object (a.k.a. app incarnation) */
773 struct list_head a_list; /* member in app list */
774 int type; /* IP_VS_APP_TYPE_xxx */
775 char *name; /* application module name */
777 struct module *module; /* THIS_MODULE/NULL */
778 struct list_head incs_list; /* list of incarnations */
780 /* members for application incarnations */
781 struct list_head p_list; /* member in proto app list */
782 struct ip_vs_app *app; /* its real application */
783 __be16 port; /* port number in net order */
784 atomic_t usecnt; /* usage counter */
785 struct rcu_head rcu_head;
787 /* output hook: Process packet in inout direction, diff set for TCP.
788 * Return: 0=Error, 1=Payload Not Mangled/Mangled but checksum is ok,
789 * 2=Mangled but checksum was not updated
791 int (*pkt_out)(struct ip_vs_app *, struct ip_vs_conn *,
792 struct sk_buff *, int *diff);
794 /* input hook: Process packet in outin direction, diff set for TCP.
795 * Return: 0=Error, 1=Payload Not Mangled/Mangled but checksum is ok,
796 * 2=Mangled but checksum was not updated
798 int (*pkt_in)(struct ip_vs_app *, struct ip_vs_conn *,
799 struct sk_buff *, int *diff);
801 /* ip_vs_app initializer */
802 int (*init_conn)(struct ip_vs_app *, struct ip_vs_conn *);
804 /* ip_vs_app finish */
805 int (*done_conn)(struct ip_vs_app *, struct ip_vs_conn *);
809 int (*bind_conn)(struct ip_vs_app *, struct ip_vs_conn *,
810 struct ip_vs_protocol *);
812 void (*unbind_conn)(struct ip_vs_app *, struct ip_vs_conn *);
818 int (*conn_schedule)(struct sk_buff *skb, struct ip_vs_app *app,
819 int *verdict, struct ip_vs_conn **cpp);
822 (*conn_in_get)(const struct sk_buff *skb, struct ip_vs_app *app,
823 const struct iphdr *iph, int inverse);
826 (*conn_out_get)(const struct sk_buff *skb, struct ip_vs_app *app,
827 const struct iphdr *iph, int inverse);
829 int (*state_transition)(struct ip_vs_conn *cp, int direction,
830 const struct sk_buff *skb,
831 struct ip_vs_app *app);
833 void (*timeout_change)(struct ip_vs_app *app, int flags);
836 struct ipvs_master_sync_state {
837 struct list_head sync_queue;
838 struct ip_vs_sync_buff *sync_buff;
839 unsigned long sync_queue_len;
840 unsigned int sync_queue_delay;
841 struct task_struct *master_thread;
842 struct delayed_work master_wakeup_work;
843 struct netns_ipvs *ipvs;
846 /* How much time to keep dests in trash */
847 #define IP_VS_DEST_TRASH_PERIOD (120 * HZ)
849 /* IPVS in network namespace */
851 int gen; /* Generation */
852 int enable; /* enable like nf_hooks do */
853 /* Hash table: for real service lookups */
854 #define IP_VS_RTAB_BITS 4
855 #define IP_VS_RTAB_SIZE (1 << IP_VS_RTAB_BITS)
856 #define IP_VS_RTAB_MASK (IP_VS_RTAB_SIZE - 1)
858 struct hlist_head rs_table[IP_VS_RTAB_SIZE];
860 struct list_head app_list;
862 #define IP_VS_PROTO_TAB_SIZE 32 /* must be power of 2 */
863 struct ip_vs_proto_data *proto_data_table[IP_VS_PROTO_TAB_SIZE];
864 /* ip_vs_proto_tcp */
865 #ifdef CONFIG_IP_VS_PROTO_TCP
866 #define TCP_APP_TAB_BITS 4
867 #define TCP_APP_TAB_SIZE (1 << TCP_APP_TAB_BITS)
868 #define TCP_APP_TAB_MASK (TCP_APP_TAB_SIZE - 1)
869 struct list_head tcp_apps[TCP_APP_TAB_SIZE];
871 /* ip_vs_proto_udp */
872 #ifdef CONFIG_IP_VS_PROTO_UDP
873 #define UDP_APP_TAB_BITS 4
874 #define UDP_APP_TAB_SIZE (1 << UDP_APP_TAB_BITS)
875 #define UDP_APP_TAB_MASK (UDP_APP_TAB_SIZE - 1)
876 struct list_head udp_apps[UDP_APP_TAB_SIZE];
878 /* ip_vs_proto_sctp */
879 #ifdef CONFIG_IP_VS_PROTO_SCTP
880 #define SCTP_APP_TAB_BITS 4
881 #define SCTP_APP_TAB_SIZE (1 << SCTP_APP_TAB_BITS)
882 #define SCTP_APP_TAB_MASK (SCTP_APP_TAB_SIZE - 1)
883 /* Hash table for SCTP application incarnations */
884 struct list_head sctp_apps[SCTP_APP_TAB_SIZE];
887 atomic_t conn_count; /* connection counter */
890 struct ip_vs_stats tot_stats; /* Statistics & est. */
892 int num_services; /* no of virtual services */
894 /* Trash for destinations */
895 struct list_head dest_trash;
896 spinlock_t dest_trash_lock;
897 struct timer_list dest_trash_timer; /* expiration timer */
898 /* Service counters */
899 atomic_t ftpsvc_counter;
900 atomic_t nullsvc_counter;
903 /* 1/rate drop and drop-entry variables */
904 struct delayed_work defense_work; /* Work handler */
909 spinlock_t dropentry_lock; /* drop entry handling */
910 spinlock_t droppacket_lock; /* drop packet handling */
911 spinlock_t securetcp_lock; /* state and timeout tables */
914 struct ctl_table_header *sysctl_hdr;
915 struct ctl_table *sysctl_tbl;
918 /* sysctl variables */
919 int sysctl_amemthresh;
920 int sysctl_am_droprate;
921 int sysctl_drop_entry;
922 int sysctl_drop_packet;
923 int sysctl_secure_tcp;
924 #ifdef CONFIG_IP_VS_NFCT
925 int sysctl_conntrack;
927 int sysctl_snat_reroute;
929 int sysctl_sync_ports;
930 int sysctl_sync_persist_mode;
931 unsigned long sysctl_sync_qlen_max;
932 int sysctl_sync_sock_size;
933 int sysctl_cache_bypass;
934 int sysctl_expire_nodest_conn;
935 int sysctl_sloppy_tcp;
936 int sysctl_sloppy_sctp;
937 int sysctl_expire_quiescent_template;
938 int sysctl_sync_threshold[2];
939 unsigned int sysctl_sync_refresh_period;
940 int sysctl_sync_retries;
941 int sysctl_nat_icmp_send;
942 int sysctl_pmtu_disc;
943 int sysctl_backup_only;
944 int sysctl_conn_reuse_mode;
947 int sysctl_lblc_expiration;
948 struct ctl_table_header *lblc_ctl_header;
949 struct ctl_table *lblc_ctl_table;
951 int sysctl_lblcr_expiration;
952 struct ctl_table_header *lblcr_ctl_header;
953 struct ctl_table *lblcr_ctl_table;
955 struct list_head est_list; /* estimator list */
957 struct timer_list est_timer; /* Estimation timer */
959 spinlock_t sync_lock;
960 struct ipvs_master_sync_state *ms;
961 spinlock_t sync_buff_lock;
962 struct task_struct **backup_threads;
964 int send_mesg_maxlen;
965 int recv_mesg_maxlen;
966 volatile int sync_state;
967 volatile int master_syncid;
968 volatile int backup_syncid;
969 struct mutex sync_mutex;
970 /* multicast interface name */
971 char master_mcast_ifn[IP_VS_IFNAME_MAXLEN];
972 char backup_mcast_ifn[IP_VS_IFNAME_MAXLEN];
973 /* net name space ptr */
974 struct net *net; /* Needed by timer routines */
975 /* Number of heterogeneous destinations, needed becaus heterogeneous
976 * are not supported when synchronization is enabled.
978 unsigned int mixed_address_family_dests;
981 #define DEFAULT_SYNC_THRESHOLD 3
982 #define DEFAULT_SYNC_PERIOD 50
983 #define DEFAULT_SYNC_VER 1
984 #define DEFAULT_SLOPPY_TCP 0
985 #define DEFAULT_SLOPPY_SCTP 0
986 #define DEFAULT_SYNC_REFRESH_PERIOD (0U * HZ)
987 #define DEFAULT_SYNC_RETRIES 0
988 #define IPVS_SYNC_WAKEUP_RATE 8
989 #define IPVS_SYNC_QLEN_MAX (IPVS_SYNC_WAKEUP_RATE * 4)
990 #define IPVS_SYNC_SEND_DELAY (HZ / 50)
991 #define IPVS_SYNC_CHECK_PERIOD HZ
992 #define IPVS_SYNC_FLUSH_TIME (HZ * 2)
993 #define IPVS_SYNC_PORTS_MAX (1 << 6)
997 static inline int sysctl_sync_threshold(struct netns_ipvs *ipvs)
999 return ipvs->sysctl_sync_threshold[0];
1002 static inline int sysctl_sync_period(struct netns_ipvs *ipvs)
1004 return ACCESS_ONCE(ipvs->sysctl_sync_threshold[1]);
1007 static inline unsigned int sysctl_sync_refresh_period(struct netns_ipvs *ipvs)
1009 return ACCESS_ONCE(ipvs->sysctl_sync_refresh_period);
1012 static inline int sysctl_sync_retries(struct netns_ipvs *ipvs)
1014 return ipvs->sysctl_sync_retries;
1017 static inline int sysctl_sync_ver(struct netns_ipvs *ipvs)
1019 return ipvs->sysctl_sync_ver;
1022 static inline int sysctl_sloppy_tcp(struct netns_ipvs *ipvs)
1024 return ipvs->sysctl_sloppy_tcp;
1027 static inline int sysctl_sloppy_sctp(struct netns_ipvs *ipvs)
1029 return ipvs->sysctl_sloppy_sctp;
1032 static inline int sysctl_sync_ports(struct netns_ipvs *ipvs)
1034 return ACCESS_ONCE(ipvs->sysctl_sync_ports);
1037 static inline int sysctl_sync_persist_mode(struct netns_ipvs *ipvs)
1039 return ipvs->sysctl_sync_persist_mode;
1042 static inline unsigned long sysctl_sync_qlen_max(struct netns_ipvs *ipvs)
1044 return ipvs->sysctl_sync_qlen_max;
1047 static inline int sysctl_sync_sock_size(struct netns_ipvs *ipvs)
1049 return ipvs->sysctl_sync_sock_size;
1052 static inline int sysctl_pmtu_disc(struct netns_ipvs *ipvs)
1054 return ipvs->sysctl_pmtu_disc;
1057 static inline int sysctl_backup_only(struct netns_ipvs *ipvs)
1059 return ipvs->sync_state & IP_VS_STATE_BACKUP &&
1060 ipvs->sysctl_backup_only;
1063 static inline int sysctl_conn_reuse_mode(struct netns_ipvs *ipvs)
1065 return ipvs->sysctl_conn_reuse_mode;
1070 static inline int sysctl_sync_threshold(struct netns_ipvs *ipvs)
1072 return DEFAULT_SYNC_THRESHOLD;
1075 static inline int sysctl_sync_period(struct netns_ipvs *ipvs)
1077 return DEFAULT_SYNC_PERIOD;
1080 static inline unsigned int sysctl_sync_refresh_period(struct netns_ipvs *ipvs)
1082 return DEFAULT_SYNC_REFRESH_PERIOD;
1085 static inline int sysctl_sync_retries(struct netns_ipvs *ipvs)
1087 return DEFAULT_SYNC_RETRIES & 3;
1090 static inline int sysctl_sync_ver(struct netns_ipvs *ipvs)
1092 return DEFAULT_SYNC_VER;
1095 static inline int sysctl_sloppy_tcp(struct netns_ipvs *ipvs)
1097 return DEFAULT_SLOPPY_TCP;
1100 static inline int sysctl_sloppy_sctp(struct netns_ipvs *ipvs)
1102 return DEFAULT_SLOPPY_SCTP;
1105 static inline int sysctl_sync_ports(struct netns_ipvs *ipvs)
1110 static inline int sysctl_sync_persist_mode(struct netns_ipvs *ipvs)
1115 static inline unsigned long sysctl_sync_qlen_max(struct netns_ipvs *ipvs)
1117 return IPVS_SYNC_QLEN_MAX;
1120 static inline int sysctl_sync_sock_size(struct netns_ipvs *ipvs)
1125 static inline int sysctl_pmtu_disc(struct netns_ipvs *ipvs)
1130 static inline int sysctl_backup_only(struct netns_ipvs *ipvs)
1135 static inline int sysctl_conn_reuse_mode(struct netns_ipvs *ipvs)
1142 /* IPVS core functions
1143 * (from ip_vs_core.c)
1145 const char *ip_vs_proto_name(unsigned int proto);
1146 void ip_vs_init_hash_table(struct list_head *table, int rows);
1147 #define IP_VS_INIT_HASH_TABLE(t) ip_vs_init_hash_table((t), ARRAY_SIZE((t)))
1149 #define IP_VS_APP_TYPE_FTP 1
1151 /* ip_vs_conn handling functions
1152 * (from ip_vs_conn.c)
1155 IP_VS_DIR_INPUT = 0,
1157 IP_VS_DIR_INPUT_ONLY,
1161 static inline void ip_vs_conn_fill_param(struct net *net, int af, int protocol,
1162 const union nf_inet_addr *caddr,
1164 const union nf_inet_addr *vaddr,
1166 struct ip_vs_conn_param *p)
1170 p->protocol = protocol;
1179 struct ip_vs_conn *ip_vs_conn_in_get(const struct ip_vs_conn_param *p);
1180 struct ip_vs_conn *ip_vs_ct_in_get(const struct ip_vs_conn_param *p);
1182 struct ip_vs_conn * ip_vs_conn_in_get_proto(int af, const struct sk_buff *skb,
1183 const struct ip_vs_iphdr *iph,
1186 struct ip_vs_conn *ip_vs_conn_out_get(const struct ip_vs_conn_param *p);
1188 struct ip_vs_conn * ip_vs_conn_out_get_proto(int af, const struct sk_buff *skb,
1189 const struct ip_vs_iphdr *iph,
1192 /* Get reference to gain full access to conn.
1193 * By default, RCU read-side critical sections have access only to
1194 * conn fields and its PE data, see ip_vs_conn_rcu_free() for reference.
1196 static inline bool __ip_vs_conn_get(struct ip_vs_conn *cp)
1198 return atomic_inc_not_zero(&cp->refcnt);
1201 /* put back the conn without restarting its timer */
1202 static inline void __ip_vs_conn_put(struct ip_vs_conn *cp)
1204 smp_mb__before_atomic();
1205 atomic_dec(&cp->refcnt);
1207 void ip_vs_conn_put(struct ip_vs_conn *cp);
1208 void ip_vs_conn_fill_cport(struct ip_vs_conn *cp, __be16 cport);
1210 struct ip_vs_conn *ip_vs_conn_new(const struct ip_vs_conn_param *p, int dest_af,
1211 const union nf_inet_addr *daddr,
1212 __be16 dport, unsigned int flags,
1213 struct ip_vs_dest *dest, __u32 fwmark);
1214 void ip_vs_conn_expire_now(struct ip_vs_conn *cp);
1216 const char *ip_vs_state_name(__u16 proto, int state);
1218 void ip_vs_tcp_conn_listen(struct net *net, struct ip_vs_conn *cp);
1219 int ip_vs_check_template(struct ip_vs_conn *ct);
1220 void ip_vs_random_dropentry(struct net *net);
1221 int ip_vs_conn_init(void);
1222 void ip_vs_conn_cleanup(void);
1224 static inline void ip_vs_control_del(struct ip_vs_conn *cp)
1226 struct ip_vs_conn *ctl_cp = cp->control;
1228 IP_VS_ERR_BUF("request control DEL for uncontrolled: "
1230 IP_VS_DBG_ADDR(cp->af, &cp->caddr),
1232 IP_VS_DBG_ADDR(cp->af, &cp->vaddr),
1238 IP_VS_DBG_BUF(7, "DELeting control for: "
1239 "cp.dst=%s:%d ctl_cp.dst=%s:%d\n",
1240 IP_VS_DBG_ADDR(cp->af, &cp->caddr),
1242 IP_VS_DBG_ADDR(cp->af, &ctl_cp->caddr),
1243 ntohs(ctl_cp->cport));
1246 if (atomic_read(&ctl_cp->n_control) == 0) {
1247 IP_VS_ERR_BUF("BUG control DEL with n=0 : "
1249 IP_VS_DBG_ADDR(cp->af, &cp->caddr),
1251 IP_VS_DBG_ADDR(cp->af, &cp->vaddr),
1256 atomic_dec(&ctl_cp->n_control);
1260 ip_vs_control_add(struct ip_vs_conn *cp, struct ip_vs_conn *ctl_cp)
1263 IP_VS_ERR_BUF("request control ADD for already controlled: "
1265 IP_VS_DBG_ADDR(cp->af, &cp->caddr),
1267 IP_VS_DBG_ADDR(cp->af, &cp->vaddr),
1270 ip_vs_control_del(cp);
1273 IP_VS_DBG_BUF(7, "ADDing control for: "
1274 "cp.dst=%s:%d ctl_cp.dst=%s:%d\n",
1275 IP_VS_DBG_ADDR(cp->af, &cp->caddr),
1277 IP_VS_DBG_ADDR(cp->af, &ctl_cp->caddr),
1278 ntohs(ctl_cp->cport));
1280 cp->control = ctl_cp;
1281 atomic_inc(&ctl_cp->n_control);
1284 /* IPVS netns init & cleanup functions */
1285 int ip_vs_estimator_net_init(struct net *net);
1286 int ip_vs_control_net_init(struct net *net);
1287 int ip_vs_protocol_net_init(struct net *net);
1288 int ip_vs_app_net_init(struct net *net);
1289 int ip_vs_conn_net_init(struct net *net);
1290 int ip_vs_sync_net_init(struct net *net);
1291 void ip_vs_conn_net_cleanup(struct net *net);
1292 void ip_vs_app_net_cleanup(struct net *net);
1293 void ip_vs_protocol_net_cleanup(struct net *net);
1294 void ip_vs_control_net_cleanup(struct net *net);
1295 void ip_vs_estimator_net_cleanup(struct net *net);
1296 void ip_vs_sync_net_cleanup(struct net *net);
1297 void ip_vs_service_net_cleanup(struct net *net);
1299 /* IPVS application functions
1300 * (from ip_vs_app.c)
1302 #define IP_VS_APP_MAX_PORTS 8
1303 struct ip_vs_app *register_ip_vs_app(struct net *net, struct ip_vs_app *app);
1304 void unregister_ip_vs_app(struct net *net, struct ip_vs_app *app);
1305 int ip_vs_bind_app(struct ip_vs_conn *cp, struct ip_vs_protocol *pp);
1306 void ip_vs_unbind_app(struct ip_vs_conn *cp);
1307 int register_ip_vs_app_inc(struct net *net, struct ip_vs_app *app, __u16 proto,
1309 int ip_vs_app_inc_get(struct ip_vs_app *inc);
1310 void ip_vs_app_inc_put(struct ip_vs_app *inc);
1312 int ip_vs_app_pkt_out(struct ip_vs_conn *, struct sk_buff *skb);
1313 int ip_vs_app_pkt_in(struct ip_vs_conn *, struct sk_buff *skb);
1315 int register_ip_vs_pe(struct ip_vs_pe *pe);
1316 int unregister_ip_vs_pe(struct ip_vs_pe *pe);
1317 struct ip_vs_pe *ip_vs_pe_getbyname(const char *name);
1318 struct ip_vs_pe *__ip_vs_pe_getbyname(const char *pe_name);
1320 /* Use a #define to avoid all of module.h just for these trivial ops */
1321 #define ip_vs_pe_get(pe) \
1322 if (pe && pe->module) \
1323 __module_get(pe->module);
1325 #define ip_vs_pe_put(pe) \
1326 if (pe && pe->module) \
1327 module_put(pe->module);
1329 /* IPVS protocol functions (from ip_vs_proto.c) */
1330 int ip_vs_protocol_init(void);
1331 void ip_vs_protocol_cleanup(void);
1332 void ip_vs_protocol_timeout_change(struct netns_ipvs *ipvs, int flags);
1333 int *ip_vs_create_timeout_table(int *table, int size);
1334 int ip_vs_set_state_timeout(int *table, int num, const char *const *names,
1335 const char *name, int to);
1336 void ip_vs_tcpudp_debug_packet(int af, struct ip_vs_protocol *pp,
1337 const struct sk_buff *skb, int offset,
1340 extern struct ip_vs_protocol ip_vs_protocol_tcp;
1341 extern struct ip_vs_protocol ip_vs_protocol_udp;
1342 extern struct ip_vs_protocol ip_vs_protocol_icmp;
1343 extern struct ip_vs_protocol ip_vs_protocol_esp;
1344 extern struct ip_vs_protocol ip_vs_protocol_ah;
1345 extern struct ip_vs_protocol ip_vs_protocol_sctp;
1347 /* Registering/unregistering scheduler functions
1348 * (from ip_vs_sched.c)
1350 int register_ip_vs_scheduler(struct ip_vs_scheduler *scheduler);
1351 int unregister_ip_vs_scheduler(struct ip_vs_scheduler *scheduler);
1352 int ip_vs_bind_scheduler(struct ip_vs_service *svc,
1353 struct ip_vs_scheduler *scheduler);
1354 void ip_vs_unbind_scheduler(struct ip_vs_service *svc,
1355 struct ip_vs_scheduler *sched);
1356 struct ip_vs_scheduler *ip_vs_scheduler_get(const char *sched_name);
1357 void ip_vs_scheduler_put(struct ip_vs_scheduler *scheduler);
1359 ip_vs_schedule(struct ip_vs_service *svc, struct sk_buff *skb,
1360 struct ip_vs_proto_data *pd, int *ignored,
1361 struct ip_vs_iphdr *iph);
1362 int ip_vs_leave(struct ip_vs_service *svc, struct sk_buff *skb,
1363 struct ip_vs_proto_data *pd, struct ip_vs_iphdr *iph);
1365 void ip_vs_scheduler_err(struct ip_vs_service *svc, const char *msg);
1367 /* IPVS control data and functions (from ip_vs_ctl.c) */
1368 extern struct ip_vs_stats ip_vs_stats;
1369 extern int sysctl_ip_vs_sync_ver;
1371 struct ip_vs_service *
1372 ip_vs_service_find(struct net *net, int af, __u32 fwmark, __u16 protocol,
1373 const union nf_inet_addr *vaddr, __be16 vport);
1375 bool ip_vs_has_real_service(struct net *net, int af, __u16 protocol,
1376 const union nf_inet_addr *daddr, __be16 dport);
1378 int ip_vs_use_count_inc(void);
1379 void ip_vs_use_count_dec(void);
1380 int ip_vs_register_nl_ioctl(void);
1381 void ip_vs_unregister_nl_ioctl(void);
1382 int ip_vs_control_init(void);
1383 void ip_vs_control_cleanup(void);
1385 ip_vs_find_dest(struct net *net, int svc_af, int dest_af,
1386 const union nf_inet_addr *daddr, __be16 dport,
1387 const union nf_inet_addr *vaddr, __be16 vport,
1388 __u16 protocol, __u32 fwmark, __u32 flags);
1389 void ip_vs_try_bind_dest(struct ip_vs_conn *cp);
1391 static inline void ip_vs_dest_hold(struct ip_vs_dest *dest)
1393 atomic_inc(&dest->refcnt);
1396 static inline void ip_vs_dest_put(struct ip_vs_dest *dest)
1398 smp_mb__before_atomic();
1399 atomic_dec(&dest->refcnt);
1402 static inline void ip_vs_dest_put_and_free(struct ip_vs_dest *dest)
1404 if (atomic_dec_return(&dest->refcnt) < 0)
1408 /* IPVS sync daemon data and function prototypes
1409 * (from ip_vs_sync.c)
1411 int start_sync_thread(struct net *net, int state, char *mcast_ifn, __u8 syncid);
1412 int stop_sync_thread(struct net *net, int state);
1413 void ip_vs_sync_conn(struct net *net, struct ip_vs_conn *cp, int pkts);
1415 /* IPVS rate estimator prototypes (from ip_vs_est.c) */
1416 void ip_vs_start_estimator(struct net *net, struct ip_vs_stats *stats);
1417 void ip_vs_stop_estimator(struct net *net, struct ip_vs_stats *stats);
1418 void ip_vs_zero_estimator(struct ip_vs_stats *stats);
1419 void ip_vs_read_estimator(struct ip_vs_kstats *dst, struct ip_vs_stats *stats);
1421 /* Various IPVS packet transmitters (from ip_vs_xmit.c) */
1422 int ip_vs_null_xmit(struct sk_buff *skb, struct ip_vs_conn *cp,
1423 struct ip_vs_protocol *pp, struct ip_vs_iphdr *iph);
1424 int ip_vs_bypass_xmit(struct sk_buff *skb, struct ip_vs_conn *cp,
1425 struct ip_vs_protocol *pp, struct ip_vs_iphdr *iph);
1426 int ip_vs_nat_xmit(struct sk_buff *skb, struct ip_vs_conn *cp,
1427 struct ip_vs_protocol *pp, struct ip_vs_iphdr *iph);
1428 int ip_vs_tunnel_xmit(struct sk_buff *skb, struct ip_vs_conn *cp,
1429 struct ip_vs_protocol *pp, struct ip_vs_iphdr *iph);
1430 int ip_vs_dr_xmit(struct sk_buff *skb, struct ip_vs_conn *cp,
1431 struct ip_vs_protocol *pp, struct ip_vs_iphdr *iph);
1432 int ip_vs_icmp_xmit(struct sk_buff *skb, struct ip_vs_conn *cp,
1433 struct ip_vs_protocol *pp, int offset,
1434 unsigned int hooknum, struct ip_vs_iphdr *iph);
1435 void ip_vs_dest_dst_rcu_free(struct rcu_head *head);
1437 #ifdef CONFIG_IP_VS_IPV6
1438 int ip_vs_bypass_xmit_v6(struct sk_buff *skb, struct ip_vs_conn *cp,
1439 struct ip_vs_protocol *pp, struct ip_vs_iphdr *iph);
1440 int ip_vs_nat_xmit_v6(struct sk_buff *skb, struct ip_vs_conn *cp,
1441 struct ip_vs_protocol *pp, struct ip_vs_iphdr *iph);
1442 int ip_vs_tunnel_xmit_v6(struct sk_buff *skb, struct ip_vs_conn *cp,
1443 struct ip_vs_protocol *pp, struct ip_vs_iphdr *iph);
1444 int ip_vs_dr_xmit_v6(struct sk_buff *skb, struct ip_vs_conn *cp,
1445 struct ip_vs_protocol *pp, struct ip_vs_iphdr *iph);
1446 int ip_vs_icmp_xmit_v6(struct sk_buff *skb, struct ip_vs_conn *cp,
1447 struct ip_vs_protocol *pp, int offset,
1448 unsigned int hooknum, struct ip_vs_iphdr *iph);
1451 #ifdef CONFIG_SYSCTL
1452 /* This is a simple mechanism to ignore packets when
1453 * we are loaded. Just set ip_vs_drop_rate to 'n' and
1454 * we start to drop 1/rate of the packets
1456 static inline int ip_vs_todrop(struct netns_ipvs *ipvs)
1458 if (!ipvs->drop_rate)
1460 if (--ipvs->drop_counter > 0)
1462 ipvs->drop_counter = ipvs->drop_rate;
1466 static inline int ip_vs_todrop(struct netns_ipvs *ipvs) { return 0; }
1469 /* ip_vs_fwd_tag returns the forwarding tag of the connection */
1470 #define IP_VS_FWD_METHOD(cp) (cp->flags & IP_VS_CONN_F_FWD_MASK)
1472 static inline char ip_vs_fwd_tag(struct ip_vs_conn *cp)
1476 switch (IP_VS_FWD_METHOD(cp)) {
1477 case IP_VS_CONN_F_MASQ:
1479 case IP_VS_CONN_F_LOCALNODE:
1481 case IP_VS_CONN_F_TUNNEL:
1483 case IP_VS_CONN_F_DROUTE:
1485 case IP_VS_CONN_F_BYPASS:
1493 void ip_vs_nat_icmp(struct sk_buff *skb, struct ip_vs_protocol *pp,
1494 struct ip_vs_conn *cp, int dir);
1496 #ifdef CONFIG_IP_VS_IPV6
1497 void ip_vs_nat_icmp_v6(struct sk_buff *skb, struct ip_vs_protocol *pp,
1498 struct ip_vs_conn *cp, int dir);
1501 __sum16 ip_vs_checksum_complete(struct sk_buff *skb, int offset);
1503 static inline __wsum ip_vs_check_diff4(__be32 old, __be32 new, __wsum oldsum)
1505 __be32 diff[2] = { ~old, new };
1507 return csum_partial(diff, sizeof(diff), oldsum);
1510 #ifdef CONFIG_IP_VS_IPV6
1511 static inline __wsum ip_vs_check_diff16(const __be32 *old, const __be32 *new,
1514 __be32 diff[8] = { ~old[3], ~old[2], ~old[1], ~old[0],
1515 new[3], new[2], new[1], new[0] };
1517 return csum_partial(diff, sizeof(diff), oldsum);
1521 static inline __wsum ip_vs_check_diff2(__be16 old, __be16 new, __wsum oldsum)
1523 __be16 diff[2] = { ~old, new };
1525 return csum_partial(diff, sizeof(diff), oldsum);
1528 /* Forget current conntrack (unconfirmed) and attach notrack entry */
1529 static inline void ip_vs_notrack(struct sk_buff *skb)
1531 #if defined(CONFIG_NF_CONNTRACK) || defined(CONFIG_NF_CONNTRACK_MODULE)
1532 enum ip_conntrack_info ctinfo;
1533 struct nf_conn *ct = nf_ct_get(skb, &ctinfo);
1535 if (!ct || !nf_ct_is_untracked(ct)) {
1536 nf_conntrack_put(skb->nfct);
1537 skb->nfct = &nf_ct_untracked_get()->ct_general;
1538 skb->nfctinfo = IP_CT_NEW;
1539 nf_conntrack_get(skb->nfct);
1544 #ifdef CONFIG_IP_VS_NFCT
1545 /* Netfilter connection tracking
1546 * (from ip_vs_nfct.c)
1548 static inline int ip_vs_conntrack_enabled(struct netns_ipvs *ipvs)
1550 #ifdef CONFIG_SYSCTL
1551 return ipvs->sysctl_conntrack;
1557 void ip_vs_update_conntrack(struct sk_buff *skb, struct ip_vs_conn *cp,
1559 int ip_vs_confirm_conntrack(struct sk_buff *skb);
1560 void ip_vs_nfct_expect_related(struct sk_buff *skb, struct nf_conn *ct,
1561 struct ip_vs_conn *cp, u_int8_t proto,
1562 const __be16 port, int from_rs);
1563 void ip_vs_conn_drop_conntrack(struct ip_vs_conn *cp);
1567 static inline int ip_vs_conntrack_enabled(struct netns_ipvs *ipvs)
1572 static inline void ip_vs_update_conntrack(struct sk_buff *skb,
1573 struct ip_vs_conn *cp, int outin)
1577 static inline int ip_vs_confirm_conntrack(struct sk_buff *skb)
1582 static inline void ip_vs_conn_drop_conntrack(struct ip_vs_conn *cp)
1585 #endif /* CONFIG_IP_VS_NFCT */
1588 ip_vs_dest_conn_overhead(struct ip_vs_dest *dest)
1590 /* We think the overhead of processing active connections is 256
1591 * times higher than that of inactive connections in average. (This
1592 * 256 times might not be accurate, we will change it later) We
1593 * use the following formula to estimate the overhead now:
1594 * dest->activeconns*256 + dest->inactconns
1596 return (atomic_read(&dest->activeconns) << 8) +
1597 atomic_read(&dest->inactconns);
1600 #endif /* _NET_IP_VS_H */