blob: e3ee26bd1de730189b7d792f2af7083f9ccf395a [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 *
12 * Changes:
13 *
14 */
15
Arnaldo Carvalho de Melo14c85022005-12-27 02:43:12 -020016#include <linux/in.h>
17#include <linux/ip.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070018#include <linux/kernel.h>
Herbert Xuaf1e1cf2007-10-14 00:39:33 -070019#include <linux/netfilter.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070020#include <linux/netfilter_ipv4.h>
Arnaldo Carvalho de Melo14c85022005-12-27 02:43:12 -020021#include <linux/udp.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070022
23#include <net/ip_vs.h>
Arnaldo Carvalho de Meloc9bdd4b2007-03-12 20:09:15 -030024#include <net/ip.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070025
26static struct ip_vs_conn *
Julius Volz51ef3482008-09-02 15:55:40 +020027udp_conn_in_get(int af, const struct sk_buff *skb, struct ip_vs_protocol *pp,
28 const struct ip_vs_iphdr *iph, unsigned int proto_off,
29 int inverse)
Linus Torvalds1da177e2005-04-16 15:20:36 -070030{
31 struct ip_vs_conn *cp;
Al Viro014d7302006-09-28 14:29:52 -070032 __be16 _ports[2], *pptr;
Linus Torvalds1da177e2005-04-16 15:20:36 -070033
34 pptr = skb_header_pointer(skb, proto_off, sizeof(_ports), _ports);
35 if (pptr == NULL)
36 return NULL;
37
38 if (likely(!inverse)) {
Julius Volz28364a52008-09-02 15:55:43 +020039 cp = ip_vs_conn_in_get(af, iph->protocol,
40 &iph->saddr, pptr[0],
41 &iph->daddr, pptr[1]);
Linus Torvalds1da177e2005-04-16 15:20:36 -070042 } else {
Julius Volz28364a52008-09-02 15:55:43 +020043 cp = ip_vs_conn_in_get(af, iph->protocol,
44 &iph->daddr, pptr[1],
45 &iph->saddr, pptr[0]);
Linus Torvalds1da177e2005-04-16 15:20:36 -070046 }
47
48 return cp;
49}
50
51
52static struct ip_vs_conn *
Julius Volz51ef3482008-09-02 15:55:40 +020053udp_conn_out_get(int af, const struct sk_buff *skb, struct ip_vs_protocol *pp,
54 const struct ip_vs_iphdr *iph, unsigned int proto_off,
55 int inverse)
Linus Torvalds1da177e2005-04-16 15:20:36 -070056{
57 struct ip_vs_conn *cp;
Al Viro014d7302006-09-28 14:29:52 -070058 __be16 _ports[2], *pptr;
Linus Torvalds1da177e2005-04-16 15:20:36 -070059
Julius Volz51ef3482008-09-02 15:55:40 +020060 pptr = skb_header_pointer(skb, proto_off, sizeof(_ports), _ports);
Linus Torvalds1da177e2005-04-16 15:20:36 -070061 if (pptr == NULL)
62 return NULL;
63
64 if (likely(!inverse)) {
Julius Volz28364a52008-09-02 15:55:43 +020065 cp = ip_vs_conn_out_get(af, iph->protocol,
66 &iph->saddr, pptr[0],
67 &iph->daddr, pptr[1]);
Linus Torvalds1da177e2005-04-16 15:20:36 -070068 } else {
Julius Volz28364a52008-09-02 15:55:43 +020069 cp = ip_vs_conn_out_get(af, iph->protocol,
70 &iph->daddr, pptr[1],
71 &iph->saddr, pptr[0]);
Linus Torvalds1da177e2005-04-16 15:20:36 -070072 }
73
74 return cp;
75}
76
77
78static int
Julius Volz51ef3482008-09-02 15:55:40 +020079udp_conn_schedule(int af, struct sk_buff *skb, struct ip_vs_protocol *pp,
Linus Torvalds1da177e2005-04-16 15:20:36 -070080 int *verdict, struct ip_vs_conn **cpp)
81{
82 struct ip_vs_service *svc;
83 struct udphdr _udph, *uh;
Julius Volz3c2e0502008-09-02 15:55:38 +020084 struct ip_vs_iphdr iph;
Linus Torvalds1da177e2005-04-16 15:20:36 -070085
Julius Volz51ef3482008-09-02 15:55:40 +020086 ip_vs_fill_iphdr(af, skb_network_header(skb), &iph);
Julius Volz3c2e0502008-09-02 15:55:38 +020087
88 uh = skb_header_pointer(skb, iph.len, sizeof(_udph), &_udph);
Linus Torvalds1da177e2005-04-16 15:20:36 -070089 if (uh == NULL) {
90 *verdict = NF_DROP;
91 return 0;
92 }
93
Julius Volz51ef3482008-09-02 15:55:40 +020094 svc = ip_vs_service_get(af, skb->mark, iph.protocol,
Julius Volz3c2e0502008-09-02 15:55:38 +020095 &iph.daddr, uh->dest);
96 if (svc) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070097 if (ip_vs_todrop()) {
98 /*
99 * It seems that we are very loaded.
100 * We have to drop this packet :(
101 */
102 ip_vs_service_put(svc);
103 *verdict = NF_DROP;
104 return 0;
105 }
106
107 /*
108 * Let the virtual server select a real server for the
109 * incoming connection, and create a connection entry.
110 */
111 *cpp = ip_vs_schedule(svc, skb);
112 if (!*cpp) {
113 *verdict = ip_vs_leave(svc, skb, pp);
114 return 0;
115 }
116 ip_vs_service_put(svc);
117 }
118 return 1;
119}
120
121
122static inline void
Julius Volz0bbdd422008-09-02 15:55:42 +0200123udp_fast_csum_update(int af, struct udphdr *uhdr,
124 const union nf_inet_addr *oldip,
125 const union nf_inet_addr *newip,
Al Viro014d7302006-09-28 14:29:52 -0700126 __be16 oldport, __be16 newport)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700127{
Julius Volz0bbdd422008-09-02 15:55:42 +0200128#ifdef CONFIG_IP_VS_IPV6
129 if (af == AF_INET6)
130 uhdr->check =
131 csum_fold(ip_vs_check_diff16(oldip->ip6, newip->ip6,
132 ip_vs_check_diff2(oldport, newport,
133 ~csum_unfold(uhdr->check))));
134 else
135#endif
136 uhdr->check =
137 csum_fold(ip_vs_check_diff4(oldip->ip, newip->ip,
138 ip_vs_check_diff2(oldport, newport,
139 ~csum_unfold(uhdr->check))));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700140 if (!uhdr->check)
Al Virof6ab0282006-11-16 02:36:50 -0800141 uhdr->check = CSUM_MANGLED_0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700142}
143
Simon Horman503e81f2008-09-08 12:04:21 +1000144static inline void
145udp_partial_csum_update(int af, struct udphdr *uhdr,
146 const union nf_inet_addr *oldip,
147 const union nf_inet_addr *newip,
148 __be16 oldlen, __be16 newlen)
149{
150#ifdef CONFIG_IP_VS_IPV6
151 if (af == AF_INET6)
152 uhdr->check =
153 csum_fold(ip_vs_check_diff16(oldip->ip6, newip->ip6,
154 ip_vs_check_diff2(oldlen, newlen,
155 ~csum_unfold(uhdr->check))));
156 else
157#endif
158 uhdr->check =
159 csum_fold(ip_vs_check_diff4(oldip->ip, newip->ip,
160 ip_vs_check_diff2(oldlen, newlen,
161 ~csum_unfold(uhdr->check))));
162}
163
164
Linus Torvalds1da177e2005-04-16 15:20:36 -0700165static int
Herbert Xu3db05fe2007-10-15 00:53:15 -0700166udp_snat_handler(struct sk_buff *skb,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700167 struct ip_vs_protocol *pp, struct ip_vs_conn *cp)
168{
169 struct udphdr *udph;
Julius Volz0bbdd422008-09-02 15:55:42 +0200170 unsigned int udphoff;
Simon Horman503e81f2008-09-08 12:04:21 +1000171 int oldlen;
Julius Volz0bbdd422008-09-02 15:55:42 +0200172
173#ifdef CONFIG_IP_VS_IPV6
174 if (cp->af == AF_INET6)
175 udphoff = sizeof(struct ipv6hdr);
176 else
177#endif
178 udphoff = ip_hdrlen(skb);
Simon Horman503e81f2008-09-08 12:04:21 +1000179 oldlen = skb->len - udphoff;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700180
181 /* csum_check requires unshared skb */
Herbert Xu3db05fe2007-10-15 00:53:15 -0700182 if (!skb_make_writable(skb, udphoff+sizeof(*udph)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700183 return 0;
184
185 if (unlikely(cp->app != NULL)) {
186 /* Some checks before mangling */
Julius Volz0bbdd422008-09-02 15:55:42 +0200187 if (pp->csum_check && !pp->csum_check(cp->af, skb, pp))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700188 return 0;
189
190 /*
191 * Call application helper if needed
192 */
Herbert Xu3db05fe2007-10-15 00:53:15 -0700193 if (!ip_vs_app_pkt_out(cp, skb))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700194 return 0;
195 }
196
Julius Volz0bbdd422008-09-02 15:55:42 +0200197 udph = (void *)skb_network_header(skb) + udphoff;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700198 udph->source = cp->vport;
199
200 /*
201 * Adjust UDP checksums
202 */
Simon Horman503e81f2008-09-08 12:04:21 +1000203 if (skb->ip_summed == CHECKSUM_PARTIAL) {
204 udp_partial_csum_update(cp->af, udph, &cp->daddr, &cp->vaddr,
205 htonl(oldlen),
206 htonl(skb->len - udphoff));
207 } else if (!cp->app && (udph->check != 0)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700208 /* Only port and addr are changed, do fast csum update */
Julius Volz0bbdd422008-09-02 15:55:42 +0200209 udp_fast_csum_update(cp->af, udph, &cp->daddr, &cp->vaddr,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700210 cp->dport, cp->vport);
Herbert Xu3db05fe2007-10-15 00:53:15 -0700211 if (skb->ip_summed == CHECKSUM_COMPLETE)
212 skb->ip_summed = CHECKSUM_NONE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700213 } else {
214 /* full checksum calculation */
215 udph->check = 0;
Herbert Xu3db05fe2007-10-15 00:53:15 -0700216 skb->csum = skb_checksum(skb, udphoff, skb->len - udphoff, 0);
Julius Volz0bbdd422008-09-02 15:55:42 +0200217#ifdef CONFIG_IP_VS_IPV6
218 if (cp->af == AF_INET6)
219 udph->check = csum_ipv6_magic(&cp->vaddr.in6,
220 &cp->caddr.in6,
221 skb->len - udphoff,
222 cp->protocol, skb->csum);
223 else
224#endif
225 udph->check = csum_tcpudp_magic(cp->vaddr.ip,
226 cp->caddr.ip,
227 skb->len - udphoff,
228 cp->protocol,
229 skb->csum);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700230 if (udph->check == 0)
Al Virof6ab0282006-11-16 02:36:50 -0800231 udph->check = CSUM_MANGLED_0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700232 IP_VS_DBG(11, "O-pkt: %s O-csum=%d (+%zd)\n",
233 pp->name, udph->check,
234 (char*)&(udph->check) - (char*)udph);
235 }
236 return 1;
237}
238
239
240static int
Herbert Xu3db05fe2007-10-15 00:53:15 -0700241udp_dnat_handler(struct sk_buff *skb,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700242 struct ip_vs_protocol *pp, struct ip_vs_conn *cp)
243{
244 struct udphdr *udph;
Julius Volz0bbdd422008-09-02 15:55:42 +0200245 unsigned int udphoff;
Simon Horman503e81f2008-09-08 12:04:21 +1000246 int oldlen;
Julius Volz0bbdd422008-09-02 15:55:42 +0200247
248#ifdef CONFIG_IP_VS_IPV6
249 if (cp->af == AF_INET6)
250 udphoff = sizeof(struct ipv6hdr);
251 else
252#endif
253 udphoff = ip_hdrlen(skb);
Simon Horman503e81f2008-09-08 12:04:21 +1000254 oldlen = skb->len - udphoff;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700255
256 /* csum_check requires unshared skb */
Herbert Xu3db05fe2007-10-15 00:53:15 -0700257 if (!skb_make_writable(skb, udphoff+sizeof(*udph)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700258 return 0;
259
260 if (unlikely(cp->app != NULL)) {
261 /* Some checks before mangling */
Julius Volz0bbdd422008-09-02 15:55:42 +0200262 if (pp->csum_check && !pp->csum_check(cp->af, skb, pp))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700263 return 0;
264
265 /*
266 * Attempt ip_vs_app call.
267 * It will fix ip_vs_conn
268 */
Herbert Xu3db05fe2007-10-15 00:53:15 -0700269 if (!ip_vs_app_pkt_in(cp, skb))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700270 return 0;
271 }
272
Julius Volz0bbdd422008-09-02 15:55:42 +0200273 udph = (void *)skb_network_header(skb) + udphoff;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700274 udph->dest = cp->dport;
275
276 /*
277 * Adjust UDP checksums
278 */
Simon Horman503e81f2008-09-08 12:04:21 +1000279 if (skb->ip_summed == CHECKSUM_PARTIAL) {
280 udp_partial_csum_update(cp->af, udph, &cp->daddr, &cp->vaddr,
281 htonl(oldlen),
282 htonl(skb->len - udphoff));
283 } else if (!cp->app && (udph->check != 0)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700284 /* Only port and addr are changed, do fast csum update */
Julius Volz0bbdd422008-09-02 15:55:42 +0200285 udp_fast_csum_update(cp->af, udph, &cp->vaddr, &cp->daddr,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700286 cp->vport, cp->dport);
Herbert Xu3db05fe2007-10-15 00:53:15 -0700287 if (skb->ip_summed == CHECKSUM_COMPLETE)
288 skb->ip_summed = CHECKSUM_NONE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700289 } else {
290 /* full checksum calculation */
291 udph->check = 0;
Herbert Xu3db05fe2007-10-15 00:53:15 -0700292 skb->csum = skb_checksum(skb, udphoff, skb->len - udphoff, 0);
Julius Volz0bbdd422008-09-02 15:55:42 +0200293#ifdef CONFIG_IP_VS_IPV6
294 if (cp->af == AF_INET6)
295 udph->check = csum_ipv6_magic(&cp->caddr.in6,
296 &cp->daddr.in6,
297 skb->len - udphoff,
298 cp->protocol, skb->csum);
299 else
300#endif
301 udph->check = csum_tcpudp_magic(cp->caddr.ip,
302 cp->daddr.ip,
303 skb->len - udphoff,
304 cp->protocol,
305 skb->csum);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700306 if (udph->check == 0)
Al Virof6ab0282006-11-16 02:36:50 -0800307 udph->check = CSUM_MANGLED_0;
Herbert Xu3db05fe2007-10-15 00:53:15 -0700308 skb->ip_summed = CHECKSUM_UNNECESSARY;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700309 }
310 return 1;
311}
312
313
314static int
Julius Volz51ef3482008-09-02 15:55:40 +0200315udp_csum_check(int af, struct sk_buff *skb, struct ip_vs_protocol *pp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700316{
317 struct udphdr _udph, *uh;
Julius Volz51ef3482008-09-02 15:55:40 +0200318 unsigned int udphoff;
319
320#ifdef CONFIG_IP_VS_IPV6
321 if (af == AF_INET6)
322 udphoff = sizeof(struct ipv6hdr);
323 else
324#endif
325 udphoff = ip_hdrlen(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700326
327 uh = skb_header_pointer(skb, udphoff, sizeof(_udph), &_udph);
328 if (uh == NULL)
329 return 0;
330
331 if (uh->check != 0) {
332 switch (skb->ip_summed) {
333 case CHECKSUM_NONE:
334 skb->csum = skb_checksum(skb, udphoff,
335 skb->len - udphoff, 0);
Patrick McHardy84fa7932006-08-29 16:44:56 -0700336 case CHECKSUM_COMPLETE:
Julius Volz51ef3482008-09-02 15:55:40 +0200337#ifdef CONFIG_IP_VS_IPV6
338 if (af == AF_INET6) {
339 if (csum_ipv6_magic(&ipv6_hdr(skb)->saddr,
340 &ipv6_hdr(skb)->daddr,
341 skb->len - udphoff,
342 ipv6_hdr(skb)->nexthdr,
343 skb->csum)) {
344 IP_VS_DBG_RL_PKT(0, pp, skb, 0,
345 "Failed checksum for");
346 return 0;
347 }
348 } else
349#endif
350 if (csum_tcpudp_magic(ip_hdr(skb)->saddr,
351 ip_hdr(skb)->daddr,
352 skb->len - udphoff,
353 ip_hdr(skb)->protocol,
354 skb->csum)) {
355 IP_VS_DBG_RL_PKT(0, pp, skb, 0,
356 "Failed checksum for");
357 return 0;
358 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700359 break;
360 default:
Patrick McHardy84fa7932006-08-29 16:44:56 -0700361 /* No need to checksum. */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700362 break;
363 }
364 }
365 return 1;
366}
367
368
369/*
370 * Note: the caller guarantees that only one of register_app,
371 * unregister_app or app_conn_bind is called each time.
372 */
373
374#define UDP_APP_TAB_BITS 4
375#define UDP_APP_TAB_SIZE (1 << UDP_APP_TAB_BITS)
376#define UDP_APP_TAB_MASK (UDP_APP_TAB_SIZE - 1)
377
378static struct list_head udp_apps[UDP_APP_TAB_SIZE];
379static DEFINE_SPINLOCK(udp_app_lock);
380
Al Viro75e7ce62006-11-14 21:13:28 -0800381static inline __u16 udp_app_hashkey(__be16 port)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700382{
Al Viro75e7ce62006-11-14 21:13:28 -0800383 return (((__force u16)port >> UDP_APP_TAB_BITS) ^ (__force u16)port)
384 & UDP_APP_TAB_MASK;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700385}
386
387
388static int udp_register_app(struct ip_vs_app *inc)
389{
390 struct ip_vs_app *i;
Al Viro75e7ce62006-11-14 21:13:28 -0800391 __u16 hash;
392 __be16 port = inc->port;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700393 int ret = 0;
394
395 hash = udp_app_hashkey(port);
396
397
398 spin_lock_bh(&udp_app_lock);
399 list_for_each_entry(i, &udp_apps[hash], p_list) {
400 if (i->port == port) {
401 ret = -EEXIST;
402 goto out;
403 }
404 }
405 list_add(&inc->p_list, &udp_apps[hash]);
406 atomic_inc(&ip_vs_protocol_udp.appcnt);
407
408 out:
409 spin_unlock_bh(&udp_app_lock);
410 return ret;
411}
412
413
414static void
415udp_unregister_app(struct ip_vs_app *inc)
416{
417 spin_lock_bh(&udp_app_lock);
418 atomic_dec(&ip_vs_protocol_udp.appcnt);
419 list_del(&inc->p_list);
420 spin_unlock_bh(&udp_app_lock);
421}
422
423
424static int udp_app_conn_bind(struct ip_vs_conn *cp)
425{
426 int hash;
427 struct ip_vs_app *inc;
428 int result = 0;
429
430 /* Default binding: bind app only for NAT */
431 if (IP_VS_FWD_METHOD(cp) != IP_VS_CONN_F_MASQ)
432 return 0;
433
434 /* Lookup application incarnations and bind the right one */
435 hash = udp_app_hashkey(cp->vport);
436
437 spin_lock(&udp_app_lock);
438 list_for_each_entry(inc, &udp_apps[hash], p_list) {
439 if (inc->port == cp->vport) {
440 if (unlikely(!ip_vs_app_inc_get(inc)))
441 break;
442 spin_unlock(&udp_app_lock);
443
Julius Volzcfc78c52008-09-02 15:55:53 +0200444 IP_VS_DBG_BUF(9, "%s: Binding conn %s:%u->"
445 "%s:%u to app %s on port %u\n",
446 __func__,
447 IP_VS_DBG_ADDR(cp->af, &cp->caddr),
448 ntohs(cp->cport),
449 IP_VS_DBG_ADDR(cp->af, &cp->vaddr),
450 ntohs(cp->vport),
451 inc->name, ntohs(inc->port));
452
Linus Torvalds1da177e2005-04-16 15:20:36 -0700453 cp->app = inc;
454 if (inc->init_conn)
455 result = inc->init_conn(inc, cp);
456 goto out;
457 }
458 }
459 spin_unlock(&udp_app_lock);
460
461 out:
462 return result;
463}
464
465
466static int udp_timeouts[IP_VS_UDP_S_LAST+1] = {
467 [IP_VS_UDP_S_NORMAL] = 5*60*HZ,
468 [IP_VS_UDP_S_LAST] = 2*HZ,
469};
470
471static char * udp_state_name_table[IP_VS_UDP_S_LAST+1] = {
472 [IP_VS_UDP_S_NORMAL] = "UDP",
473 [IP_VS_UDP_S_LAST] = "BUG!",
474};
475
476
477static int
478udp_set_state_timeout(struct ip_vs_protocol *pp, char *sname, int to)
479{
480 return ip_vs_set_state_timeout(pp->timeout_table, IP_VS_UDP_S_LAST,
481 udp_state_name_table, sname, to);
482}
483
484static const char * udp_state_name(int state)
485{
486 if (state >= IP_VS_UDP_S_LAST)
487 return "ERR!";
488 return udp_state_name_table[state] ? udp_state_name_table[state] : "?";
489}
490
491static int
492udp_state_transition(struct ip_vs_conn *cp, int direction,
493 const struct sk_buff *skb,
494 struct ip_vs_protocol *pp)
495{
496 cp->timeout = pp->timeout_table[IP_VS_UDP_S_NORMAL];
497 return 1;
498}
499
500static void udp_init(struct ip_vs_protocol *pp)
501{
502 IP_VS_INIT_HASH_TABLE(udp_apps);
503 pp->timeout_table = udp_timeouts;
504}
505
506static void udp_exit(struct ip_vs_protocol *pp)
507{
508}
509
510
511struct ip_vs_protocol ip_vs_protocol_udp = {
512 .name = "UDP",
513 .protocol = IPPROTO_UDP,
Julian Anastasov2ad17de2008-04-29 03:21:23 -0700514 .num_states = IP_VS_UDP_S_LAST,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700515 .dont_defrag = 0,
516 .init = udp_init,
517 .exit = udp_exit,
518 .conn_schedule = udp_conn_schedule,
519 .conn_in_get = udp_conn_in_get,
520 .conn_out_get = udp_conn_out_get,
521 .snat_handler = udp_snat_handler,
522 .dnat_handler = udp_dnat_handler,
523 .csum_check = udp_csum_check,
524 .state_transition = udp_state_transition,
525 .state_name = udp_state_name,
526 .register_app = udp_register_app,
527 .unregister_app = udp_unregister_app,
528 .app_conn_bind = udp_app_conn_bind,
529 .debug_packet = ip_vs_tcpudp_debug_packet,
530 .timeout_change = NULL,
531 .set_state_timeout = udp_set_state_timeout,
532};