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