blob: 176b87c35e34ea2b438739d21a3439f1ebade995 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * IPVS: Round-Robin 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 * Fixes/Changes:
13 * Wensong Zhang : changed the ip_vs_rr_schedule to return dest
14 * Julian Anastasov : fixed the NULL pointer access bug in debugging
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_rr_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
30
31static int ip_vs_rr_init_svc(struct ip_vs_service *svc)
32{
33 svc->sched_data = &svc->destinations;
34 return 0;
35}
36
37
Julian Anastasovc0d0c0a2013-03-22 11:46:44 +020038static int ip_vs_rr_del_dest(struct ip_vs_service *svc, struct ip_vs_dest *dest)
Linus Torvalds1da177e2005-04-16 15:20:36 -070039{
Julian Anastasovc0d0c0a2013-03-22 11:46:44 +020040 struct list_head *p;
41
Julian Anastasovba3a3ce2013-03-22 11:46:51 +020042 spin_lock_bh(&svc->sched_lock);
Julian Anastasovc0d0c0a2013-03-22 11:46:44 +020043 p = (struct list_head *) svc->sched_data;
44 /* dest is already unlinked, so p->prev is not valid but
45 * p->next is valid, use it to reach previous entry.
46 */
47 if (p == &dest->n_list)
48 svc->sched_data = p->next->prev;
Julian Anastasovba3a3ce2013-03-22 11:46:51 +020049 spin_unlock_bh(&svc->sched_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -070050 return 0;
51}
52
53
54/*
55 * Round-Robin Scheduling
56 */
57static struct ip_vs_dest *
Julian Anastasovbba54de2013-06-16 09:09:36 +030058ip_vs_rr_schedule(struct ip_vs_service *svc, const struct sk_buff *skb,
59 struct ip_vs_iphdr *iph)
Linus Torvalds1da177e2005-04-16 15:20:36 -070060{
Julian Anastasovc0d0c0a2013-03-22 11:46:44 +020061 struct list_head *p;
62 struct ip_vs_dest *dest, *last;
63 int pass = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -070064
Hannes Eder1e3e2382009-08-02 11:05:41 +000065 IP_VS_DBG(6, "%s(): Scheduling...\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -070066
Julian Anastasovac692692013-03-22 11:46:54 +020067 spin_lock_bh(&svc->sched_lock);
Julian Anastasovc0d0c0a2013-03-22 11:46:44 +020068 p = (struct list_head *) svc->sched_data;
69 last = dest = list_entry(p, struct ip_vs_dest, n_list);
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +090070
Julian Anastasovc0d0c0a2013-03-22 11:46:44 +020071 do {
72 list_for_each_entry_continue_rcu(dest,
73 &svc->destinations,
74 n_list) {
75 if (!(dest->flags & IP_VS_DEST_F_OVERLOAD) &&
76 atomic_read(&dest->weight) > 0)
77 /* HIT */
78 goto out;
79 if (dest == last)
80 goto stop;
81 }
82 pass++;
83 /* Previous dest could be unlinked, do not loop forever.
84 * If we stay at head there is no need for 2nd pass.
85 */
86 } while (pass < 2 && p != &svc->destinations);
87
88stop:
Julian Anastasovac692692013-03-22 11:46:54 +020089 spin_unlock_bh(&svc->sched_lock);
Patrick Schaaf41ac51e2011-02-11 14:01:12 +010090 ip_vs_scheduler_err(svc, "no destination available");
Linus Torvalds1da177e2005-04-16 15:20:36 -070091 return NULL;
92
93 out:
Julian Anastasovc0d0c0a2013-03-22 11:46:44 +020094 svc->sched_data = &dest->n_list;
Julian Anastasovac692692013-03-22 11:46:54 +020095 spin_unlock_bh(&svc->sched_lock);
Julius Volzb14198f2008-09-02 15:55:39 +020096 IP_VS_DBG_BUF(6, "RR: server %s:%u "
97 "activeconns %d refcnt %d weight %d\n",
98 IP_VS_DBG_ADDR(svc->af, &dest->addr), ntohs(dest->port),
99 atomic_read(&dest->activeconns),
100 atomic_read(&dest->refcnt), atomic_read(&dest->weight));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700101
102 return dest;
103}
104
105
106static struct ip_vs_scheduler ip_vs_rr_scheduler = {
107 .name = "rr", /* name */
108 .refcnt = ATOMIC_INIT(0),
109 .module = THIS_MODULE,
Sven Wegenerd149ccc2008-08-10 09:18:02 +0000110 .n_list = LIST_HEAD_INIT(ip_vs_rr_scheduler.n_list),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700111 .init_service = ip_vs_rr_init_svc,
Julian Anastasovc0d0c0a2013-03-22 11:46:44 +0200112 .add_dest = NULL,
113 .del_dest = ip_vs_rr_del_dest,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700114 .schedule = ip_vs_rr_schedule,
115};
116
117static int __init ip_vs_rr_init(void)
118{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700119 return register_ip_vs_scheduler(&ip_vs_rr_scheduler);
120}
121
122static void __exit ip_vs_rr_cleanup(void)
123{
124 unregister_ip_vs_scheduler(&ip_vs_rr_scheduler);
Julian Anastasovceec4c32013-03-22 11:46:53 +0200125 synchronize_rcu();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700126}
127
128module_init(ip_vs_rr_init);
129module_exit(ip_vs_rr_cleanup);
130MODULE_LICENSE("GPL");