blob: 98fb185d890bfe7f86b37ee9b4319ad6aca92e89 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * IPVS: Locality-Based Least-Connection scheduling module
3 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07004 * 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 * Martin Hamilton : fixed the terrible locking bugs
13 * *lock(tbl->lock) ==> *lock(&tbl->lock)
14 * Wensong Zhang : fixed the uninitilized tbl->lock bug
15 * Wensong Zhang : added doing full expiration check to
16 * collect stale entries of 24+ hours when
17 * no partial expire check in a half hour
18 * Julian Anastasov : replaced del_timer call with del_timer_sync
19 * to avoid the possible race between timer
20 * handler and del_timer thread in SMP
21 *
22 */
23
24/*
25 * The lblc algorithm is as follows (pseudo code):
26 *
27 * if cachenode[dest_ip] is null then
28 * n, cachenode[dest_ip] <- {weighted least-conn node};
29 * else
30 * n <- cachenode[dest_ip];
31 * if (n is dead) OR
32 * (n.conns>n.weight AND
33 * there is a node m with m.conns<m.weight/2) then
34 * n, cachenode[dest_ip] <- {weighted least-conn node};
35 *
36 * return n;
37 *
38 * Thanks must go to Wenzhuo Zhang for talking WCCP to me and pushing
39 * me to write this module.
40 */
41
Hannes Eder9aada7a2009-07-30 14:29:44 -070042#define KMSG_COMPONENT "IPVS"
43#define pr_fmt(fmt) KMSG_COMPONENT ": " fmt
44
Arnaldo Carvalho de Melo14c85022005-12-27 02:43:12 -020045#include <linux/ip.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070046#include <linux/module.h>
47#include <linux/kernel.h>
Arnaldo Carvalho de Melo14c85022005-12-27 02:43:12 -020048#include <linux/skbuff.h>
Al Virod7fe0f22006-12-03 23:15:30 -050049#include <linux/jiffies.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070050
51/* for sysctl */
52#include <linux/fs.h>
53#include <linux/sysctl.h>
54
55#include <net/ip_vs.h>
56
57
58/*
59 * It is for garbage collection of stale IPVS lblc entries,
60 * when the table is full.
61 */
62#define CHECK_EXPIRE_INTERVAL (60*HZ)
63#define ENTRY_TIMEOUT (6*60*HZ)
64
65/*
66 * It is for full expiration check.
67 * When there is no partial expiration check (garbage collection)
68 * in a half hour, do a full expiration check to collect stale
69 * entries that haven't been touched for a day.
70 */
71#define COUNT_FOR_FULL_EXPIRATION 30
72static int sysctl_ip_vs_lblc_expiration = 24*60*60*HZ;
73
74
75/*
76 * for IPVS lblc entry hash table
77 */
78#ifndef CONFIG_IP_VS_LBLC_TAB_BITS
79#define CONFIG_IP_VS_LBLC_TAB_BITS 10
80#endif
81#define IP_VS_LBLC_TAB_BITS CONFIG_IP_VS_LBLC_TAB_BITS
82#define IP_VS_LBLC_TAB_SIZE (1 << IP_VS_LBLC_TAB_BITS)
83#define IP_VS_LBLC_TAB_MASK (IP_VS_LBLC_TAB_SIZE - 1)
84
85
86/*
87 * IPVS lblc entry represents an association between destination
88 * IP address and its destination server
89 */
90struct ip_vs_lblc_entry {
91 struct list_head list;
Julius Volz44548372008-11-03 17:08:28 -080092 int af; /* address family */
93 union nf_inet_addr addr; /* destination IP address */
Linus Torvalds1da177e2005-04-16 15:20:36 -070094 struct ip_vs_dest *dest; /* real server (cache) */
95 unsigned long lastuse; /* last used time */
96};
97
98
99/*
100 * IPVS lblc hash table
101 */
102struct ip_vs_lblc_table {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700103 struct list_head bucket[IP_VS_LBLC_TAB_SIZE]; /* hash bucket */
104 atomic_t entries; /* number of entries */
105 int max_size; /* maximum size of entries */
106 struct timer_list periodic_timer; /* collect stale entries */
107 int rover; /* rover for expire check */
108 int counter; /* counter for no expire */
109};
110
111
112/*
113 * IPVS LBLC sysctl table
114 */
115
116static ctl_table vs_vars_table[] = {
117 {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700118 .procname = "lblc_expiration",
119 .data = &sysctl_ip_vs_lblc_expiration,
120 .maxlen = sizeof(int),
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +0900121 .mode = 0644,
Alexey Dobriyan6d9f2392008-11-03 18:21:05 -0800122 .proc_handler = proc_dointvec_jiffies,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700123 },
124 { .ctl_name = 0 }
125};
126
Linus Torvalds1da177e2005-04-16 15:20:36 -0700127static struct ctl_table_header * sysctl_header;
128
Linus Torvalds1da177e2005-04-16 15:20:36 -0700129static inline void ip_vs_lblc_free(struct ip_vs_lblc_entry *en)
130{
131 list_del(&en->list);
132 /*
133 * We don't kfree dest because it is refered either by its service
134 * or the trash dest list.
135 */
136 atomic_dec(&en->dest->refcnt);
137 kfree(en);
138}
139
140
141/*
142 * Returns hash value for IPVS LBLC entry
143 */
Julius Volz44548372008-11-03 17:08:28 -0800144static inline unsigned
145ip_vs_lblc_hashkey(int af, const union nf_inet_addr *addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700146{
Julius Volz44548372008-11-03 17:08:28 -0800147 __be32 addr_fold = addr->ip;
148
149#ifdef CONFIG_IP_VS_IPV6
150 if (af == AF_INET6)
151 addr_fold = addr->ip6[0]^addr->ip6[1]^
152 addr->ip6[2]^addr->ip6[3];
153#endif
154 return (ntohl(addr_fold)*2654435761UL) & IP_VS_LBLC_TAB_MASK;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700155}
156
157
158/*
159 * Hash an entry in the ip_vs_lblc_table.
160 * returns bool success.
161 */
Sven Wegener39ac50d2008-08-18 00:52:08 +0200162static void
Linus Torvalds1da177e2005-04-16 15:20:36 -0700163ip_vs_lblc_hash(struct ip_vs_lblc_table *tbl, struct ip_vs_lblc_entry *en)
164{
Julius Volz44548372008-11-03 17:08:28 -0800165 unsigned hash = ip_vs_lblc_hashkey(en->af, &en->addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700166
Linus Torvalds1da177e2005-04-16 15:20:36 -0700167 list_add(&en->list, &tbl->bucket[hash]);
168 atomic_inc(&tbl->entries);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700169}
170
171
Linus Torvalds1da177e2005-04-16 15:20:36 -0700172/*
Sven Wegener39ac50d2008-08-18 00:52:08 +0200173 * Get ip_vs_lblc_entry associated with supplied parameters. Called under read
174 * lock
Linus Torvalds1da177e2005-04-16 15:20:36 -0700175 */
176static inline struct ip_vs_lblc_entry *
Julius Volz44548372008-11-03 17:08:28 -0800177ip_vs_lblc_get(int af, struct ip_vs_lblc_table *tbl,
178 const union nf_inet_addr *addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700179{
Julius Volz44548372008-11-03 17:08:28 -0800180 unsigned hash = ip_vs_lblc_hashkey(af, addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700181 struct ip_vs_lblc_entry *en;
182
Sven Wegener39ac50d2008-08-18 00:52:08 +0200183 list_for_each_entry(en, &tbl->bucket[hash], list)
Julius Volz44548372008-11-03 17:08:28 -0800184 if (ip_vs_addr_equal(af, &en->addr, addr))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700185 return en;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700186
187 return NULL;
188}
189
190
191/*
Sven Wegener39ac50d2008-08-18 00:52:08 +0200192 * Create or update an ip_vs_lblc_entry, which is a mapping of a destination IP
193 * address to a server. Called under write lock.
194 */
195static inline struct ip_vs_lblc_entry *
Julius Volz44548372008-11-03 17:08:28 -0800196ip_vs_lblc_new(struct ip_vs_lblc_table *tbl, const union nf_inet_addr *daddr,
Sven Wegener39ac50d2008-08-18 00:52:08 +0200197 struct ip_vs_dest *dest)
198{
199 struct ip_vs_lblc_entry *en;
200
Julius Volz44548372008-11-03 17:08:28 -0800201 en = ip_vs_lblc_get(dest->af, tbl, daddr);
Sven Wegener39ac50d2008-08-18 00:52:08 +0200202 if (!en) {
203 en = kmalloc(sizeof(*en), GFP_ATOMIC);
204 if (!en) {
205 IP_VS_ERR("ip_vs_lblc_new(): no memory\n");
206 return NULL;
207 }
208
Julius Volz44548372008-11-03 17:08:28 -0800209 en->af = dest->af;
210 ip_vs_addr_copy(dest->af, &en->addr, daddr);
Sven Wegener39ac50d2008-08-18 00:52:08 +0200211 en->lastuse = jiffies;
212
213 atomic_inc(&dest->refcnt);
214 en->dest = dest;
215
216 ip_vs_lblc_hash(tbl, en);
217 } else if (en->dest != dest) {
218 atomic_dec(&en->dest->refcnt);
219 atomic_inc(&dest->refcnt);
220 en->dest = dest;
221 }
222
223 return en;
224}
225
226
227/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700228 * Flush all the entries of the specified table.
229 */
230static void ip_vs_lblc_flush(struct ip_vs_lblc_table *tbl)
231{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700232 struct ip_vs_lblc_entry *en, *nxt;
Sven Wegener39ac50d2008-08-18 00:52:08 +0200233 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700234
235 for (i=0; i<IP_VS_LBLC_TAB_SIZE; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700236 list_for_each_entry_safe(en, nxt, &tbl->bucket[i], list) {
237 ip_vs_lblc_free(en);
238 atomic_dec(&tbl->entries);
239 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700240 }
241}
242
243
Sven Wegener39ac50d2008-08-18 00:52:08 +0200244static inline void ip_vs_lblc_full_check(struct ip_vs_service *svc)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700245{
Sven Wegener39ac50d2008-08-18 00:52:08 +0200246 struct ip_vs_lblc_table *tbl = svc->sched_data;
247 struct ip_vs_lblc_entry *en, *nxt;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700248 unsigned long now = jiffies;
249 int i, j;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700250
251 for (i=0, j=tbl->rover; i<IP_VS_LBLC_TAB_SIZE; i++) {
252 j = (j + 1) & IP_VS_LBLC_TAB_MASK;
253
Sven Wegener39ac50d2008-08-18 00:52:08 +0200254 write_lock(&svc->sched_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700255 list_for_each_entry_safe(en, nxt, &tbl->bucket[j], list) {
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +0900256 if (time_before(now,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700257 en->lastuse + sysctl_ip_vs_lblc_expiration))
258 continue;
259
260 ip_vs_lblc_free(en);
261 atomic_dec(&tbl->entries);
262 }
Sven Wegener39ac50d2008-08-18 00:52:08 +0200263 write_unlock(&svc->sched_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700264 }
265 tbl->rover = j;
266}
267
268
269/*
270 * Periodical timer handler for IPVS lblc table
271 * It is used to collect stale entries when the number of entries
272 * exceeds the maximum size of the table.
273 *
274 * Fixme: we probably need more complicated algorithm to collect
275 * entries that have not been used for a long time even
276 * if the number of entries doesn't exceed the maximum size
277 * of the table.
278 * The full expiration check is for this purpose now.
279 */
280static void ip_vs_lblc_check_expire(unsigned long data)
281{
Sven Wegener39ac50d2008-08-18 00:52:08 +0200282 struct ip_vs_service *svc = (struct ip_vs_service *) data;
283 struct ip_vs_lblc_table *tbl = svc->sched_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700284 unsigned long now = jiffies;
285 int goal;
286 int i, j;
287 struct ip_vs_lblc_entry *en, *nxt;
288
Linus Torvalds1da177e2005-04-16 15:20:36 -0700289 if ((tbl->counter % COUNT_FOR_FULL_EXPIRATION) == 0) {
290 /* do full expiration check */
Sven Wegener39ac50d2008-08-18 00:52:08 +0200291 ip_vs_lblc_full_check(svc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700292 tbl->counter = 1;
293 goto out;
294 }
295
296 if (atomic_read(&tbl->entries) <= tbl->max_size) {
297 tbl->counter++;
298 goto out;
299 }
300
301 goal = (atomic_read(&tbl->entries) - tbl->max_size)*4/3;
302 if (goal > tbl->max_size/2)
303 goal = tbl->max_size/2;
304
305 for (i=0, j=tbl->rover; i<IP_VS_LBLC_TAB_SIZE; i++) {
306 j = (j + 1) & IP_VS_LBLC_TAB_MASK;
307
Sven Wegener39ac50d2008-08-18 00:52:08 +0200308 write_lock(&svc->sched_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700309 list_for_each_entry_safe(en, nxt, &tbl->bucket[j], list) {
310 if (time_before(now, en->lastuse + ENTRY_TIMEOUT))
311 continue;
312
313 ip_vs_lblc_free(en);
314 atomic_dec(&tbl->entries);
315 goal--;
316 }
Sven Wegener39ac50d2008-08-18 00:52:08 +0200317 write_unlock(&svc->sched_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700318 if (goal <= 0)
319 break;
320 }
321 tbl->rover = j;
322
323 out:
324 mod_timer(&tbl->periodic_timer, jiffies+CHECK_EXPIRE_INTERVAL);
325}
326
327
328static int ip_vs_lblc_init_svc(struct ip_vs_service *svc)
329{
330 int i;
331 struct ip_vs_lblc_table *tbl;
332
333 /*
334 * Allocate the ip_vs_lblc_table for this service
335 */
Sven Wegener39ac50d2008-08-18 00:52:08 +0200336 tbl = kmalloc(sizeof(*tbl), GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700337 if (tbl == NULL) {
338 IP_VS_ERR("ip_vs_lblc_init_svc(): no memory\n");
339 return -ENOMEM;
340 }
341 svc->sched_data = tbl;
342 IP_VS_DBG(6, "LBLC hash table (memory=%Zdbytes) allocated for "
Sven Wegener39ac50d2008-08-18 00:52:08 +0200343 "current service\n", sizeof(*tbl));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700344
345 /*
346 * Initialize the hash buckets
347 */
348 for (i=0; i<IP_VS_LBLC_TAB_SIZE; i++) {
349 INIT_LIST_HEAD(&tbl->bucket[i]);
350 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700351 tbl->max_size = IP_VS_LBLC_TAB_SIZE*16;
352 tbl->rover = 0;
353 tbl->counter = 1;
354
355 /*
356 * Hook periodic timer for garbage collection
357 */
Pavel Emelyanovb24b8a22008-01-23 21:20:07 -0800358 setup_timer(&tbl->periodic_timer, ip_vs_lblc_check_expire,
Sven Wegener39ac50d2008-08-18 00:52:08 +0200359 (unsigned long)svc);
360 mod_timer(&tbl->periodic_timer, jiffies + CHECK_EXPIRE_INTERVAL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700361
362 return 0;
363}
364
365
366static int ip_vs_lblc_done_svc(struct ip_vs_service *svc)
367{
368 struct ip_vs_lblc_table *tbl = svc->sched_data;
369
370 /* remove periodic timer */
371 del_timer_sync(&tbl->periodic_timer);
372
373 /* got to clean up table entries here */
374 ip_vs_lblc_flush(tbl);
375
376 /* release the table itself */
Sven Wegener39ac50d2008-08-18 00:52:08 +0200377 kfree(tbl);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700378 IP_VS_DBG(6, "LBLC hash table (memory=%Zdbytes) released\n",
Sven Wegener39ac50d2008-08-18 00:52:08 +0200379 sizeof(*tbl));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700380
381 return 0;
382}
383
384
Linus Torvalds1da177e2005-04-16 15:20:36 -0700385static inline struct ip_vs_dest *
Julius Volz44548372008-11-03 17:08:28 -0800386__ip_vs_lblc_schedule(struct ip_vs_service *svc)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700387{
388 struct ip_vs_dest *dest, *least;
389 int loh, doh;
390
391 /*
392 * We think the overhead of processing active connections is fifty
393 * times higher than that of inactive connections in average. (This
394 * fifty times might not be accurate, we will change it later.) We
395 * use the following formula to estimate the overhead:
396 * dest->activeconns*50 + dest->inactconns
397 * and the load:
398 * (dest overhead) / dest->weight
399 *
400 * Remember -- no floats in kernel mode!!!
401 * The comparison of h1*w2 > h2*w1 is equivalent to that of
402 * h1/w1 > h2/w2
403 * if every weight is larger than zero.
404 *
405 * The server with weight=0 is quiesced and will not receive any
406 * new connection.
407 */
408 list_for_each_entry(dest, &svc->destinations, n_list) {
409 if (dest->flags & IP_VS_DEST_F_OVERLOAD)
410 continue;
411 if (atomic_read(&dest->weight) > 0) {
412 least = dest;
413 loh = atomic_read(&least->activeconns) * 50
414 + atomic_read(&least->inactconns);
415 goto nextstage;
416 }
417 }
418 return NULL;
419
420 /*
421 * Find the destination with the least load.
422 */
423 nextstage:
424 list_for_each_entry_continue(dest, &svc->destinations, n_list) {
425 if (dest->flags & IP_VS_DEST_F_OVERLOAD)
426 continue;
427
428 doh = atomic_read(&dest->activeconns) * 50
429 + atomic_read(&dest->inactconns);
430 if (loh * atomic_read(&dest->weight) >
431 doh * atomic_read(&least->weight)) {
432 least = dest;
433 loh = doh;
434 }
435 }
436
Julius Volz44548372008-11-03 17:08:28 -0800437 IP_VS_DBG_BUF(6, "LBLC: server %s:%d "
438 "activeconns %d refcnt %d weight %d overhead %d\n",
439 IP_VS_DBG_ADDR(least->af, &least->addr),
440 ntohs(least->port),
441 atomic_read(&least->activeconns),
442 atomic_read(&least->refcnt),
443 atomic_read(&least->weight), loh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700444
445 return least;
446}
447
448
449/*
450 * If this destination server is overloaded and there is a less loaded
451 * server, then return true.
452 */
453static inline int
454is_overloaded(struct ip_vs_dest *dest, struct ip_vs_service *svc)
455{
456 if (atomic_read(&dest->activeconns) > atomic_read(&dest->weight)) {
457 struct ip_vs_dest *d;
458
459 list_for_each_entry(d, &svc->destinations, n_list) {
460 if (atomic_read(&d->activeconns)*2
461 < atomic_read(&d->weight)) {
462 return 1;
463 }
464 }
465 }
466 return 0;
467}
468
469
470/*
471 * Locality-Based (weighted) Least-Connection scheduling
472 */
473static struct ip_vs_dest *
474ip_vs_lblc_schedule(struct ip_vs_service *svc, const struct sk_buff *skb)
475{
Sven Wegener39ac50d2008-08-18 00:52:08 +0200476 struct ip_vs_lblc_table *tbl = svc->sched_data;
Julius Volz44548372008-11-03 17:08:28 -0800477 struct ip_vs_iphdr iph;
Sven Wegener39ac50d2008-08-18 00:52:08 +0200478 struct ip_vs_dest *dest = NULL;
479 struct ip_vs_lblc_entry *en;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700480
Julius Volz44548372008-11-03 17:08:28 -0800481 ip_vs_fill_iphdr(svc->af, skb_network_header(skb), &iph);
482
Linus Torvalds1da177e2005-04-16 15:20:36 -0700483 IP_VS_DBG(6, "ip_vs_lblc_schedule(): Scheduling...\n");
484
Sven Wegener39ac50d2008-08-18 00:52:08 +0200485 /* First look in our cache */
486 read_lock(&svc->sched_lock);
Julius Volz44548372008-11-03 17:08:28 -0800487 en = ip_vs_lblc_get(svc->af, tbl, &iph.daddr);
Sven Wegener39ac50d2008-08-18 00:52:08 +0200488 if (en) {
489 /* We only hold a read lock, but this is atomic */
490 en->lastuse = jiffies;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700491
Sven Wegener39ac50d2008-08-18 00:52:08 +0200492 /*
493 * If the destination is not available, i.e. it's in the trash,
494 * we must ignore it, as it may be removed from under our feet,
495 * if someone drops our reference count. Our caller only makes
496 * sure that destinations, that are not in the trash, are not
497 * moved to the trash, while we are scheduling. But anyone can
498 * free up entries from the trash at any time.
499 */
500
501 if (en->dest->flags & IP_VS_DEST_F_AVAILABLE)
502 dest = en->dest;
503 }
504 read_unlock(&svc->sched_lock);
505
506 /* If the destination has a weight and is not overloaded, use it */
507 if (dest && atomic_read(&dest->weight) > 0 && !is_overloaded(dest, svc))
508 goto out;
509
510 /* No cache entry or it is invalid, time to schedule */
Julius Volz44548372008-11-03 17:08:28 -0800511 dest = __ip_vs_lblc_schedule(svc);
Sven Wegener39ac50d2008-08-18 00:52:08 +0200512 if (!dest) {
Simon Horman68888d12008-12-29 18:37:36 -0800513 IP_VS_ERR_RL("LBLC: no destination available\n");
Sven Wegener39ac50d2008-08-18 00:52:08 +0200514 return NULL;
515 }
516
517 /* If we fail to create a cache entry, we'll just use the valid dest */
518 write_lock(&svc->sched_lock);
Julius Volz44548372008-11-03 17:08:28 -0800519 ip_vs_lblc_new(tbl, &iph.daddr, dest);
Sven Wegener39ac50d2008-08-18 00:52:08 +0200520 write_unlock(&svc->sched_lock);
521
522out:
Julius Volz44548372008-11-03 17:08:28 -0800523 IP_VS_DBG_BUF(6, "LBLC: destination IP address %s --> server %s:%d\n",
524 IP_VS_DBG_ADDR(svc->af, &iph.daddr),
525 IP_VS_DBG_ADDR(svc->af, &dest->addr), ntohs(dest->port));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700526
527 return dest;
528}
529
530
531/*
532 * IPVS LBLC Scheduler structure
533 */
534static struct ip_vs_scheduler ip_vs_lblc_scheduler =
535{
536 .name = "lblc",
537 .refcnt = ATOMIC_INIT(0),
538 .module = THIS_MODULE,
Sven Wegenerd149ccc2008-08-10 09:18:02 +0000539 .n_list = LIST_HEAD_INIT(ip_vs_lblc_scheduler.n_list),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700540 .init_service = ip_vs_lblc_init_svc,
541 .done_service = ip_vs_lblc_done_svc,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700542 .schedule = ip_vs_lblc_schedule,
543};
544
545
546static int __init ip_vs_lblc_init(void)
547{
Pavel Emelyanova014bc82007-12-04 00:43:24 -0800548 int ret;
549
Pavel Emelyanov90754f82008-01-12 02:33:50 -0800550 sysctl_header = register_sysctl_paths(net_vs_ctl_path, vs_vars_table);
Pavel Emelyanova014bc82007-12-04 00:43:24 -0800551 ret = register_ip_vs_scheduler(&ip_vs_lblc_scheduler);
552 if (ret)
553 unregister_sysctl_table(sysctl_header);
554 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700555}
556
557
558static void __exit ip_vs_lblc_cleanup(void)
559{
560 unregister_sysctl_table(sysctl_header);
561 unregister_ip_vs_scheduler(&ip_vs_lblc_scheduler);
562}
563
564
565module_init(ip_vs_lblc_init);
566module_exit(ip_vs_lblc_cleanup);
567MODULE_LICENSE("GPL");