ipvs: Pass ipvs not net to ip_vs_estimator_net_init and ip_vs_estimator_cleanup
[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
3109d2f2 418 return svc->ipvs->sysctl_lblcr_expiration;
b27d777e
SH
419#else
420 return DEFAULT_EXPIRATION;
421#endif
422}
1da177e4 423
f728bafb 424static inline void ip_vs_lblcr_full_check(struct ip_vs_service *svc)
1da177e4 425{
f728bafb 426 struct ip_vs_lblcr_table *tbl = svc->sched_data;
1da177e4
LT
427 unsigned long now = jiffies;
428 int i, j;
c5549571
JA
429 struct ip_vs_lblcr_entry *en;
430 struct hlist_node *next;
1da177e4 431
70e3ca79 432 for (i = 0, j = tbl->rover; i < IP_VS_LBLCR_TAB_SIZE; i++) {
1da177e4
LT
433 j = (j + 1) & IP_VS_LBLCR_TAB_MASK;
434
ba3a3ce1 435 spin_lock(&svc->sched_lock);
c5549571 436 hlist_for_each_entry_safe(en, next, &tbl->bucket[j], list) {
b27d777e
SH
437 if (time_after(en->lastuse +
438 sysctl_lblcr_expiration(svc), now))
1da177e4
LT
439 continue;
440
441 ip_vs_lblcr_free(en);
442 atomic_dec(&tbl->entries);
443 }
ba3a3ce1 444 spin_unlock(&svc->sched_lock);
1da177e4
LT
445 }
446 tbl->rover = j;
447}
448
449
450/*
451 * Periodical timer handler for IPVS lblcr table
452 * It is used to collect stale entries when the number of entries
453 * exceeds the maximum size of the table.
454 *
455 * Fixme: we probably need more complicated algorithm to collect
456 * entries that have not been used for a long time even
457 * if the number of entries doesn't exceed the maximum size
458 * of the table.
459 * The full expiration check is for this purpose now.
460 */
461static void ip_vs_lblcr_check_expire(unsigned long data)
462{
f728bafb
SW
463 struct ip_vs_service *svc = (struct ip_vs_service *) data;
464 struct ip_vs_lblcr_table *tbl = svc->sched_data;
1da177e4
LT
465 unsigned long now = jiffies;
466 int goal;
467 int i, j;
c5549571
JA
468 struct ip_vs_lblcr_entry *en;
469 struct hlist_node *next;
1da177e4 470
1da177e4
LT
471 if ((tbl->counter % COUNT_FOR_FULL_EXPIRATION) == 0) {
472 /* do full expiration check */
f728bafb 473 ip_vs_lblcr_full_check(svc);
1da177e4
LT
474 tbl->counter = 1;
475 goto out;
476 }
477
478 if (atomic_read(&tbl->entries) <= tbl->max_size) {
479 tbl->counter++;
480 goto out;
481 }
482
483 goal = (atomic_read(&tbl->entries) - tbl->max_size)*4/3;
484 if (goal > tbl->max_size/2)
485 goal = tbl->max_size/2;
486
70e3ca79 487 for (i = 0, j = tbl->rover; i < IP_VS_LBLCR_TAB_SIZE; i++) {
1da177e4
LT
488 j = (j + 1) & IP_VS_LBLCR_TAB_MASK;
489
ba3a3ce1 490 spin_lock(&svc->sched_lock);
c5549571 491 hlist_for_each_entry_safe(en, next, &tbl->bucket[j], list) {
1da177e4
LT
492 if (time_before(now, en->lastuse+ENTRY_TIMEOUT))
493 continue;
494
495 ip_vs_lblcr_free(en);
496 atomic_dec(&tbl->entries);
497 goal--;
498 }
ba3a3ce1 499 spin_unlock(&svc->sched_lock);
1da177e4
LT
500 if (goal <= 0)
501 break;
502 }
503 tbl->rover = j;
504
505 out:
506 mod_timer(&tbl->periodic_timer, jiffies+CHECK_EXPIRE_INTERVAL);
507}
508
1da177e4
LT
509static int ip_vs_lblcr_init_svc(struct ip_vs_service *svc)
510{
511 int i;
512 struct ip_vs_lblcr_table *tbl;
513
514 /*
515 * Allocate the ip_vs_lblcr_table for this service
516 */
45d4e71a 517 tbl = kmalloc(sizeof(*tbl), GFP_KERNEL);
0a9ee813 518 if (tbl == NULL)
1da177e4 519 return -ENOMEM;
0a9ee813 520
1da177e4
LT
521 svc->sched_data = tbl;
522 IP_VS_DBG(6, "LBLCR hash table (memory=%Zdbytes) allocated for "
f728bafb 523 "current service\n", sizeof(*tbl));
1da177e4
LT
524
525 /*
526 * Initialize the hash buckets
527 */
70e3ca79 528 for (i = 0; i < IP_VS_LBLCR_TAB_SIZE; i++) {
c5549571 529 INIT_HLIST_HEAD(&tbl->bucket[i]);
1da177e4 530 }
1da177e4
LT
531 tbl->max_size = IP_VS_LBLCR_TAB_SIZE*16;
532 tbl->rover = 0;
533 tbl->counter = 1;
c5549571 534 tbl->dead = 0;
1da177e4
LT
535
536 /*
537 * Hook periodic timer for garbage collection
538 */
b24b8a24 539 setup_timer(&tbl->periodic_timer, ip_vs_lblcr_check_expire,
f728bafb
SW
540 (unsigned long)svc);
541 mod_timer(&tbl->periodic_timer, jiffies + CHECK_EXPIRE_INTERVAL);
1da177e4 542
1da177e4
LT
543 return 0;
544}
545
546
ed3ffc4e 547static void ip_vs_lblcr_done_svc(struct ip_vs_service *svc)
1da177e4
LT
548{
549 struct ip_vs_lblcr_table *tbl = svc->sched_data;
550
551 /* remove periodic timer */
552 del_timer_sync(&tbl->periodic_timer);
553
554 /* got to clean up table entries here */
c5549571 555 ip_vs_lblcr_flush(svc);
1da177e4
LT
556
557 /* release the table itself */
c5549571 558 kfree_rcu(tbl, rcu_head);
1da177e4 559 IP_VS_DBG(6, "LBLCR hash table (memory=%Zdbytes) released\n",
f728bafb 560 sizeof(*tbl));
1da177e4
LT
561}
562
563
1da177e4 564static inline struct ip_vs_dest *
44548375 565__ip_vs_lblcr_schedule(struct ip_vs_service *svc)
1da177e4
LT
566{
567 struct ip_vs_dest *dest, *least;
568 int loh, doh;
569
570 /*
b552f7e3 571 * We use the following formula to estimate the load:
1da177e4
LT
572 * (dest overhead) / dest->weight
573 *
574 * Remember -- no floats in kernel mode!!!
575 * The comparison of h1*w2 > h2*w1 is equivalent to that of
576 * h1/w1 > h2/w2
577 * if every weight is larger than zero.
578 *
579 * The server with weight=0 is quiesced and will not receive any
580 * new connection.
581 */
c5549571 582 list_for_each_entry_rcu(dest, &svc->destinations, n_list) {
1da177e4
LT
583 if (dest->flags & IP_VS_DEST_F_OVERLOAD)
584 continue;
585
586 if (atomic_read(&dest->weight) > 0) {
587 least = dest;
b552f7e3 588 loh = ip_vs_dest_conn_overhead(least);
1da177e4
LT
589 goto nextstage;
590 }
591 }
592 return NULL;
593
594 /*
595 * Find the destination with the least load.
596 */
597 nextstage:
c5549571 598 list_for_each_entry_continue_rcu(dest, &svc->destinations, n_list) {
1da177e4
LT
599 if (dest->flags & IP_VS_DEST_F_OVERLOAD)
600 continue;
601
b552f7e3 602 doh = ip_vs_dest_conn_overhead(dest);
c16526a7
SK
603 if ((__s64)loh * atomic_read(&dest->weight) >
604 (__s64)doh * atomic_read(&least->weight)) {
1da177e4
LT
605 least = dest;
606 loh = doh;
607 }
608 }
609
44548375
JV
610 IP_VS_DBG_BUF(6, "LBLCR: server %s:%d "
611 "activeconns %d refcnt %d weight %d overhead %d\n",
612 IP_VS_DBG_ADDR(least->af, &least->addr),
613 ntohs(least->port),
614 atomic_read(&least->activeconns),
615 atomic_read(&least->refcnt),
616 atomic_read(&least->weight), loh);
1da177e4
LT
617
618 return least;
619}
620
621
622/*
623 * If this destination server is overloaded and there is a less loaded
624 * server, then return true.
625 */
626static inline int
627is_overloaded(struct ip_vs_dest *dest, struct ip_vs_service *svc)
628{
629 if (atomic_read(&dest->activeconns) > atomic_read(&dest->weight)) {
630 struct ip_vs_dest *d;
631
c5549571 632 list_for_each_entry_rcu(d, &svc->destinations, n_list) {
1da177e4
LT
633 if (atomic_read(&d->activeconns)*2
634 < atomic_read(&d->weight)) {
635 return 1;
636 }
637 }
638 }
639 return 0;
640}
641
642
643/*
644 * Locality-Based (weighted) Least-Connection scheduling
645 */
646static struct ip_vs_dest *
bba54de5
JA
647ip_vs_lblcr_schedule(struct ip_vs_service *svc, const struct sk_buff *skb,
648 struct ip_vs_iphdr *iph)
1da177e4 649{
f728bafb 650 struct ip_vs_lblcr_table *tbl = svc->sched_data;
c5549571 651 struct ip_vs_dest *dest;
f728bafb 652 struct ip_vs_lblcr_entry *en;
1da177e4 653
1e3e238e 654 IP_VS_DBG(6, "%s(): Scheduling...\n", __func__);
1da177e4 655
f728bafb 656 /* First look in our cache */
bba54de5 657 en = ip_vs_lblcr_get(svc->af, tbl, &iph->daddr);
f728bafb 658 if (en) {
f728bafb
SW
659 en->lastuse = jiffies;
660
661 /* Get the least loaded destination */
1da177e4 662 dest = ip_vs_dest_set_min(&en->set);
f728bafb
SW
663
664 /* More than one destination + enough time passed by, cleanup */
1da177e4 665 if (atomic_read(&en->set.size) > 1 &&
c5549571 666 time_after(jiffies, en->set.lastmod +
b27d777e 667 sysctl_lblcr_expiration(svc))) {
ac69269a 668 spin_lock_bh(&svc->sched_lock);
c5549571
JA
669 if (atomic_read(&en->set.size) > 1) {
670 struct ip_vs_dest *m;
f728bafb 671
c5549571
JA
672 m = ip_vs_dest_set_max(&en->set);
673 if (m)
674 ip_vs_dest_set_erase(&en->set, m);
675 }
ac69269a 676 spin_unlock_bh(&svc->sched_lock);
f728bafb
SW
677 }
678
679 /* If the destination is not overloaded, use it */
c5549571 680 if (dest && !is_overloaded(dest, svc))
f728bafb 681 goto out;
f728bafb
SW
682
683 /* The cache entry is invalid, time to schedule */
44548375 684 dest = __ip_vs_lblcr_schedule(svc);
f728bafb 685 if (!dest) {
41ac51ee 686 ip_vs_scheduler_err(svc, "no destination available");
f728bafb 687 return NULL;
1da177e4 688 }
f728bafb
SW
689
690 /* Update our cache entry */
ac69269a 691 spin_lock_bh(&svc->sched_lock);
c5549571
JA
692 if (!tbl->dead)
693 ip_vs_dest_set_insert(&en->set, dest, true);
ac69269a 694 spin_unlock_bh(&svc->sched_lock);
f728bafb 695 goto out;
c5549571 696 }
f728bafb
SW
697
698 /* No cache entry, time to schedule */
44548375 699 dest = __ip_vs_lblcr_schedule(svc);
f728bafb
SW
700 if (!dest) {
701 IP_VS_DBG(1, "no destination available\n");
702 return NULL;
1da177e4 703 }
1da177e4 704
f728bafb 705 /* If we fail to create a cache entry, we'll just use the valid dest */
ac69269a 706 spin_lock_bh(&svc->sched_lock);
c5549571 707 if (!tbl->dead)
cf34e646 708 ip_vs_lblcr_new(tbl, &iph->daddr, svc->af, dest);
ac69269a 709 spin_unlock_bh(&svc->sched_lock);
f728bafb
SW
710
711out:
44548375 712 IP_VS_DBG_BUF(6, "LBLCR: destination IP address %s --> server %s:%d\n",
bba54de5 713 IP_VS_DBG_ADDR(svc->af, &iph->daddr),
cf34e646 714 IP_VS_DBG_ADDR(dest->af, &dest->addr), ntohs(dest->port));
1da177e4
LT
715
716 return dest;
717}
718
719
720/*
721 * IPVS LBLCR Scheduler structure
722 */
723static struct ip_vs_scheduler ip_vs_lblcr_scheduler =
724{
725 .name = "lblcr",
726 .refcnt = ATOMIC_INIT(0),
727 .module = THIS_MODULE,
d149ccc9 728 .n_list = LIST_HEAD_INIT(ip_vs_lblcr_scheduler.n_list),
1da177e4
LT
729 .init_service = ip_vs_lblcr_init_svc,
730 .done_service = ip_vs_lblcr_done_svc,
1da177e4
LT
731 .schedule = ip_vs_lblcr_schedule,
732};
733
61b1ab45
HS
734/*
735 * per netns init.
736 */
fb1de432 737#ifdef CONFIG_SYSCTL
61b1ab45
HS
738static int __net_init __ip_vs_lblcr_init(struct net *net)
739{
d0a1eef9
HS
740 struct netns_ipvs *ipvs = net_ipvs(net);
741
4b984cd5
HS
742 if (!ipvs)
743 return -ENOENT;
744
d0a1eef9
HS
745 if (!net_eq(net, &init_net)) {
746 ipvs->lblcr_ctl_table = kmemdup(vs_vars_table,
747 sizeof(vs_vars_table),
748 GFP_KERNEL);
749 if (ipvs->lblcr_ctl_table == NULL)
0443929f 750 return -ENOMEM;
464dc801
EB
751
752 /* Don't export sysctls to unprivileged users */
753 if (net->user_ns != &init_user_ns)
754 ipvs->lblcr_ctl_table[0].procname = NULL;
d0a1eef9
HS
755 } else
756 ipvs->lblcr_ctl_table = vs_vars_table;
b27d777e 757 ipvs->sysctl_lblcr_expiration = DEFAULT_EXPIRATION;
d0a1eef9
HS
758 ipvs->lblcr_ctl_table[0].data = &ipvs->sysctl_lblcr_expiration;
759
760 ipvs->lblcr_ctl_header =
ec8f23ce 761 register_net_sysctl(net, "net/ipv4/vs", ipvs->lblcr_ctl_table);
0443929f
SH
762 if (!ipvs->lblcr_ctl_header) {
763 if (!net_eq(net, &init_net))
764 kfree(ipvs->lblcr_ctl_table);
765 return -ENOMEM;
766 }
61b1ab45
HS
767
768 return 0;
769}
770
771static void __net_exit __ip_vs_lblcr_exit(struct net *net)
772{
d0a1eef9
HS
773 struct netns_ipvs *ipvs = net_ipvs(net);
774
775 unregister_net_sysctl_table(ipvs->lblcr_ctl_header);
61b1ab45 776
d0a1eef9
HS
777 if (!net_eq(net, &init_net))
778 kfree(ipvs->lblcr_ctl_table);
61b1ab45
HS
779}
780
fb1de432
SH
781#else
782
783static int __net_init __ip_vs_lblcr_init(struct net *net) { return 0; }
784static void __net_exit __ip_vs_lblcr_exit(struct net *net) { }
785
786#endif
787
61b1ab45
HS
788static struct pernet_operations ip_vs_lblcr_ops = {
789 .init = __ip_vs_lblcr_init,
790 .exit = __ip_vs_lblcr_exit,
791};
1da177e4
LT
792
793static int __init ip_vs_lblcr_init(void)
794{
a014bc8f
PE
795 int ret;
796
61b1ab45
HS
797 ret = register_pernet_subsys(&ip_vs_lblcr_ops);
798 if (ret)
799 return ret;
800
a014bc8f
PE
801 ret = register_ip_vs_scheduler(&ip_vs_lblcr_scheduler);
802 if (ret)
61b1ab45 803 unregister_pernet_subsys(&ip_vs_lblcr_ops);
a014bc8f 804 return ret;
1da177e4
LT
805}
806
1da177e4
LT
807static void __exit ip_vs_lblcr_cleanup(void)
808{
1da177e4 809 unregister_ip_vs_scheduler(&ip_vs_lblcr_scheduler);
61b1ab45 810 unregister_pernet_subsys(&ip_vs_lblcr_ops);
742617b1 811 rcu_barrier();
1da177e4
LT
812}
813
814
815module_init(ip_vs_lblcr_init);
816module_exit(ip_vs_lblcr_cleanup);
817MODULE_LICENSE("GPL");
This page took 0.883284 seconds and 5 git commands to generate.