]> git.proxmox.com Git - mirror_ubuntu-eoan-kernel.git/blame - net/netfilter/ipvs/ip_vs_lc.c
treewide: Replace GPLv2 boilerplate/reference with SPDX - rule 152
[mirror_ubuntu-eoan-kernel.git] / net / netfilter / ipvs / ip_vs_lc.c
CommitLineData
2874c5fd 1// SPDX-License-Identifier: GPL-2.0-or-later
1da177e4
LT
2/*
3 * IPVS: Least-Connection Scheduling module
4 *
1da177e4
LT
5 * Authors: Wensong Zhang <wensong@linuxvirtualserver.org>
6 *
1da177e4
LT
7 * Changes:
8 * Wensong Zhang : added the ip_vs_lc_update_svc
9 * Wensong Zhang : added any dest with weight=0 is quiesced
1da177e4
LT
10 */
11
9aada7ac
HE
12#define KMSG_COMPONENT "IPVS"
13#define pr_fmt(fmt) KMSG_COMPONENT ": " fmt
14
1da177e4
LT
15#include <linux/module.h>
16#include <linux/kernel.h>
17
18#include <net/ip_vs.h>
19
1da177e4
LT
20/*
21 * Least Connection scheduling
22 */
23static struct ip_vs_dest *
bba54de5
JA
24ip_vs_lc_schedule(struct ip_vs_service *svc, const struct sk_buff *skb,
25 struct ip_vs_iphdr *iph)
1da177e4
LT
26{
27 struct ip_vs_dest *dest, *least = NULL;
28 unsigned int loh = 0, doh;
29
1e3e238e 30 IP_VS_DBG(6, "%s(): Scheduling...\n", __func__);
1da177e4
LT
31
32 /*
33 * Simply select the server with the least number of
34 * (activeconns<<5) + inactconns
35 * Except whose weight is equal to zero.
36 * If the weight is equal to zero, it means that the server is
37 * quiesced, the existing connections to the server still get
38 * served, but no new connection is assigned to the server.
39 */
40
4ebd288b 41 list_for_each_entry_rcu(dest, &svc->destinations, n_list) {
1da177e4
LT
42 if ((dest->flags & IP_VS_DEST_F_OVERLOAD) ||
43 atomic_read(&dest->weight) == 0)
44 continue;
b552f7e3 45 doh = ip_vs_dest_conn_overhead(dest);
1da177e4
LT
46 if (!least || doh < loh) {
47 least = dest;
48 loh = doh;
49 }
50 }
51
68888d10 52 if (!least)
41ac51ee 53 ip_vs_scheduler_err(svc, "no destination available");
68888d10
SH
54 else
55 IP_VS_DBG_BUF(6, "LC: server %s:%u activeconns %d "
56 "inactconns %d\n",
4d316f3f 57 IP_VS_DBG_ADDR(least->af, &least->addr),
68888d10
SH
58 ntohs(least->port),
59 atomic_read(&least->activeconns),
60 atomic_read(&least->inactconns));
1da177e4
LT
61
62 return least;
63}
64
65
66static struct ip_vs_scheduler ip_vs_lc_scheduler = {
67 .name = "lc",
68 .refcnt = ATOMIC_INIT(0),
69 .module = THIS_MODULE,
d149ccc9 70 .n_list = LIST_HEAD_INIT(ip_vs_lc_scheduler.n_list),
1da177e4
LT
71 .schedule = ip_vs_lc_schedule,
72};
73
74
75static int __init ip_vs_lc_init(void)
76{
1da177e4
LT
77 return register_ip_vs_scheduler(&ip_vs_lc_scheduler) ;
78}
79
80static void __exit ip_vs_lc_cleanup(void)
81{
82 unregister_ip_vs_scheduler(&ip_vs_lc_scheduler);
ceec4c38 83 synchronize_rcu();
1da177e4
LT
84}
85
86module_init(ip_vs_lc_init);
87module_exit(ip_vs_lc_cleanup);
88MODULE_LICENSE("GPL");