blob: aa85df2f14a05f62fb60782740856896682b2e2d [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * ip_vs_proto_udp.c: UDP 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 *
Hans Schillstrom78b16bd2011-01-03 14:44:48 +010012 * Changes: Hans Schillstrom <hans.schillstrom@ericsson.com>
13 * Network name space (netns) aware.
Linus Torvalds1da177e2005-04-16 15:20:36 -070014 *
15 */
16
Hannes Eder9aada7a2009-07-30 14:29:44 -070017#define KMSG_COMPONENT "IPVS"
18#define pr_fmt(fmt) KMSG_COMPONENT ": " fmt
19
Arnaldo Carvalho de Melo14c85022005-12-27 02:43:12 -020020#include <linux/in.h>
21#include <linux/ip.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070022#include <linux/kernel.h>
Herbert Xuaf1e1cf2007-10-14 00:39:33 -070023#include <linux/netfilter.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070024#include <linux/netfilter_ipv4.h>
Arnaldo Carvalho de Melo14c85022005-12-27 02:43:12 -020025#include <linux/udp.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070026
27#include <net/ip_vs.h>
Arnaldo Carvalho de Meloc9bdd4b2007-03-12 20:09:15 -030028#include <net/ip.h>
Stephen Rothwell63f2c042008-09-12 23:23:50 -070029#include <net/ip6_checksum.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070030
Linus Torvalds1da177e2005-04-16 15:20:36 -070031static int
Hans Schillstrom93304192011-01-03 14:44:51 +010032udp_conn_schedule(int af, struct sk_buff *skb, struct ip_vs_proto_data *pd,
Linus Torvalds1da177e2005-04-16 15:20:36 -070033 int *verdict, struct ip_vs_conn **cpp)
34{
Hans Schillstromfc723252011-01-03 14:44:43 +010035 struct net *net;
Linus Torvalds1da177e2005-04-16 15:20:36 -070036 struct ip_vs_service *svc;
37 struct udphdr _udph, *uh;
Julius Volz3c2e0502008-09-02 15:55:38 +020038 struct ip_vs_iphdr iph;
Linus Torvalds1da177e2005-04-16 15:20:36 -070039
Julius Volz51ef3482008-09-02 15:55:40 +020040 ip_vs_fill_iphdr(af, skb_network_header(skb), &iph);
Julius Volz3c2e0502008-09-02 15:55:38 +020041
42 uh = skb_header_pointer(skb, iph.len, sizeof(_udph), &_udph);
Linus Torvalds1da177e2005-04-16 15:20:36 -070043 if (uh == NULL) {
44 *verdict = NF_DROP;
45 return 0;
46 }
Hans Schillstromfc723252011-01-03 14:44:43 +010047 net = skb_net(skb);
48 svc = ip_vs_service_get(net, af, skb->mark, iph.protocol,
Julius Volz3c2e0502008-09-02 15:55:38 +020049 &iph.daddr, uh->dest);
50 if (svc) {
Julian Anastasov190ecd22010-10-17 16:24:37 +030051 int ignored;
52
Linus Torvalds1da177e2005-04-16 15:20:36 -070053 if (ip_vs_todrop()) {
54 /*
55 * It seems that we are very loaded.
56 * We have to drop this packet :(
57 */
58 ip_vs_service_put(svc);
59 *verdict = NF_DROP;
60 return 0;
61 }
62
63 /*
64 * Let the virtual server select a real server for the
65 * incoming connection, and create a connection entry.
66 */
Hans Schillstrom93304192011-01-03 14:44:51 +010067 *cpp = ip_vs_schedule(svc, skb, pd, &ignored);
Hans Schillstroma5959d52010-11-19 14:25:10 +010068 if (!*cpp && ignored <= 0) {
69 if (!ignored)
Hans Schillstrom93304192011-01-03 14:44:51 +010070 *verdict = ip_vs_leave(svc, skb, pd);
Hans Schillstroma5959d52010-11-19 14:25:10 +010071 else {
72 ip_vs_service_put(svc);
73 *verdict = NF_DROP;
74 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070075 return 0;
76 }
77 ip_vs_service_put(svc);
78 }
Hans Schillstroma5959d52010-11-19 14:25:10 +010079 /* NF_ACCEPT */
Linus Torvalds1da177e2005-04-16 15:20:36 -070080 return 1;
81}
82
83
84static inline void
Julius Volz0bbdd422008-09-02 15:55:42 +020085udp_fast_csum_update(int af, struct udphdr *uhdr,
86 const union nf_inet_addr *oldip,
87 const union nf_inet_addr *newip,
Al Viro014d7302006-09-28 14:29:52 -070088 __be16 oldport, __be16 newport)
Linus Torvalds1da177e2005-04-16 15:20:36 -070089{
Julius Volz0bbdd422008-09-02 15:55:42 +020090#ifdef CONFIG_IP_VS_IPV6
91 if (af == AF_INET6)
92 uhdr->check =
93 csum_fold(ip_vs_check_diff16(oldip->ip6, newip->ip6,
94 ip_vs_check_diff2(oldport, newport,
95 ~csum_unfold(uhdr->check))));
96 else
97#endif
98 uhdr->check =
99 csum_fold(ip_vs_check_diff4(oldip->ip, newip->ip,
100 ip_vs_check_diff2(oldport, newport,
101 ~csum_unfold(uhdr->check))));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700102 if (!uhdr->check)
Al Virof6ab0282006-11-16 02:36:50 -0800103 uhdr->check = CSUM_MANGLED_0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700104}
105
Simon Horman503e81f2008-09-08 12:04:21 +1000106static inline void
107udp_partial_csum_update(int af, struct udphdr *uhdr,
108 const union nf_inet_addr *oldip,
109 const union nf_inet_addr *newip,
110 __be16 oldlen, __be16 newlen)
111{
112#ifdef CONFIG_IP_VS_IPV6
113 if (af == AF_INET6)
114 uhdr->check =
Julian Anastasov5bc90682010-10-17 16:14:31 +0300115 ~csum_fold(ip_vs_check_diff16(oldip->ip6, newip->ip6,
Simon Horman503e81f2008-09-08 12:04:21 +1000116 ip_vs_check_diff2(oldlen, newlen,
Julian Anastasov5bc90682010-10-17 16:14:31 +0300117 csum_unfold(uhdr->check))));
Simon Horman503e81f2008-09-08 12:04:21 +1000118 else
119#endif
120 uhdr->check =
Julian Anastasov5bc90682010-10-17 16:14:31 +0300121 ~csum_fold(ip_vs_check_diff4(oldip->ip, newip->ip,
Simon Horman503e81f2008-09-08 12:04:21 +1000122 ip_vs_check_diff2(oldlen, newlen,
Julian Anastasov5bc90682010-10-17 16:14:31 +0300123 csum_unfold(uhdr->check))));
Simon Horman503e81f2008-09-08 12:04:21 +1000124}
125
126
Linus Torvalds1da177e2005-04-16 15:20:36 -0700127static int
Herbert Xu3db05fe2007-10-15 00:53:15 -0700128udp_snat_handler(struct sk_buff *skb,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700129 struct ip_vs_protocol *pp, struct ip_vs_conn *cp)
130{
131 struct udphdr *udph;
Julius Volz0bbdd422008-09-02 15:55:42 +0200132 unsigned int udphoff;
Simon Horman503e81f2008-09-08 12:04:21 +1000133 int oldlen;
Julian Anastasov8b27b102010-10-17 16:17:20 +0300134 int payload_csum = 0;
Julius Volz0bbdd422008-09-02 15:55:42 +0200135
136#ifdef CONFIG_IP_VS_IPV6
137 if (cp->af == AF_INET6)
138 udphoff = sizeof(struct ipv6hdr);
139 else
140#endif
141 udphoff = ip_hdrlen(skb);
Simon Horman503e81f2008-09-08 12:04:21 +1000142 oldlen = skb->len - udphoff;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700143
144 /* csum_check requires unshared skb */
Herbert Xu3db05fe2007-10-15 00:53:15 -0700145 if (!skb_make_writable(skb, udphoff+sizeof(*udph)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700146 return 0;
147
148 if (unlikely(cp->app != NULL)) {
Julian Anastasov8b27b102010-10-17 16:17:20 +0300149 int ret;
150
Linus Torvalds1da177e2005-04-16 15:20:36 -0700151 /* Some checks before mangling */
Julius Volz0bbdd422008-09-02 15:55:42 +0200152 if (pp->csum_check && !pp->csum_check(cp->af, skb, pp))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700153 return 0;
154
155 /*
156 * Call application helper if needed
157 */
Julian Anastasov8b27b102010-10-17 16:17:20 +0300158 if (!(ret = ip_vs_app_pkt_out(cp, skb)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700159 return 0;
Julian Anastasov8b27b102010-10-17 16:17:20 +0300160 /* ret=2: csum update is needed after payload mangling */
161 if (ret == 1)
162 oldlen = skb->len - udphoff;
163 else
164 payload_csum = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700165 }
166
Julius Volz0bbdd422008-09-02 15:55:42 +0200167 udph = (void *)skb_network_header(skb) + udphoff;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700168 udph->source = cp->vport;
169
170 /*
171 * Adjust UDP checksums
172 */
Simon Horman503e81f2008-09-08 12:04:21 +1000173 if (skb->ip_summed == CHECKSUM_PARTIAL) {
174 udp_partial_csum_update(cp->af, udph, &cp->daddr, &cp->vaddr,
Harvey Harrisonca620592008-11-06 23:09:56 -0800175 htons(oldlen),
176 htons(skb->len - udphoff));
Julian Anastasov8b27b102010-10-17 16:17:20 +0300177 } else if (!payload_csum && (udph->check != 0)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700178 /* Only port and addr are changed, do fast csum update */
Julius Volz0bbdd422008-09-02 15:55:42 +0200179 udp_fast_csum_update(cp->af, udph, &cp->daddr, &cp->vaddr,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700180 cp->dport, cp->vport);
Herbert Xu3db05fe2007-10-15 00:53:15 -0700181 if (skb->ip_summed == CHECKSUM_COMPLETE)
Julian Anastasov8b27b102010-10-17 16:17:20 +0300182 skb->ip_summed = (cp->app && pp->csum_check) ?
183 CHECKSUM_UNNECESSARY : CHECKSUM_NONE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700184 } else {
185 /* full checksum calculation */
186 udph->check = 0;
Herbert Xu3db05fe2007-10-15 00:53:15 -0700187 skb->csum = skb_checksum(skb, udphoff, skb->len - udphoff, 0);
Julius Volz0bbdd422008-09-02 15:55:42 +0200188#ifdef CONFIG_IP_VS_IPV6
189 if (cp->af == AF_INET6)
190 udph->check = csum_ipv6_magic(&cp->vaddr.in6,
191 &cp->caddr.in6,
192 skb->len - udphoff,
193 cp->protocol, skb->csum);
194 else
195#endif
196 udph->check = csum_tcpudp_magic(cp->vaddr.ip,
197 cp->caddr.ip,
198 skb->len - udphoff,
199 cp->protocol,
200 skb->csum);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700201 if (udph->check == 0)
Al Virof6ab0282006-11-16 02:36:50 -0800202 udph->check = CSUM_MANGLED_0;
Julian Anastasov8b27b102010-10-17 16:17:20 +0300203 skb->ip_summed = CHECKSUM_UNNECESSARY;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700204 IP_VS_DBG(11, "O-pkt: %s O-csum=%d (+%zd)\n",
205 pp->name, udph->check,
206 (char*)&(udph->check) - (char*)udph);
207 }
208 return 1;
209}
210
211
212static int
Herbert Xu3db05fe2007-10-15 00:53:15 -0700213udp_dnat_handler(struct sk_buff *skb,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700214 struct ip_vs_protocol *pp, struct ip_vs_conn *cp)
215{
216 struct udphdr *udph;
Julius Volz0bbdd422008-09-02 15:55:42 +0200217 unsigned int udphoff;
Simon Horman503e81f2008-09-08 12:04:21 +1000218 int oldlen;
Julian Anastasov8b27b102010-10-17 16:17:20 +0300219 int payload_csum = 0;
Julius Volz0bbdd422008-09-02 15:55:42 +0200220
221#ifdef CONFIG_IP_VS_IPV6
222 if (cp->af == AF_INET6)
223 udphoff = sizeof(struct ipv6hdr);
224 else
225#endif
226 udphoff = ip_hdrlen(skb);
Simon Horman503e81f2008-09-08 12:04:21 +1000227 oldlen = skb->len - udphoff;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700228
229 /* csum_check requires unshared skb */
Herbert Xu3db05fe2007-10-15 00:53:15 -0700230 if (!skb_make_writable(skb, udphoff+sizeof(*udph)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700231 return 0;
232
233 if (unlikely(cp->app != NULL)) {
Julian Anastasov8b27b102010-10-17 16:17:20 +0300234 int ret;
235
Linus Torvalds1da177e2005-04-16 15:20:36 -0700236 /* Some checks before mangling */
Julius Volz0bbdd422008-09-02 15:55:42 +0200237 if (pp->csum_check && !pp->csum_check(cp->af, skb, pp))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700238 return 0;
239
240 /*
241 * Attempt ip_vs_app call.
242 * It will fix ip_vs_conn
243 */
Julian Anastasov8b27b102010-10-17 16:17:20 +0300244 if (!(ret = ip_vs_app_pkt_in(cp, skb)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700245 return 0;
Julian Anastasov8b27b102010-10-17 16:17:20 +0300246 /* ret=2: csum update is needed after payload mangling */
247 if (ret == 1)
248 oldlen = skb->len - udphoff;
249 else
250 payload_csum = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700251 }
252
Julius Volz0bbdd422008-09-02 15:55:42 +0200253 udph = (void *)skb_network_header(skb) + udphoff;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700254 udph->dest = cp->dport;
255
256 /*
257 * Adjust UDP checksums
258 */
Simon Horman503e81f2008-09-08 12:04:21 +1000259 if (skb->ip_summed == CHECKSUM_PARTIAL) {
Julian Anastasov5bc90682010-10-17 16:14:31 +0300260 udp_partial_csum_update(cp->af, udph, &cp->vaddr, &cp->daddr,
Harvey Harrisonca620592008-11-06 23:09:56 -0800261 htons(oldlen),
262 htons(skb->len - udphoff));
Julian Anastasov8b27b102010-10-17 16:17:20 +0300263 } else if (!payload_csum && (udph->check != 0)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700264 /* Only port and addr are changed, do fast csum update */
Julius Volz0bbdd422008-09-02 15:55:42 +0200265 udp_fast_csum_update(cp->af, udph, &cp->vaddr, &cp->daddr,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700266 cp->vport, cp->dport);
Herbert Xu3db05fe2007-10-15 00:53:15 -0700267 if (skb->ip_summed == CHECKSUM_COMPLETE)
Julian Anastasov8b27b102010-10-17 16:17:20 +0300268 skb->ip_summed = (cp->app && pp->csum_check) ?
269 CHECKSUM_UNNECESSARY : CHECKSUM_NONE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700270 } else {
271 /* full checksum calculation */
272 udph->check = 0;
Herbert Xu3db05fe2007-10-15 00:53:15 -0700273 skb->csum = skb_checksum(skb, udphoff, skb->len - udphoff, 0);
Julius Volz0bbdd422008-09-02 15:55:42 +0200274#ifdef CONFIG_IP_VS_IPV6
275 if (cp->af == AF_INET6)
276 udph->check = csum_ipv6_magic(&cp->caddr.in6,
277 &cp->daddr.in6,
278 skb->len - udphoff,
279 cp->protocol, skb->csum);
280 else
281#endif
282 udph->check = csum_tcpudp_magic(cp->caddr.ip,
283 cp->daddr.ip,
284 skb->len - udphoff,
285 cp->protocol,
286 skb->csum);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700287 if (udph->check == 0)
Al Virof6ab0282006-11-16 02:36:50 -0800288 udph->check = CSUM_MANGLED_0;
Herbert Xu3db05fe2007-10-15 00:53:15 -0700289 skb->ip_summed = CHECKSUM_UNNECESSARY;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700290 }
291 return 1;
292}
293
294
295static int
Julius Volz51ef3482008-09-02 15:55:40 +0200296udp_csum_check(int af, struct sk_buff *skb, struct ip_vs_protocol *pp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700297{
298 struct udphdr _udph, *uh;
Julius Volz51ef3482008-09-02 15:55:40 +0200299 unsigned int udphoff;
300
301#ifdef CONFIG_IP_VS_IPV6
302 if (af == AF_INET6)
303 udphoff = sizeof(struct ipv6hdr);
304 else
305#endif
306 udphoff = ip_hdrlen(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700307
308 uh = skb_header_pointer(skb, udphoff, sizeof(_udph), &_udph);
309 if (uh == NULL)
310 return 0;
311
312 if (uh->check != 0) {
313 switch (skb->ip_summed) {
314 case CHECKSUM_NONE:
315 skb->csum = skb_checksum(skb, udphoff,
316 skb->len - udphoff, 0);
Patrick McHardy84fa7932006-08-29 16:44:56 -0700317 case CHECKSUM_COMPLETE:
Julius Volz51ef3482008-09-02 15:55:40 +0200318#ifdef CONFIG_IP_VS_IPV6
319 if (af == AF_INET6) {
320 if (csum_ipv6_magic(&ipv6_hdr(skb)->saddr,
321 &ipv6_hdr(skb)->daddr,
322 skb->len - udphoff,
323 ipv6_hdr(skb)->nexthdr,
324 skb->csum)) {
Julian Anastasov0d796412010-10-17 16:46:17 +0300325 IP_VS_DBG_RL_PKT(0, af, pp, skb, 0,
Julius Volz51ef3482008-09-02 15:55:40 +0200326 "Failed checksum for");
327 return 0;
328 }
329 } else
330#endif
331 if (csum_tcpudp_magic(ip_hdr(skb)->saddr,
332 ip_hdr(skb)->daddr,
333 skb->len - udphoff,
334 ip_hdr(skb)->protocol,
335 skb->csum)) {
Julian Anastasov0d796412010-10-17 16:46:17 +0300336 IP_VS_DBG_RL_PKT(0, af, pp, skb, 0,
Julius Volz51ef3482008-09-02 15:55:40 +0200337 "Failed checksum for");
338 return 0;
339 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700340 break;
341 default:
Patrick McHardy84fa7932006-08-29 16:44:56 -0700342 /* No need to checksum. */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700343 break;
344 }
345 }
346 return 1;
347}
348
Al Viro75e7ce62006-11-14 21:13:28 -0800349static inline __u16 udp_app_hashkey(__be16 port)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700350{
Al Viro75e7ce62006-11-14 21:13:28 -0800351 return (((__force u16)port >> UDP_APP_TAB_BITS) ^ (__force u16)port)
352 & UDP_APP_TAB_MASK;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700353}
354
355
356static int udp_register_app(struct ip_vs_app *inc)
357{
358 struct ip_vs_app *i;
Al Viro75e7ce62006-11-14 21:13:28 -0800359 __u16 hash;
360 __be16 port = inc->port;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700361 int ret = 0;
Hans Schillstrom78b16bd2011-01-03 14:44:48 +0100362 struct netns_ipvs *ipvs = net_ipvs(&init_net);
363 struct ip_vs_proto_data *pd = ip_vs_proto_data_get(&init_net, IPPROTO_UDP);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700364
365 hash = udp_app_hashkey(port);
366
367
Hans Schillstrom78b16bd2011-01-03 14:44:48 +0100368 spin_lock_bh(&ipvs->udp_app_lock);
369 list_for_each_entry(i, &ipvs->udp_apps[hash], p_list) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700370 if (i->port == port) {
371 ret = -EEXIST;
372 goto out;
373 }
374 }
Hans Schillstrom78b16bd2011-01-03 14:44:48 +0100375 list_add(&inc->p_list, &ipvs->udp_apps[hash]);
376 atomic_inc(&pd->pp->appcnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700377
378 out:
Hans Schillstrom78b16bd2011-01-03 14:44:48 +0100379 spin_unlock_bh(&ipvs->udp_app_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700380 return ret;
381}
382
383
384static void
385udp_unregister_app(struct ip_vs_app *inc)
386{
Hans Schillstrom78b16bd2011-01-03 14:44:48 +0100387 struct ip_vs_proto_data *pd = ip_vs_proto_data_get(&init_net, IPPROTO_UDP);
388 struct netns_ipvs *ipvs = net_ipvs(&init_net);
389
390 spin_lock_bh(&ipvs->udp_app_lock);
391 atomic_dec(&pd->pp->appcnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700392 list_del(&inc->p_list);
Hans Schillstrom78b16bd2011-01-03 14:44:48 +0100393 spin_unlock_bh(&ipvs->udp_app_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700394}
395
396
397static int udp_app_conn_bind(struct ip_vs_conn *cp)
398{
Hans Schillstrom78b16bd2011-01-03 14:44:48 +0100399 struct netns_ipvs *ipvs = net_ipvs(&init_net);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700400 int hash;
401 struct ip_vs_app *inc;
402 int result = 0;
403
404 /* Default binding: bind app only for NAT */
405 if (IP_VS_FWD_METHOD(cp) != IP_VS_CONN_F_MASQ)
406 return 0;
407
408 /* Lookup application incarnations and bind the right one */
409 hash = udp_app_hashkey(cp->vport);
410
Hans Schillstrom78b16bd2011-01-03 14:44:48 +0100411 spin_lock(&ipvs->udp_app_lock);
412 list_for_each_entry(inc, &ipvs->udp_apps[hash], p_list) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700413 if (inc->port == cp->vport) {
414 if (unlikely(!ip_vs_app_inc_get(inc)))
415 break;
Hans Schillstrom78b16bd2011-01-03 14:44:48 +0100416 spin_unlock(&ipvs->udp_app_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700417
Hannes Eder1e3e2382009-08-02 11:05:41 +0000418 IP_VS_DBG_BUF(9, "%s(): Binding conn %s:%u->"
Julius Volzcfc78c52008-09-02 15:55:53 +0200419 "%s:%u to app %s on port %u\n",
420 __func__,
421 IP_VS_DBG_ADDR(cp->af, &cp->caddr),
422 ntohs(cp->cport),
423 IP_VS_DBG_ADDR(cp->af, &cp->vaddr),
424 ntohs(cp->vport),
425 inc->name, ntohs(inc->port));
426
Linus Torvalds1da177e2005-04-16 15:20:36 -0700427 cp->app = inc;
428 if (inc->init_conn)
429 result = inc->init_conn(inc, cp);
430 goto out;
431 }
432 }
Hans Schillstrom78b16bd2011-01-03 14:44:48 +0100433 spin_unlock(&ipvs->udp_app_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700434
435 out:
436 return result;
437}
438
439
Hans Schillstrom78b16bd2011-01-03 14:44:48 +0100440static const int udp_timeouts[IP_VS_UDP_S_LAST+1] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700441 [IP_VS_UDP_S_NORMAL] = 5*60*HZ,
442 [IP_VS_UDP_S_LAST] = 2*HZ,
443};
444
Jan Engelhardt36cbd3d2009-08-05 10:42:58 -0700445static const char *const udp_state_name_table[IP_VS_UDP_S_LAST+1] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700446 [IP_VS_UDP_S_NORMAL] = "UDP",
447 [IP_VS_UDP_S_LAST] = "BUG!",
448};
449
Linus Torvalds1da177e2005-04-16 15:20:36 -0700450static const char * udp_state_name(int state)
451{
452 if (state >= IP_VS_UDP_S_LAST)
453 return "ERR!";
454 return udp_state_name_table[state] ? udp_state_name_table[state] : "?";
455}
456
457static int
458udp_state_transition(struct ip_vs_conn *cp, int direction,
459 const struct sk_buff *skb,
Hans Schillstrom93304192011-01-03 14:44:51 +0100460 struct ip_vs_proto_data *pd)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700461{
Hans Schillstrom78b16bd2011-01-03 14:44:48 +0100462 if (unlikely(!pd)) {
463 pr_err("UDP no ns data\n");
464 return 0;
465 }
466
467 cp->timeout = pd->timeout_table[IP_VS_UDP_S_NORMAL];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700468 return 1;
469}
470
Hans Schillstrom78b16bd2011-01-03 14:44:48 +0100471static void __udp_init(struct net *net, struct ip_vs_proto_data *pd)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700472{
Hans Schillstrom78b16bd2011-01-03 14:44:48 +0100473 struct netns_ipvs *ipvs = net_ipvs(net);
474
475 ip_vs_init_hash_table(ipvs->udp_apps, UDP_APP_TAB_SIZE);
476 spin_lock_init(&ipvs->udp_app_lock);
477 pd->timeout_table = ip_vs_create_timeout_table((int *)udp_timeouts,
478 sizeof(udp_timeouts));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700479}
480
Hans Schillstrom78b16bd2011-01-03 14:44:48 +0100481static void __udp_exit(struct net *net, struct ip_vs_proto_data *pd)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700482{
Hans Schillstrom78b16bd2011-01-03 14:44:48 +0100483 kfree(pd->timeout_table);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700484}
485
486
487struct ip_vs_protocol ip_vs_protocol_udp = {
488 .name = "UDP",
489 .protocol = IPPROTO_UDP,
Julian Anastasov2ad17de2008-04-29 03:21:23 -0700490 .num_states = IP_VS_UDP_S_LAST,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700491 .dont_defrag = 0,
Hans Schillstrom78b16bd2011-01-03 14:44:48 +0100492 .init = NULL,
493 .exit = NULL,
494 .init_netns = __udp_init,
495 .exit_netns = __udp_exit,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700496 .conn_schedule = udp_conn_schedule,
Simon Horman5c0d2372010-08-02 17:12:44 +0200497 .conn_in_get = ip_vs_conn_in_get_proto,
498 .conn_out_get = ip_vs_conn_out_get_proto,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700499 .snat_handler = udp_snat_handler,
500 .dnat_handler = udp_dnat_handler,
501 .csum_check = udp_csum_check,
502 .state_transition = udp_state_transition,
503 .state_name = udp_state_name,
504 .register_app = udp_register_app,
505 .unregister_app = udp_unregister_app,
506 .app_conn_bind = udp_app_conn_bind,
507 .debug_packet = ip_vs_tcpudp_debug_packet,
508 .timeout_change = NULL,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700509};