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