6bf7a807649c15833f8cf46d94e87e0f839d2d19
[GitHub/mt8127/android_kernel_alcatel_ttab.git] / net / netfilter / ipvs / ip_vs_lblc.c
1 /*
2 * IPVS: Locality-Based Least-Connection scheduling module
3 *
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 * Martin Hamilton : fixed the terrible locking bugs
13 * *lock(tbl->lock) ==> *lock(&tbl->lock)
14 * Wensong Zhang : fixed the uninitialized 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
42 #define KMSG_COMPONENT "IPVS"
43 #define pr_fmt(fmt) KMSG_COMPONENT ": " fmt
44
45 #include <linux/ip.h>
46 #include <linux/slab.h>
47 #include <linux/module.h>
48 #include <linux/kernel.h>
49 #include <linux/skbuff.h>
50 #include <linux/jiffies.h>
51
52 /* for sysctl */
53 #include <linux/fs.h>
54 #include <linux/sysctl.h>
55
56 #include <net/ip_vs.h>
57
58
59 /*
60 * It is for garbage collection of stale IPVS lblc entries,
61 * when the table is full.
62 */
63 #define CHECK_EXPIRE_INTERVAL (60*HZ)
64 #define ENTRY_TIMEOUT (6*60*HZ)
65
66 /*
67 * It is for full expiration check.
68 * When there is no partial expiration check (garbage collection)
69 * in a half hour, do a full expiration check to collect stale
70 * entries that haven't been touched for a day.
71 */
72 #define COUNT_FOR_FULL_EXPIRATION 30
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 */
90 struct ip_vs_lblc_entry {
91 struct list_head list;
92 int af; /* address family */
93 union nf_inet_addr addr; /* destination IP address */
94 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 */
102 struct ip_vs_lblc_table {
103 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
116 static ctl_table vs_vars_table[] = {
117 {
118 .procname = "lblc_expiration",
119 .data = NULL,
120 .maxlen = sizeof(int),
121 .mode = 0644,
122 .proc_handler = proc_dointvec_jiffies,
123 },
124 { }
125 };
126
127 static inline void ip_vs_lblc_free(struct ip_vs_lblc_entry *en)
128 {
129 list_del(&en->list);
130 /*
131 * We don't kfree dest because it is refered either by its service
132 * or the trash dest list.
133 */
134 atomic_dec(&en->dest->refcnt);
135 kfree(en);
136 }
137
138
139 /*
140 * Returns hash value for IPVS LBLC entry
141 */
142 static inline unsigned
143 ip_vs_lblc_hashkey(int af, const union nf_inet_addr *addr)
144 {
145 __be32 addr_fold = addr->ip;
146
147 #ifdef CONFIG_IP_VS_IPV6
148 if (af == AF_INET6)
149 addr_fold = addr->ip6[0]^addr->ip6[1]^
150 addr->ip6[2]^addr->ip6[3];
151 #endif
152 return (ntohl(addr_fold)*2654435761UL) & IP_VS_LBLC_TAB_MASK;
153 }
154
155
156 /*
157 * Hash an entry in the ip_vs_lblc_table.
158 * returns bool success.
159 */
160 static void
161 ip_vs_lblc_hash(struct ip_vs_lblc_table *tbl, struct ip_vs_lblc_entry *en)
162 {
163 unsigned hash = ip_vs_lblc_hashkey(en->af, &en->addr);
164
165 list_add(&en->list, &tbl->bucket[hash]);
166 atomic_inc(&tbl->entries);
167 }
168
169
170 /*
171 * Get ip_vs_lblc_entry associated with supplied parameters. Called under read
172 * lock
173 */
174 static inline struct ip_vs_lblc_entry *
175 ip_vs_lblc_get(int af, struct ip_vs_lblc_table *tbl,
176 const union nf_inet_addr *addr)
177 {
178 unsigned hash = ip_vs_lblc_hashkey(af, addr);
179 struct ip_vs_lblc_entry *en;
180
181 list_for_each_entry(en, &tbl->bucket[hash], list)
182 if (ip_vs_addr_equal(af, &en->addr, addr))
183 return en;
184
185 return NULL;
186 }
187
188
189 /*
190 * Create or update an ip_vs_lblc_entry, which is a mapping of a destination IP
191 * address to a server. Called under write lock.
192 */
193 static inline struct ip_vs_lblc_entry *
194 ip_vs_lblc_new(struct ip_vs_lblc_table *tbl, const union nf_inet_addr *daddr,
195 struct ip_vs_dest *dest)
196 {
197 struct ip_vs_lblc_entry *en;
198
199 en = ip_vs_lblc_get(dest->af, tbl, daddr);
200 if (!en) {
201 en = kmalloc(sizeof(*en), GFP_ATOMIC);
202 if (!en) {
203 pr_err("%s(): no memory\n", __func__);
204 return NULL;
205 }
206
207 en->af = dest->af;
208 ip_vs_addr_copy(dest->af, &en->addr, daddr);
209 en->lastuse = jiffies;
210
211 atomic_inc(&dest->refcnt);
212 en->dest = dest;
213
214 ip_vs_lblc_hash(tbl, en);
215 } else if (en->dest != dest) {
216 atomic_dec(&en->dest->refcnt);
217 atomic_inc(&dest->refcnt);
218 en->dest = dest;
219 }
220
221 return en;
222 }
223
224
225 /*
226 * Flush all the entries of the specified table.
227 */
228 static void ip_vs_lblc_flush(struct ip_vs_lblc_table *tbl)
229 {
230 struct ip_vs_lblc_entry *en, *nxt;
231 int i;
232
233 for (i=0; i<IP_VS_LBLC_TAB_SIZE; i++) {
234 list_for_each_entry_safe(en, nxt, &tbl->bucket[i], list) {
235 ip_vs_lblc_free(en);
236 atomic_dec(&tbl->entries);
237 }
238 }
239 }
240
241
242 static inline void ip_vs_lblc_full_check(struct ip_vs_service *svc)
243 {
244 struct ip_vs_lblc_table *tbl = svc->sched_data;
245 struct ip_vs_lblc_entry *en, *nxt;
246 unsigned long now = jiffies;
247 int i, j;
248 struct netns_ipvs *ipvs = net_ipvs(svc->net);
249
250 for (i=0, j=tbl->rover; i<IP_VS_LBLC_TAB_SIZE; i++) {
251 j = (j + 1) & IP_VS_LBLC_TAB_MASK;
252
253 write_lock(&svc->sched_lock);
254 list_for_each_entry_safe(en, nxt, &tbl->bucket[j], list) {
255 if (time_before(now,
256 en->lastuse +
257 ipvs->sysctl_lblc_expiration))
258 continue;
259
260 ip_vs_lblc_free(en);
261 atomic_dec(&tbl->entries);
262 }
263 write_unlock(&svc->sched_lock);
264 }
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 */
280 static void ip_vs_lblc_check_expire(unsigned long data)
281 {
282 struct ip_vs_service *svc = (struct ip_vs_service *) data;
283 struct ip_vs_lblc_table *tbl = svc->sched_data;
284 unsigned long now = jiffies;
285 int goal;
286 int i, j;
287 struct ip_vs_lblc_entry *en, *nxt;
288
289 if ((tbl->counter % COUNT_FOR_FULL_EXPIRATION) == 0) {
290 /* do full expiration check */
291 ip_vs_lblc_full_check(svc);
292 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
308 write_lock(&svc->sched_lock);
309 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 }
317 write_unlock(&svc->sched_lock);
318 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
328 static 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 */
336 tbl = kmalloc(sizeof(*tbl), GFP_ATOMIC);
337 if (tbl == NULL) {
338 pr_err("%s(): no memory\n", __func__);
339 return -ENOMEM;
340 }
341 svc->sched_data = tbl;
342 IP_VS_DBG(6, "LBLC hash table (memory=%Zdbytes) allocated for "
343 "current service\n", sizeof(*tbl));
344
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 }
351 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 */
358 setup_timer(&tbl->periodic_timer, ip_vs_lblc_check_expire,
359 (unsigned long)svc);
360 mod_timer(&tbl->periodic_timer, jiffies + CHECK_EXPIRE_INTERVAL);
361
362 return 0;
363 }
364
365
366 static 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 */
377 kfree(tbl);
378 IP_VS_DBG(6, "LBLC hash table (memory=%Zdbytes) released\n",
379 sizeof(*tbl));
380
381 return 0;
382 }
383
384
385 static inline struct ip_vs_dest *
386 __ip_vs_lblc_schedule(struct ip_vs_service *svc)
387 {
388 struct ip_vs_dest *dest, *least;
389 int loh, doh;
390
391 /*
392 * We use the following formula to estimate the load:
393 * (dest overhead) / dest->weight
394 *
395 * Remember -- no floats in kernel mode!!!
396 * The comparison of h1*w2 > h2*w1 is equivalent to that of
397 * h1/w1 > h2/w2
398 * if every weight is larger than zero.
399 *
400 * The server with weight=0 is quiesced and will not receive any
401 * new connection.
402 */
403 list_for_each_entry(dest, &svc->destinations, n_list) {
404 if (dest->flags & IP_VS_DEST_F_OVERLOAD)
405 continue;
406 if (atomic_read(&dest->weight) > 0) {
407 least = dest;
408 loh = ip_vs_dest_conn_overhead(least);
409 goto nextstage;
410 }
411 }
412 return NULL;
413
414 /*
415 * Find the destination with the least load.
416 */
417 nextstage:
418 list_for_each_entry_continue(dest, &svc->destinations, n_list) {
419 if (dest->flags & IP_VS_DEST_F_OVERLOAD)
420 continue;
421
422 doh = ip_vs_dest_conn_overhead(dest);
423 if (loh * atomic_read(&dest->weight) >
424 doh * atomic_read(&least->weight)) {
425 least = dest;
426 loh = doh;
427 }
428 }
429
430 IP_VS_DBG_BUF(6, "LBLC: server %s:%d "
431 "activeconns %d refcnt %d weight %d overhead %d\n",
432 IP_VS_DBG_ADDR(least->af, &least->addr),
433 ntohs(least->port),
434 atomic_read(&least->activeconns),
435 atomic_read(&least->refcnt),
436 atomic_read(&least->weight), loh);
437
438 return least;
439 }
440
441
442 /*
443 * If this destination server is overloaded and there is a less loaded
444 * server, then return true.
445 */
446 static inline int
447 is_overloaded(struct ip_vs_dest *dest, struct ip_vs_service *svc)
448 {
449 if (atomic_read(&dest->activeconns) > atomic_read(&dest->weight)) {
450 struct ip_vs_dest *d;
451
452 list_for_each_entry(d, &svc->destinations, n_list) {
453 if (atomic_read(&d->activeconns)*2
454 < atomic_read(&d->weight)) {
455 return 1;
456 }
457 }
458 }
459 return 0;
460 }
461
462
463 /*
464 * Locality-Based (weighted) Least-Connection scheduling
465 */
466 static struct ip_vs_dest *
467 ip_vs_lblc_schedule(struct ip_vs_service *svc, const struct sk_buff *skb)
468 {
469 struct ip_vs_lblc_table *tbl = svc->sched_data;
470 struct ip_vs_iphdr iph;
471 struct ip_vs_dest *dest = NULL;
472 struct ip_vs_lblc_entry *en;
473
474 ip_vs_fill_iphdr(svc->af, skb_network_header(skb), &iph);
475
476 IP_VS_DBG(6, "%s(): Scheduling...\n", __func__);
477
478 /* First look in our cache */
479 read_lock(&svc->sched_lock);
480 en = ip_vs_lblc_get(svc->af, tbl, &iph.daddr);
481 if (en) {
482 /* We only hold a read lock, but this is atomic */
483 en->lastuse = jiffies;
484
485 /*
486 * If the destination is not available, i.e. it's in the trash,
487 * we must ignore it, as it may be removed from under our feet,
488 * if someone drops our reference count. Our caller only makes
489 * sure that destinations, that are not in the trash, are not
490 * moved to the trash, while we are scheduling. But anyone can
491 * free up entries from the trash at any time.
492 */
493
494 if (en->dest->flags & IP_VS_DEST_F_AVAILABLE)
495 dest = en->dest;
496 }
497 read_unlock(&svc->sched_lock);
498
499 /* If the destination has a weight and is not overloaded, use it */
500 if (dest && atomic_read(&dest->weight) > 0 && !is_overloaded(dest, svc))
501 goto out;
502
503 /* No cache entry or it is invalid, time to schedule */
504 dest = __ip_vs_lblc_schedule(svc);
505 if (!dest) {
506 ip_vs_scheduler_err(svc, "no destination available");
507 return NULL;
508 }
509
510 /* If we fail to create a cache entry, we'll just use the valid dest */
511 write_lock(&svc->sched_lock);
512 ip_vs_lblc_new(tbl, &iph.daddr, dest);
513 write_unlock(&svc->sched_lock);
514
515 out:
516 IP_VS_DBG_BUF(6, "LBLC: destination IP address %s --> server %s:%d\n",
517 IP_VS_DBG_ADDR(svc->af, &iph.daddr),
518 IP_VS_DBG_ADDR(svc->af, &dest->addr), ntohs(dest->port));
519
520 return dest;
521 }
522
523
524 /*
525 * IPVS LBLC Scheduler structure
526 */
527 static struct ip_vs_scheduler ip_vs_lblc_scheduler =
528 {
529 .name = "lblc",
530 .refcnt = ATOMIC_INIT(0),
531 .module = THIS_MODULE,
532 .n_list = LIST_HEAD_INIT(ip_vs_lblc_scheduler.n_list),
533 .init_service = ip_vs_lblc_init_svc,
534 .done_service = ip_vs_lblc_done_svc,
535 .schedule = ip_vs_lblc_schedule,
536 };
537
538 /*
539 * per netns init.
540 */
541 static int __net_init __ip_vs_lblc_init(struct net *net)
542 {
543 struct netns_ipvs *ipvs = net_ipvs(net);
544
545 if (!net_eq(net, &init_net)) {
546 ipvs->lblc_ctl_table = kmemdup(vs_vars_table,
547 sizeof(vs_vars_table),
548 GFP_KERNEL);
549 if (ipvs->lblc_ctl_table == NULL)
550 return -ENOMEM;
551 } else
552 ipvs->lblc_ctl_table = vs_vars_table;
553 ipvs->sysctl_lblc_expiration = 24*60*60*HZ;
554 ipvs->lblc_ctl_table[0].data = &ipvs->sysctl_lblc_expiration;
555
556 #ifdef CONFIG_SYSCTL
557 ipvs->lblc_ctl_header =
558 register_net_sysctl_table(net, net_vs_ctl_path,
559 ipvs->lblc_ctl_table);
560 if (!ipvs->lblc_ctl_header) {
561 if (!net_eq(net, &init_net))
562 kfree(ipvs->lblc_ctl_table);
563 return -ENOMEM;
564 }
565 #endif
566
567 return 0;
568 }
569
570 static void __net_exit __ip_vs_lblc_exit(struct net *net)
571 {
572 struct netns_ipvs *ipvs = net_ipvs(net);
573
574 #ifdef CONFIG_SYSCTL
575 unregister_net_sysctl_table(ipvs->lblc_ctl_header);
576 #endif
577
578 if (!net_eq(net, &init_net))
579 kfree(ipvs->lblc_ctl_table);
580 }
581
582 static struct pernet_operations ip_vs_lblc_ops = {
583 .init = __ip_vs_lblc_init,
584 .exit = __ip_vs_lblc_exit,
585 };
586
587 static int __init ip_vs_lblc_init(void)
588 {
589 int ret;
590
591 ret = register_pernet_subsys(&ip_vs_lblc_ops);
592 if (ret)
593 return ret;
594
595 ret = register_ip_vs_scheduler(&ip_vs_lblc_scheduler);
596 if (ret)
597 unregister_pernet_subsys(&ip_vs_lblc_ops);
598 return ret;
599 }
600
601 static void __exit ip_vs_lblc_cleanup(void)
602 {
603 unregister_ip_vs_scheduler(&ip_vs_lblc_scheduler);
604 unregister_pernet_subsys(&ip_vs_lblc_ops);
605 }
606
607
608 module_init(ip_vs_lblc_init);
609 module_exit(ip_vs_lblc_cleanup);
610 MODULE_LICENSE("GPL");