blob: 8ae480715ceae79ae07fd4dbfc9bacf424b429b3 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * ip_vs_proto.c: transport protocol load balancing support for IPVS
3 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07004 * Authors: Wensong Zhang <wensong@linuxvirtualserver.org>
5 * Julian Anastasov <ja@ssi.bg>
6 *
7 * This program is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU General Public License
9 * as published by the Free Software Foundation; either version
10 * 2 of the License, or (at your option) any later version.
11 *
12 * Changes:
13 *
14 */
15
Hannes Eder9aada7a2009-07-30 14:29:44 -070016#define KMSG_COMPONENT "IPVS"
17#define pr_fmt(fmt) KMSG_COMPONENT ": " fmt
18
Linus Torvalds1da177e2005-04-16 15:20:36 -070019#include <linux/module.h>
20#include <linux/kernel.h>
21#include <linux/skbuff.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090022#include <linux/gfp.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070023#include <linux/in.h>
24#include <linux/ip.h>
25#include <net/protocol.h>
26#include <net/tcp.h>
27#include <net/udp.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070028#include <linux/stat.h>
29#include <linux/proc_fs.h>
30
31#include <net/ip_vs.h>
32
33
34/*
35 * IPVS protocols can only be registered/unregistered when the ipvs
36 * module is loaded/unloaded, so no lock is needed in accessing the
37 * ipvs protocol table.
38 */
39
40#define IP_VS_PROTO_TAB_SIZE 32 /* must be power of 2 */
41#define IP_VS_PROTO_HASH(proto) ((proto) & (IP_VS_PROTO_TAB_SIZE-1))
42
43static struct ip_vs_protocol *ip_vs_proto_table[IP_VS_PROTO_TAB_SIZE];
44
45
46/*
47 * register an ipvs protocol
48 */
Sven Wegener048cf482008-08-10 18:24:35 +000049static int __used __init register_ip_vs_protocol(struct ip_vs_protocol *pp)
Linus Torvalds1da177e2005-04-16 15:20:36 -070050{
Eric Dumazet95c96172012-04-15 05:58:06 +000051 unsigned int hash = IP_VS_PROTO_HASH(pp->protocol);
Linus Torvalds1da177e2005-04-16 15:20:36 -070052
53 pp->next = ip_vs_proto_table[hash];
54 ip_vs_proto_table[hash] = pp;
55
56 if (pp->init != NULL)
57 pp->init(pp);
58
59 return 0;
60}
61
Hans Schillstrom252c6412011-01-03 14:44:46 +010062/*
63 * register an ipvs protocols netns related data
64 */
65static int
Eric W. Biedermanc70bd6802015-09-21 13:02:35 -050066register_ip_vs_proto_netns(struct netns_ipvs *ipvs, struct ip_vs_protocol *pp)
Hans Schillstrom252c6412011-01-03 14:44:46 +010067{
Eric Dumazet95c96172012-04-15 05:58:06 +000068 unsigned int hash = IP_VS_PROTO_HASH(pp->protocol);
Hans Schillstrom252c6412011-01-03 14:44:46 +010069 struct ip_vs_proto_data *pd =
Sasha Levin9615e61e2012-04-14 12:37:47 -040070 kzalloc(sizeof(struct ip_vs_proto_data), GFP_KERNEL);
Hans Schillstrom252c6412011-01-03 14:44:46 +010071
Joe Perches0a9ee812011-08-29 14:17:25 -070072 if (!pd)
Hans Schillstrom252c6412011-01-03 14:44:46 +010073 return -ENOMEM;
Joe Perches0a9ee812011-08-29 14:17:25 -070074
Hans Schillstrom252c6412011-01-03 14:44:46 +010075 pd->pp = pp; /* For speed issues */
76 pd->next = ipvs->proto_data_table[hash];
77 ipvs->proto_data_table[hash] = pd;
78 atomic_set(&pd->appcnt, 0); /* Init app counter */
79
Hans Schillstrom582b8e32012-04-26 09:45:35 +020080 if (pp->init_netns != NULL) {
Eric W. Biederman1281a9c22015-09-21 13:02:36 -050081 int ret = pp->init_netns(ipvs, pd);
Hans Schillstrom582b8e32012-04-26 09:45:35 +020082 if (ret) {
83 /* unlink an free proto data */
84 ipvs->proto_data_table[hash] = pd->next;
85 kfree(pd);
86 return ret;
87 }
88 }
Hans Schillstrom252c6412011-01-03 14:44:46 +010089
90 return 0;
91}
Linus Torvalds1da177e2005-04-16 15:20:36 -070092
93/*
94 * unregister an ipvs protocol
95 */
96static int unregister_ip_vs_protocol(struct ip_vs_protocol *pp)
97{
98 struct ip_vs_protocol **pp_p;
Eric Dumazet95c96172012-04-15 05:58:06 +000099 unsigned int hash = IP_VS_PROTO_HASH(pp->protocol);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700100
101 pp_p = &ip_vs_proto_table[hash];
102 for (; *pp_p; pp_p = &(*pp_p)->next) {
103 if (*pp_p == pp) {
104 *pp_p = pp->next;
105 if (pp->exit != NULL)
106 pp->exit(pp);
107 return 0;
108 }
109 }
110
111 return -ESRCH;
112}
113
Hans Schillstrom252c6412011-01-03 14:44:46 +0100114/*
115 * unregister an ipvs protocols netns data
116 */
117static int
Eric W. Biedermanc70bd6802015-09-21 13:02:35 -0500118unregister_ip_vs_proto_netns(struct netns_ipvs *ipvs, struct ip_vs_proto_data *pd)
Hans Schillstrom252c6412011-01-03 14:44:46 +0100119{
Hans Schillstrom252c6412011-01-03 14:44:46 +0100120 struct ip_vs_proto_data **pd_p;
Eric Dumazet95c96172012-04-15 05:58:06 +0000121 unsigned int hash = IP_VS_PROTO_HASH(pd->pp->protocol);
Hans Schillstrom252c6412011-01-03 14:44:46 +0100122
123 pd_p = &ipvs->proto_data_table[hash];
124 for (; *pd_p; pd_p = &(*pd_p)->next) {
125 if (*pd_p == pd) {
126 *pd_p = pd->next;
127 if (pd->pp->exit_netns != NULL)
Eric W. Biederman1281a9c22015-09-21 13:02:36 -0500128 pd->pp->exit_netns(ipvs, pd);
Hans Schillstrom252c6412011-01-03 14:44:46 +0100129 kfree(pd);
130 return 0;
131 }
132 }
133
134 return -ESRCH;
135}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700136
137/*
138 * get ip_vs_protocol object by its proto.
139 */
140struct ip_vs_protocol * ip_vs_proto_get(unsigned short proto)
141{
142 struct ip_vs_protocol *pp;
Eric Dumazet95c96172012-04-15 05:58:06 +0000143 unsigned int hash = IP_VS_PROTO_HASH(proto);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144
145 for (pp = ip_vs_proto_table[hash]; pp; pp = pp->next) {
146 if (pp->protocol == proto)
147 return pp;
148 }
149
150 return NULL;
151}
Hannes Eder9c3e1c32010-07-23 12:42:58 +0200152EXPORT_SYMBOL(ip_vs_proto_get);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700153
Hans Schillstrom252c6412011-01-03 14:44:46 +0100154/*
155 * get ip_vs_protocol object data by netns and proto
156 */
Eric W. Biederman18d6ade2015-09-21 13:02:01 -0500157struct ip_vs_proto_data *
158ip_vs_proto_data_get(struct netns_ipvs *ipvs, unsigned short proto)
Hans Schillstrom252c6412011-01-03 14:44:46 +0100159{
Hans Schillstrom252c6412011-01-03 14:44:46 +0100160 struct ip_vs_proto_data *pd;
Eric Dumazet95c96172012-04-15 05:58:06 +0000161 unsigned int hash = IP_VS_PROTO_HASH(proto);
Hans Schillstrom252c6412011-01-03 14:44:46 +0100162
163 for (pd = ipvs->proto_data_table[hash]; pd; pd = pd->next) {
164 if (pd->pp->protocol == proto)
165 return pd;
166 }
167
168 return NULL;
169}
170EXPORT_SYMBOL(ip_vs_proto_data_get);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700171
172/*
173 * Propagate event for state change to all protocols
174 */
Hans Schillstrom93304192011-01-03 14:44:51 +0100175void ip_vs_protocol_timeout_change(struct netns_ipvs *ipvs, int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700176{
Hans Schillstrom93304192011-01-03 14:44:51 +0100177 struct ip_vs_proto_data *pd;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700178 int i;
179
180 for (i = 0; i < IP_VS_PROTO_TAB_SIZE; i++) {
Hans Schillstrom93304192011-01-03 14:44:51 +0100181 for (pd = ipvs->proto_data_table[i]; pd; pd = pd->next) {
182 if (pd->pp->timeout_change)
183 pd->pp->timeout_change(pd, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700184 }
185 }
186}
187
188
189int *
190ip_vs_create_timeout_table(int *table, int size)
191{
Julian Anastasov41cff6d2012-04-13 16:49:37 +0300192 return kmemdup(table, size, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700193}
194
195
196/*
197 * Set timeout value for state specified by name
198 */
199int
Jan Engelhardt36cbd3d2009-08-05 10:42:58 -0700200ip_vs_set_state_timeout(int *table, int num, const char *const *names,
201 const char *name, int to)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700202{
203 int i;
204
205 if (!table || !name || !to)
206 return -EINVAL;
207
208 for (i = 0; i < num; i++) {
209 if (strcmp(names[i], name))
210 continue;
211 table[i] = to * HZ;
212 return 0;
213 }
214 return -ENOENT;
215}
216
217
218const char * ip_vs_state_name(__u16 proto, int state)
219{
220 struct ip_vs_protocol *pp = ip_vs_proto_get(proto);
221
222 if (pp == NULL || pp->state_name == NULL)
Julian Anastasov2ad17de2008-04-29 03:21:23 -0700223 return (IPPROTO_IP == proto) ? "NONE" : "ERR!";
Linus Torvalds1da177e2005-04-16 15:20:36 -0700224 return pp->state_name(state);
225}
226
227
Sven Wegener77eb8512008-09-05 14:43:00 +0200228static void
Julius Volz3b047d92008-09-02 15:55:41 +0200229ip_vs_tcpudp_debug_packet_v4(struct ip_vs_protocol *pp,
230 const struct sk_buff *skb,
231 int offset,
232 const char *msg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700233{
234 char buf[128];
235 struct iphdr _iph, *ih;
236
237 ih = skb_header_pointer(skb, offset, sizeof(_iph), &_iph);
238 if (ih == NULL)
Patrick McHardy3d91c1a2010-04-08 13:35:47 +0200239 sprintf(buf, "TRUNCATED");
YOSHIFUJI Hideaki5661df72007-12-12 03:53:11 +0900240 else if (ih->frag_off & htons(IP_OFFSET))
Patrick McHardy3d91c1a2010-04-08 13:35:47 +0200241 sprintf(buf, "%pI4->%pI4 frag", &ih->saddr, &ih->daddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700242 else {
Julian Anastasov0d796412010-10-17 16:46:17 +0300243 __be16 _ports[2], *pptr;
244
Linus Torvalds1da177e2005-04-16 15:20:36 -0700245 pptr = skb_header_pointer(skb, offset + ih->ihl*4,
246 sizeof(_ports), _ports);
247 if (pptr == NULL)
Patrick McHardy3d91c1a2010-04-08 13:35:47 +0200248 sprintf(buf, "TRUNCATED %pI4->%pI4",
249 &ih->saddr, &ih->daddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700250 else
Patrick McHardy3d91c1a2010-04-08 13:35:47 +0200251 sprintf(buf, "%pI4:%u->%pI4:%u",
Harvey Harrison14d5e832008-10-31 00:54:29 -0700252 &ih->saddr, ntohs(pptr[0]),
253 &ih->daddr, ntohs(pptr[1]));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700254 }
255
Patrick McHardy3d91c1a2010-04-08 13:35:47 +0200256 pr_debug("%s: %s %s\n", msg, pp->name, buf);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700257}
258
Julius Volz3b047d92008-09-02 15:55:41 +0200259#ifdef CONFIG_IP_VS_IPV6
Sven Wegener77eb8512008-09-05 14:43:00 +0200260static void
Julius Volz3b047d92008-09-02 15:55:41 +0200261ip_vs_tcpudp_debug_packet_v6(struct ip_vs_protocol *pp,
262 const struct sk_buff *skb,
263 int offset,
264 const char *msg)
265{
266 char buf[192];
267 struct ipv6hdr _iph, *ih;
268
269 ih = skb_header_pointer(skb, offset, sizeof(_iph), &_iph);
270 if (ih == NULL)
Patrick McHardy3d91c1a2010-04-08 13:35:47 +0200271 sprintf(buf, "TRUNCATED");
Julius Volz3b047d92008-09-02 15:55:41 +0200272 else if (ih->nexthdr == IPPROTO_FRAGMENT)
Jesper Dangaard Brouer120b9c12012-09-26 14:05:53 +0200273 sprintf(buf, "%pI6c->%pI6c frag", &ih->saddr, &ih->daddr);
Julius Volz3b047d92008-09-02 15:55:41 +0200274 else {
275 __be16 _ports[2], *pptr;
276
277 pptr = skb_header_pointer(skb, offset + sizeof(struct ipv6hdr),
278 sizeof(_ports), _ports);
279 if (pptr == NULL)
Jesper Dangaard Brouer120b9c12012-09-26 14:05:53 +0200280 sprintf(buf, "TRUNCATED %pI6c->%pI6c",
Patrick McHardy3d91c1a2010-04-08 13:35:47 +0200281 &ih->saddr, &ih->daddr);
Julius Volz3b047d92008-09-02 15:55:41 +0200282 else
Jesper Dangaard Brouer120b9c12012-09-26 14:05:53 +0200283 sprintf(buf, "%pI6c:%u->%pI6c:%u",
Harvey Harrison38ff4fa2008-10-28 16:08:13 -0700284 &ih->saddr, ntohs(pptr[0]),
285 &ih->daddr, ntohs(pptr[1]));
Julius Volz3b047d92008-09-02 15:55:41 +0200286 }
287
Patrick McHardy3d91c1a2010-04-08 13:35:47 +0200288 pr_debug("%s: %s %s\n", msg, pp->name, buf);
Julius Volz3b047d92008-09-02 15:55:41 +0200289}
290#endif
291
292
293void
Julian Anastasov0d796412010-10-17 16:46:17 +0300294ip_vs_tcpudp_debug_packet(int af, struct ip_vs_protocol *pp,
Julius Volz3b047d92008-09-02 15:55:41 +0200295 const struct sk_buff *skb,
296 int offset,
297 const char *msg)
298{
299#ifdef CONFIG_IP_VS_IPV6
Julian Anastasov0d796412010-10-17 16:46:17 +0300300 if (af == AF_INET6)
Julius Volz3b047d92008-09-02 15:55:41 +0200301 ip_vs_tcpudp_debug_packet_v6(pp, skb, offset, msg);
302 else
303#endif
304 ip_vs_tcpudp_debug_packet_v4(pp, skb, offset, msg);
305}
306
Hans Schillstrom61b1ab42011-01-03 14:44:42 +0100307/*
308 * per network name-space init
309 */
Eric W. Biederman7d1f88e2015-09-21 13:02:58 -0500310int __net_init ip_vs_protocol_net_init(struct netns_ipvs *ipvs)
Hans Schillstrom61b1ab42011-01-03 14:44:42 +0100311{
Sasha Levin7118c072012-04-14 12:37:46 -0400312 int i, ret;
313 static struct ip_vs_protocol *protos[] = {
Hans Schillstrom4a85b962011-01-03 14:44:47 +0100314#ifdef CONFIG_IP_VS_PROTO_TCP
Sasha Levin7118c072012-04-14 12:37:46 -0400315 &ip_vs_protocol_tcp,
Hans Schillstrom4a85b962011-01-03 14:44:47 +0100316#endif
Hans Schillstrom78b16bd2011-01-03 14:44:48 +0100317#ifdef CONFIG_IP_VS_PROTO_UDP
Sasha Levin7118c072012-04-14 12:37:46 -0400318 &ip_vs_protocol_udp,
Hans Schillstrom78b16bd2011-01-03 14:44:48 +0100319#endif
Hans Schillstrom9d934872011-01-03 14:44:49 +0100320#ifdef CONFIG_IP_VS_PROTO_SCTP
Sasha Levin7118c072012-04-14 12:37:46 -0400321 &ip_vs_protocol_sctp,
Hans Schillstrom9d934872011-01-03 14:44:49 +0100322#endif
Hans Schillstrom88fe2d32011-01-03 14:44:50 +0100323#ifdef CONFIG_IP_VS_PROTO_AH
Sasha Levin7118c072012-04-14 12:37:46 -0400324 &ip_vs_protocol_ah,
Hans Schillstrom88fe2d32011-01-03 14:44:50 +0100325#endif
326#ifdef CONFIG_IP_VS_PROTO_ESP
Sasha Levin7118c072012-04-14 12:37:46 -0400327 &ip_vs_protocol_esp,
Hans Schillstrom88fe2d32011-01-03 14:44:50 +0100328#endif
Sasha Levin7118c072012-04-14 12:37:46 -0400329 };
330
331 for (i = 0; i < ARRAY_SIZE(protos); i++) {
Eric W. Biedermanc70bd6802015-09-21 13:02:35 -0500332 ret = register_ip_vs_proto_netns(ipvs, protos[i]);
Sasha Levin7118c072012-04-14 12:37:46 -0400333 if (ret < 0)
334 goto cleanup;
335 }
Hans Schillstrom61b1ab42011-01-03 14:44:42 +0100336 return 0;
Sasha Levin7118c072012-04-14 12:37:46 -0400337
338cleanup:
Eric W. Biederman7d1f88e2015-09-21 13:02:58 -0500339 ip_vs_protocol_net_cleanup(ipvs);
Sasha Levin7118c072012-04-14 12:37:46 -0400340 return ret;
Hans Schillstrom61b1ab42011-01-03 14:44:42 +0100341}
342
Eric W. Biederman7d1f88e2015-09-21 13:02:58 -0500343void __net_exit ip_vs_protocol_net_cleanup(struct netns_ipvs *ipvs)
Hans Schillstrom61b1ab42011-01-03 14:44:42 +0100344{
Hans Schillstrom4a85b962011-01-03 14:44:47 +0100345 struct ip_vs_proto_data *pd;
346 int i;
347
348 /* unregister all the ipvs proto data for this netns */
349 for (i = 0; i < IP_VS_PROTO_TAB_SIZE; i++) {
350 while ((pd = ipvs->proto_data_table[i]) != NULL)
Eric W. Biedermanc70bd6802015-09-21 13:02:35 -0500351 unregister_ip_vs_proto_netns(ipvs, pd);
Hans Schillstrom4a85b962011-01-03 14:44:47 +0100352 }
Hans Schillstrom61b1ab42011-01-03 14:44:42 +0100353}
354
Sven Wegener048cf482008-08-10 18:24:35 +0000355int __init ip_vs_protocol_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700356{
357 char protocols[64];
358#define REGISTER_PROTOCOL(p) \
359 do { \
360 register_ip_vs_protocol(p); \
361 strcat(protocols, ", "); \
362 strcat(protocols, (p)->name); \
363 } while (0)
364
365 protocols[0] = '\0';
366 protocols[2] = '\0';
367#ifdef CONFIG_IP_VS_PROTO_TCP
368 REGISTER_PROTOCOL(&ip_vs_protocol_tcp);
369#endif
370#ifdef CONFIG_IP_VS_PROTO_UDP
371 REGISTER_PROTOCOL(&ip_vs_protocol_udp);
372#endif
Venkata Mohan Reddy2906f662010-02-18 12:31:05 +0100373#ifdef CONFIG_IP_VS_PROTO_SCTP
374 REGISTER_PROTOCOL(&ip_vs_protocol_sctp);
375#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700376#ifdef CONFIG_IP_VS_PROTO_AH
377 REGISTER_PROTOCOL(&ip_vs_protocol_ah);
378#endif
379#ifdef CONFIG_IP_VS_PROTO_ESP
380 REGISTER_PROTOCOL(&ip_vs_protocol_esp);
381#endif
Hannes Eder1e3e2382009-08-02 11:05:41 +0000382 pr_info("Registered protocols (%s)\n", &protocols[2]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700383
384 return 0;
385}
386
387
388void ip_vs_protocol_cleanup(void)
389{
390 struct ip_vs_protocol *pp;
391 int i;
392
Linus Torvalds1da177e2005-04-16 15:20:36 -0700393 /* unregister all the ipvs protocols */
394 for (i = 0; i < IP_VS_PROTO_TAB_SIZE; i++) {
395 while ((pp = ip_vs_proto_table[i]) != NULL)
396 unregister_ip_vs_protocol(pp);
397 }
398}