blob: 6dc1fa1288409067de8a19f53a32e174caa9adc9 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * IPVS: Weighted Least-Connection Scheduling module
3 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07004 * Authors: Wensong Zhang <wensong@linuxvirtualserver.org>
5 * Peter Kese <peter.kese@ijs.si>
6 *
7 * This program is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU General Public License
9 * as published by the Free Software Foundation; either version
10 * 2 of the License, or (at your option) any later version.
11 *
12 * Changes:
13 * Wensong Zhang : changed the ip_vs_wlc_schedule to return dest
14 * Wensong Zhang : changed to use the inactconns in scheduling
15 * Wensong Zhang : changed some comestics things for debugging
16 * Wensong Zhang : changed for the d-linked destination list
17 * Wensong Zhang : added the ip_vs_wlc_update_svc
18 * Wensong Zhang : added any dest with weight=0 is quiesced
19 *
20 */
21
Hannes Eder9aada7a2009-07-30 14:29:44 -070022#define KMSG_COMPONENT "IPVS"
23#define pr_fmt(fmt) KMSG_COMPONENT ": " fmt
24
Linus Torvalds1da177e2005-04-16 15:20:36 -070025#include <linux/module.h>
26#include <linux/kernel.h>
27
28#include <net/ip_vs.h>
29
Linus Torvalds1da177e2005-04-16 15:20:36 -070030/*
31 * Weighted Least Connection scheduling
32 */
33static struct ip_vs_dest *
Julian Anastasovbba54de2013-06-16 09:09:36 +030034ip_vs_wlc_schedule(struct ip_vs_service *svc, const struct sk_buff *skb,
35 struct ip_vs_iphdr *iph)
Linus Torvalds1da177e2005-04-16 15:20:36 -070036{
37 struct ip_vs_dest *dest, *least;
38 unsigned int loh, doh;
39
40 IP_VS_DBG(6, "ip_vs_wlc_schedule(): Scheduling...\n");
41
42 /*
43 * We calculate the load of each dest server as follows:
44 * (dest overhead) / dest->weight
45 *
46 * Remember -- no floats in kernel mode!!!
47 * The comparison of h1*w2 > h2*w1 is equivalent to that of
48 * h1/w1 > h2/w2
49 * if every weight is larger than zero.
50 *
51 * The server with weight=0 is quiesced and will not receive any
52 * new connections.
53 */
54
Julian Anastasovb310faa2013-03-22 11:46:47 +020055 list_for_each_entry_rcu(dest, &svc->destinations, n_list) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070056 if (!(dest->flags & IP_VS_DEST_F_OVERLOAD) &&
57 atomic_read(&dest->weight) > 0) {
58 least = dest;
Changli Gaob552f7e2011-02-19 17:32:28 +080059 loh = ip_vs_dest_conn_overhead(least);
Linus Torvalds1da177e2005-04-16 15:20:36 -070060 goto nextstage;
61 }
62 }
Patrick Schaaf41ac51e2011-02-11 14:01:12 +010063 ip_vs_scheduler_err(svc, "no destination available");
Linus Torvalds1da177e2005-04-16 15:20:36 -070064 return NULL;
65
66 /*
67 * Find the destination with the least load.
68 */
69 nextstage:
Julian Anastasovb310faa2013-03-22 11:46:47 +020070 list_for_each_entry_continue_rcu(dest, &svc->destinations, n_list) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070071 if (dest->flags & IP_VS_DEST_F_OVERLOAD)
72 continue;
Changli Gaob552f7e2011-02-19 17:32:28 +080073 doh = ip_vs_dest_conn_overhead(dest);
Linus Torvalds1da177e2005-04-16 15:20:36 -070074 if (loh * atomic_read(&dest->weight) >
75 doh * atomic_read(&least->weight)) {
76 least = dest;
77 loh = doh;
78 }
79 }
80
Julius Volzb14198f2008-09-02 15:55:39 +020081 IP_VS_DBG_BUF(6, "WLC: server %s:%u "
82 "activeconns %d refcnt %d weight %d overhead %d\n",
83 IP_VS_DBG_ADDR(svc->af, &least->addr), ntohs(least->port),
84 atomic_read(&least->activeconns),
85 atomic_read(&least->refcnt),
86 atomic_read(&least->weight), loh);
Linus Torvalds1da177e2005-04-16 15:20:36 -070087
88 return least;
89}
90
91
92static struct ip_vs_scheduler ip_vs_wlc_scheduler =
93{
94 .name = "wlc",
95 .refcnt = ATOMIC_INIT(0),
96 .module = THIS_MODULE,
Sven Wegenerd149ccc2008-08-10 09:18:02 +000097 .n_list = LIST_HEAD_INIT(ip_vs_wlc_scheduler.n_list),
Linus Torvalds1da177e2005-04-16 15:20:36 -070098 .schedule = ip_vs_wlc_schedule,
99};
100
101
102static int __init ip_vs_wlc_init(void)
103{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700104 return register_ip_vs_scheduler(&ip_vs_wlc_scheduler);
105}
106
107static void __exit ip_vs_wlc_cleanup(void)
108{
109 unregister_ip_vs_scheduler(&ip_vs_wlc_scheduler);
Julian Anastasovceec4c32013-03-22 11:46:53 +0200110 synchronize_rcu();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700111}
112
113module_init(ip_vs_wlc_init);
114module_exit(ip_vs_wlc_cleanup);
115MODULE_LICENSE("GPL");