-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathip_vs_ch_core.c
285 lines (217 loc) · 6.76 KB
/
ip_vs_ch_core.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
/*
* IPVS: Consistent Hashing scheduling module
*
* Authors: Bisheng Liu <[email protected]>
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License
* as published by the Free Software Foundation; either version
* 2 of the License, or (at your option) any later version.
*
* Changes:
*
*/
/*
* The ch algorithm is to select server by the consistent hash of source IP
* address.
*
* Notes that there are 160 virtual nodes that maps the destinations
* index derived from packet source IP address to the current server
* array. If the ch scheduler is used in cache cluster, it is good to
* combine it with cache_bypass feature. When the statically assigned
* server is dead or overloaded, the load balancer can bypass the cache
* server and send requests to the original server directly.
*
*/
#define KMSG_COMPONENT "IPVS"
#define pr_fmt(fmt) KMSG_COMPONENT ": " fmt
#include <linux/module.h>
#include <linux/kernel.h>
#include <linux/skbuff.h>
#include <linux/list.h>
#include <linux/ip.h>
#include <net/ip_vs.h>
#include "conhash.h"
struct node_list{
struct list_head n_list;
struct node_s node;
};
/*
* IPVS CH initial data
*/
struct ip_vs_ch_bucket {
unsigned int count;
struct conhash_s *conhash;
struct list_head node_head;
};
#define REPLICA 160
/*
* Get ip_vs_dest associated with supplied parameters.
*/
static inline struct ip_vs_dest *
ip_vs_ch_get(int af, struct ip_vs_ch_bucket *tbl,
const union nf_inet_addr *addr, __be16 sport)
{
char str[40];
const struct node_s *node;
sprintf(str, "%u:%u", ntohl(addr->ip),sport);
node = conhash_lookup(tbl->conhash, str);
return node == NULL? NULL: node->dest;
}
/*
* Assign all the hash buckets of the specified table with the service.
*/
static int
ip_vs_ch_assign(struct ip_vs_ch_bucket *tbl, struct ip_vs_service *svc)
{
struct ip_vs_dest *dest;
struct node_list *p_node;
int weight = 0;
char str[40];
INIT_LIST_HEAD(&tbl->node_head);
list_for_each_entry(dest, &svc->destinations,n_list) {
weight = atomic_read(&dest->weight);
if (weight > 0) {
p_node = kmalloc(sizeof(struct node_list),GFP_ATOMIC);
if (p_node == NULL) {
pr_err("%s(): no memory\n", __func__);
return -ENOMEM;
}
list_add_tail(&p_node->n_list,&tbl->node_head);
atomic_inc(&dest->refcnt);
p_node->node.dest = dest;
sprintf(str, "%u", ntohl(dest->addr.ip));
conhash_set_node(&p_node->node, str, weight*REPLICA);
conhash_add_node(tbl->conhash, &p_node->node);
tbl->count++;
}
}
return 0;
}
/*
* Flush all the hash buckets of the specified table.
*/
static void ip_vs_ch_flush(struct ip_vs_ch_bucket *tbl)
{
struct node_list *nl;
list_for_each_entry(nl, &tbl->node_head,n_list) {
if (nl->node.dest) {
atomic_dec(&nl->node.dest->refcnt);
nl->node.dest = NULL;
}
conhash_del_node(tbl->conhash, &nl->node);
kfree(nl);
tbl->count--;
}
list_del(&tbl->node_head);
tbl->count = 0;
}
static int ip_vs_ch_init_svc(struct ip_vs_service *svc)
{
struct ip_vs_ch_bucket *tbl;
/* allocate the CH table for this service */
tbl = kmalloc(sizeof(struct ip_vs_ch_bucket), GFP_ATOMIC);
if (tbl == NULL) {
pr_err("%s(): no memory\n", __func__);
return -ENOMEM;
}
tbl->count = 0;
svc->sched_data = tbl;
IP_VS_DBG(6, "CH hash table (memory=%Zdbytes) allocated for "
"current service\n",
sizeof(struct ip_vs_ch_bucket));
/* init consistent hash table */
tbl->conhash = conhash_init(NULL);
/* assign the hash buckets with the updated service */
ip_vs_ch_assign(tbl, svc);
return 0;
}
static int ip_vs_ch_done_svc(struct ip_vs_service *svc)
{
struct ip_vs_ch_bucket *tbl = svc->sched_data;
/* got to clean up hash buckets here */
ip_vs_ch_flush(tbl);
conhash_fini(tbl->conhash);
/* release the table itself */
kfree(svc->sched_data);
IP_VS_DBG(6, "CH hash table (memory=%Zdbytes) released\n",
sizeof(struct ip_vs_ch_bucket));
return 0;
}
static int ip_vs_ch_update_svc(struct ip_vs_service *svc)
{
struct ip_vs_ch_bucket *tbl = svc->sched_data;
/* got to clean up hash buckets here */
ip_vs_ch_flush(tbl);
/* assign the hash buckets with the updated service */
ip_vs_ch_assign(tbl, svc);
return 0;
}
/*
* If the dest flags is set with IP_VS_DEST_F_OVERLOAD,
* consider that the server is overloaded here.
*/
static inline int is_overloaded(struct ip_vs_dest *dest)
{
return dest->flags & IP_VS_DEST_F_OVERLOAD;
}
/*
* Consistent Hashing scheduling
*/
static struct ip_vs_dest *
ip_vs_ch_schedule(struct ip_vs_service *svc, const struct sk_buff *skb)
{
struct ip_vs_dest *dest;
struct ip_vs_ch_bucket *tbl;
struct ip_vs_iphdr iph;
int i = 0;
//__be16 _ports[2], *pptr;
ip_vs_fill_iphdr(svc->af, skb_network_header(skb), &iph);
//pptr = skb_header_pointer(skb, iph.len, sizeof(_ports), _ports);
//if (pptr == NULL)
// return NULL;
IP_VS_DBG(6, "ip_vs_ch_schedule(): Scheduling...\n");
tbl = (struct ip_vs_ch_bucket *)svc->sched_data;
//dest = ip_vs_ch_get(svc->af, tbl, &iph.saddr,_ports[0]);
for(i=0; i < tbl->count; i++){
dest = ip_vs_ch_get(svc->af, tbl, &iph.saddr,i);
if (!dest
|| !(dest->flags & IP_VS_DEST_F_AVAILABLE)
|| atomic_read(&dest->weight) <= 0
|| is_overloaded(dest)) {
continue;
}
IP_VS_DBG_BUF(6, "CH: source IP address %s --> server %s:%d\n",
IP_VS_DBG_ADDR(svc->af, &iph.saddr),
IP_VS_DBG_ADDR(svc->af, &dest->addr),
ntohs(dest->port));
return dest;
}
IP_VS_ERR_RL("CH: no destination available\n");
return NULL;
}
/*
* IPVS CH Scheduler structure
*/
static struct ip_vs_scheduler ip_vs_ch_scheduler =
{
.name = "ch",
.refcnt = ATOMIC_INIT(0),
.module = THIS_MODULE,
.n_list = LIST_HEAD_INIT(ip_vs_ch_scheduler.n_list),
.init_service = ip_vs_ch_init_svc,
.done_service = ip_vs_ch_done_svc,
.update_service = ip_vs_ch_update_svc,
.schedule = ip_vs_ch_schedule,
};
static int __init ip_vs_ch_init(void)
{
return register_ip_vs_scheduler(&ip_vs_ch_scheduler);
}
static void __exit ip_vs_ch_cleanup(void)
{
unregister_ip_vs_scheduler(&ip_vs_ch_scheduler);
}
module_init(ip_vs_ch_init);
module_exit(ip_vs_ch_cleanup);
MODULE_LICENSE("GPL");