3 * data structure and functionality definitions
9 #include <linux/ip_vs.h> /* definitions shared with userland */
11 /* old ipvsadm versions still include this file directly */
14 #include <asm/types.h> /* for __uXX types */
16 #include <linux/sysctl.h> /* for ctl_path */
17 #include <linux/list.h> /* for struct list_head */
18 #include <linux/spinlock.h> /* for struct rwlock_t */
19 #include <asm/atomic.h> /* for struct atomic_t */
20 #include <linux/compiler.h>
21 #include <linux/timer.h>
23 #include <net/checksum.h>
24 #include <linux/netfilter.h> /* for union nf_inet_addr */
26 #include <linux/ipv6.h> /* for struct ipv6hdr */
27 #include <net/ipv6.h> /* for ipv6_addr_copy */
30 /* Connections' size value needed by ip_vs_ctl.c */
31 extern int ip_vs_conn_tab_size
;
37 union nf_inet_addr saddr
;
38 union nf_inet_addr daddr
;
42 ip_vs_fill_iphdr(int af
, const void *nh
, struct ip_vs_iphdr
*iphdr
)
44 #ifdef CONFIG_IP_VS_IPV6
46 const struct ipv6hdr
*iph
= nh
;
47 iphdr
->len
= sizeof(struct ipv6hdr
);
48 iphdr
->protocol
= iph
->nexthdr
;
49 ipv6_addr_copy(&iphdr
->saddr
.in6
, &iph
->saddr
);
50 ipv6_addr_copy(&iphdr
->daddr
.in6
, &iph
->daddr
);
54 const struct iphdr
*iph
= nh
;
55 iphdr
->len
= iph
->ihl
* 4;
56 iphdr
->protocol
= iph
->protocol
;
57 iphdr
->saddr
.ip
= iph
->saddr
;
58 iphdr
->daddr
.ip
= iph
->daddr
;
62 static inline void ip_vs_addr_copy(int af
, union nf_inet_addr
*dst
,
63 const union nf_inet_addr
*src
)
65 #ifdef CONFIG_IP_VS_IPV6
67 ipv6_addr_copy(&dst
->in6
, &src
->in6
);
73 static inline int ip_vs_addr_equal(int af
, const union nf_inet_addr
*a
,
74 const union nf_inet_addr
*b
)
76 #ifdef CONFIG_IP_VS_IPV6
78 return ipv6_addr_equal(&a
->in6
, &b
->in6
);
80 return a
->ip
== b
->ip
;
83 #ifdef CONFIG_IP_VS_DEBUG
84 #include <linux/net.h>
86 extern int ip_vs_get_debug_level(void);
88 static inline const char *ip_vs_dbg_addr(int af
, char *buf
, size_t buf_len
,
89 const union nf_inet_addr
*addr
,
93 #ifdef CONFIG_IP_VS_IPV6
95 len
= snprintf(&buf
[*idx
], buf_len
- *idx
, "[%pI6]",
99 len
= snprintf(&buf
[*idx
], buf_len
- *idx
, "%pI4",
103 BUG_ON(*idx
> buf_len
+ 1);
104 return &buf
[*idx
- len
];
107 #define IP_VS_DBG_BUF(level, msg, ...) \
109 char ip_vs_dbg_buf[160]; \
110 int ip_vs_dbg_idx = 0; \
111 if (level <= ip_vs_get_debug_level()) \
112 printk(KERN_DEBUG pr_fmt(msg), ##__VA_ARGS__); \
114 #define IP_VS_ERR_BUF(msg...) \
116 char ip_vs_dbg_buf[160]; \
117 int ip_vs_dbg_idx = 0; \
121 /* Only use from within IP_VS_DBG_BUF() or IP_VS_ERR_BUF macros */
122 #define IP_VS_DBG_ADDR(af, addr) \
123 ip_vs_dbg_addr(af, ip_vs_dbg_buf, \
124 sizeof(ip_vs_dbg_buf), addr, \
127 #define IP_VS_DBG(level, msg, ...) \
129 if (level <= ip_vs_get_debug_level()) \
130 printk(KERN_DEBUG pr_fmt(msg), ##__VA_ARGS__); \
132 #define IP_VS_DBG_RL(msg, ...) \
134 if (net_ratelimit()) \
135 printk(KERN_DEBUG pr_fmt(msg), ##__VA_ARGS__); \
137 #define IP_VS_DBG_PKT(level, pp, skb, ofs, msg) \
139 if (level <= ip_vs_get_debug_level()) \
140 pp->debug_packet(pp, skb, ofs, msg); \
142 #define IP_VS_DBG_RL_PKT(level, pp, skb, ofs, msg) \
144 if (level <= ip_vs_get_debug_level() && \
146 pp->debug_packet(pp, skb, ofs, msg); \
148 #else /* NO DEBUGGING at ALL */
149 #define IP_VS_DBG_BUF(level, msg...) do {} while (0)
150 #define IP_VS_ERR_BUF(msg...) do {} while (0)
151 #define IP_VS_DBG(level, msg...) do {} while (0)
152 #define IP_VS_DBG_RL(msg...) do {} while (0)
153 #define IP_VS_DBG_PKT(level, pp, skb, ofs, msg) do {} while (0)
154 #define IP_VS_DBG_RL_PKT(level, pp, skb, ofs, msg) do {} while (0)
157 #define IP_VS_BUG() BUG()
158 #define IP_VS_ERR_RL(msg, ...) \
160 if (net_ratelimit()) \
161 pr_err(msg, ##__VA_ARGS__); \
164 #ifdef CONFIG_IP_VS_DEBUG
165 #define EnterFunction(level) \
167 if (level <= ip_vs_get_debug_level()) \
169 pr_fmt("Enter: %s, %s line %i\n"), \
170 __func__, __FILE__, __LINE__); \
172 #define LeaveFunction(level) \
174 if (level <= ip_vs_get_debug_level()) \
176 pr_fmt("Leave: %s, %s line %i\n"), \
177 __func__, __FILE__, __LINE__); \
180 #define EnterFunction(level) do {} while (0)
181 #define LeaveFunction(level) do {} while (0)
184 #define IP_VS_WAIT_WHILE(expr) while (expr) { cpu_relax(); }
188 * The port number of FTP service (in network order).
190 #define FTPPORT cpu_to_be16(21)
191 #define FTPDATA cpu_to_be16(20)
197 IP_VS_TCP_S_NONE
= 0,
198 IP_VS_TCP_S_ESTABLISHED
,
199 IP_VS_TCP_S_SYN_SENT
,
200 IP_VS_TCP_S_SYN_RECV
,
201 IP_VS_TCP_S_FIN_WAIT
,
202 IP_VS_TCP_S_TIME_WAIT
,
204 IP_VS_TCP_S_CLOSE_WAIT
,
205 IP_VS_TCP_S_LAST_ACK
,
228 * Delta sequence info structure
229 * Each ip_vs_conn has 2 (output AND input seq. changes).
230 * Only used in the VS/NAT.
233 __u32 init_seq
; /* Add delta from this seq */
234 __u32 delta
; /* Delta in sequence numbers */
235 __u32 previous_delta
; /* Delta in sequence numbers
236 before last resized pkt */
241 * IPVS statistics objects
243 struct ip_vs_estimator
{
244 struct list_head list
;
260 struct ip_vs_stats_user ustats
; /* statistics */
261 struct ip_vs_estimator est
; /* estimator */
263 spinlock_t lock
; /* spin lock */
272 struct ip_vs_protocol
{
273 struct ip_vs_protocol
*next
;
278 atomic_t appcnt
; /* counter of proto app incs */
279 int *timeout_table
; /* protocol timeout table */
281 void (*init
)(struct ip_vs_protocol
*pp
);
283 void (*exit
)(struct ip_vs_protocol
*pp
);
285 int (*conn_schedule
)(int af
, struct sk_buff
*skb
,
286 struct ip_vs_protocol
*pp
,
287 int *verdict
, struct ip_vs_conn
**cpp
);
290 (*conn_in_get
)(int af
,
291 const struct sk_buff
*skb
,
292 struct ip_vs_protocol
*pp
,
293 const struct ip_vs_iphdr
*iph
,
294 unsigned int proto_off
,
298 (*conn_out_get
)(int af
,
299 const struct sk_buff
*skb
,
300 struct ip_vs_protocol
*pp
,
301 const struct ip_vs_iphdr
*iph
,
302 unsigned int proto_off
,
305 int (*snat_handler
)(struct sk_buff
*skb
,
306 struct ip_vs_protocol
*pp
, struct ip_vs_conn
*cp
);
308 int (*dnat_handler
)(struct sk_buff
*skb
,
309 struct ip_vs_protocol
*pp
, struct ip_vs_conn
*cp
);
311 int (*csum_check
)(int af
, struct sk_buff
*skb
,
312 struct ip_vs_protocol
*pp
);
314 const char *(*state_name
)(int state
);
316 int (*state_transition
)(struct ip_vs_conn
*cp
, int direction
,
317 const struct sk_buff
*skb
,
318 struct ip_vs_protocol
*pp
);
320 int (*register_app
)(struct ip_vs_app
*inc
);
322 void (*unregister_app
)(struct ip_vs_app
*inc
);
324 int (*app_conn_bind
)(struct ip_vs_conn
*cp
);
326 void (*debug_packet
)(struct ip_vs_protocol
*pp
,
327 const struct sk_buff
*skb
,
331 void (*timeout_change
)(struct ip_vs_protocol
*pp
, int flags
);
333 int (*set_state_timeout
)(struct ip_vs_protocol
*pp
, char *sname
, int to
);
336 extern struct ip_vs_protocol
* ip_vs_proto_get(unsigned short proto
);
339 * IP_VS structure allocated for each dynamically scheduled connection
342 struct list_head c_list
; /* hashed list heads */
344 /* Protocol, addresses and port numbers */
345 u16 af
; /* address family */
346 union nf_inet_addr caddr
; /* client address */
347 union nf_inet_addr vaddr
; /* virtual address */
348 union nf_inet_addr daddr
; /* destination address */
352 __u16 protocol
; /* Which protocol (TCP/UDP) */
354 /* counter and timer */
355 atomic_t refcnt
; /* reference count */
356 struct timer_list timer
; /* Expiration timer */
357 volatile unsigned long timeout
; /* timeout */
359 /* Flags and state transition */
360 spinlock_t lock
; /* lock for state transition */
361 volatile __u16 flags
; /* status flags */
362 volatile __u16 state
; /* state info */
363 volatile __u16 old_state
; /* old state, to be used for
364 * state transition triggerd
368 /* Control members */
369 struct ip_vs_conn
*control
; /* Master control connection */
370 atomic_t n_control
; /* Number of controlled ones */
371 struct ip_vs_dest
*dest
; /* real server */
372 atomic_t in_pkts
; /* incoming packet counter */
374 /* packet transmitter for different forwarding methods. If it
375 mangles the packet, it must return NF_DROP or better NF_STOLEN,
376 otherwise this must be changed to a sk_buff **.
378 int (*packet_xmit
)(struct sk_buff
*skb
, struct ip_vs_conn
*cp
,
379 struct ip_vs_protocol
*pp
);
381 /* Note: we can group the following members into a structure,
382 in order to save more space, and the following members are
383 only used in VS/NAT anyway */
384 struct ip_vs_app
*app
; /* bound ip_vs_app object */
385 void *app_data
; /* Application private data */
386 struct ip_vs_seq in_seq
; /* incoming seq. struct */
387 struct ip_vs_seq out_seq
; /* outgoing seq. struct */
392 * Extended internal versions of struct ip_vs_service_user and
393 * ip_vs_dest_user for IPv6 support.
395 * We need these to conveniently pass around service and destination
396 * options, but unfortunately, we also need to keep the old definitions to
397 * maintain userspace backwards compatibility for the setsockopt interface.
399 struct ip_vs_service_user_kern
{
400 /* virtual service addresses */
403 union nf_inet_addr addr
; /* virtual ip address */
405 u32 fwmark
; /* firwall mark of service */
407 /* virtual service options */
409 unsigned flags
; /* virtual service flags */
410 unsigned timeout
; /* persistent timeout in sec */
411 u32 netmask
; /* persistent netmask */
415 struct ip_vs_dest_user_kern
{
416 /* destination server address */
417 union nf_inet_addr addr
;
420 /* real server options */
421 unsigned conn_flags
; /* connection flags */
422 int weight
; /* destination weight */
424 /* thresholds for active connections */
425 u32 u_threshold
; /* upper threshold */
426 u32 l_threshold
; /* lower threshold */
431 * The information about the virtual service offered to the net
432 * and the forwarding entries
434 struct ip_vs_service
{
435 struct list_head s_list
; /* for normal service table */
436 struct list_head f_list
; /* for fwmark-based service table */
437 atomic_t refcnt
; /* reference counter */
438 atomic_t usecnt
; /* use counter */
440 u16 af
; /* address family */
441 __u16 protocol
; /* which protocol (TCP/UDP) */
442 union nf_inet_addr addr
; /* IP address for virtual service */
443 __be16 port
; /* port number for the service */
444 __u32 fwmark
; /* firewall mark of the service */
445 unsigned flags
; /* service status flags */
446 unsigned timeout
; /* persistent timeout in ticks */
447 __be32 netmask
; /* grouping granularity */
449 struct list_head destinations
; /* real server d-linked list */
450 __u32 num_dests
; /* number of servers */
451 struct ip_vs_stats stats
; /* statistics for the service */
452 struct ip_vs_app
*inc
; /* bind conns to this app inc */
455 struct ip_vs_scheduler
*scheduler
; /* bound scheduler object */
456 rwlock_t sched_lock
; /* lock sched_data */
457 void *sched_data
; /* scheduler application data */
462 * The real server destination forwarding entry
463 * with ip address, port number, and so on.
466 struct list_head n_list
; /* for the dests in the service */
467 struct list_head d_list
; /* for table with all the dests */
469 u16 af
; /* address family */
470 union nf_inet_addr addr
; /* IP address of the server */
471 __be16 port
; /* port number of the server */
472 volatile unsigned flags
; /* dest status flags */
473 atomic_t conn_flags
; /* flags to copy to conn */
474 atomic_t weight
; /* server weight */
476 atomic_t refcnt
; /* reference counter */
477 struct ip_vs_stats stats
; /* statistics */
479 /* connection counters and thresholds */
480 atomic_t activeconns
; /* active connections */
481 atomic_t inactconns
; /* inactive connections */
482 atomic_t persistconns
; /* persistent connections */
483 __u32 u_threshold
; /* upper threshold */
484 __u32 l_threshold
; /* lower threshold */
486 /* for destination cache */
487 spinlock_t dst_lock
; /* lock of dst_cache */
488 struct dst_entry
*dst_cache
; /* destination cache entry */
489 u32 dst_rtos
; /* RT_TOS(tos) for dst */
491 /* for virtual service */
492 struct ip_vs_service
*svc
; /* service it belongs to */
493 __u16 protocol
; /* which protocol (TCP/UDP) */
494 union nf_inet_addr vaddr
; /* virtual IP address */
495 __be16 vport
; /* virtual port number */
496 __u32 vfwmark
; /* firewall mark of service */
501 * The scheduler object
503 struct ip_vs_scheduler
{
504 struct list_head n_list
; /* d-linked list head */
505 char *name
; /* scheduler name */
506 atomic_t refcnt
; /* reference counter */
507 struct module
*module
; /* THIS_MODULE/NULL */
509 /* scheduler initializing service */
510 int (*init_service
)(struct ip_vs_service
*svc
);
511 /* scheduling service finish */
512 int (*done_service
)(struct ip_vs_service
*svc
);
513 /* scheduler updating service */
514 int (*update_service
)(struct ip_vs_service
*svc
);
516 /* selecting a server from the given service */
517 struct ip_vs_dest
* (*schedule
)(struct ip_vs_service
*svc
,
518 const struct sk_buff
*skb
);
523 * The application module object (a.k.a. app incarnation)
526 struct list_head a_list
; /* member in app list */
527 int type
; /* IP_VS_APP_TYPE_xxx */
528 char *name
; /* application module name */
530 struct module
*module
; /* THIS_MODULE/NULL */
531 struct list_head incs_list
; /* list of incarnations */
533 /* members for application incarnations */
534 struct list_head p_list
; /* member in proto app list */
535 struct ip_vs_app
*app
; /* its real application */
536 __be16 port
; /* port number in net order */
537 atomic_t usecnt
; /* usage counter */
539 /* output hook: return false if can't linearize. diff set for TCP. */
540 int (*pkt_out
)(struct ip_vs_app
*, struct ip_vs_conn
*,
541 struct sk_buff
*, int *diff
);
543 /* input hook: return false if can't linearize. diff set for TCP. */
544 int (*pkt_in
)(struct ip_vs_app
*, struct ip_vs_conn
*,
545 struct sk_buff
*, int *diff
);
547 /* ip_vs_app initializer */
548 int (*init_conn
)(struct ip_vs_app
*, struct ip_vs_conn
*);
550 /* ip_vs_app finish */
551 int (*done_conn
)(struct ip_vs_app
*, struct ip_vs_conn
*);
555 int (*bind_conn
)(struct ip_vs_app
*, struct ip_vs_conn
*,
556 struct ip_vs_protocol
*);
558 void (*unbind_conn
)(struct ip_vs_app
*, struct ip_vs_conn
*);
564 int (*conn_schedule
)(struct sk_buff
*skb
, struct ip_vs_app
*app
,
565 int *verdict
, struct ip_vs_conn
**cpp
);
568 (*conn_in_get
)(const struct sk_buff
*skb
, struct ip_vs_app
*app
,
569 const struct iphdr
*iph
, unsigned int proto_off
,
573 (*conn_out_get
)(const struct sk_buff
*skb
, struct ip_vs_app
*app
,
574 const struct iphdr
*iph
, unsigned int proto_off
,
577 int (*state_transition
)(struct ip_vs_conn
*cp
, int direction
,
578 const struct sk_buff
*skb
,
579 struct ip_vs_app
*app
);
581 void (*timeout_change
)(struct ip_vs_app
*app
, int flags
);
586 * IPVS core functions
587 * (from ip_vs_core.c)
589 extern const char *ip_vs_proto_name(unsigned proto
);
590 extern void ip_vs_init_hash_table(struct list_head
*table
, int rows
);
591 #define IP_VS_INIT_HASH_TABLE(t) ip_vs_init_hash_table((t), ARRAY_SIZE((t)))
593 #define IP_VS_APP_TYPE_FTP 1
596 * ip_vs_conn handling functions
597 * (from ip_vs_conn.c)
603 IP_VS_DIR_INPUT_ONLY
,
607 extern struct ip_vs_conn
*ip_vs_conn_in_get
608 (int af
, int protocol
, const union nf_inet_addr
*s_addr
, __be16 s_port
,
609 const union nf_inet_addr
*d_addr
, __be16 d_port
);
611 extern struct ip_vs_conn
*ip_vs_ct_in_get
612 (int af
, int protocol
, const union nf_inet_addr
*s_addr
, __be16 s_port
,
613 const union nf_inet_addr
*d_addr
, __be16 d_port
);
615 extern struct ip_vs_conn
*ip_vs_conn_out_get
616 (int af
, int protocol
, const union nf_inet_addr
*s_addr
, __be16 s_port
,
617 const union nf_inet_addr
*d_addr
, __be16 d_port
);
619 /* put back the conn without restarting its timer */
620 static inline void __ip_vs_conn_put(struct ip_vs_conn
*cp
)
622 atomic_dec(&cp
->refcnt
);
624 extern void ip_vs_conn_put(struct ip_vs_conn
*cp
);
625 extern void ip_vs_conn_fill_cport(struct ip_vs_conn
*cp
, __be16 cport
);
627 extern struct ip_vs_conn
*
628 ip_vs_conn_new(int af
, int proto
, const union nf_inet_addr
*caddr
, __be16 cport
,
629 const union nf_inet_addr
*vaddr
, __be16 vport
,
630 const union nf_inet_addr
*daddr
, __be16 dport
, unsigned flags
,
631 struct ip_vs_dest
*dest
);
632 extern void ip_vs_conn_expire_now(struct ip_vs_conn
*cp
);
634 extern const char * ip_vs_state_name(__u16 proto
, int state
);
636 extern void ip_vs_tcp_conn_listen(struct ip_vs_conn
*cp
);
637 extern int ip_vs_check_template(struct ip_vs_conn
*ct
);
638 extern void ip_vs_random_dropentry(void);
639 extern int ip_vs_conn_init(void);
640 extern void ip_vs_conn_cleanup(void);
642 static inline void ip_vs_control_del(struct ip_vs_conn
*cp
)
644 struct ip_vs_conn
*ctl_cp
= cp
->control
;
646 IP_VS_ERR_BUF("request control DEL for uncontrolled: "
648 IP_VS_DBG_ADDR(cp
->af
, &cp
->caddr
),
650 IP_VS_DBG_ADDR(cp
->af
, &cp
->vaddr
),
656 IP_VS_DBG_BUF(7, "DELeting control for: "
657 "cp.dst=%s:%d ctl_cp.dst=%s:%d\n",
658 IP_VS_DBG_ADDR(cp
->af
, &cp
->caddr
),
660 IP_VS_DBG_ADDR(cp
->af
, &ctl_cp
->caddr
),
661 ntohs(ctl_cp
->cport
));
664 if (atomic_read(&ctl_cp
->n_control
) == 0) {
665 IP_VS_ERR_BUF("BUG control DEL with n=0 : "
667 IP_VS_DBG_ADDR(cp
->af
, &cp
->caddr
),
669 IP_VS_DBG_ADDR(cp
->af
, &cp
->vaddr
),
674 atomic_dec(&ctl_cp
->n_control
);
678 ip_vs_control_add(struct ip_vs_conn
*cp
, struct ip_vs_conn
*ctl_cp
)
681 IP_VS_ERR_BUF("request control ADD for already controlled: "
683 IP_VS_DBG_ADDR(cp
->af
, &cp
->caddr
),
685 IP_VS_DBG_ADDR(cp
->af
, &cp
->vaddr
),
688 ip_vs_control_del(cp
);
691 IP_VS_DBG_BUF(7, "ADDing control for: "
692 "cp.dst=%s:%d ctl_cp.dst=%s:%d\n",
693 IP_VS_DBG_ADDR(cp
->af
, &cp
->caddr
),
695 IP_VS_DBG_ADDR(cp
->af
, &ctl_cp
->caddr
),
696 ntohs(ctl_cp
->cport
));
698 cp
->control
= ctl_cp
;
699 atomic_inc(&ctl_cp
->n_control
);
704 * IPVS application functions
707 #define IP_VS_APP_MAX_PORTS 8
708 extern int register_ip_vs_app(struct ip_vs_app
*app
);
709 extern void unregister_ip_vs_app(struct ip_vs_app
*app
);
710 extern int ip_vs_bind_app(struct ip_vs_conn
*cp
, struct ip_vs_protocol
*pp
);
711 extern void ip_vs_unbind_app(struct ip_vs_conn
*cp
);
713 register_ip_vs_app_inc(struct ip_vs_app
*app
, __u16 proto
, __u16 port
);
714 extern int ip_vs_app_inc_get(struct ip_vs_app
*inc
);
715 extern void ip_vs_app_inc_put(struct ip_vs_app
*inc
);
717 extern int ip_vs_app_pkt_out(struct ip_vs_conn
*, struct sk_buff
*skb
);
718 extern int ip_vs_app_pkt_in(struct ip_vs_conn
*, struct sk_buff
*skb
);
719 extern int ip_vs_skb_replace(struct sk_buff
*skb
, gfp_t pri
,
720 char *o_buf
, int o_len
, char *n_buf
, int n_len
);
721 extern int ip_vs_app_init(void);
722 extern void ip_vs_app_cleanup(void);
726 * IPVS protocol functions (from ip_vs_proto.c)
728 extern int ip_vs_protocol_init(void);
729 extern void ip_vs_protocol_cleanup(void);
730 extern void ip_vs_protocol_timeout_change(int flags
);
731 extern int *ip_vs_create_timeout_table(int *table
, int size
);
733 ip_vs_set_state_timeout(int *table
, int num
, const char *const *names
,
734 const char *name
, int to
);
736 ip_vs_tcpudp_debug_packet(struct ip_vs_protocol
*pp
, const struct sk_buff
*skb
,
737 int offset
, const char *msg
);
739 extern struct ip_vs_protocol ip_vs_protocol_tcp
;
740 extern struct ip_vs_protocol ip_vs_protocol_udp
;
741 extern struct ip_vs_protocol ip_vs_protocol_icmp
;
742 extern struct ip_vs_protocol ip_vs_protocol_esp
;
743 extern struct ip_vs_protocol ip_vs_protocol_ah
;
747 * Registering/unregistering scheduler functions
748 * (from ip_vs_sched.c)
750 extern int register_ip_vs_scheduler(struct ip_vs_scheduler
*scheduler
);
751 extern int unregister_ip_vs_scheduler(struct ip_vs_scheduler
*scheduler
);
752 extern int ip_vs_bind_scheduler(struct ip_vs_service
*svc
,
753 struct ip_vs_scheduler
*scheduler
);
754 extern int ip_vs_unbind_scheduler(struct ip_vs_service
*svc
);
755 extern struct ip_vs_scheduler
*ip_vs_scheduler_get(const char *sched_name
);
756 extern void ip_vs_scheduler_put(struct ip_vs_scheduler
*scheduler
);
757 extern struct ip_vs_conn
*
758 ip_vs_schedule(struct ip_vs_service
*svc
, const struct sk_buff
*skb
);
759 extern int ip_vs_leave(struct ip_vs_service
*svc
, struct sk_buff
*skb
,
760 struct ip_vs_protocol
*pp
);
764 * IPVS control data and functions (from ip_vs_ctl.c)
766 extern int sysctl_ip_vs_cache_bypass
;
767 extern int sysctl_ip_vs_expire_nodest_conn
;
768 extern int sysctl_ip_vs_expire_quiescent_template
;
769 extern int sysctl_ip_vs_sync_threshold
[2];
770 extern int sysctl_ip_vs_nat_icmp_send
;
771 extern struct ip_vs_stats ip_vs_stats
;
772 extern const struct ctl_path net_vs_ctl_path
[];
774 extern struct ip_vs_service
*
775 ip_vs_service_get(int af
, __u32 fwmark
, __u16 protocol
,
776 const union nf_inet_addr
*vaddr
, __be16 vport
);
778 static inline void ip_vs_service_put(struct ip_vs_service
*svc
)
780 atomic_dec(&svc
->usecnt
);
783 extern struct ip_vs_dest
*
784 ip_vs_lookup_real_service(int af
, __u16 protocol
,
785 const union nf_inet_addr
*daddr
, __be16 dport
);
787 extern int ip_vs_use_count_inc(void);
788 extern void ip_vs_use_count_dec(void);
789 extern int ip_vs_control_init(void);
790 extern void ip_vs_control_cleanup(void);
791 extern struct ip_vs_dest
*
792 ip_vs_find_dest(int af
, const union nf_inet_addr
*daddr
, __be16 dport
,
793 const union nf_inet_addr
*vaddr
, __be16 vport
, __u16 protocol
);
794 extern struct ip_vs_dest
*ip_vs_try_bind_dest(struct ip_vs_conn
*cp
);
798 * IPVS sync daemon data and function prototypes
799 * (from ip_vs_sync.c)
801 extern volatile int ip_vs_sync_state
;
802 extern volatile int ip_vs_master_syncid
;
803 extern volatile int ip_vs_backup_syncid
;
804 extern char ip_vs_master_mcast_ifn
[IP_VS_IFNAME_MAXLEN
];
805 extern char ip_vs_backup_mcast_ifn
[IP_VS_IFNAME_MAXLEN
];
806 extern int start_sync_thread(int state
, char *mcast_ifn
, __u8 syncid
);
807 extern int stop_sync_thread(int state
);
808 extern void ip_vs_sync_conn(struct ip_vs_conn
*cp
);
812 * IPVS rate estimator prototypes (from ip_vs_est.c)
814 extern int ip_vs_estimator_init(void);
815 extern void ip_vs_estimator_cleanup(void);
816 extern void ip_vs_new_estimator(struct ip_vs_stats
*stats
);
817 extern void ip_vs_kill_estimator(struct ip_vs_stats
*stats
);
818 extern void ip_vs_zero_estimator(struct ip_vs_stats
*stats
);
821 * Various IPVS packet transmitters (from ip_vs_xmit.c)
823 extern int ip_vs_null_xmit
824 (struct sk_buff
*skb
, struct ip_vs_conn
*cp
, struct ip_vs_protocol
*pp
);
825 extern int ip_vs_bypass_xmit
826 (struct sk_buff
*skb
, struct ip_vs_conn
*cp
, struct ip_vs_protocol
*pp
);
827 extern int ip_vs_nat_xmit
828 (struct sk_buff
*skb
, struct ip_vs_conn
*cp
, struct ip_vs_protocol
*pp
);
829 extern int ip_vs_tunnel_xmit
830 (struct sk_buff
*skb
, struct ip_vs_conn
*cp
, struct ip_vs_protocol
*pp
);
831 extern int ip_vs_dr_xmit
832 (struct sk_buff
*skb
, struct ip_vs_conn
*cp
, struct ip_vs_protocol
*pp
);
833 extern int ip_vs_icmp_xmit
834 (struct sk_buff
*skb
, struct ip_vs_conn
*cp
, struct ip_vs_protocol
*pp
, int offset
);
835 extern void ip_vs_dst_reset(struct ip_vs_dest
*dest
);
837 #ifdef CONFIG_IP_VS_IPV6
838 extern int ip_vs_bypass_xmit_v6
839 (struct sk_buff
*skb
, struct ip_vs_conn
*cp
, struct ip_vs_protocol
*pp
);
840 extern int ip_vs_nat_xmit_v6
841 (struct sk_buff
*skb
, struct ip_vs_conn
*cp
, struct ip_vs_protocol
*pp
);
842 extern int ip_vs_tunnel_xmit_v6
843 (struct sk_buff
*skb
, struct ip_vs_conn
*cp
, struct ip_vs_protocol
*pp
);
844 extern int ip_vs_dr_xmit_v6
845 (struct sk_buff
*skb
, struct ip_vs_conn
*cp
, struct ip_vs_protocol
*pp
);
846 extern int ip_vs_icmp_xmit_v6
847 (struct sk_buff
*skb
, struct ip_vs_conn
*cp
, struct ip_vs_protocol
*pp
,
852 * This is a simple mechanism to ignore packets when
853 * we are loaded. Just set ip_vs_drop_rate to 'n' and
854 * we start to drop 1/rate of the packets
856 extern int ip_vs_drop_rate
;
857 extern int ip_vs_drop_counter
;
859 static __inline__
int ip_vs_todrop(void)
861 if (!ip_vs_drop_rate
) return 0;
862 if (--ip_vs_drop_counter
> 0) return 0;
863 ip_vs_drop_counter
= ip_vs_drop_rate
;
868 * ip_vs_fwd_tag returns the forwarding tag of the connection
870 #define IP_VS_FWD_METHOD(cp) (cp->flags & IP_VS_CONN_F_FWD_MASK)
872 static inline char ip_vs_fwd_tag(struct ip_vs_conn
*cp
)
876 switch (IP_VS_FWD_METHOD(cp
)) {
877 case IP_VS_CONN_F_MASQ
:
879 case IP_VS_CONN_F_LOCALNODE
:
881 case IP_VS_CONN_F_TUNNEL
:
883 case IP_VS_CONN_F_DROUTE
:
885 case IP_VS_CONN_F_BYPASS
:
893 extern void ip_vs_nat_icmp(struct sk_buff
*skb
, struct ip_vs_protocol
*pp
,
894 struct ip_vs_conn
*cp
, int dir
);
896 #ifdef CONFIG_IP_VS_IPV6
897 extern void ip_vs_nat_icmp_v6(struct sk_buff
*skb
, struct ip_vs_protocol
*pp
,
898 struct ip_vs_conn
*cp
, int dir
);
901 extern __sum16
ip_vs_checksum_complete(struct sk_buff
*skb
, int offset
);
903 static inline __wsum
ip_vs_check_diff4(__be32 old
, __be32
new, __wsum oldsum
)
905 __be32 diff
[2] = { ~old
, new };
907 return csum_partial(diff
, sizeof(diff
), oldsum
);
910 #ifdef CONFIG_IP_VS_IPV6
911 static inline __wsum
ip_vs_check_diff16(const __be32
*old
, const __be32
*new,
914 __be32 diff
[8] = { ~old
[3], ~old
[2], ~old
[1], ~old
[0],
915 new[3], new[2], new[1], new[0] };
917 return csum_partial(diff
, sizeof(diff
), oldsum
);
921 static inline __wsum
ip_vs_check_diff2(__be16 old
, __be16
new, __wsum oldsum
)
923 __be16 diff
[2] = { ~old
, new };
925 return csum_partial(diff
, sizeof(diff
), oldsum
);
928 #endif /* __KERNEL__ */
930 #endif /* _NET_IP_VS_H */