blob: f16c027df15bb38241d6750428fdad1733de88ac [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * IPVS: Source Hashing scheduling module
3 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07004 * Authors: Wensong Zhang <wensong@gnuchina.org>
5 *
6 * This program is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU General Public License
8 * as published by the Free Software Foundation; either version
9 * 2 of the License, or (at your option) any later version.
10 *
11 * Changes:
12 *
13 */
14
15/*
16 * The sh algorithm is to select server by the hash key of source IP
17 * address. The pseudo code is as follows:
18 *
19 * n <- servernode[src_ip];
20 * if (n is dead) OR
21 * (n is overloaded) or (n.weight <= 0) then
22 * return NULL;
23 *
24 * return n;
25 *
26 * Notes that servernode is a 256-bucket hash table that maps the hash
27 * index derived from packet source IP address to the current server
28 * array. If the sh scheduler is used in cache cluster, it is good to
29 * combine it with cache_bypass feature. When the statically assigned
30 * server is dead or overloaded, the load balancer can bypass the cache
31 * server and send requests to the original server directly.
32 *
Michael Maxim76ad94f2011-12-08 10:55:09 -050033 * The weight destination attribute can be used to control the
34 * distribution of connections to the destinations in servernode. The
35 * greater the weight, the more connections the destination
36 * will receive.
37 *
Linus Torvalds1da177e2005-04-16 15:20:36 -070038 */
39
Hannes Eder9aada7a2009-07-30 14:29:44 -070040#define KMSG_COMPONENT "IPVS"
41#define pr_fmt(fmt) KMSG_COMPONENT ": " fmt
42
Arnaldo Carvalho de Melo14c85022005-12-27 02:43:12 -020043#include <linux/ip.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090044#include <linux/slab.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070045#include <linux/module.h>
46#include <linux/kernel.h>
Arnaldo Carvalho de Melo14c85022005-12-27 02:43:12 -020047#include <linux/skbuff.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070048
49#include <net/ip_vs.h>
50
Alexander Frolkineba3b5a2013-06-19 10:54:25 +010051#include <net/tcp.h>
52#include <linux/udp.h>
53#include <linux/sctp.h>
54
Linus Torvalds1da177e2005-04-16 15:20:36 -070055
56/*
57 * IPVS SH bucket
58 */
59struct ip_vs_sh_bucket {
Julian Anastasov1acb7f62013-03-22 11:46:46 +020060 struct ip_vs_dest __rcu *dest; /* real server (cache) */
Linus Torvalds1da177e2005-04-16 15:20:36 -070061};
62
63/*
64 * for IPVS SH entry hash table
65 */
66#ifndef CONFIG_IP_VS_SH_TAB_BITS
67#define CONFIG_IP_VS_SH_TAB_BITS 8
68#endif
69#define IP_VS_SH_TAB_BITS CONFIG_IP_VS_SH_TAB_BITS
70#define IP_VS_SH_TAB_SIZE (1 << IP_VS_SH_TAB_BITS)
71#define IP_VS_SH_TAB_MASK (IP_VS_SH_TAB_SIZE - 1)
72
Julian Anastasov1acb7f62013-03-22 11:46:46 +020073struct ip_vs_sh_state {
Julian Anastasov1acb7f62013-03-22 11:46:46 +020074 struct rcu_head rcu_head;
Jan Beulicha70b9642013-05-29 13:33:51 +010075 struct ip_vs_sh_bucket buckets[IP_VS_SH_TAB_SIZE];
Julian Anastasov1acb7f62013-03-22 11:46:46 +020076};
Linus Torvalds1da177e2005-04-16 15:20:36 -070077
Alexander Frolkineba3b5a2013-06-19 10:54:25 +010078/* Helper function to determine if server is unavailable */
79static inline bool is_unavailable(struct ip_vs_dest *dest)
80{
81 return atomic_read(&dest->weight) <= 0 ||
82 dest->flags & IP_VS_DEST_F_OVERLOAD;
83}
84
Linus Torvalds1da177e2005-04-16 15:20:36 -070085/*
86 * Returns hash value for IPVS SH entry
87 */
Alexander Frolkineba3b5a2013-06-19 10:54:25 +010088static inline unsigned int
89ip_vs_sh_hashkey(int af, const union nf_inet_addr *addr,
90 __be16 port, unsigned int offset)
Linus Torvalds1da177e2005-04-16 15:20:36 -070091{
Julius Volz20971a02008-11-01 13:13:19 +000092 __be32 addr_fold = addr->ip;
93
94#ifdef CONFIG_IP_VS_IPV6
95 if (af == AF_INET6)
96 addr_fold = addr->ip6[0]^addr->ip6[1]^
97 addr->ip6[2]^addr->ip6[3];
98#endif
Alexander Frolkineba3b5a2013-06-19 10:54:25 +010099 return (offset + (ntohs(port) + ntohl(addr_fold))*2654435761UL) &
100 IP_VS_SH_TAB_MASK;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700101}
102
103
104/*
105 * Get ip_vs_dest associated with supplied parameters.
106 */
107static inline struct ip_vs_dest *
Alexander Frolkineba3b5a2013-06-19 10:54:25 +0100108ip_vs_sh_get(struct ip_vs_service *svc, struct ip_vs_sh_state *s,
109 const union nf_inet_addr *addr, __be16 port)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700110{
Alexander Frolkineba3b5a2013-06-19 10:54:25 +0100111 unsigned int hash = ip_vs_sh_hashkey(svc->af, addr, port, 0);
112 struct ip_vs_dest *dest = rcu_dereference(s->buckets[hash].dest);
113
114 return (!dest || is_unavailable(dest)) ? NULL : dest;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700115}
116
117
Alexander Frolkineba3b5a2013-06-19 10:54:25 +0100118/* As ip_vs_sh_get, but with fallback if selected server is unavailable */
119static inline struct ip_vs_dest *
120ip_vs_sh_get_fallback(struct ip_vs_service *svc, struct ip_vs_sh_state *s,
121 const union nf_inet_addr *addr, __be16 port)
122{
123 unsigned int offset;
124 unsigned int hash;
125 struct ip_vs_dest *dest;
126
127 for (offset = 0; offset < IP_VS_SH_TAB_SIZE; offset++) {
128 hash = ip_vs_sh_hashkey(svc->af, addr, port, offset);
129 dest = rcu_dereference(s->buckets[hash].dest);
130 if (!dest)
131 break;
132 if (is_unavailable(dest))
133 IP_VS_DBG_BUF(6, "SH: selected unavailable server "
134 "%s:%d (offset %d)",
135 IP_VS_DBG_ADDR(svc->af, &dest->addr),
136 ntohs(dest->port), offset);
137 else
138 return dest;
139 }
140
141 return NULL;
142}
143
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144/*
145 * Assign all the hash buckets of the specified table with the service.
146 */
147static int
Julian Anastasov1acb7f62013-03-22 11:46:46 +0200148ip_vs_sh_reassign(struct ip_vs_sh_state *s, struct ip_vs_service *svc)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700149{
150 int i;
151 struct ip_vs_sh_bucket *b;
152 struct list_head *p;
153 struct ip_vs_dest *dest;
Michael Maxim76ad94f2011-12-08 10:55:09 -0500154 int d_count;
Julian Anastasov1acb7f62013-03-22 11:46:46 +0200155 bool empty;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700156
Julian Anastasov1acb7f62013-03-22 11:46:46 +0200157 b = &s->buckets[0];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700158 p = &svc->destinations;
Julian Anastasov1acb7f62013-03-22 11:46:46 +0200159 empty = list_empty(p);
Michael Maxim76ad94f2011-12-08 10:55:09 -0500160 d_count = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700161 for (i=0; i<IP_VS_SH_TAB_SIZE; i++) {
Julian Anastasov1acb7f62013-03-22 11:46:46 +0200162 dest = rcu_dereference_protected(b->dest, 1);
163 if (dest)
164 ip_vs_dest_put(dest);
165 if (empty)
166 RCU_INIT_POINTER(b->dest, NULL);
167 else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700168 if (p == &svc->destinations)
169 p = p->next;
170
171 dest = list_entry(p, struct ip_vs_dest, n_list);
Julian Anastasov1acb7f62013-03-22 11:46:46 +0200172 ip_vs_dest_hold(dest);
173 RCU_INIT_POINTER(b->dest, dest);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700174
Michael Maxim76ad94f2011-12-08 10:55:09 -0500175 IP_VS_DBG_BUF(6, "assigned i: %d dest: %s weight: %d\n",
176 i, IP_VS_DBG_ADDR(svc->af, &dest->addr),
177 atomic_read(&dest->weight));
178
179 /* Don't move to next dest until filling weight */
180 if (++d_count >= atomic_read(&dest->weight)) {
181 p = p->next;
182 d_count = 0;
183 }
184
Linus Torvalds1da177e2005-04-16 15:20:36 -0700185 }
186 b++;
187 }
188 return 0;
189}
190
191
192/*
193 * Flush all the hash buckets of the specified table.
194 */
Julian Anastasov1acb7f62013-03-22 11:46:46 +0200195static void ip_vs_sh_flush(struct ip_vs_sh_state *s)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700196{
197 int i;
198 struct ip_vs_sh_bucket *b;
Julian Anastasov1acb7f62013-03-22 11:46:46 +0200199 struct ip_vs_dest *dest;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700200
Julian Anastasov1acb7f62013-03-22 11:46:46 +0200201 b = &s->buckets[0];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700202 for (i=0; i<IP_VS_SH_TAB_SIZE; i++) {
Julian Anastasov1acb7f62013-03-22 11:46:46 +0200203 dest = rcu_dereference_protected(b->dest, 1);
204 if (dest) {
205 ip_vs_dest_put(dest);
206 RCU_INIT_POINTER(b->dest, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700207 }
208 b++;
209 }
210}
211
212
213static int ip_vs_sh_init_svc(struct ip_vs_service *svc)
214{
Julian Anastasov1acb7f62013-03-22 11:46:46 +0200215 struct ip_vs_sh_state *s;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700216
217 /* allocate the SH table for this service */
Julian Anastasov1acb7f62013-03-22 11:46:46 +0200218 s = kzalloc(sizeof(struct ip_vs_sh_state), GFP_KERNEL);
219 if (s == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700220 return -ENOMEM;
Joe Perches0a9ee812011-08-29 14:17:25 -0700221
Julian Anastasov1acb7f62013-03-22 11:46:46 +0200222 svc->sched_data = s;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700223 IP_VS_DBG(6, "SH hash table (memory=%Zdbytes) allocated for "
224 "current service\n",
225 sizeof(struct ip_vs_sh_bucket)*IP_VS_SH_TAB_SIZE);
226
Julian Anastasov1acb7f62013-03-22 11:46:46 +0200227 /* assign the hash buckets with current dests */
228 ip_vs_sh_reassign(s, svc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700229
230 return 0;
231}
232
233
Julian Anastasoved3ffc42013-03-22 11:46:50 +0200234static void ip_vs_sh_done_svc(struct ip_vs_service *svc)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700235{
Julian Anastasov1acb7f62013-03-22 11:46:46 +0200236 struct ip_vs_sh_state *s = svc->sched_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700237
238 /* got to clean up hash buckets here */
Julian Anastasov1acb7f62013-03-22 11:46:46 +0200239 ip_vs_sh_flush(s);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700240
241 /* release the table itself */
Julian Anastasov1acb7f62013-03-22 11:46:46 +0200242 kfree_rcu(s, rcu_head);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700243 IP_VS_DBG(6, "SH hash table (memory=%Zdbytes) released\n",
244 sizeof(struct ip_vs_sh_bucket)*IP_VS_SH_TAB_SIZE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700245}
246
247
Julian Anastasov1acb7f62013-03-22 11:46:46 +0200248static int ip_vs_sh_dest_changed(struct ip_vs_service *svc,
249 struct ip_vs_dest *dest)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700250{
Julian Anastasov1acb7f62013-03-22 11:46:46 +0200251 struct ip_vs_sh_state *s = svc->sched_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700252
253 /* assign the hash buckets with the updated service */
Julian Anastasov1acb7f62013-03-22 11:46:46 +0200254 ip_vs_sh_reassign(s, svc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700255
256 return 0;
257}
258
259
Alexander Frolkineba3b5a2013-06-19 10:54:25 +0100260/* Helper function to get port number */
261static inline __be16
262ip_vs_sh_get_port(const struct sk_buff *skb, struct ip_vs_iphdr *iph)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700263{
Alexander Frolkineba3b5a2013-06-19 10:54:25 +0100264 __be16 port;
265 struct tcphdr _tcph, *th;
266 struct udphdr _udph, *uh;
267 sctp_sctphdr_t _sctph, *sh;
268
269 switch (iph->protocol) {
270 case IPPROTO_TCP:
271 th = skb_header_pointer(skb, iph->len, sizeof(_tcph), &_tcph);
272 port = th->source;
273 break;
274 case IPPROTO_UDP:
275 uh = skb_header_pointer(skb, iph->len, sizeof(_udph), &_udph);
276 port = uh->source;
277 break;
278 case IPPROTO_SCTP:
279 sh = skb_header_pointer(skb, iph->len, sizeof(_sctph), &_sctph);
280 port = sh->source;
281 break;
282 default:
283 port = 0;
284 }
285
286 return port;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700287}
288
289
290/*
291 * Source Hashing scheduling
292 */
293static struct ip_vs_dest *
Julian Anastasovbba54de2013-06-16 09:09:36 +0300294ip_vs_sh_schedule(struct ip_vs_service *svc, const struct sk_buff *skb,
295 struct ip_vs_iphdr *iph)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700296{
297 struct ip_vs_dest *dest;
Julian Anastasov1acb7f62013-03-22 11:46:46 +0200298 struct ip_vs_sh_state *s;
Alexander Frolkineba3b5a2013-06-19 10:54:25 +0100299 __be16 port = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700300
301 IP_VS_DBG(6, "ip_vs_sh_schedule(): Scheduling...\n");
302
Alexander Frolkineba3b5a2013-06-19 10:54:25 +0100303 if (svc->flags & IP_VS_SVC_F_SCHED_SH_PORT)
304 port = ip_vs_sh_get_port(skb, iph);
305
Julian Anastasov1acb7f62013-03-22 11:46:46 +0200306 s = (struct ip_vs_sh_state *) svc->sched_data;
Alexander Frolkineba3b5a2013-06-19 10:54:25 +0100307
308 if (svc->flags & IP_VS_SVC_F_SCHED_SH_FALLBACK)
309 dest = ip_vs_sh_get_fallback(svc, s, &iph->saddr, port);
310 else
311 dest = ip_vs_sh_get(svc, s, &iph->saddr, port);
312
313 if (!dest) {
Patrick Schaaf41ac51e2011-02-11 14:01:12 +0100314 ip_vs_scheduler_err(svc, "no destination available");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700315 return NULL;
316 }
317
Julius Volz20971a02008-11-01 13:13:19 +0000318 IP_VS_DBG_BUF(6, "SH: source IP address %s --> server %s:%d\n",
Julian Anastasovbba54de2013-06-16 09:09:36 +0300319 IP_VS_DBG_ADDR(svc->af, &iph->saddr),
Julius Volz20971a02008-11-01 13:13:19 +0000320 IP_VS_DBG_ADDR(svc->af, &dest->addr),
321 ntohs(dest->port));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700322
323 return dest;
324}
325
326
327/*
328 * IPVS SH Scheduler structure
329 */
330static struct ip_vs_scheduler ip_vs_sh_scheduler =
331{
332 .name = "sh",
333 .refcnt = ATOMIC_INIT(0),
334 .module = THIS_MODULE,
Sven Wegenerd149ccc2008-08-10 09:18:02 +0000335 .n_list = LIST_HEAD_INIT(ip_vs_sh_scheduler.n_list),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700336 .init_service = ip_vs_sh_init_svc,
337 .done_service = ip_vs_sh_done_svc,
Julian Anastasov1acb7f62013-03-22 11:46:46 +0200338 .add_dest = ip_vs_sh_dest_changed,
339 .del_dest = ip_vs_sh_dest_changed,
340 .upd_dest = ip_vs_sh_dest_changed,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700341 .schedule = ip_vs_sh_schedule,
342};
343
344
345static int __init ip_vs_sh_init(void)
346{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700347 return register_ip_vs_scheduler(&ip_vs_sh_scheduler);
348}
349
350
351static void __exit ip_vs_sh_cleanup(void)
352{
353 unregister_ip_vs_scheduler(&ip_vs_sh_scheduler);
Julian Anastasovceec4c32013-03-22 11:46:53 +0200354 synchronize_rcu();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700355}
356
357
358module_init(ip_vs_sh_init);
359module_exit(ip_vs_sh_cleanup);
360MODULE_LICENSE("GPL");