blob: 6be5c538b71e6fda1085bf01849af5d9df169895 [file] [log] [blame]
Julius Volzcb7f6a72008-09-19 12:32:57 +02001/*
2 * IPVS: Destination Hashing scheduling module
3 *
4 * Authors: Wensong Zhang <wensong@gnuchina.org>
5 *
6 * Inspired by the consistent hashing scheduler patch from
7 * Thomas Proell <proellt@gmx.de>
8 *
9 * This program is free software; you can redistribute it and/or
10 * modify it under the terms of the GNU General Public License
11 * as published by the Free Software Foundation; either version
12 * 2 of the License, or (at your option) any later version.
13 *
14 * Changes:
15 *
16 */
17
18/*
19 * The dh algorithm is to select server by the hash key of destination IP
20 * address. The pseudo code is as follows:
21 *
22 * n <- servernode[dest_ip];
23 * if (n is dead) OR
24 * (n is overloaded) OR (n.weight <= 0) then
25 * return NULL;
26 *
27 * return n;
28 *
29 * Notes that servernode is a 256-bucket hash table that maps the hash
30 * index derived from packet destination IP address to the current server
31 * array. If the dh scheduler is used in cache cluster, it is good to
32 * combine it with cache_bypass feature. When the statically assigned
33 * server is dead or overloaded, the load balancer can bypass the cache
34 * server and send requests to the original server directly.
35 *
36 */
37
Hannes Eder9aada7a2009-07-30 14:29:44 -070038#define KMSG_COMPONENT "IPVS"
39#define pr_fmt(fmt) KMSG_COMPONENT ": " fmt
40
Julius Volzcb7f6a72008-09-19 12:32:57 +020041#include <linux/ip.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090042#include <linux/slab.h>
Julius Volzcb7f6a72008-09-19 12:32:57 +020043#include <linux/module.h>
44#include <linux/kernel.h>
45#include <linux/skbuff.h>
46
47#include <net/ip_vs.h>
48
49
50/*
51 * IPVS DH bucket
52 */
53struct ip_vs_dh_bucket {
Julian Anastasov8f3d0022013-03-22 11:46:39 +020054 struct ip_vs_dest __rcu *dest; /* real server (cache) */
Julius Volzcb7f6a72008-09-19 12:32:57 +020055};
56
57/*
58 * for IPVS DH entry hash table
59 */
60#ifndef CONFIG_IP_VS_DH_TAB_BITS
61#define CONFIG_IP_VS_DH_TAB_BITS 8
62#endif
63#define IP_VS_DH_TAB_BITS CONFIG_IP_VS_DH_TAB_BITS
64#define IP_VS_DH_TAB_SIZE (1 << IP_VS_DH_TAB_BITS)
65#define IP_VS_DH_TAB_MASK (IP_VS_DH_TAB_SIZE - 1)
66
Julian Anastasov8f3d0022013-03-22 11:46:39 +020067struct ip_vs_dh_state {
68 struct ip_vs_dh_bucket buckets[IP_VS_DH_TAB_SIZE];
69 struct rcu_head rcu_head;
70};
Julius Volzcb7f6a72008-09-19 12:32:57 +020071
72/*
73 * Returns hash value for IPVS DH entry
74 */
Eric Dumazet95c96172012-04-15 05:58:06 +000075static inline unsigned int ip_vs_dh_hashkey(int af, const union nf_inet_addr *addr)
Julius Volzcb7f6a72008-09-19 12:32:57 +020076{
Julius Volz20971a02008-11-01 13:13:19 +000077 __be32 addr_fold = addr->ip;
78
79#ifdef CONFIG_IP_VS_IPV6
80 if (af == AF_INET6)
81 addr_fold = addr->ip6[0]^addr->ip6[1]^
82 addr->ip6[2]^addr->ip6[3];
83#endif
84 return (ntohl(addr_fold)*2654435761UL) & IP_VS_DH_TAB_MASK;
Julius Volzcb7f6a72008-09-19 12:32:57 +020085}
86
87
88/*
89 * Get ip_vs_dest associated with supplied parameters.
90 */
91static inline struct ip_vs_dest *
Julian Anastasov8f3d0022013-03-22 11:46:39 +020092ip_vs_dh_get(int af, struct ip_vs_dh_state *s, const union nf_inet_addr *addr)
Julius Volzcb7f6a72008-09-19 12:32:57 +020093{
Julian Anastasov8f3d0022013-03-22 11:46:39 +020094 return rcu_dereference(s->buckets[ip_vs_dh_hashkey(af, addr)].dest);
Julius Volzcb7f6a72008-09-19 12:32:57 +020095}
96
97
98/*
99 * Assign all the hash buckets of the specified table with the service.
100 */
101static int
Julian Anastasov8f3d0022013-03-22 11:46:39 +0200102ip_vs_dh_reassign(struct ip_vs_dh_state *s, struct ip_vs_service *svc)
Julius Volzcb7f6a72008-09-19 12:32:57 +0200103{
104 int i;
105 struct ip_vs_dh_bucket *b;
106 struct list_head *p;
107 struct ip_vs_dest *dest;
Julian Anastasov8f3d0022013-03-22 11:46:39 +0200108 bool empty;
Julius Volzcb7f6a72008-09-19 12:32:57 +0200109
Julian Anastasov8f3d0022013-03-22 11:46:39 +0200110 b = &s->buckets[0];
Julius Volzcb7f6a72008-09-19 12:32:57 +0200111 p = &svc->destinations;
Julian Anastasov8f3d0022013-03-22 11:46:39 +0200112 empty = list_empty(p);
Julius Volzcb7f6a72008-09-19 12:32:57 +0200113 for (i=0; i<IP_VS_DH_TAB_SIZE; i++) {
Julian Anastasov8f3d0022013-03-22 11:46:39 +0200114 dest = rcu_dereference_protected(b->dest, 1);
115 if (dest)
116 ip_vs_dest_put(dest);
117 if (empty)
118 RCU_INIT_POINTER(b->dest, NULL);
119 else {
Julius Volzcb7f6a72008-09-19 12:32:57 +0200120 if (p == &svc->destinations)
121 p = p->next;
122
123 dest = list_entry(p, struct ip_vs_dest, n_list);
Julian Anastasov8f3d0022013-03-22 11:46:39 +0200124 ip_vs_dest_hold(dest);
125 RCU_INIT_POINTER(b->dest, dest);
Julius Volzcb7f6a72008-09-19 12:32:57 +0200126
127 p = p->next;
128 }
129 b++;
130 }
131 return 0;
132}
133
134
135/*
136 * Flush all the hash buckets of the specified table.
137 */
Julian Anastasov8f3d0022013-03-22 11:46:39 +0200138static void ip_vs_dh_flush(struct ip_vs_dh_state *s)
Julius Volzcb7f6a72008-09-19 12:32:57 +0200139{
140 int i;
141 struct ip_vs_dh_bucket *b;
Julian Anastasov8f3d0022013-03-22 11:46:39 +0200142 struct ip_vs_dest *dest;
Julius Volzcb7f6a72008-09-19 12:32:57 +0200143
Julian Anastasov8f3d0022013-03-22 11:46:39 +0200144 b = &s->buckets[0];
Julius Volzcb7f6a72008-09-19 12:32:57 +0200145 for (i=0; i<IP_VS_DH_TAB_SIZE; i++) {
Julian Anastasov8f3d0022013-03-22 11:46:39 +0200146 dest = rcu_dereference_protected(b->dest, 1);
147 if (dest) {
148 ip_vs_dest_put(dest);
149 RCU_INIT_POINTER(b->dest, NULL);
Julius Volzcb7f6a72008-09-19 12:32:57 +0200150 }
151 b++;
152 }
153}
154
155
156static int ip_vs_dh_init_svc(struct ip_vs_service *svc)
157{
Julian Anastasov8f3d0022013-03-22 11:46:39 +0200158 struct ip_vs_dh_state *s;
Julius Volzcb7f6a72008-09-19 12:32:57 +0200159
160 /* allocate the DH table for this service */
Julian Anastasov8f3d0022013-03-22 11:46:39 +0200161 s = kzalloc(sizeof(struct ip_vs_dh_state), GFP_KERNEL);
162 if (s == NULL)
Julius Volzcb7f6a72008-09-19 12:32:57 +0200163 return -ENOMEM;
Joe Perches0a9ee812011-08-29 14:17:25 -0700164
Julian Anastasov8f3d0022013-03-22 11:46:39 +0200165 svc->sched_data = s;
Julius Volzcb7f6a72008-09-19 12:32:57 +0200166 IP_VS_DBG(6, "DH hash table (memory=%Zdbytes) allocated for "
167 "current service\n",
168 sizeof(struct ip_vs_dh_bucket)*IP_VS_DH_TAB_SIZE);
169
Julian Anastasov8f3d0022013-03-22 11:46:39 +0200170 /* assign the hash buckets with current dests */
171 ip_vs_dh_reassign(s, svc);
Julius Volzcb7f6a72008-09-19 12:32:57 +0200172
173 return 0;
174}
175
176
Julian Anastasoved3ffc42013-03-22 11:46:50 +0200177static void ip_vs_dh_done_svc(struct ip_vs_service *svc)
Julius Volzcb7f6a72008-09-19 12:32:57 +0200178{
Julian Anastasov8f3d0022013-03-22 11:46:39 +0200179 struct ip_vs_dh_state *s = svc->sched_data;
Julius Volzcb7f6a72008-09-19 12:32:57 +0200180
181 /* got to clean up hash buckets here */
Julian Anastasov8f3d0022013-03-22 11:46:39 +0200182 ip_vs_dh_flush(s);
Julius Volzcb7f6a72008-09-19 12:32:57 +0200183
184 /* release the table itself */
Julian Anastasov8f3d0022013-03-22 11:46:39 +0200185 kfree_rcu(s, rcu_head);
Julius Volzcb7f6a72008-09-19 12:32:57 +0200186 IP_VS_DBG(6, "DH hash table (memory=%Zdbytes) released\n",
187 sizeof(struct ip_vs_dh_bucket)*IP_VS_DH_TAB_SIZE);
Julius Volzcb7f6a72008-09-19 12:32:57 +0200188}
189
190
Julian Anastasov8f3d0022013-03-22 11:46:39 +0200191static int ip_vs_dh_dest_changed(struct ip_vs_service *svc,
192 struct ip_vs_dest *dest)
Julius Volzcb7f6a72008-09-19 12:32:57 +0200193{
Julian Anastasov8f3d0022013-03-22 11:46:39 +0200194 struct ip_vs_dh_state *s = svc->sched_data;
Julius Volzcb7f6a72008-09-19 12:32:57 +0200195
196 /* assign the hash buckets with the updated service */
Julian Anastasov8f3d0022013-03-22 11:46:39 +0200197 ip_vs_dh_reassign(s, svc);
Julius Volzcb7f6a72008-09-19 12:32:57 +0200198
199 return 0;
200}
201
202
203/*
204 * If the dest flags is set with IP_VS_DEST_F_OVERLOAD,
205 * consider that the server is overloaded here.
206 */
207static inline int is_overloaded(struct ip_vs_dest *dest)
208{
209 return dest->flags & IP_VS_DEST_F_OVERLOAD;
210}
211
212
213/*
214 * Destination hashing scheduling
215 */
216static struct ip_vs_dest *
Julian Anastasovbba54de2013-06-16 09:09:36 +0300217ip_vs_dh_schedule(struct ip_vs_service *svc, const struct sk_buff *skb,
218 struct ip_vs_iphdr *iph)
Julius Volzcb7f6a72008-09-19 12:32:57 +0200219{
220 struct ip_vs_dest *dest;
Julian Anastasov8f3d0022013-03-22 11:46:39 +0200221 struct ip_vs_dh_state *s;
Julius Volzcb7f6a72008-09-19 12:32:57 +0200222
Hannes Eder1e3e2382009-08-02 11:05:41 +0000223 IP_VS_DBG(6, "%s(): Scheduling...\n", __func__);
Julius Volzcb7f6a72008-09-19 12:32:57 +0200224
Julian Anastasov8f3d0022013-03-22 11:46:39 +0200225 s = (struct ip_vs_dh_state *) svc->sched_data;
Julian Anastasovbba54de2013-06-16 09:09:36 +0300226 dest = ip_vs_dh_get(svc->af, s, &iph->daddr);
Julius Volzcb7f6a72008-09-19 12:32:57 +0200227 if (!dest
228 || !(dest->flags & IP_VS_DEST_F_AVAILABLE)
229 || atomic_read(&dest->weight) <= 0
230 || is_overloaded(dest)) {
Julian Anastasov8f3d0022013-03-22 11:46:39 +0200231 ip_vs_scheduler_err(svc, "no destination available");
Julius Volzcb7f6a72008-09-19 12:32:57 +0200232 return NULL;
233 }
234
Julius Volz20971a02008-11-01 13:13:19 +0000235 IP_VS_DBG_BUF(6, "DH: destination IP address %s --> server %s:%d\n",
Julian Anastasovbba54de2013-06-16 09:09:36 +0300236 IP_VS_DBG_ADDR(svc->af, &iph->daddr),
Julian Anastasov4d316f32014-09-17 00:09:00 +0300237 IP_VS_DBG_ADDR(dest->af, &dest->addr),
Julius Volz20971a02008-11-01 13:13:19 +0000238 ntohs(dest->port));
Julius Volzcb7f6a72008-09-19 12:32:57 +0200239
240 return dest;
241}
242
243
244/*
245 * IPVS DH Scheduler structure
246 */
247static struct ip_vs_scheduler ip_vs_dh_scheduler =
248{
249 .name = "dh",
250 .refcnt = ATOMIC_INIT(0),
251 .module = THIS_MODULE,
252 .n_list = LIST_HEAD_INIT(ip_vs_dh_scheduler.n_list),
Julius Volzcb7f6a72008-09-19 12:32:57 +0200253 .init_service = ip_vs_dh_init_svc,
254 .done_service = ip_vs_dh_done_svc,
Julian Anastasov8f3d0022013-03-22 11:46:39 +0200255 .add_dest = ip_vs_dh_dest_changed,
256 .del_dest = ip_vs_dh_dest_changed,
Julius Volzcb7f6a72008-09-19 12:32:57 +0200257 .schedule = ip_vs_dh_schedule,
258};
259
260
261static int __init ip_vs_dh_init(void)
262{
263 return register_ip_vs_scheduler(&ip_vs_dh_scheduler);
264}
265
266
267static void __exit ip_vs_dh_cleanup(void)
268{
269 unregister_ip_vs_scheduler(&ip_vs_dh_scheduler);
Julian Anastasovceec4c32013-03-22 11:46:53 +0200270 synchronize_rcu();
Julius Volzcb7f6a72008-09-19 12:32:57 +0200271}
272
273
274module_init(ip_vs_dh_init);
275module_exit(ip_vs_dh_cleanup);
276MODULE_LICENSE("GPL");