blob: 43223586190839ffa92bc5a56e7ca7d37a58824e [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * IPVS An implementation of the IP virtual server support for the
3 * LINUX operating system. IPVS is now implemented as a module
4 * over the Netfilter framework. IPVS can be used to build a
5 * high-performance and highly available server based on a
6 * cluster of servers.
7 *
8 * Version: $Id: ip_vs_sched.c,v 1.13 2003/05/10 03:05:23 wensong Exp $
9 *
10 * Authors: Wensong Zhang <wensong@linuxvirtualserver.org>
11 * Peter Kese <peter.kese@ijs.si>
12 *
13 * This program is free software; you can redistribute it and/or
14 * modify it under the terms of the GNU General Public License
15 * as published by the Free Software Foundation; either version
16 * 2 of the License, or (at your option) any later version.
17 *
18 * Changes:
19 *
20 */
21
22#include <linux/module.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070023#include <linux/spinlock.h>
Adrian Bunk4ffd2e42006-01-05 12:14:43 -080024#include <linux/interrupt.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070025#include <asm/string.h>
26#include <linux/kmod.h>
27
28#include <net/ip_vs.h>
29
30/*
31 * IPVS scheduler list
32 */
33static LIST_HEAD(ip_vs_schedulers);
34
35/* lock for service table */
36static DEFINE_RWLOCK(__ip_vs_sched_lock);
37
38
39/*
40 * Bind a service with a scheduler
41 */
42int ip_vs_bind_scheduler(struct ip_vs_service *svc,
43 struct ip_vs_scheduler *scheduler)
44{
45 int ret;
46
47 if (svc == NULL) {
48 IP_VS_ERR("ip_vs_bind_scheduler(): svc arg NULL\n");
49 return -EINVAL;
50 }
51 if (scheduler == NULL) {
52 IP_VS_ERR("ip_vs_bind_scheduler(): scheduler arg NULL\n");
53 return -EINVAL;
54 }
55
56 svc->scheduler = scheduler;
57
58 if (scheduler->init_service) {
59 ret = scheduler->init_service(svc);
60 if (ret) {
61 IP_VS_ERR("ip_vs_bind_scheduler(): init error\n");
62 return ret;
63 }
64 }
65
66 return 0;
67}
68
69
70/*
71 * Unbind a service with its scheduler
72 */
73int ip_vs_unbind_scheduler(struct ip_vs_service *svc)
74{
75 struct ip_vs_scheduler *sched;
76
77 if (svc == NULL) {
78 IP_VS_ERR("ip_vs_unbind_scheduler(): svc arg NULL\n");
79 return -EINVAL;
80 }
81
82 sched = svc->scheduler;
83 if (sched == NULL) {
84 IP_VS_ERR("ip_vs_unbind_scheduler(): svc isn't bound\n");
85 return -EINVAL;
86 }
87
88 if (sched->done_service) {
89 if (sched->done_service(svc) != 0) {
90 IP_VS_ERR("ip_vs_unbind_scheduler(): done error\n");
91 return -EINVAL;
92 }
93 }
94
95 svc->scheduler = NULL;
96 return 0;
97}
98
99
100/*
101 * Get scheduler in the scheduler list by name
102 */
103static struct ip_vs_scheduler *ip_vs_sched_getbyname(const char *sched_name)
104{
105 struct ip_vs_scheduler *sched;
106
107 IP_VS_DBG(2, "ip_vs_sched_getbyname(): sched_name \"%s\"\n",
108 sched_name);
109
110 read_lock_bh(&__ip_vs_sched_lock);
111
112 list_for_each_entry(sched, &ip_vs_schedulers, n_list) {
113 /*
114 * Test and get the modules atomically
115 */
116 if (sched->module && !try_module_get(sched->module)) {
117 /*
118 * This scheduler is just deleted
119 */
120 continue;
121 }
122 if (strcmp(sched_name, sched->name)==0) {
123 /* HIT */
124 read_unlock_bh(&__ip_vs_sched_lock);
125 return sched;
126 }
127 if (sched->module)
128 module_put(sched->module);
129 }
130
131 read_unlock_bh(&__ip_vs_sched_lock);
132 return NULL;
133}
134
135
136/*
137 * Lookup scheduler and try to load it if it doesn't exist
138 */
139struct ip_vs_scheduler *ip_vs_scheduler_get(const char *sched_name)
140{
141 struct ip_vs_scheduler *sched;
142
143 /*
144 * Search for the scheduler by sched_name
145 */
146 sched = ip_vs_sched_getbyname(sched_name);
147
148 /*
149 * If scheduler not found, load the module and search again
150 */
151 if (sched == NULL) {
152 request_module("ip_vs_%s", sched_name);
153 sched = ip_vs_sched_getbyname(sched_name);
154 }
155
156 return sched;
157}
158
159void ip_vs_scheduler_put(struct ip_vs_scheduler *scheduler)
160{
161 if (scheduler->module)
162 module_put(scheduler->module);
163}
164
165
166/*
167 * Register a scheduler in the scheduler list
168 */
169int register_ip_vs_scheduler(struct ip_vs_scheduler *scheduler)
170{
171 struct ip_vs_scheduler *sched;
172
173 if (!scheduler) {
174 IP_VS_ERR("register_ip_vs_scheduler(): NULL arg\n");
175 return -EINVAL;
176 }
177
178 if (!scheduler->name) {
179 IP_VS_ERR("register_ip_vs_scheduler(): NULL scheduler_name\n");
180 return -EINVAL;
181 }
182
183 /* increase the module use count */
184 ip_vs_use_count_inc();
185
Linus Torvalds1da177e2005-04-16 15:20:36 -0700186 write_lock_bh(&__ip_vs_sched_lock);
187
188 if (scheduler->n_list.next != &scheduler->n_list) {
189 write_unlock_bh(&__ip_vs_sched_lock);
190 ip_vs_use_count_dec();
191 IP_VS_ERR("register_ip_vs_scheduler(): [%s] scheduler "
192 "already linked\n", scheduler->name);
193 return -EINVAL;
194 }
195
196 /*
Pavel Emelyanov4ac63ad62007-12-04 00:45:06 -0800197 * Make sure that the scheduler with this name doesn't exist
198 * in the scheduler list.
199 */
200 list_for_each_entry(sched, &ip_vs_schedulers, n_list) {
201 if (strcmp(scheduler->name, sched->name) == 0) {
202 write_unlock_bh(&__ip_vs_sched_lock);
203 ip_vs_use_count_dec();
204 IP_VS_ERR("register_ip_vs_scheduler(): [%s] scheduler "
205 "already existed in the system\n",
206 scheduler->name);
207 return -EINVAL;
208 }
209 }
210 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700211 * Add it into the d-linked scheduler list
212 */
213 list_add(&scheduler->n_list, &ip_vs_schedulers);
214 write_unlock_bh(&__ip_vs_sched_lock);
215
216 IP_VS_INFO("[%s] scheduler registered.\n", scheduler->name);
217
218 return 0;
219}
220
221
222/*
223 * Unregister a scheduler from the scheduler list
224 */
225int unregister_ip_vs_scheduler(struct ip_vs_scheduler *scheduler)
226{
227 if (!scheduler) {
228 IP_VS_ERR( "unregister_ip_vs_scheduler(): NULL arg\n");
229 return -EINVAL;
230 }
231
232 write_lock_bh(&__ip_vs_sched_lock);
233 if (scheduler->n_list.next == &scheduler->n_list) {
234 write_unlock_bh(&__ip_vs_sched_lock);
235 IP_VS_ERR("unregister_ip_vs_scheduler(): [%s] scheduler "
236 "is not in the list. failed\n", scheduler->name);
237 return -EINVAL;
238 }
239
240 /*
241 * Remove it from the d-linked scheduler list
242 */
243 list_del(&scheduler->n_list);
244 write_unlock_bh(&__ip_vs_sched_lock);
245
246 /* decrease the module use count */
247 ip_vs_use_count_dec();
248
249 IP_VS_INFO("[%s] scheduler unregistered.\n", scheduler->name);
250
251 return 0;
252}