Fix common misspellings
[linux-2.6-block.git] / net / netfilter / ipvs / ip_vs_lblc.c
CommitLineData
1da177e4
LT
1/*
2 * IPVS: Locality-Based Least-Connection scheduling module
3 *
1da177e4
LT
4 * 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 * Martin Hamilton : fixed the terrible locking bugs
13 * *lock(tbl->lock) ==> *lock(&tbl->lock)
421f91d2 14 * Wensong Zhang : fixed the uninitialized tbl->lock bug
1da177e4
LT
15 * Wensong Zhang : added doing full expiration check to
16 * collect stale entries of 24+ hours when
17 * no partial expire check in a half hour
18 * Julian Anastasov : replaced del_timer call with del_timer_sync
19 * to avoid the possible race between timer
20 * handler and del_timer thread in SMP
21 *
22 */
23
24/*
25 * The lblc algorithm is as follows (pseudo code):
26 *
27 * if cachenode[dest_ip] is null then
28 * n, cachenode[dest_ip] <- {weighted least-conn node};
29 * else
30 * n <- cachenode[dest_ip];
31 * if (n is dead) OR
32 * (n.conns>n.weight AND
33 * there is a node m with m.conns<m.weight/2) then
34 * n, cachenode[dest_ip] <- {weighted least-conn node};
35 *
36 * return n;
37 *
38 * Thanks must go to Wenzhuo Zhang for talking WCCP to me and pushing
39 * me to write this module.
40 */
41
9aada7ac
HE
42#define KMSG_COMPONENT "IPVS"
43#define pr_fmt(fmt) KMSG_COMPONENT ": " fmt
44
14c85021 45#include <linux/ip.h>
5a0e3ad6 46#include <linux/slab.h>
1da177e4
LT
47#include <linux/module.h>
48#include <linux/kernel.h>
14c85021 49#include <linux/skbuff.h>
d7fe0f24 50#include <linux/jiffies.h>
1da177e4
LT
51
52/* for sysctl */
53#include <linux/fs.h>
54#include <linux/sysctl.h>
55
56#include <net/ip_vs.h>
57
58
59/*
60 * It is for garbage collection of stale IPVS lblc entries,
61 * when the table is full.
62 */
63#define CHECK_EXPIRE_INTERVAL (60*HZ)
64#define ENTRY_TIMEOUT (6*60*HZ)
65
b27d777e
SH
66#define DEFAULT_EXPIRATION (24*60*60*HZ)
67
1da177e4
LT
68/*
69 * It is for full expiration check.
70 * When there is no partial expiration check (garbage collection)
71 * in a half hour, do a full expiration check to collect stale
72 * entries that haven't been touched for a day.
73 */
74#define COUNT_FOR_FULL_EXPIRATION 30
1da177e4
LT
75
76
77/*
78 * for IPVS lblc entry hash table
79 */
80#ifndef CONFIG_IP_VS_LBLC_TAB_BITS
81#define CONFIG_IP_VS_LBLC_TAB_BITS 10
82#endif
83#define IP_VS_LBLC_TAB_BITS CONFIG_IP_VS_LBLC_TAB_BITS
84#define IP_VS_LBLC_TAB_SIZE (1 << IP_VS_LBLC_TAB_BITS)
85#define IP_VS_LBLC_TAB_MASK (IP_VS_LBLC_TAB_SIZE - 1)
86
87
88/*
89 * IPVS lblc entry represents an association between destination
90 * IP address and its destination server
91 */
92struct ip_vs_lblc_entry {
93 struct list_head list;
44548375
JV
94 int af; /* address family */
95 union nf_inet_addr addr; /* destination IP address */
1da177e4
LT
96 struct ip_vs_dest *dest; /* real server (cache) */
97 unsigned long lastuse; /* last used time */
98};
99
100
101/*
102 * IPVS lblc hash table
103 */
104struct ip_vs_lblc_table {
1da177e4
LT
105 struct list_head bucket[IP_VS_LBLC_TAB_SIZE]; /* hash bucket */
106 atomic_t entries; /* number of entries */
107 int max_size; /* maximum size of entries */
108 struct timer_list periodic_timer; /* collect stale entries */
109 int rover; /* rover for expire check */
110 int counter; /* counter for no expire */
111};
112
113
114/*
115 * IPVS LBLC sysctl table
116 */
fb1de432 117#ifdef CONFIG_SYSCTL
1da177e4
LT
118static ctl_table vs_vars_table[] = {
119 {
1da177e4 120 .procname = "lblc_expiration",
b6e885dd 121 .data = NULL,
1da177e4 122 .maxlen = sizeof(int),
e905a9ed 123 .mode = 0644,
6d9f239a 124 .proc_handler = proc_dointvec_jiffies,
1da177e4 125 },
f8572d8f 126 { }
1da177e4 127};
fb1de432 128#endif
1da177e4 129
1da177e4
LT
130static inline void ip_vs_lblc_free(struct ip_vs_lblc_entry *en)
131{
132 list_del(&en->list);
133 /*
25985edc 134 * We don't kfree dest because it is referred either by its service
1da177e4
LT
135 * or the trash dest list.
136 */
137 atomic_dec(&en->dest->refcnt);
138 kfree(en);
139}
140
141
142/*
143 * Returns hash value for IPVS LBLC entry
144 */
44548375
JV
145static inline unsigned
146ip_vs_lblc_hashkey(int af, const union nf_inet_addr *addr)
1da177e4 147{
44548375
JV
148 __be32 addr_fold = addr->ip;
149
150#ifdef CONFIG_IP_VS_IPV6
151 if (af == AF_INET6)
152 addr_fold = addr->ip6[0]^addr->ip6[1]^
153 addr->ip6[2]^addr->ip6[3];
154#endif
155 return (ntohl(addr_fold)*2654435761UL) & IP_VS_LBLC_TAB_MASK;
1da177e4
LT
156}
157
158
159/*
160 * Hash an entry in the ip_vs_lblc_table.
161 * returns bool success.
162 */
39ac50d0 163static void
1da177e4
LT
164ip_vs_lblc_hash(struct ip_vs_lblc_table *tbl, struct ip_vs_lblc_entry *en)
165{
44548375 166 unsigned hash = ip_vs_lblc_hashkey(en->af, &en->addr);
1da177e4 167
1da177e4
LT
168 list_add(&en->list, &tbl->bucket[hash]);
169 atomic_inc(&tbl->entries);
1da177e4
LT
170}
171
172
1da177e4 173/*
39ac50d0
SW
174 * Get ip_vs_lblc_entry associated with supplied parameters. Called under read
175 * lock
1da177e4
LT
176 */
177static inline struct ip_vs_lblc_entry *
44548375
JV
178ip_vs_lblc_get(int af, struct ip_vs_lblc_table *tbl,
179 const union nf_inet_addr *addr)
1da177e4 180{
44548375 181 unsigned hash = ip_vs_lblc_hashkey(af, addr);
1da177e4
LT
182 struct ip_vs_lblc_entry *en;
183
39ac50d0 184 list_for_each_entry(en, &tbl->bucket[hash], list)
44548375 185 if (ip_vs_addr_equal(af, &en->addr, addr))
39ac50d0 186 return en;
1da177e4 187
39ac50d0
SW
188 return NULL;
189}
1da177e4 190
39ac50d0
SW
191
192/*
193 * Create or update an ip_vs_lblc_entry, which is a mapping of a destination IP
194 * address to a server. Called under write lock.
195 */
196static inline struct ip_vs_lblc_entry *
44548375 197ip_vs_lblc_new(struct ip_vs_lblc_table *tbl, const union nf_inet_addr *daddr,
39ac50d0
SW
198 struct ip_vs_dest *dest)
199{
200 struct ip_vs_lblc_entry *en;
201
44548375 202 en = ip_vs_lblc_get(dest->af, tbl, daddr);
39ac50d0
SW
203 if (!en) {
204 en = kmalloc(sizeof(*en), GFP_ATOMIC);
205 if (!en) {
1e3e238e 206 pr_err("%s(): no memory\n", __func__);
39ac50d0 207 return NULL;
1da177e4 208 }
1da177e4 209
44548375
JV
210 en->af = dest->af;
211 ip_vs_addr_copy(dest->af, &en->addr, daddr);
39ac50d0 212 en->lastuse = jiffies;
1da177e4 213
39ac50d0
SW
214 atomic_inc(&dest->refcnt);
215 en->dest = dest;
216
217 ip_vs_lblc_hash(tbl, en);
218 } else if (en->dest != dest) {
219 atomic_dec(&en->dest->refcnt);
220 atomic_inc(&dest->refcnt);
221 en->dest = dest;
222 }
223
224 return en;
1da177e4
LT
225}
226
227
228/*
229 * Flush all the entries of the specified table.
230 */
231static void ip_vs_lblc_flush(struct ip_vs_lblc_table *tbl)
232{
1da177e4 233 struct ip_vs_lblc_entry *en, *nxt;
39ac50d0 234 int i;
1da177e4
LT
235
236 for (i=0; i<IP_VS_LBLC_TAB_SIZE; i++) {
1da177e4
LT
237 list_for_each_entry_safe(en, nxt, &tbl->bucket[i], list) {
238 ip_vs_lblc_free(en);
239 atomic_dec(&tbl->entries);
240 }
1da177e4
LT
241 }
242}
243
b27d777e
SH
244static int sysctl_lblc_expiration(struct ip_vs_service *svc)
245{
246#ifdef CONFIG_SYSCTL
247 struct netns_ipvs *ipvs = net_ipvs(svc->net);
248 return ipvs->sysctl_lblc_expiration;
249#else
250 return DEFAULT_EXPIRATION;
251#endif
252}
1da177e4 253
39ac50d0 254static inline void ip_vs_lblc_full_check(struct ip_vs_service *svc)
1da177e4 255{
39ac50d0
SW
256 struct ip_vs_lblc_table *tbl = svc->sched_data;
257 struct ip_vs_lblc_entry *en, *nxt;
1da177e4
LT
258 unsigned long now = jiffies;
259 int i, j;
1da177e4
LT
260
261 for (i=0, j=tbl->rover; i<IP_VS_LBLC_TAB_SIZE; i++) {
262 j = (j + 1) & IP_VS_LBLC_TAB_MASK;
263
39ac50d0 264 write_lock(&svc->sched_lock);
1da177e4 265 list_for_each_entry_safe(en, nxt, &tbl->bucket[j], list) {
e905a9ed 266 if (time_before(now,
b6e885dd 267 en->lastuse +
b27d777e 268 sysctl_lblc_expiration(svc)))
1da177e4
LT
269 continue;
270
271 ip_vs_lblc_free(en);
272 atomic_dec(&tbl->entries);
273 }
39ac50d0 274 write_unlock(&svc->sched_lock);
1da177e4
LT
275 }
276 tbl->rover = j;
277}
278
279
280/*
281 * Periodical timer handler for IPVS lblc table
282 * It is used to collect stale entries when the number of entries
283 * exceeds the maximum size of the table.
284 *
285 * Fixme: we probably need more complicated algorithm to collect
286 * entries that have not been used for a long time even
287 * if the number of entries doesn't exceed the maximum size
288 * of the table.
289 * The full expiration check is for this purpose now.
290 */
291static void ip_vs_lblc_check_expire(unsigned long data)
292{
39ac50d0
SW
293 struct ip_vs_service *svc = (struct ip_vs_service *) data;
294 struct ip_vs_lblc_table *tbl = svc->sched_data;
1da177e4
LT
295 unsigned long now = jiffies;
296 int goal;
297 int i, j;
298 struct ip_vs_lblc_entry *en, *nxt;
299
1da177e4
LT
300 if ((tbl->counter % COUNT_FOR_FULL_EXPIRATION) == 0) {
301 /* do full expiration check */
39ac50d0 302 ip_vs_lblc_full_check(svc);
1da177e4
LT
303 tbl->counter = 1;
304 goto out;
305 }
306
307 if (atomic_read(&tbl->entries) <= tbl->max_size) {
308 tbl->counter++;
309 goto out;
310 }
311
312 goal = (atomic_read(&tbl->entries) - tbl->max_size)*4/3;
313 if (goal > tbl->max_size/2)
314 goal = tbl->max_size/2;
315
316 for (i=0, j=tbl->rover; i<IP_VS_LBLC_TAB_SIZE; i++) {
317 j = (j + 1) & IP_VS_LBLC_TAB_MASK;
318
39ac50d0 319 write_lock(&svc->sched_lock);
1da177e4
LT
320 list_for_each_entry_safe(en, nxt, &tbl->bucket[j], list) {
321 if (time_before(now, en->lastuse + ENTRY_TIMEOUT))
322 continue;
323
324 ip_vs_lblc_free(en);
325 atomic_dec(&tbl->entries);
326 goal--;
327 }
39ac50d0 328 write_unlock(&svc->sched_lock);
1da177e4
LT
329 if (goal <= 0)
330 break;
331 }
332 tbl->rover = j;
333
334 out:
335 mod_timer(&tbl->periodic_timer, jiffies+CHECK_EXPIRE_INTERVAL);
336}
337
338
339static int ip_vs_lblc_init_svc(struct ip_vs_service *svc)
340{
341 int i;
342 struct ip_vs_lblc_table *tbl;
343
344 /*
345 * Allocate the ip_vs_lblc_table for this service
346 */
39ac50d0 347 tbl = kmalloc(sizeof(*tbl), GFP_ATOMIC);
1da177e4 348 if (tbl == NULL) {
1e3e238e 349 pr_err("%s(): no memory\n", __func__);
1da177e4
LT
350 return -ENOMEM;
351 }
352 svc->sched_data = tbl;
353 IP_VS_DBG(6, "LBLC hash table (memory=%Zdbytes) allocated for "
39ac50d0 354 "current service\n", sizeof(*tbl));
1da177e4
LT
355
356 /*
357 * Initialize the hash buckets
358 */
359 for (i=0; i<IP_VS_LBLC_TAB_SIZE; i++) {
360 INIT_LIST_HEAD(&tbl->bucket[i]);
361 }
1da177e4
LT
362 tbl->max_size = IP_VS_LBLC_TAB_SIZE*16;
363 tbl->rover = 0;
364 tbl->counter = 1;
365
366 /*
367 * Hook periodic timer for garbage collection
368 */
b24b8a24 369 setup_timer(&tbl->periodic_timer, ip_vs_lblc_check_expire,
39ac50d0
SW
370 (unsigned long)svc);
371 mod_timer(&tbl->periodic_timer, jiffies + CHECK_EXPIRE_INTERVAL);
1da177e4
LT
372
373 return 0;
374}
375
376
377static int ip_vs_lblc_done_svc(struct ip_vs_service *svc)
378{
379 struct ip_vs_lblc_table *tbl = svc->sched_data;
380
381 /* remove periodic timer */
382 del_timer_sync(&tbl->periodic_timer);
383
384 /* got to clean up table entries here */
385 ip_vs_lblc_flush(tbl);
386
387 /* release the table itself */
39ac50d0 388 kfree(tbl);
1da177e4 389 IP_VS_DBG(6, "LBLC hash table (memory=%Zdbytes) released\n",
39ac50d0 390 sizeof(*tbl));
1da177e4
LT
391
392 return 0;
393}
394
395
1da177e4 396static inline struct ip_vs_dest *
44548375 397__ip_vs_lblc_schedule(struct ip_vs_service *svc)
1da177e4
LT
398{
399 struct ip_vs_dest *dest, *least;
400 int loh, doh;
401
402 /*
b552f7e3 403 * We use the following formula to estimate the load:
1da177e4
LT
404 * (dest overhead) / dest->weight
405 *
406 * Remember -- no floats in kernel mode!!!
407 * The comparison of h1*w2 > h2*w1 is equivalent to that of
408 * h1/w1 > h2/w2
409 * if every weight is larger than zero.
410 *
411 * The server with weight=0 is quiesced and will not receive any
412 * new connection.
413 */
414 list_for_each_entry(dest, &svc->destinations, n_list) {
415 if (dest->flags & IP_VS_DEST_F_OVERLOAD)
416 continue;
417 if (atomic_read(&dest->weight) > 0) {
418 least = dest;
b552f7e3 419 loh = ip_vs_dest_conn_overhead(least);
1da177e4
LT
420 goto nextstage;
421 }
422 }
423 return NULL;
424
425 /*
426 * Find the destination with the least load.
427 */
428 nextstage:
429 list_for_each_entry_continue(dest, &svc->destinations, n_list) {
430 if (dest->flags & IP_VS_DEST_F_OVERLOAD)
431 continue;
432
b552f7e3 433 doh = ip_vs_dest_conn_overhead(dest);
1da177e4
LT
434 if (loh * atomic_read(&dest->weight) >
435 doh * atomic_read(&least->weight)) {
436 least = dest;
437 loh = doh;
438 }
439 }
440
44548375
JV
441 IP_VS_DBG_BUF(6, "LBLC: server %s:%d "
442 "activeconns %d refcnt %d weight %d overhead %d\n",
443 IP_VS_DBG_ADDR(least->af, &least->addr),
444 ntohs(least->port),
445 atomic_read(&least->activeconns),
446 atomic_read(&least->refcnt),
447 atomic_read(&least->weight), loh);
1da177e4
LT
448
449 return least;
450}
451
452
453/*
454 * If this destination server is overloaded and there is a less loaded
455 * server, then return true.
456 */
457static inline int
458is_overloaded(struct ip_vs_dest *dest, struct ip_vs_service *svc)
459{
460 if (atomic_read(&dest->activeconns) > atomic_read(&dest->weight)) {
461 struct ip_vs_dest *d;
462
463 list_for_each_entry(d, &svc->destinations, n_list) {
464 if (atomic_read(&d->activeconns)*2
465 < atomic_read(&d->weight)) {
466 return 1;
467 }
468 }
469 }
470 return 0;
471}
472
473
474/*
475 * Locality-Based (weighted) Least-Connection scheduling
476 */
477static struct ip_vs_dest *
478ip_vs_lblc_schedule(struct ip_vs_service *svc, const struct sk_buff *skb)
479{
39ac50d0 480 struct ip_vs_lblc_table *tbl = svc->sched_data;
44548375 481 struct ip_vs_iphdr iph;
39ac50d0
SW
482 struct ip_vs_dest *dest = NULL;
483 struct ip_vs_lblc_entry *en;
1da177e4 484
44548375
JV
485 ip_vs_fill_iphdr(svc->af, skb_network_header(skb), &iph);
486
1e3e238e 487 IP_VS_DBG(6, "%s(): Scheduling...\n", __func__);
1da177e4 488
39ac50d0
SW
489 /* First look in our cache */
490 read_lock(&svc->sched_lock);
44548375 491 en = ip_vs_lblc_get(svc->af, tbl, &iph.daddr);
39ac50d0
SW
492 if (en) {
493 /* We only hold a read lock, but this is atomic */
494 en->lastuse = jiffies;
495
496 /*
497 * If the destination is not available, i.e. it's in the trash,
498 * we must ignore it, as it may be removed from under our feet,
499 * if someone drops our reference count. Our caller only makes
500 * sure that destinations, that are not in the trash, are not
501 * moved to the trash, while we are scheduling. But anyone can
502 * free up entries from the trash at any time.
503 */
504
505 if (en->dest->flags & IP_VS_DEST_F_AVAILABLE)
506 dest = en->dest;
507 }
508 read_unlock(&svc->sched_lock);
509
510 /* If the destination has a weight and is not overloaded, use it */
511 if (dest && atomic_read(&dest->weight) > 0 && !is_overloaded(dest, svc))
512 goto out;
513
514 /* No cache entry or it is invalid, time to schedule */
44548375 515 dest = __ip_vs_lblc_schedule(svc);
39ac50d0 516 if (!dest) {
41ac51ee 517 ip_vs_scheduler_err(svc, "no destination available");
39ac50d0 518 return NULL;
1da177e4 519 }
1da177e4 520
39ac50d0
SW
521 /* If we fail to create a cache entry, we'll just use the valid dest */
522 write_lock(&svc->sched_lock);
44548375 523 ip_vs_lblc_new(tbl, &iph.daddr, dest);
39ac50d0
SW
524 write_unlock(&svc->sched_lock);
525
526out:
44548375
JV
527 IP_VS_DBG_BUF(6, "LBLC: destination IP address %s --> server %s:%d\n",
528 IP_VS_DBG_ADDR(svc->af, &iph.daddr),
529 IP_VS_DBG_ADDR(svc->af, &dest->addr), ntohs(dest->port));
1da177e4
LT
530
531 return dest;
532}
533
534
535/*
536 * IPVS LBLC Scheduler structure
537 */
538static struct ip_vs_scheduler ip_vs_lblc_scheduler =
539{
540 .name = "lblc",
541 .refcnt = ATOMIC_INIT(0),
542 .module = THIS_MODULE,
d149ccc9 543 .n_list = LIST_HEAD_INIT(ip_vs_lblc_scheduler.n_list),
1da177e4
LT
544 .init_service = ip_vs_lblc_init_svc,
545 .done_service = ip_vs_lblc_done_svc,
1da177e4
LT
546 .schedule = ip_vs_lblc_schedule,
547};
548
61b1ab45
HS
549/*
550 * per netns init.
551 */
fb1de432 552#ifdef CONFIG_SYSCTL
61b1ab45
HS
553static int __net_init __ip_vs_lblc_init(struct net *net)
554{
b6e885dd
HS
555 struct netns_ipvs *ipvs = net_ipvs(net);
556
557 if (!net_eq(net, &init_net)) {
558 ipvs->lblc_ctl_table = kmemdup(vs_vars_table,
559 sizeof(vs_vars_table),
560 GFP_KERNEL);
561 if (ipvs->lblc_ctl_table == NULL)
0443929f 562 return -ENOMEM;
b6e885dd
HS
563 } else
564 ipvs->lblc_ctl_table = vs_vars_table;
b27d777e 565 ipvs->sysctl_lblc_expiration = DEFAULT_EXPIRATION;
b6e885dd
HS
566 ipvs->lblc_ctl_table[0].data = &ipvs->sysctl_lblc_expiration;
567
568 ipvs->lblc_ctl_header =
569 register_net_sysctl_table(net, net_vs_ctl_path,
570 ipvs->lblc_ctl_table);
0443929f
SH
571 if (!ipvs->lblc_ctl_header) {
572 if (!net_eq(net, &init_net))
573 kfree(ipvs->lblc_ctl_table);
574 return -ENOMEM;
575 }
61b1ab45
HS
576
577 return 0;
578}
579
580static void __net_exit __ip_vs_lblc_exit(struct net *net)
581{
b6e885dd
HS
582 struct netns_ipvs *ipvs = net_ipvs(net);
583
584 unregister_net_sysctl_table(ipvs->lblc_ctl_header);
61b1ab45 585
b6e885dd
HS
586 if (!net_eq(net, &init_net))
587 kfree(ipvs->lblc_ctl_table);
61b1ab45
HS
588}
589
fb1de432
SH
590#else
591
592static int __net_init __ip_vs_lblc_init(struct net *net) { return 0; }
593static void __net_exit __ip_vs_lblc_exit(struct net *net) { }
594
595#endif
596
61b1ab45
HS
597static struct pernet_operations ip_vs_lblc_ops = {
598 .init = __ip_vs_lblc_init,
599 .exit = __ip_vs_lblc_exit,
600};
1da177e4
LT
601
602static int __init ip_vs_lblc_init(void)
603{
a014bc8f
PE
604 int ret;
605
61b1ab45
HS
606 ret = register_pernet_subsys(&ip_vs_lblc_ops);
607 if (ret)
608 return ret;
609
a014bc8f
PE
610 ret = register_ip_vs_scheduler(&ip_vs_lblc_scheduler);
611 if (ret)
61b1ab45 612 unregister_pernet_subsys(&ip_vs_lblc_ops);
a014bc8f 613 return ret;
1da177e4
LT
614}
615
1da177e4
LT
616static void __exit ip_vs_lblc_cleanup(void)
617{
1da177e4 618 unregister_ip_vs_scheduler(&ip_vs_lblc_scheduler);
61b1ab45 619 unregister_pernet_subsys(&ip_vs_lblc_ops);
1da177e4
LT
620}
621
622
623module_init(ip_vs_lblc_init);
624module_exit(ip_vs_lblc_cleanup);
625MODULE_LICENSE("GPL");