Merge branch 'kconfig' of git://git.kernel.org/pub/scm/linux/kernel/git/mmarek/kbuild
[deliverable/linux.git] / net / netfilter / ipvs / ip_vs_lblcr.c
CommitLineData
1da177e4
LT
1/*
2 * IPVS: Locality-Based Least-Connection with Replication scheduler
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 * Julian Anastasov : Added the missing (dest->weight>0)
13 * condition in the ip_vs_dest_set_max.
14 *
15 */
16
17/*
18 * The lblc/r algorithm is as follows (pseudo code):
19 *
20 * if serverSet[dest_ip] is null then
21 * n, serverSet[dest_ip] <- {weighted least-conn node};
22 * else
23 * n <- {least-conn (alive) node in serverSet[dest_ip]};
24 * if (n is null) OR
25 * (n.conns>n.weight AND
26 * there is a node m with m.conns<m.weight/2) then
27 * n <- {weighted least-conn node};
28 * add n to serverSet[dest_ip];
29 * if |serverSet[dest_ip]| > 1 AND
30 * now - serverSet[dest_ip].lastMod > T then
31 * m <- {most conn node in serverSet[dest_ip]};
32 * remove m from serverSet[dest_ip];
33 * if serverSet[dest_ip] changed then
34 * serverSet[dest_ip].lastMod <- now;
35 *
36 * return n;
37 *
38 */
39
9aada7ac
HE
40#define KMSG_COMPONENT "IPVS"
41#define pr_fmt(fmt) KMSG_COMPONENT ": " fmt
42
14c85021 43#include <linux/ip.h>
1da177e4
LT
44#include <linux/module.h>
45#include <linux/kernel.h>
14c85021 46#include <linux/skbuff.h>
d7fe0f24 47#include <linux/jiffies.h>
51f0bc78 48#include <linux/list.h>
5a0e3ad6 49#include <linux/slab.h>
1da177e4
LT
50
51/* for sysctl */
52#include <linux/fs.h>
53#include <linux/sysctl.h>
457c4cbc 54#include <net/net_namespace.h>
1da177e4
LT
55
56#include <net/ip_vs.h>
57
58
59/*
60 * It is for garbage collection of stale IPVS lblcr 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 * for IPVS lblcr entry hash table
78 */
79#ifndef CONFIG_IP_VS_LBLCR_TAB_BITS
80#define CONFIG_IP_VS_LBLCR_TAB_BITS 10
81#endif
82#define IP_VS_LBLCR_TAB_BITS CONFIG_IP_VS_LBLCR_TAB_BITS
83#define IP_VS_LBLCR_TAB_SIZE (1 << IP_VS_LBLCR_TAB_BITS)
84#define IP_VS_LBLCR_TAB_MASK (IP_VS_LBLCR_TAB_SIZE - 1)
85
86
87/*
88 * IPVS destination set structure and operations
89 */
51f0bc78
SH
90struct ip_vs_dest_set_elem {
91 struct list_head list; /* list link */
742617b1 92 struct ip_vs_dest *dest; /* destination server */
c5549571 93 struct rcu_head rcu_head;
1da177e4
LT
94};
95
96struct ip_vs_dest_set {
97 atomic_t size; /* set size */
98 unsigned long lastmod; /* last modified time */
51f0bc78 99 struct list_head list; /* destination list */
1da177e4
LT
100};
101
102
c5549571
JA
103static void ip_vs_dest_set_insert(struct ip_vs_dest_set *set,
104 struct ip_vs_dest *dest, bool check)
1da177e4 105{
51f0bc78 106 struct ip_vs_dest_set_elem *e;
1da177e4 107
c5549571
JA
108 if (check) {
109 list_for_each_entry(e, &set->list, list) {
742617b1 110 if (e->dest == dest)
c5549571
JA
111 return;
112 }
1da177e4
LT
113 }
114
f728bafb 115 e = kmalloc(sizeof(*e), GFP_ATOMIC);
0a9ee813 116 if (e == NULL)
c5549571 117 return;
1da177e4 118
c5549571 119 ip_vs_dest_hold(dest);
742617b1 120 e->dest = dest;
1da177e4 121
c5549571 122 list_add_rcu(&e->list, &set->list);
1da177e4 123 atomic_inc(&set->size);
1da177e4
LT
124
125 set->lastmod = jiffies;
1da177e4
LT
126}
127
742617b1
JA
128static void ip_vs_lblcr_elem_rcu_free(struct rcu_head *head)
129{
130 struct ip_vs_dest_set_elem *e;
131
132 e = container_of(head, struct ip_vs_dest_set_elem, rcu_head);
9e4e948a 133 ip_vs_dest_put_and_free(e->dest);
742617b1
JA
134 kfree(e);
135}
136
1da177e4
LT
137static void
138ip_vs_dest_set_erase(struct ip_vs_dest_set *set, struct ip_vs_dest *dest)
139{
51f0bc78 140 struct ip_vs_dest_set_elem *e;
1da177e4 141
51f0bc78 142 list_for_each_entry(e, &set->list, list) {
742617b1 143 if (e->dest == dest) {
1da177e4 144 /* HIT */
1da177e4
LT
145 atomic_dec(&set->size);
146 set->lastmod = jiffies;
c5549571 147 list_del_rcu(&e->list);
742617b1 148 call_rcu(&e->rcu_head, ip_vs_lblcr_elem_rcu_free);
1da177e4
LT
149 break;
150 }
1da177e4 151 }
1da177e4
LT
152}
153
154static void ip_vs_dest_set_eraseall(struct ip_vs_dest_set *set)
155{
51f0bc78 156 struct ip_vs_dest_set_elem *e, *ep;
1da177e4 157
51f0bc78 158 list_for_each_entry_safe(e, ep, &set->list, list) {
c5549571 159 list_del_rcu(&e->list);
742617b1 160 call_rcu(&e->rcu_head, ip_vs_lblcr_elem_rcu_free);
1da177e4 161 }
1da177e4
LT
162}
163
164/* get weighted least-connection node in the destination set */
165static inline struct ip_vs_dest *ip_vs_dest_set_min(struct ip_vs_dest_set *set)
166{
51f0bc78 167 register struct ip_vs_dest_set_elem *e;
1da177e4
LT
168 struct ip_vs_dest *dest, *least;
169 int loh, doh;
170
1da177e4 171 /* select the first destination server, whose weight > 0 */
c5549571 172 list_for_each_entry_rcu(e, &set->list, list) {
742617b1 173 least = e->dest;
1da177e4
LT
174 if (least->flags & IP_VS_DEST_F_OVERLOAD)
175 continue;
176
177 if ((atomic_read(&least->weight) > 0)
178 && (least->flags & IP_VS_DEST_F_AVAILABLE)) {
b552f7e3 179 loh = ip_vs_dest_conn_overhead(least);
1da177e4
LT
180 goto nextstage;
181 }
182 }
1da177e4
LT
183 return NULL;
184
185 /* find the destination with the weighted least load */
186 nextstage:
c5549571 187 list_for_each_entry_continue_rcu(e, &set->list, list) {
742617b1 188 dest = e->dest;
1da177e4
LT
189 if (dest->flags & IP_VS_DEST_F_OVERLOAD)
190 continue;
191
b552f7e3 192 doh = ip_vs_dest_conn_overhead(dest);
c16526a7
SK
193 if (((__s64)loh * atomic_read(&dest->weight) >
194 (__s64)doh * atomic_read(&least->weight))
1da177e4
LT
195 && (dest->flags & IP_VS_DEST_F_AVAILABLE)) {
196 least = dest;
197 loh = doh;
198 }
199 }
1da177e4 200
1e3e238e 201 IP_VS_DBG_BUF(6, "%s(): server %s:%d "
44548375 202 "activeconns %d refcnt %d weight %d overhead %d\n",
1e3e238e 203 __func__,
44548375
JV
204 IP_VS_DBG_ADDR(least->af, &least->addr),
205 ntohs(least->port),
206 atomic_read(&least->activeconns),
207 atomic_read(&least->refcnt),
208 atomic_read(&least->weight), loh);
1da177e4
LT
209 return least;
210}
211
212
213/* get weighted most-connection node in the destination set */
214static inline struct ip_vs_dest *ip_vs_dest_set_max(struct ip_vs_dest_set *set)
215{
51f0bc78 216 register struct ip_vs_dest_set_elem *e;
1da177e4
LT
217 struct ip_vs_dest *dest, *most;
218 int moh, doh;
219
220 if (set == NULL)
221 return NULL;
222
1da177e4 223 /* select the first destination server, whose weight > 0 */
51f0bc78 224 list_for_each_entry(e, &set->list, list) {
742617b1 225 most = e->dest;
1da177e4 226 if (atomic_read(&most->weight) > 0) {
b552f7e3 227 moh = ip_vs_dest_conn_overhead(most);
1da177e4
LT
228 goto nextstage;
229 }
230 }
1da177e4
LT
231 return NULL;
232
233 /* find the destination with the weighted most load */
234 nextstage:
c5549571 235 list_for_each_entry_continue(e, &set->list, list) {
742617b1 236 dest = e->dest;
b552f7e3 237 doh = ip_vs_dest_conn_overhead(dest);
1da177e4 238 /* moh/mw < doh/dw ==> moh*dw < doh*mw, where mw,dw>0 */
c16526a7
SK
239 if (((__s64)moh * atomic_read(&dest->weight) <
240 (__s64)doh * atomic_read(&most->weight))
1da177e4
LT
241 && (atomic_read(&dest->weight) > 0)) {
242 most = dest;
243 moh = doh;
244 }
245 }
1da177e4 246
1e3e238e 247 IP_VS_DBG_BUF(6, "%s(): server %s:%d "
44548375 248 "activeconns %d refcnt %d weight %d overhead %d\n",
1e3e238e 249 __func__,
44548375
JV
250 IP_VS_DBG_ADDR(most->af, &most->addr), ntohs(most->port),
251 atomic_read(&most->activeconns),
252 atomic_read(&most->refcnt),
253 atomic_read(&most->weight), moh);
1da177e4
LT
254 return most;
255}
256
257
258/*
259 * IPVS lblcr entry represents an association between destination
260 * IP address and its destination server set
261 */
262struct ip_vs_lblcr_entry {
c5549571 263 struct hlist_node list;
44548375
JV
264 int af; /* address family */
265 union nf_inet_addr addr; /* destination IP address */
1da177e4
LT
266 struct ip_vs_dest_set set; /* destination server set */
267 unsigned long lastuse; /* last used time */
c5549571 268 struct rcu_head rcu_head;
1da177e4
LT
269};
270
271
272/*
273 * IPVS lblcr hash table
274 */
275struct ip_vs_lblcr_table {
c5549571 276 struct rcu_head rcu_head;
f33c8b94 277 struct hlist_head bucket[IP_VS_LBLCR_TAB_SIZE]; /* hash bucket */
1da177e4
LT
278 atomic_t entries; /* number of entries */
279 int max_size; /* maximum size of entries */
280 struct timer_list periodic_timer; /* collect stale entries */
281 int rover; /* rover for expire check */
282 int counter; /* counter for no expire */
c5549571 283 bool dead;
1da177e4
LT
284};
285
286
fb1de432 287#ifdef CONFIG_SYSCTL
1da177e4
LT
288/*
289 * IPVS LBLCR sysctl table
290 */
291
fe2c6338 292static struct ctl_table vs_vars_table[] = {
1da177e4 293 {
1da177e4 294 .procname = "lblcr_expiration",
d0a1eef9 295 .data = NULL,
1da177e4 296 .maxlen = sizeof(int),
e905a9ed 297 .mode = 0644,
6d9f239a 298 .proc_handler = proc_dointvec_jiffies,
1da177e4 299 },
f8572d8f 300 { }
1da177e4 301};
fb1de432 302#endif
1da177e4 303
1da177e4
LT
304static inline void ip_vs_lblcr_free(struct ip_vs_lblcr_entry *en)
305{
c5549571 306 hlist_del_rcu(&en->list);
1da177e4 307 ip_vs_dest_set_eraseall(&en->set);
c5549571 308 kfree_rcu(en, rcu_head);
1da177e4
LT
309}
310
311
312/*
313 * Returns hash value for IPVS LBLCR entry
314 */
95c96174 315static inline unsigned int
44548375 316ip_vs_lblcr_hashkey(int af, const union nf_inet_addr *addr)
1da177e4 317{
44548375
JV
318 __be32 addr_fold = addr->ip;
319
320#ifdef CONFIG_IP_VS_IPV6
321 if (af == AF_INET6)
322 addr_fold = addr->ip6[0]^addr->ip6[1]^
323 addr->ip6[2]^addr->ip6[3];
324#endif
325 return (ntohl(addr_fold)*2654435761UL) & IP_VS_LBLCR_TAB_MASK;
1da177e4
LT
326}
327
328
329/*
330 * Hash an entry in the ip_vs_lblcr_table.
331 * returns bool success.
332 */
f728bafb 333static void
1da177e4
LT
334ip_vs_lblcr_hash(struct ip_vs_lblcr_table *tbl, struct ip_vs_lblcr_entry *en)
335{
95c96174 336 unsigned int hash = ip_vs_lblcr_hashkey(en->af, &en->addr);
1da177e4 337
c5549571 338 hlist_add_head_rcu(&en->list, &tbl->bucket[hash]);
1da177e4 339 atomic_inc(&tbl->entries);
1da177e4
LT
340}
341
342
c5549571 343/* Get ip_vs_lblcr_entry associated with supplied parameters. */
1da177e4 344static inline struct ip_vs_lblcr_entry *
44548375
JV
345ip_vs_lblcr_get(int af, struct ip_vs_lblcr_table *tbl,
346 const union nf_inet_addr *addr)
1da177e4 347{
95c96174 348 unsigned int hash = ip_vs_lblcr_hashkey(af, addr);
1da177e4
LT
349 struct ip_vs_lblcr_entry *en;
350
c5549571 351 hlist_for_each_entry_rcu(en, &tbl->bucket[hash], list)
44548375 352 if (ip_vs_addr_equal(af, &en->addr, addr))
f728bafb
SW
353 return en;
354
355 return NULL;
356}
1da177e4 357
1da177e4 358
f728bafb
SW
359/*
360 * Create or update an ip_vs_lblcr_entry, which is a mapping of a destination
ba3a3ce1 361 * IP address to a server. Called under spin lock.
f728bafb
SW
362 */
363static inline struct ip_vs_lblcr_entry *
44548375 364ip_vs_lblcr_new(struct ip_vs_lblcr_table *tbl, const union nf_inet_addr *daddr,
cf34e646 365 u16 af, struct ip_vs_dest *dest)
f728bafb
SW
366{
367 struct ip_vs_lblcr_entry *en;
368
cf34e646 369 en = ip_vs_lblcr_get(af, tbl, daddr);
f728bafb
SW
370 if (!en) {
371 en = kmalloc(sizeof(*en), GFP_ATOMIC);
0a9ee813 372 if (!en)
f728bafb 373 return NULL;
f728bafb 374
cf34e646
JA
375 en->af = af;
376 ip_vs_addr_copy(af, &en->addr, daddr);
f728bafb
SW
377 en->lastuse = jiffies;
378
421f91d2 379 /* initialize its dest set */
f728bafb 380 atomic_set(&(en->set.size), 0);
51f0bc78 381 INIT_LIST_HEAD(&en->set.list);
c5549571
JA
382
383 ip_vs_dest_set_insert(&en->set, dest, false);
f728bafb
SW
384
385 ip_vs_lblcr_hash(tbl, en);
c5549571 386 return en;
1da177e4
LT
387 }
388
c5549571 389 ip_vs_dest_set_insert(&en->set, dest, true);
1da177e4 390
f728bafb 391 return en;
1da177e4
LT
392}
393
394
395/*
396 * Flush all the entries of the specified table.
397 */
c5549571 398static void ip_vs_lblcr_flush(struct ip_vs_service *svc)
1da177e4 399{
c5549571 400 struct ip_vs_lblcr_table *tbl = svc->sched_data;
1da177e4 401 int i;
c5549571
JA
402 struct ip_vs_lblcr_entry *en;
403 struct hlist_node *next;
1da177e4 404
ba3a3ce1 405 spin_lock_bh(&svc->sched_lock);
c5549571 406 tbl->dead = 1;
70e3ca79 407 for (i = 0; i < IP_VS_LBLCR_TAB_SIZE; i++) {
c5549571 408 hlist_for_each_entry_safe(en, next, &tbl->bucket[i], list) {
1da177e4 409 ip_vs_lblcr_free(en);
1da177e4 410 }
1da177e4 411 }
ba3a3ce1 412 spin_unlock_bh(&svc->sched_lock);
1da177e4
LT
413}
414
b27d777e
SH
415static int sysctl_lblcr_expiration(struct ip_vs_service *svc)
416{
417#ifdef CONFIG_SYSCTL
418 struct netns_ipvs *ipvs = net_ipvs(svc->net);
419 return ipvs->sysctl_lblcr_expiration;
420#else
421 return DEFAULT_EXPIRATION;
422#endif
423}
1da177e4 424
f728bafb 425static inline void ip_vs_lblcr_full_check(struct ip_vs_service *svc)
1da177e4 426{
f728bafb 427 struct ip_vs_lblcr_table *tbl = svc->sched_data;
1da177e4
LT
428 unsigned long now = jiffies;
429 int i, j;
c5549571
JA
430 struct ip_vs_lblcr_entry *en;
431 struct hlist_node *next;
1da177e4 432
70e3ca79 433 for (i = 0, j = tbl->rover; i < IP_VS_LBLCR_TAB_SIZE; i++) {
1da177e4
LT
434 j = (j + 1) & IP_VS_LBLCR_TAB_MASK;
435
ba3a3ce1 436 spin_lock(&svc->sched_lock);
c5549571 437 hlist_for_each_entry_safe(en, next, &tbl->bucket[j], list) {
b27d777e
SH
438 if (time_after(en->lastuse +
439 sysctl_lblcr_expiration(svc), now))
1da177e4
LT
440 continue;
441
442 ip_vs_lblcr_free(en);
443 atomic_dec(&tbl->entries);
444 }
ba3a3ce1 445 spin_unlock(&svc->sched_lock);
1da177e4
LT
446 }
447 tbl->rover = j;
448}
449
450
451/*
452 * Periodical timer handler for IPVS lblcr table
453 * It is used to collect stale entries when the number of entries
454 * exceeds the maximum size of the table.
455 *
456 * Fixme: we probably need more complicated algorithm to collect
457 * entries that have not been used for a long time even
458 * if the number of entries doesn't exceed the maximum size
459 * of the table.
460 * The full expiration check is for this purpose now.
461 */
462static void ip_vs_lblcr_check_expire(unsigned long data)
463{
f728bafb
SW
464 struct ip_vs_service *svc = (struct ip_vs_service *) data;
465 struct ip_vs_lblcr_table *tbl = svc->sched_data;
1da177e4
LT
466 unsigned long now = jiffies;
467 int goal;
468 int i, j;
c5549571
JA
469 struct ip_vs_lblcr_entry *en;
470 struct hlist_node *next;
1da177e4 471
1da177e4
LT
472 if ((tbl->counter % COUNT_FOR_FULL_EXPIRATION) == 0) {
473 /* do full expiration check */
f728bafb 474 ip_vs_lblcr_full_check(svc);
1da177e4
LT
475 tbl->counter = 1;
476 goto out;
477 }
478
479 if (atomic_read(&tbl->entries) <= tbl->max_size) {
480 tbl->counter++;
481 goto out;
482 }
483
484 goal = (atomic_read(&tbl->entries) - tbl->max_size)*4/3;
485 if (goal > tbl->max_size/2)
486 goal = tbl->max_size/2;
487
70e3ca79 488 for (i = 0, j = tbl->rover; i < IP_VS_LBLCR_TAB_SIZE; i++) {
1da177e4
LT
489 j = (j + 1) & IP_VS_LBLCR_TAB_MASK;
490
ba3a3ce1 491 spin_lock(&svc->sched_lock);
c5549571 492 hlist_for_each_entry_safe(en, next, &tbl->bucket[j], list) {
1da177e4
LT
493 if (time_before(now, en->lastuse+ENTRY_TIMEOUT))
494 continue;
495
496 ip_vs_lblcr_free(en);
497 atomic_dec(&tbl->entries);
498 goal--;
499 }
ba3a3ce1 500 spin_unlock(&svc->sched_lock);
1da177e4
LT
501 if (goal <= 0)
502 break;
503 }
504 tbl->rover = j;
505
506 out:
507 mod_timer(&tbl->periodic_timer, jiffies+CHECK_EXPIRE_INTERVAL);
508}
509
1da177e4
LT
510static int ip_vs_lblcr_init_svc(struct ip_vs_service *svc)
511{
512 int i;
513 struct ip_vs_lblcr_table *tbl;
514
515 /*
516 * Allocate the ip_vs_lblcr_table for this service
517 */
45d4e71a 518 tbl = kmalloc(sizeof(*tbl), GFP_KERNEL);
0a9ee813 519 if (tbl == NULL)
1da177e4 520 return -ENOMEM;
0a9ee813 521
1da177e4
LT
522 svc->sched_data = tbl;
523 IP_VS_DBG(6, "LBLCR hash table (memory=%Zdbytes) allocated for "
f728bafb 524 "current service\n", sizeof(*tbl));
1da177e4
LT
525
526 /*
527 * Initialize the hash buckets
528 */
70e3ca79 529 for (i = 0; i < IP_VS_LBLCR_TAB_SIZE; i++) {
c5549571 530 INIT_HLIST_HEAD(&tbl->bucket[i]);
1da177e4 531 }
1da177e4
LT
532 tbl->max_size = IP_VS_LBLCR_TAB_SIZE*16;
533 tbl->rover = 0;
534 tbl->counter = 1;
c5549571 535 tbl->dead = 0;
1da177e4
LT
536
537 /*
538 * Hook periodic timer for garbage collection
539 */
b24b8a24 540 setup_timer(&tbl->periodic_timer, ip_vs_lblcr_check_expire,
f728bafb
SW
541 (unsigned long)svc);
542 mod_timer(&tbl->periodic_timer, jiffies + CHECK_EXPIRE_INTERVAL);
1da177e4 543
1da177e4
LT
544 return 0;
545}
546
547
ed3ffc4e 548static void ip_vs_lblcr_done_svc(struct ip_vs_service *svc)
1da177e4
LT
549{
550 struct ip_vs_lblcr_table *tbl = svc->sched_data;
551
552 /* remove periodic timer */
553 del_timer_sync(&tbl->periodic_timer);
554
555 /* got to clean up table entries here */
c5549571 556 ip_vs_lblcr_flush(svc);
1da177e4
LT
557
558 /* release the table itself */
c5549571 559 kfree_rcu(tbl, rcu_head);
1da177e4 560 IP_VS_DBG(6, "LBLCR hash table (memory=%Zdbytes) released\n",
f728bafb 561 sizeof(*tbl));
1da177e4
LT
562}
563
564
1da177e4 565static inline struct ip_vs_dest *
44548375 566__ip_vs_lblcr_schedule(struct ip_vs_service *svc)
1da177e4
LT
567{
568 struct ip_vs_dest *dest, *least;
569 int loh, doh;
570
571 /*
b552f7e3 572 * We use the following formula to estimate the load:
1da177e4
LT
573 * (dest overhead) / dest->weight
574 *
575 * Remember -- no floats in kernel mode!!!
576 * The comparison of h1*w2 > h2*w1 is equivalent to that of
577 * h1/w1 > h2/w2
578 * if every weight is larger than zero.
579 *
580 * The server with weight=0 is quiesced and will not receive any
581 * new connection.
582 */
c5549571 583 list_for_each_entry_rcu(dest, &svc->destinations, n_list) {
1da177e4
LT
584 if (dest->flags & IP_VS_DEST_F_OVERLOAD)
585 continue;
586
587 if (atomic_read(&dest->weight) > 0) {
588 least = dest;
b552f7e3 589 loh = ip_vs_dest_conn_overhead(least);
1da177e4
LT
590 goto nextstage;
591 }
592 }
593 return NULL;
594
595 /*
596 * Find the destination with the least load.
597 */
598 nextstage:
c5549571 599 list_for_each_entry_continue_rcu(dest, &svc->destinations, n_list) {
1da177e4
LT
600 if (dest->flags & IP_VS_DEST_F_OVERLOAD)
601 continue;
602
b552f7e3 603 doh = ip_vs_dest_conn_overhead(dest);
c16526a7
SK
604 if ((__s64)loh * atomic_read(&dest->weight) >
605 (__s64)doh * atomic_read(&least->weight)) {
1da177e4
LT
606 least = dest;
607 loh = doh;
608 }
609 }
610
44548375
JV
611 IP_VS_DBG_BUF(6, "LBLCR: server %s:%d "
612 "activeconns %d refcnt %d weight %d overhead %d\n",
613 IP_VS_DBG_ADDR(least->af, &least->addr),
614 ntohs(least->port),
615 atomic_read(&least->activeconns),
616 atomic_read(&least->refcnt),
617 atomic_read(&least->weight), loh);
1da177e4
LT
618
619 return least;
620}
621
622
623/*
624 * If this destination server is overloaded and there is a less loaded
625 * server, then return true.
626 */
627static inline int
628is_overloaded(struct ip_vs_dest *dest, struct ip_vs_service *svc)
629{
630 if (atomic_read(&dest->activeconns) > atomic_read(&dest->weight)) {
631 struct ip_vs_dest *d;
632
c5549571 633 list_for_each_entry_rcu(d, &svc->destinations, n_list) {
1da177e4
LT
634 if (atomic_read(&d->activeconns)*2
635 < atomic_read(&d->weight)) {
636 return 1;
637 }
638 }
639 }
640 return 0;
641}
642
643
644/*
645 * Locality-Based (weighted) Least-Connection scheduling
646 */
647static struct ip_vs_dest *
bba54de5
JA
648ip_vs_lblcr_schedule(struct ip_vs_service *svc, const struct sk_buff *skb,
649 struct ip_vs_iphdr *iph)
1da177e4 650{
f728bafb 651 struct ip_vs_lblcr_table *tbl = svc->sched_data;
c5549571 652 struct ip_vs_dest *dest;
f728bafb 653 struct ip_vs_lblcr_entry *en;
1da177e4 654
1e3e238e 655 IP_VS_DBG(6, "%s(): Scheduling...\n", __func__);
1da177e4 656
f728bafb 657 /* First look in our cache */
bba54de5 658 en = ip_vs_lblcr_get(svc->af, tbl, &iph->daddr);
f728bafb 659 if (en) {
f728bafb
SW
660 en->lastuse = jiffies;
661
662 /* Get the least loaded destination */
1da177e4 663 dest = ip_vs_dest_set_min(&en->set);
f728bafb
SW
664
665 /* More than one destination + enough time passed by, cleanup */
1da177e4 666 if (atomic_read(&en->set.size) > 1 &&
c5549571 667 time_after(jiffies, en->set.lastmod +
b27d777e 668 sysctl_lblcr_expiration(svc))) {
ac69269a 669 spin_lock_bh(&svc->sched_lock);
c5549571
JA
670 if (atomic_read(&en->set.size) > 1) {
671 struct ip_vs_dest *m;
f728bafb 672
c5549571
JA
673 m = ip_vs_dest_set_max(&en->set);
674 if (m)
675 ip_vs_dest_set_erase(&en->set, m);
676 }
ac69269a 677 spin_unlock_bh(&svc->sched_lock);
f728bafb
SW
678 }
679
680 /* If the destination is not overloaded, use it */
c5549571 681 if (dest && !is_overloaded(dest, svc))
f728bafb 682 goto out;
f728bafb
SW
683
684 /* The cache entry is invalid, time to schedule */
44548375 685 dest = __ip_vs_lblcr_schedule(svc);
f728bafb 686 if (!dest) {
41ac51ee 687 ip_vs_scheduler_err(svc, "no destination available");
f728bafb 688 return NULL;
1da177e4 689 }
f728bafb
SW
690
691 /* Update our cache entry */
ac69269a 692 spin_lock_bh(&svc->sched_lock);
c5549571
JA
693 if (!tbl->dead)
694 ip_vs_dest_set_insert(&en->set, dest, true);
ac69269a 695 spin_unlock_bh(&svc->sched_lock);
f728bafb 696 goto out;
c5549571 697 }
f728bafb
SW
698
699 /* No cache entry, time to schedule */
44548375 700 dest = __ip_vs_lblcr_schedule(svc);
f728bafb
SW
701 if (!dest) {
702 IP_VS_DBG(1, "no destination available\n");
703 return NULL;
1da177e4 704 }
1da177e4 705
f728bafb 706 /* If we fail to create a cache entry, we'll just use the valid dest */
ac69269a 707 spin_lock_bh(&svc->sched_lock);
c5549571 708 if (!tbl->dead)
cf34e646 709 ip_vs_lblcr_new(tbl, &iph->daddr, svc->af, dest);
ac69269a 710 spin_unlock_bh(&svc->sched_lock);
f728bafb
SW
711
712out:
44548375 713 IP_VS_DBG_BUF(6, "LBLCR: destination IP address %s --> server %s:%d\n",
bba54de5 714 IP_VS_DBG_ADDR(svc->af, &iph->daddr),
cf34e646 715 IP_VS_DBG_ADDR(dest->af, &dest->addr), ntohs(dest->port));
1da177e4
LT
716
717 return dest;
718}
719
720
721/*
722 * IPVS LBLCR Scheduler structure
723 */
724static struct ip_vs_scheduler ip_vs_lblcr_scheduler =
725{
726 .name = "lblcr",
727 .refcnt = ATOMIC_INIT(0),
728 .module = THIS_MODULE,
d149ccc9 729 .n_list = LIST_HEAD_INIT(ip_vs_lblcr_scheduler.n_list),
1da177e4
LT
730 .init_service = ip_vs_lblcr_init_svc,
731 .done_service = ip_vs_lblcr_done_svc,
1da177e4
LT
732 .schedule = ip_vs_lblcr_schedule,
733};
734
61b1ab45
HS
735/*
736 * per netns init.
737 */
fb1de432 738#ifdef CONFIG_SYSCTL
61b1ab45
HS
739static int __net_init __ip_vs_lblcr_init(struct net *net)
740{
d0a1eef9
HS
741 struct netns_ipvs *ipvs = net_ipvs(net);
742
4b984cd5
HS
743 if (!ipvs)
744 return -ENOENT;
745
d0a1eef9
HS
746 if (!net_eq(net, &init_net)) {
747 ipvs->lblcr_ctl_table = kmemdup(vs_vars_table,
748 sizeof(vs_vars_table),
749 GFP_KERNEL);
750 if (ipvs->lblcr_ctl_table == NULL)
0443929f 751 return -ENOMEM;
464dc801
EB
752
753 /* Don't export sysctls to unprivileged users */
754 if (net->user_ns != &init_user_ns)
755 ipvs->lblcr_ctl_table[0].procname = NULL;
d0a1eef9
HS
756 } else
757 ipvs->lblcr_ctl_table = vs_vars_table;
b27d777e 758 ipvs->sysctl_lblcr_expiration = DEFAULT_EXPIRATION;
d0a1eef9
HS
759 ipvs->lblcr_ctl_table[0].data = &ipvs->sysctl_lblcr_expiration;
760
761 ipvs->lblcr_ctl_header =
ec8f23ce 762 register_net_sysctl(net, "net/ipv4/vs", ipvs->lblcr_ctl_table);
0443929f
SH
763 if (!ipvs->lblcr_ctl_header) {
764 if (!net_eq(net, &init_net))
765 kfree(ipvs->lblcr_ctl_table);
766 return -ENOMEM;
767 }
61b1ab45
HS
768
769 return 0;
770}
771
772static void __net_exit __ip_vs_lblcr_exit(struct net *net)
773{
d0a1eef9
HS
774 struct netns_ipvs *ipvs = net_ipvs(net);
775
776 unregister_net_sysctl_table(ipvs->lblcr_ctl_header);
61b1ab45 777
d0a1eef9
HS
778 if (!net_eq(net, &init_net))
779 kfree(ipvs->lblcr_ctl_table);
61b1ab45
HS
780}
781
fb1de432
SH
782#else
783
784static int __net_init __ip_vs_lblcr_init(struct net *net) { return 0; }
785static void __net_exit __ip_vs_lblcr_exit(struct net *net) { }
786
787#endif
788
61b1ab45
HS
789static struct pernet_operations ip_vs_lblcr_ops = {
790 .init = __ip_vs_lblcr_init,
791 .exit = __ip_vs_lblcr_exit,
792};
1da177e4
LT
793
794static int __init ip_vs_lblcr_init(void)
795{
a014bc8f
PE
796 int ret;
797
61b1ab45
HS
798 ret = register_pernet_subsys(&ip_vs_lblcr_ops);
799 if (ret)
800 return ret;
801
a014bc8f
PE
802 ret = register_ip_vs_scheduler(&ip_vs_lblcr_scheduler);
803 if (ret)
61b1ab45 804 unregister_pernet_subsys(&ip_vs_lblcr_ops);
a014bc8f 805 return ret;
1da177e4
LT
806}
807
1da177e4
LT
808static void __exit ip_vs_lblcr_cleanup(void)
809{
1da177e4 810 unregister_ip_vs_scheduler(&ip_vs_lblcr_scheduler);
61b1ab45 811 unregister_pernet_subsys(&ip_vs_lblcr_ops);
742617b1 812 rcu_barrier();
1da177e4
LT
813}
814
815
816module_init(ip_vs_lblcr_init);
817module_exit(ip_vs_lblcr_cleanup);
818MODULE_LICENSE("GPL");
This page took 1.188744 seconds and 5 git commands to generate.