fedora core 6 1.2949 + vserver 2.2.0
[linux-2.6.git] / net / ipv4 / udp.c
1 /*
2  * INET         An implementation of the TCP/IP protocol suite for the LINUX
3  *              operating system.  INET is implemented using the  BSD Socket
4  *              interface as the means of communication with the user level.
5  *
6  *              The User Datagram Protocol (UDP).
7  *
8  * Version:     $Id: udp.c,v 1.102 2002/02/01 22:01:04 davem Exp $
9  *
10  * Authors:     Ross Biro
11  *              Fred N. van Kempen, <waltje@uWalt.NL.Mugnet.ORG>
12  *              Arnt Gulbrandsen, <agulbra@nvg.unit.no>
13  *              Alan Cox, <Alan.Cox@linux.org>
14  *              Hirokazu Takahashi, <taka@valinux.co.jp>
15  *
16  * Fixes:
17  *              Alan Cox        :       verify_area() calls
18  *              Alan Cox        :       stopped close while in use off icmp
19  *                                      messages. Not a fix but a botch that
20  *                                      for udp at least is 'valid'.
21  *              Alan Cox        :       Fixed icmp handling properly
22  *              Alan Cox        :       Correct error for oversized datagrams
23  *              Alan Cox        :       Tidied select() semantics. 
24  *              Alan Cox        :       udp_err() fixed properly, also now 
25  *                                      select and read wake correctly on errors
26  *              Alan Cox        :       udp_send verify_area moved to avoid mem leak
27  *              Alan Cox        :       UDP can count its memory
28  *              Alan Cox        :       send to an unknown connection causes
29  *                                      an ECONNREFUSED off the icmp, but
30  *                                      does NOT close.
31  *              Alan Cox        :       Switched to new sk_buff handlers. No more backlog!
32  *              Alan Cox        :       Using generic datagram code. Even smaller and the PEEK
33  *                                      bug no longer crashes it.
34  *              Fred Van Kempen :       Net2e support for sk->broadcast.
35  *              Alan Cox        :       Uses skb_free_datagram
36  *              Alan Cox        :       Added get/set sockopt support.
37  *              Alan Cox        :       Broadcasting without option set returns EACCES.
38  *              Alan Cox        :       No wakeup calls. Instead we now use the callbacks.
39  *              Alan Cox        :       Use ip_tos and ip_ttl
40  *              Alan Cox        :       SNMP Mibs
41  *              Alan Cox        :       MSG_DONTROUTE, and 0.0.0.0 support.
42  *              Matt Dillon     :       UDP length checks.
43  *              Alan Cox        :       Smarter af_inet used properly.
44  *              Alan Cox        :       Use new kernel side addressing.
45  *              Alan Cox        :       Incorrect return on truncated datagram receive.
46  *      Arnt Gulbrandsen        :       New udp_send and stuff
47  *              Alan Cox        :       Cache last socket
48  *              Alan Cox        :       Route cache
49  *              Jon Peatfield   :       Minor efficiency fix to sendto().
50  *              Mike Shaver     :       RFC1122 checks.
51  *              Alan Cox        :       Nonblocking error fix.
52  *      Willy Konynenberg       :       Transparent proxying support.
53  *              Mike McLagan    :       Routing by source
54  *              David S. Miller :       New socket lookup architecture.
55  *                                      Last socket cache retained as it
56  *                                      does have a high hit rate.
57  *              Olaf Kirch      :       Don't linearise iovec on sendmsg.
58  *              Andi Kleen      :       Some cleanups, cache destination entry
59  *                                      for connect. 
60  *      Vitaly E. Lavrov        :       Transparent proxy revived after year coma.
61  *              Melvin Smith    :       Check msg_name not msg_namelen in sendto(),
62  *                                      return ENOTCONN for unconnected sockets (POSIX)
63  *              Janos Farkas    :       don't deliver multi/broadcasts to a different
64  *                                      bound-to-device socket
65  *      Hirokazu Takahashi      :       HW checksumming for outgoing UDP
66  *                                      datagrams.
67  *      Hirokazu Takahashi      :       sendfile() on UDP works now.
68  *              Arnaldo C. Melo :       convert /proc/net/udp to seq_file
69  *      YOSHIFUJI Hideaki @USAGI and:   Support IPV6_V6ONLY socket option, which
70  *      Alexey Kuznetsov:               allow both IPv4 and IPv6 sockets to bind
71  *                                      a single port at the same time.
72  *      Derek Atkins <derek@ihtfp.com>: Add Encapulation Support
73  *
74  *
75  *              This program is free software; you can redistribute it and/or
76  *              modify it under the terms of the GNU General Public License
77  *              as published by the Free Software Foundation; either version
78  *              2 of the License, or (at your option) any later version.
79  */
80  
81 #include <asm/system.h>
82 #include <asm/uaccess.h>
83 #include <asm/ioctls.h>
84 #include <linux/types.h>
85 #include <linux/fcntl.h>
86 #include <linux/module.h>
87 #include <linux/socket.h>
88 #include <linux/sockios.h>
89 #include <linux/igmp.h>
90 #include <linux/in.h>
91 #include <linux/errno.h>
92 #include <linux/timer.h>
93 #include <linux/mm.h>
94 #include <linux/inet.h>
95 #include <linux/netdevice.h>
96 #include <net/tcp_states.h>
97 #include <linux/skbuff.h>
98 #include <linux/proc_fs.h>
99 #include <linux/seq_file.h>
100 #include <net/icmp.h>
101 #include <net/route.h>
102 #include <net/checksum.h>
103 #include <net/xfrm.h>
104 #include "udp_impl.h"
105
106 /*
107  *      Snmp MIB for the UDP layer
108  */
109
110 DEFINE_SNMP_STAT(struct udp_mib, udp_statistics) __read_mostly;
111
112 struct hlist_head udp_hash[UDP_HTABLE_SIZE];
113 DEFINE_RWLOCK(udp_hash_lock);
114
115 static int udp_port_rover;
116
117 static inline int __udp_lib_lport_inuse(__u16 num, struct hlist_head udptable[])
118 {
119         struct sock *sk;
120         struct hlist_node *node;
121
122         sk_for_each(sk, node, &udptable[num & (UDP_HTABLE_SIZE - 1)])
123                 if (inet_sk(sk)->num == num)
124                         return 1;
125         return 0;
126 }
127
128 /**
129  *  __udp_lib_get_port  -  UDP/-Lite port lookup for IPv4 and IPv6
130  *
131  *  @sk:          socket struct in question
132  *  @snum:        port number to look up
133  *  @udptable:    hash list table, must be of UDP_HTABLE_SIZE
134  *  @port_rover:  pointer to record of last unallocated port
135  *  @saddr_comp:  AF-dependent comparison of bound local IP addresses
136  */
137 int __udp_lib_get_port(struct sock *sk, unsigned short snum,
138                        struct hlist_head udptable[], int *port_rover,
139                        int (*saddr_comp)(const struct sock *sk1,
140                                          const struct sock *sk2 )    )
141 {
142         struct hlist_node *node;
143         struct hlist_head *head;
144         struct sock *sk2;
145         int    error = 1;
146
147         write_lock_bh(&udp_hash_lock);
148         if (snum == 0) {
149                 int best_size_so_far, best, result, i;
150
151                 if (*port_rover > sysctl_local_port_range[1] ||
152                     *port_rover < sysctl_local_port_range[0])
153                         *port_rover = sysctl_local_port_range[0];
154                 best_size_so_far = 32767;
155                 best = result = *port_rover;
156                 for (i = 0; i < UDP_HTABLE_SIZE; i++, result++) {
157                         int size;
158
159                         head = &udptable[result & (UDP_HTABLE_SIZE - 1)];
160                         if (hlist_empty(head)) {
161                                 if (result > sysctl_local_port_range[1])
162                                         result = sysctl_local_port_range[0] +
163                                                 ((result - sysctl_local_port_range[0]) &
164                                                  (UDP_HTABLE_SIZE - 1));
165                                 goto gotit;
166                         }
167                         size = 0;
168                         sk_for_each(sk2, node, head) {
169                                 if (++size >= best_size_so_far)
170                                         goto next;
171                         }
172                         best_size_so_far = size;
173                         best = result;
174                 next:
175                         ;
176                 }
177                 result = best;
178                 for(i = 0; i < (1 << 16) / UDP_HTABLE_SIZE; i++, result += UDP_HTABLE_SIZE) {
179                         if (result > sysctl_local_port_range[1])
180                                 result = sysctl_local_port_range[0]
181                                         + ((result - sysctl_local_port_range[0]) &
182                                            (UDP_HTABLE_SIZE - 1));
183                         if (! __udp_lib_lport_inuse(result, udptable))
184                                 break;
185                 }
186                 if (i >= (1 << 16) / UDP_HTABLE_SIZE)
187                         goto fail;
188 gotit:
189                 *port_rover = snum = result;
190         } else {
191                 head = &udptable[snum & (UDP_HTABLE_SIZE - 1)];
192
193                 sk_for_each(sk2, node, head)
194                         if (inet_sk(sk2)->num == snum                        &&
195                             sk2 != sk                                        &&
196                             (!sk2->sk_reuse        || !sk->sk_reuse)         &&
197                             (!sk2->sk_bound_dev_if || !sk->sk_bound_dev_if
198                              || sk2->sk_bound_dev_if == sk->sk_bound_dev_if) &&
199                             (*saddr_comp)(sk, sk2)                             )
200                                 goto fail;
201         }
202         inet_sk(sk)->num = snum;
203         if (sk_unhashed(sk)) {
204                 head = &udptable[snum & (UDP_HTABLE_SIZE - 1)];
205                 sk_add_node(sk, head);
206                 sock_prot_inc_use(sk->sk_prot);
207         }
208         error = 0;
209 fail:
210         write_unlock_bh(&udp_hash_lock);
211         return error;
212 }
213
214 __inline__ int udp_get_port(struct sock *sk, unsigned short snum,
215                         int (*scmp)(const struct sock *, const struct sock *))
216 {
217         return  __udp_lib_get_port(sk, snum, udp_hash, &udp_port_rover, scmp);
218 }
219
220 inline int ipv4_rcv_saddr_equal(const struct sock *sk1, const struct sock *sk2)
221 {
222         return  ( !ipv6_only_sock(sk2)  &&
223                    nx_addr_conflict(sk1->sk_nx_info, inet_rcv_saddr(sk1), sk2));
224 }
225
226 static inline int udp_v4_get_port(struct sock *sk, unsigned short snum)
227 {
228         return udp_get_port(sk, snum, ipv4_rcv_saddr_equal);
229 }
230
231 /* UDP is nearly always wildcards out the wazoo, it makes no sense to try
232  * harder than this. -DaveM
233  */
234 static struct sock *__udp4_lib_lookup(__be32 saddr, __be16 sport,
235                                       __be32 daddr, __be16 dport,
236                                       int dif, struct hlist_head udptable[])
237 {
238         struct sock *sk, *result = NULL;
239         struct hlist_node *node;
240         unsigned short hnum = ntohs(dport);
241         int badness = -1;
242
243         read_lock(&udp_hash_lock);
244         sk_for_each(sk, node, &udptable[hnum & (UDP_HTABLE_SIZE - 1)]) {
245                 struct inet_sock *inet = inet_sk(sk);
246
247                 if (inet->num == hnum && !ipv6_only_sock(sk)) {
248                         int score = (sk->sk_family == PF_INET ? 1 : 0);
249                         if (inet->rcv_saddr) {
250                                 if (inet->rcv_saddr != daddr)
251                                         continue;
252                                 score+=2;
253                         } else if (sk->sk_nx_info) {
254                                 if (addr_in_nx_info(sk->sk_nx_info, daddr))
255                                         score+=2;
256                                 else
257                                         continue;
258                         }
259                         if (inet->daddr) {
260                                 if (inet->daddr != saddr)
261                                         continue;
262                                 score+=2;
263                         }
264                         if (inet->dport) {
265                                 if (inet->dport != sport)
266                                         continue;
267                                 score+=2;
268                         }
269                         if (sk->sk_bound_dev_if) {
270                                 if (sk->sk_bound_dev_if != dif)
271                                         continue;
272                                 score+=2;
273                         }
274                         if(score == 9) {
275                                 result = sk;
276                                 break;
277                         } else if(score > badness) {
278                                 result = sk;
279                                 badness = score;
280                         }
281                 }
282         }
283         if (result)
284                 sock_hold(result);
285         read_unlock(&udp_hash_lock);
286         return result;
287 }
288
289 static inline struct sock *udp_v4_mcast_next(struct sock *sk,
290                                              __be16 loc_port, __be32 loc_addr,
291                                              __be16 rmt_port, __be32 rmt_addr,
292                                              int dif)
293 {
294         struct hlist_node *node;
295         struct sock *s = sk;
296         unsigned short hnum = ntohs(loc_port);
297
298         sk_for_each_from(s, node) {
299                 struct inet_sock *inet = inet_sk(s);
300
301                 if (inet->num != hnum                                   ||
302                     (inet->daddr && inet->daddr != rmt_addr)            ||
303                     (inet->dport != rmt_port && inet->dport)            ||
304                     (inet->rcv_saddr && inet->rcv_saddr != loc_addr &&
305                      inet->rcv_saddr2 && inet->rcv_saddr2 != loc_addr)  ||
306                     ipv6_only_sock(s)                                   ||
307                     (s->sk_bound_dev_if && s->sk_bound_dev_if != dif))
308                         continue;
309                 if (!ip_mc_sf_allow(s, loc_addr, rmt_addr, dif))
310                         continue;
311                 goto found;
312         }
313         s = NULL;
314 found:
315         return s;
316 }
317
318 /*
319  * This routine is called by the ICMP module when it gets some
320  * sort of error condition.  If err < 0 then the socket should
321  * be closed and the error returned to the user.  If err > 0
322  * it's just the icmp type << 8 | icmp code.  
323  * Header points to the ip header of the error packet. We move
324  * on past this. Then (as it used to claim before adjustment)
325  * header points to the first 8 bytes of the udp header.  We need
326  * to find the appropriate port.
327  */
328
329 void __udp4_lib_err(struct sk_buff *skb, u32 info, struct hlist_head udptable[])
330 {
331         struct inet_sock *inet;
332         struct iphdr *iph = (struct iphdr*)skb->data;
333         struct udphdr *uh = (struct udphdr*)(skb->data+(iph->ihl<<2));
334         int type = skb->h.icmph->type;
335         int code = skb->h.icmph->code;
336         struct sock *sk;
337         int harderr;
338         int err;
339
340         sk = __udp4_lib_lookup(iph->daddr, uh->dest, iph->saddr, uh->source,
341                                skb->dev->ifindex, udptable                  );
342         if (sk == NULL) {
343                 ICMP_INC_STATS_BH(ICMP_MIB_INERRORS);
344                 return; /* No socket for error */
345         }
346
347         err = 0;
348         harderr = 0;
349         inet = inet_sk(sk);
350
351         switch (type) {
352         default:
353         case ICMP_TIME_EXCEEDED:
354                 err = EHOSTUNREACH;
355                 break;
356         case ICMP_SOURCE_QUENCH:
357                 goto out;
358         case ICMP_PARAMETERPROB:
359                 err = EPROTO;
360                 harderr = 1;
361                 break;
362         case ICMP_DEST_UNREACH:
363                 if (code == ICMP_FRAG_NEEDED) { /* Path MTU discovery */
364                         if (inet->pmtudisc != IP_PMTUDISC_DONT) {
365                                 err = EMSGSIZE;
366                                 harderr = 1;
367                                 break;
368                         }
369                         goto out;
370                 }
371                 err = EHOSTUNREACH;
372                 if (code <= NR_ICMP_UNREACH) {
373                         harderr = icmp_err_convert[code].fatal;
374                         err = icmp_err_convert[code].errno;
375                 }
376                 break;
377         }
378
379         /*
380          *      RFC1122: OK.  Passes ICMP errors back to application, as per 
381          *      4.1.3.3.
382          */
383         if (!inet->recverr) {
384                 if (!harderr || sk->sk_state != TCP_ESTABLISHED)
385                         goto out;
386         } else {
387                 ip_icmp_error(sk, skb, err, uh->dest, info, (u8*)(uh+1));
388         }
389         sk->sk_err = err;
390         sk->sk_error_report(sk);
391 out:
392         sock_put(sk);
393 }
394
395 __inline__ void udp_err(struct sk_buff *skb, u32 info)
396 {
397         return __udp4_lib_err(skb, info, udp_hash);
398 }
399
400 /*
401  * Throw away all pending data and cancel the corking. Socket is locked.
402  */
403 static void udp_flush_pending_frames(struct sock *sk)
404 {
405         struct udp_sock *up = udp_sk(sk);
406
407         if (up->pending) {
408                 up->len = 0;
409                 up->pending = 0;
410                 ip_flush_pending_frames(sk);
411         }
412 }
413
414 /**
415  *      udp4_hwcsum_outgoing  -  handle outgoing HW checksumming
416  *      @sk:    socket we are sending on
417  *      @skb:   sk_buff containing the filled-in UDP header
418  *              (checksum field must be zeroed out)
419  */
420 static void udp4_hwcsum_outgoing(struct sock *sk, struct sk_buff *skb,
421                                  __be32 src, __be32 dst, int len      )
422 {
423         unsigned int offset;
424         struct udphdr *uh = skb->h.uh;
425         __wsum csum = 0;
426
427         if (skb_queue_len(&sk->sk_write_queue) == 1) {
428                 /*
429                  * Only one fragment on the socket.
430                  */
431                 skb->csum_offset = offsetof(struct udphdr, check);
432                 uh->check = ~csum_tcpudp_magic(src, dst, len, IPPROTO_UDP, 0);
433         } else {
434                 /*
435                  * HW-checksum won't work as there are two or more
436                  * fragments on the socket so that all csums of sk_buffs
437                  * should be together
438                  */
439                 offset = skb->h.raw - skb->data;
440                 skb->csum = skb_checksum(skb, offset, skb->len - offset, 0);
441
442                 skb->ip_summed = CHECKSUM_NONE;
443
444                 skb_queue_walk(&sk->sk_write_queue, skb) {
445                         csum = csum_add(csum, skb->csum);
446                 }
447
448                 uh->check = csum_tcpudp_magic(src, dst, len, IPPROTO_UDP, csum);
449                 if (uh->check == 0)
450                         uh->check = CSUM_MANGLED_0;
451         }
452 }
453
454 /*
455  * Push out all pending data as one UDP datagram. Socket is locked.
456  */
457 static int udp_push_pending_frames(struct sock *sk)
458 {
459         struct udp_sock  *up = udp_sk(sk);
460         struct inet_sock *inet = inet_sk(sk);
461         struct flowi *fl = &inet->cork.fl;
462         struct sk_buff *skb;
463         struct udphdr *uh;
464         int err = 0;
465         __wsum csum = 0;
466
467         /* Grab the skbuff where UDP header space exists. */
468         if ((skb = skb_peek(&sk->sk_write_queue)) == NULL)
469                 goto out;
470
471         /*
472          * Create a UDP header
473          */
474         uh = skb->h.uh;
475         uh->source = fl->fl_ip_sport;
476         uh->dest = fl->fl_ip_dport;
477         uh->len = htons(up->len);
478         uh->check = 0;
479
480         if (up->pcflag)                                  /*     UDP-Lite      */
481                 csum  = udplite_csum_outgoing(sk, skb);
482
483         else if (sk->sk_no_check == UDP_CSUM_NOXMIT) {   /* UDP csum disabled */
484
485                 skb->ip_summed = CHECKSUM_NONE;
486                 goto send;
487
488         } else if (skb->ip_summed == CHECKSUM_PARTIAL) { /* UDP hardware csum */
489
490                 udp4_hwcsum_outgoing(sk, skb, fl->fl4_src,fl->fl4_dst, up->len);
491                 goto send;
492
493         } else                                           /*   `normal' UDP    */
494                 csum = udp_csum_outgoing(sk, skb);
495
496         /* add protocol-dependent pseudo-header */
497         uh->check = csum_tcpudp_magic(fl->fl4_src, fl->fl4_dst, up->len,
498                                       sk->sk_protocol, csum             );
499         if (uh->check == 0)
500                 uh->check = CSUM_MANGLED_0;
501
502 send:
503         err = ip_push_pending_frames(sk);
504 out:
505         up->len = 0;
506         up->pending = 0;
507         return err;
508 }
509
510 int udp_sendmsg(struct kiocb *iocb, struct sock *sk, struct msghdr *msg,
511                 size_t len)
512 {
513         struct inet_sock *inet = inet_sk(sk);
514         struct udp_sock *up = udp_sk(sk);
515         int ulen = len;
516         struct ipcm_cookie ipc;
517         struct rtable *rt = NULL;
518         int free = 0;
519         int connected = 0;
520         __be32 daddr, faddr, saddr;
521         __be16 dport;
522         u8  tos;
523         int err, is_udplite = up->pcflag;
524         int corkreq = up->corkflag || msg->msg_flags&MSG_MORE;
525         int (*getfrag)(void *, char *, int, int, int, struct sk_buff *);
526
527         if (len > 0xFFFF)
528                 return -EMSGSIZE;
529
530         /* 
531          *      Check the flags.
532          */
533
534         if (msg->msg_flags&MSG_OOB)     /* Mirror BSD error message compatibility */
535                 return -EOPNOTSUPP;
536
537         ipc.opt = NULL;
538
539         if (up->pending) {
540                 /*
541                  * There are pending frames.
542                  * The socket lock must be held while it's corked.
543                  */
544                 lock_sock(sk);
545                 if (likely(up->pending)) {
546                         if (unlikely(up->pending != AF_INET)) {
547                                 release_sock(sk);
548                                 return -EINVAL;
549                         }
550                         goto do_append_data;
551                 }
552                 release_sock(sk);
553         }
554         ulen += sizeof(struct udphdr);
555
556         /*
557          *      Get and verify the address. 
558          */
559         if (msg->msg_name) {
560                 struct sockaddr_in * usin = (struct sockaddr_in*)msg->msg_name;
561                 if (msg->msg_namelen < sizeof(*usin))
562                         return -EINVAL;
563                 if (usin->sin_family != AF_INET) {
564                         if (usin->sin_family != AF_UNSPEC)
565                                 return -EAFNOSUPPORT;
566                 }
567
568                 daddr = usin->sin_addr.s_addr;
569                 dport = usin->sin_port;
570                 if (dport == 0)
571                         return -EINVAL;
572         } else {
573                 if (sk->sk_state != TCP_ESTABLISHED)
574                         return -EDESTADDRREQ;
575                 daddr = inet->daddr;
576                 dport = inet->dport;
577                 /* Open fast path for connected socket.
578                    Route will not be used, if at least one option is set.
579                  */
580                 connected = 1;
581         }
582         ipc.addr = inet->saddr;
583
584         ipc.oif = sk->sk_bound_dev_if;
585         if (msg->msg_controllen) {
586                 err = ip_cmsg_send(msg, &ipc);
587                 if (err)
588                         return err;
589                 if (ipc.opt)
590                         free = 1;
591                 connected = 0;
592         }
593         if (!ipc.opt)
594                 ipc.opt = inet->opt;
595
596         saddr = ipc.addr;
597         ipc.addr = faddr = daddr;
598
599         if (ipc.opt && ipc.opt->srr) {
600                 if (!daddr)
601                         return -EINVAL;
602                 faddr = ipc.opt->faddr;
603                 connected = 0;
604         }
605         tos = RT_TOS(inet->tos);
606         if (sock_flag(sk, SOCK_LOCALROUTE) ||
607             (msg->msg_flags & MSG_DONTROUTE) || 
608             (ipc.opt && ipc.opt->is_strictroute)) {
609                 tos |= RTO_ONLINK;
610                 connected = 0;
611         }
612
613         if (MULTICAST(daddr)) {
614                 if (!ipc.oif)
615                         ipc.oif = inet->mc_index;
616                 if (!saddr)
617                         saddr = inet->mc_addr;
618                 connected = 0;
619         }
620
621         if (connected)
622                 rt = (struct rtable*)sk_dst_check(sk, 0);
623
624         if (rt == NULL) {
625                 struct flowi fl = { .oif = ipc.oif,
626                                     .nl_u = { .ip4_u =
627                                               { .daddr = faddr,
628                                                 .saddr = saddr,
629                                                 .tos = tos } },
630                                     .proto = sk->sk_protocol,
631                                     .uli_u = { .ports =
632                                                { .sport = inet->sport,
633                                                  .dport = dport } } };
634                 struct nx_info *nxi = sk->sk_nx_info;
635
636                 security_sk_classify_flow(sk, &fl);
637                 if (nxi) {
638                         err = ip_find_src(nxi, &rt, &fl);
639                         if (err)
640                                 goto out;
641                         if (daddr == IPI_LOOPBACK && !nx_check(0, VS_ADMIN))
642                                 daddr = fl.fl4_dst = nxi->ipv4[0];
643 #ifdef CONFIG_VSERVER_REMAP_SADDR
644                         if (saddr == IPI_LOOPBACK && !nx_check(0, VS_ADMIN))
645                                 saddr = fl.fl4_src = nxi->ipv4[0];
646 #endif
647                 }
648                 err = ip_route_output_flow(&rt, &fl, sk, !(msg->msg_flags&MSG_DONTWAIT));
649                 if (err)
650                         goto out;
651
652                 err = -EACCES;
653                 if ((rt->rt_flags & RTCF_BROADCAST) &&
654                     !sock_flag(sk, SOCK_BROADCAST))
655                         goto out;
656                 if (connected)
657                         sk_dst_set(sk, dst_clone(&rt->u.dst));
658         }
659
660         if (msg->msg_flags&MSG_CONFIRM)
661                 goto do_confirm;
662 back_from_confirm:
663
664         saddr = rt->rt_src;
665         if (!ipc.addr)
666                 daddr = ipc.addr = rt->rt_dst;
667
668         lock_sock(sk);
669         if (unlikely(up->pending)) {
670                 /* The socket is already corked while preparing it. */
671                 /* ... which is an evident application bug. --ANK */
672                 release_sock(sk);
673
674                 LIMIT_NETDEBUG(KERN_DEBUG "udp cork app bug 2\n");
675                 err = -EINVAL;
676                 goto out;
677         }
678         /*
679          *      Now cork the socket to pend data.
680          */
681         inet->cork.fl.fl4_dst = daddr;
682         inet->cork.fl.fl_ip_dport = dport;
683         inet->cork.fl.fl4_src = saddr;
684         inet->cork.fl.fl_ip_sport = inet->sport;
685         up->pending = AF_INET;
686
687 do_append_data:
688         up->len += ulen;
689         getfrag  =  is_udplite ?  udplite_getfrag : ip_generic_getfrag;
690         err = ip_append_data(sk, getfrag, msg->msg_iov, ulen,
691                         sizeof(struct udphdr), &ipc, rt,
692                         corkreq ? msg->msg_flags|MSG_MORE : msg->msg_flags);
693         if (err)
694                 udp_flush_pending_frames(sk);
695         else if (!corkreq)
696                 err = udp_push_pending_frames(sk);
697         else if (unlikely(skb_queue_empty(&sk->sk_write_queue)))
698                 up->pending = 0;
699         release_sock(sk);
700
701 out:
702         ip_rt_put(rt);
703         if (free)
704                 kfree(ipc.opt);
705         if (!err) {
706                 UDP_INC_STATS_USER(UDP_MIB_OUTDATAGRAMS, is_udplite);
707                 return len;
708         }
709         /*
710          * ENOBUFS = no kernel mem, SOCK_NOSPACE = no sndbuf space.  Reporting
711          * ENOBUFS might not be good (it's not tunable per se), but otherwise
712          * we don't have a good statistic (IpOutDiscards but it can be too many
713          * things).  We could add another new stat but at least for now that
714          * seems like overkill.
715          */
716         if (err == -ENOBUFS || test_bit(SOCK_NOSPACE, &sk->sk_socket->flags)) {
717                 UDP_INC_STATS_USER(UDP_MIB_SNDBUFERRORS, is_udplite);
718         }
719         return err;
720
721 do_confirm:
722         dst_confirm(&rt->u.dst);
723         if (!(msg->msg_flags&MSG_PROBE) || len)
724                 goto back_from_confirm;
725         err = 0;
726         goto out;
727 }
728
729 int udp_sendpage(struct sock *sk, struct page *page, int offset,
730                  size_t size, int flags)
731 {
732         struct udp_sock *up = udp_sk(sk);
733         int ret;
734
735         if (!up->pending) {
736                 struct msghdr msg = {   .msg_flags = flags|MSG_MORE };
737
738                 /* Call udp_sendmsg to specify destination address which
739                  * sendpage interface can't pass.
740                  * This will succeed only when the socket is connected.
741                  */
742                 ret = udp_sendmsg(NULL, sk, &msg, 0);
743                 if (ret < 0)
744                         return ret;
745         }
746
747         lock_sock(sk);
748
749         if (unlikely(!up->pending)) {
750                 release_sock(sk);
751
752                 LIMIT_NETDEBUG(KERN_DEBUG "udp cork app bug 3\n");
753                 return -EINVAL;
754         }
755
756         ret = ip_append_page(sk, page, offset, size, flags);
757         if (ret == -EOPNOTSUPP) {
758                 release_sock(sk);
759                 return sock_no_sendpage(sk->sk_socket, page, offset,
760                                         size, flags);
761         }
762         if (ret < 0) {
763                 udp_flush_pending_frames(sk);
764                 goto out;
765         }
766
767         up->len += size;
768         if (!(up->corkflag || (flags&MSG_MORE)))
769                 ret = udp_push_pending_frames(sk);
770         if (!ret)
771                 ret = size;
772 out:
773         release_sock(sk);
774         return ret;
775 }
776
777 /*
778  *      IOCTL requests applicable to the UDP protocol
779  */
780  
781 int udp_ioctl(struct sock *sk, int cmd, unsigned long arg)
782 {
783         switch(cmd) 
784         {
785                 case SIOCOUTQ:
786                 {
787                         int amount = atomic_read(&sk->sk_wmem_alloc);
788                         return put_user(amount, (int __user *)arg);
789                 }
790
791                 case SIOCINQ:
792                 {
793                         struct sk_buff *skb;
794                         unsigned long amount;
795
796                         amount = 0;
797                         spin_lock_bh(&sk->sk_receive_queue.lock);
798                         skb = skb_peek(&sk->sk_receive_queue);
799                         if (skb != NULL) {
800                                 /*
801                                  * We will only return the amount
802                                  * of this packet since that is all
803                                  * that will be read.
804                                  */
805                                 amount = skb->len - sizeof(struct udphdr);
806                         }
807                         spin_unlock_bh(&sk->sk_receive_queue.lock);
808                         return put_user(amount, (int __user *)arg);
809                 }
810
811                 default:
812                         return -ENOIOCTLCMD;
813         }
814         return(0);
815 }
816
817 /*
818  *      This should be easy, if there is something there we
819  *      return it, otherwise we block.
820  */
821
822 int udp_recvmsg(struct kiocb *iocb, struct sock *sk, struct msghdr *msg,
823                 size_t len, int noblock, int flags, int *addr_len)
824 {
825         struct inet_sock *inet = inet_sk(sk);
826         struct sockaddr_in *sin = (struct sockaddr_in *)msg->msg_name;
827         struct sk_buff *skb;
828         int copied, err, copy_only, is_udplite = IS_UDPLITE(sk);
829
830         /*
831          *      Check any passed addresses
832          */
833         if (addr_len)
834                 *addr_len=sizeof(*sin);
835
836         if (flags & MSG_ERRQUEUE)
837                 return ip_recv_error(sk, msg, len);
838
839 try_again:
840         skb = skb_recv_datagram(sk, flags, noblock, &err);
841         if (!skb)
842                 goto out;
843   
844         copied = skb->len - sizeof(struct udphdr);
845         if (copied > len) {
846                 copied = len;
847                 msg->msg_flags |= MSG_TRUNC;
848         }
849
850         /*
851          *      Decide whether to checksum and/or copy data.
852          *
853          *      UDP:      checksum may have been computed in HW,
854          *                (re-)compute it if message is truncated.
855          *      UDP-Lite: always needs to checksum, no HW support.
856          */
857         copy_only = (skb->ip_summed==CHECKSUM_UNNECESSARY);
858
859         if (is_udplite  ||  (!copy_only  &&  msg->msg_flags&MSG_TRUNC)) {
860                 if (__udp_lib_checksum_complete(skb))
861                         goto csum_copy_err;
862                 copy_only = 1;
863         }
864
865         if (copy_only)
866                 err = skb_copy_datagram_iovec(skb, sizeof(struct udphdr),
867                                               msg->msg_iov, copied       );
868         else {
869                 err = skb_copy_and_csum_datagram_iovec(skb, sizeof(struct udphdr), msg->msg_iov);
870
871                 if (err == -EINVAL)
872                         goto csum_copy_err;
873         }
874
875         if (err)
876                 goto out_free;
877
878         sock_recv_timestamp(msg, sk, skb);
879
880         /* Copy the address. */
881         if (sin)
882         {
883                 sin->sin_family = AF_INET;
884                 sin->sin_port = skb->h.uh->source;
885                 sin->sin_addr.s_addr = skb->nh.iph->saddr;
886                 memset(sin->sin_zero, 0, sizeof(sin->sin_zero));
887         }
888         if (inet->cmsg_flags)
889                 ip_cmsg_recv(msg, skb);
890
891         err = copied;
892         if (flags & MSG_TRUNC)
893                 err = skb->len - sizeof(struct udphdr);
894   
895 out_free:
896         skb_free_datagram(sk, skb);
897 out:
898         return err;
899
900 csum_copy_err:
901         UDP_INC_STATS_BH(UDP_MIB_INERRORS, is_udplite);
902
903         skb_kill_datagram(sk, skb, flags);
904
905         if (noblock)
906                 return -EAGAIN; 
907         goto try_again;
908 }
909
910
911 int udp_disconnect(struct sock *sk, int flags)
912 {
913         struct inet_sock *inet = inet_sk(sk);
914         /*
915          *      1003.1g - break association.
916          */
917          
918         sk->sk_state = TCP_CLOSE;
919         inet->daddr = 0;
920         inet->dport = 0;
921         sk->sk_bound_dev_if = 0;
922         if (!(sk->sk_userlocks & SOCK_BINDADDR_LOCK))
923                 inet_reset_saddr(sk);
924
925         if (!(sk->sk_userlocks & SOCK_BINDPORT_LOCK)) {
926                 sk->sk_prot->unhash(sk);
927                 inet->sport = 0;
928         }
929         sk_dst_reset(sk);
930         return 0;
931 }
932
933 /* return:
934  *      1  if the the UDP system should process it
935  *      0  if we should drop this packet
936  *      -1 if it should get processed by xfrm4_rcv_encap
937  */
938 static int udp_encap_rcv(struct sock * sk, struct sk_buff *skb)
939 {
940 #ifndef CONFIG_XFRM
941         return 1; 
942 #else
943         struct udp_sock *up = udp_sk(sk);
944         struct udphdr *uh;
945         struct iphdr *iph;
946         int iphlen, len;
947   
948         __u8 *udpdata;
949         __be32 *udpdata32;
950         __u16 encap_type = up->encap_type;
951
952         /* if we're overly short, let UDP handle it */
953         len = skb->len - sizeof(struct udphdr);
954         if (len <= 0)
955                 return 1;
956
957         /* if this is not encapsulated socket, then just return now */
958         if (!encap_type)
959                 return 1;
960
961         /* If this is a paged skb, make sure we pull up
962          * whatever data we need to look at. */
963         if (!pskb_may_pull(skb, sizeof(struct udphdr) + min(len, 8)))
964                 return 1;
965
966         /* Now we can get the pointers */
967         uh = skb->h.uh;
968         udpdata = (__u8 *)uh + sizeof(struct udphdr);
969         udpdata32 = (__be32 *)udpdata;
970
971         switch (encap_type) {
972         default:
973         case UDP_ENCAP_ESPINUDP:
974                 /* Check if this is a keepalive packet.  If so, eat it. */
975                 if (len == 1 && udpdata[0] == 0xff) {
976                         return 0;
977                 } else if (len > sizeof(struct ip_esp_hdr) && udpdata32[0] != 0 ) {
978                         /* ESP Packet without Non-ESP header */
979                         len = sizeof(struct udphdr);
980                 } else
981                         /* Must be an IKE packet.. pass it through */
982                         return 1;
983                 break;
984         case UDP_ENCAP_ESPINUDP_NON_IKE:
985                 /* Check if this is a keepalive packet.  If so, eat it. */
986                 if (len == 1 && udpdata[0] == 0xff) {
987                         return 0;
988                 } else if (len > 2 * sizeof(u32) + sizeof(struct ip_esp_hdr) &&
989                            udpdata32[0] == 0 && udpdata32[1] == 0) {
990                         
991                         /* ESP Packet with Non-IKE marker */
992                         len = sizeof(struct udphdr) + 2 * sizeof(u32);
993                 } else
994                         /* Must be an IKE packet.. pass it through */
995                         return 1;
996                 break;
997         }
998
999         /* At this point we are sure that this is an ESPinUDP packet,
1000          * so we need to remove 'len' bytes from the packet (the UDP
1001          * header and optional ESP marker bytes) and then modify the
1002          * protocol to ESP, and then call into the transform receiver.
1003          */
1004         if (skb_cloned(skb) && pskb_expand_head(skb, 0, 0, GFP_ATOMIC))
1005                 return 0;
1006
1007         /* Now we can update and verify the packet length... */
1008         iph = skb->nh.iph;
1009         iphlen = iph->ihl << 2;
1010         iph->tot_len = htons(ntohs(iph->tot_len) - len);
1011         if (skb->len < iphlen + len) {
1012                 /* packet is too small!?! */
1013                 return 0;
1014         }
1015
1016         /* pull the data buffer up to the ESP header and set the
1017          * transport header to point to ESP.  Keep UDP on the stack
1018          * for later.
1019          */
1020         skb->h.raw = skb_pull(skb, len);
1021
1022         /* modify the protocol (it's ESP!) */
1023         iph->protocol = IPPROTO_ESP;
1024
1025         /* and let the caller know to send this into the ESP processor... */
1026         return -1;
1027 #endif
1028 }
1029
1030 /* returns:
1031  *  -1: error
1032  *   0: success
1033  *  >0: "udp encap" protocol resubmission
1034  *
1035  * Note that in the success and error cases, the skb is assumed to
1036  * have either been requeued or freed.
1037  */
1038 int udp_queue_rcv_skb(struct sock * sk, struct sk_buff *skb)
1039 {
1040         struct udp_sock *up = udp_sk(sk);
1041         int rc;
1042
1043         /*
1044          *      Charge it to the socket, dropping if the queue is full.
1045          */
1046         if (!xfrm4_policy_check(sk, XFRM_POLICY_IN, skb))
1047                 goto drop;
1048         nf_reset(skb);
1049
1050         if (up->encap_type) {
1051                 /*
1052                  * This is an encapsulation socket, so let's see if this is
1053                  * an encapsulated packet.
1054                  * If it's a keepalive packet, then just eat it.
1055                  * If it's an encapsulateed packet, then pass it to the
1056                  * IPsec xfrm input and return the response
1057                  * appropriately.  Otherwise, just fall through and
1058                  * pass this up the UDP socket.
1059                  */
1060                 int ret;
1061
1062                 ret = udp_encap_rcv(sk, skb);
1063                 if (ret == 0) {
1064                         /* Eat the packet .. */
1065                         kfree_skb(skb);
1066                         return 0;
1067                 }
1068                 if (ret < 0) {
1069                         /* process the ESP packet */
1070                         ret = xfrm4_rcv_encap(skb, up->encap_type);
1071                         UDP_INC_STATS_BH(UDP_MIB_INDATAGRAMS, up->pcflag);
1072                         return -ret;
1073                 }
1074                 /* FALLTHROUGH -- it's a UDP Packet */
1075         }
1076
1077         /*
1078          *      UDP-Lite specific tests, ignored on UDP sockets
1079          */
1080         if ((up->pcflag & UDPLITE_RECV_CC)  &&  UDP_SKB_CB(skb)->partial_cov) {
1081
1082                 /*
1083                  * MIB statistics other than incrementing the error count are
1084                  * disabled for the following two types of errors: these depend
1085                  * on the application settings, not on the functioning of the
1086                  * protocol stack as such.
1087                  *
1088                  * RFC 3828 here recommends (sec 3.3): "There should also be a
1089                  * way ... to ... at least let the receiving application block
1090                  * delivery of packets with coverage values less than a value
1091                  * provided by the application."
1092                  */
1093                 if (up->pcrlen == 0) {          /* full coverage was set  */
1094                         LIMIT_NETDEBUG(KERN_WARNING "UDPLITE: partial coverage "
1095                                 "%d while full coverage %d requested\n",
1096                                 UDP_SKB_CB(skb)->cscov, skb->len);
1097                         goto drop;
1098                 }
1099                 /* The next case involves violating the min. coverage requested
1100                  * by the receiver. This is subtle: if receiver wants x and x is
1101                  * greater than the buffersize/MTU then receiver will complain
1102                  * that it wants x while sender emits packets of smaller size y.
1103                  * Therefore the above ...()->partial_cov statement is essential.
1104                  */
1105                 if (UDP_SKB_CB(skb)->cscov  <  up->pcrlen) {
1106                         LIMIT_NETDEBUG(KERN_WARNING
1107                                 "UDPLITE: coverage %d too small, need min %d\n",
1108                                 UDP_SKB_CB(skb)->cscov, up->pcrlen);
1109                         goto drop;
1110                 }
1111         }
1112
1113         if (sk->sk_filter && skb->ip_summed != CHECKSUM_UNNECESSARY) {
1114                 if (__udp_lib_checksum_complete(skb))
1115                         goto drop;
1116                 skb->ip_summed = CHECKSUM_UNNECESSARY;
1117         }
1118
1119         if ((rc = sock_queue_rcv_skb(sk,skb)) < 0) {
1120                 /* Note that an ENOMEM error is charged twice */
1121                 if (rc == -ENOMEM)
1122                         UDP_INC_STATS_BH(UDP_MIB_RCVBUFERRORS, up->pcflag);
1123                 goto drop;
1124         }
1125
1126         UDP_INC_STATS_BH(UDP_MIB_INDATAGRAMS, up->pcflag);
1127         return 0;
1128
1129 drop:
1130         UDP_INC_STATS_BH(UDP_MIB_INERRORS, up->pcflag);
1131         kfree_skb(skb);
1132         return -1;
1133 }
1134
1135 /*
1136  *      Multicasts and broadcasts go to each listener.
1137  *
1138  *      Note: called only from the BH handler context,
1139  *      so we don't need to lock the hashes.
1140  */
1141 static int __udp4_lib_mcast_deliver(struct sk_buff *skb,
1142                                     struct udphdr  *uh,
1143                                     __be32 saddr, __be32 daddr,
1144                                     struct hlist_head udptable[])
1145 {
1146         struct sock *sk;
1147         int dif;
1148
1149         read_lock(&udp_hash_lock);
1150         sk = sk_head(&udptable[ntohs(uh->dest) & (UDP_HTABLE_SIZE - 1)]);
1151         dif = skb->dev->ifindex;
1152         sk = udp_v4_mcast_next(sk, uh->dest, daddr, uh->source, saddr, dif);
1153         if (sk) {
1154                 struct sock *sknext = NULL;
1155
1156                 do {
1157                         struct sk_buff *skb1 = skb;
1158
1159                         sknext = udp_v4_mcast_next(sk_next(sk), uh->dest, daddr,
1160                                                    uh->source, saddr, dif);
1161                         if(sknext)
1162                                 skb1 = skb_clone(skb, GFP_ATOMIC);
1163
1164                         if(skb1) {
1165                                 int ret = udp_queue_rcv_skb(sk, skb1);
1166                                 if (ret > 0)
1167                                         /* we should probably re-process instead
1168                                          * of dropping packets here. */
1169                                         kfree_skb(skb1);
1170                         }
1171                         sk = sknext;
1172                 } while(sknext);
1173         } else
1174                 kfree_skb(skb);
1175         read_unlock(&udp_hash_lock);
1176         return 0;
1177 }
1178
1179 /* Initialize UDP checksum. If exited with zero value (success),
1180  * CHECKSUM_UNNECESSARY means, that no more checks are required.
1181  * Otherwise, csum completion requires chacksumming packet body,
1182  * including udp header and folding it to skb->csum.
1183  */
1184 static inline void udp4_csum_init(struct sk_buff *skb, struct udphdr *uh)
1185 {
1186         if (uh->check == 0) {
1187                 skb->ip_summed = CHECKSUM_UNNECESSARY;
1188         } else if (skb->ip_summed == CHECKSUM_COMPLETE) {
1189                if (!csum_tcpudp_magic(skb->nh.iph->saddr, skb->nh.iph->daddr,
1190                                       skb->len, IPPROTO_UDP, skb->csum       ))
1191                         skb->ip_summed = CHECKSUM_UNNECESSARY;
1192         }
1193         if (skb->ip_summed != CHECKSUM_UNNECESSARY)
1194                 skb->csum = csum_tcpudp_nofold(skb->nh.iph->saddr,
1195                                                skb->nh.iph->daddr,
1196                                                skb->len, IPPROTO_UDP, 0);
1197         /* Probably, we should checksum udp header (it should be in cache
1198          * in any case) and data in tiny packets (< rx copybreak).
1199          */
1200
1201         /* UDP = UDP-Lite with a non-partial checksum coverage */
1202         UDP_SKB_CB(skb)->partial_cov = 0;
1203 }
1204
1205 /*
1206  *      All we need to do is get the socket, and then do a checksum. 
1207  */
1208  
1209 int __udp4_lib_rcv(struct sk_buff *skb, struct hlist_head udptable[],
1210                    int is_udplite)
1211 {
1212         struct sock *sk;
1213         struct udphdr *uh = skb->h.uh;
1214         unsigned short ulen;
1215         struct rtable *rt = (struct rtable*)skb->dst;
1216         __be32 saddr = skb->nh.iph->saddr;
1217         __be32 daddr = skb->nh.iph->daddr;
1218
1219         /*
1220          *  Validate the packet.
1221          */
1222         if (!pskb_may_pull(skb, sizeof(struct udphdr)))
1223                 goto drop;              /* No space for header. */
1224
1225         ulen = ntohs(uh->len);
1226         if (ulen > skb->len)
1227                 goto short_packet;
1228
1229         if(! is_udplite ) {             /* UDP validates ulen. */
1230
1231                 if (ulen < sizeof(*uh) || pskb_trim_rcsum(skb, ulen))
1232                         goto short_packet;
1233                 uh = skb->h.uh;
1234
1235                 udp4_csum_init(skb, uh);
1236
1237         } else  {                       /* UDP-Lite validates cscov. */
1238                 if (udplite4_csum_init(skb, uh))
1239                         goto csum_error;
1240         }
1241
1242         if(rt->rt_flags & (RTCF_BROADCAST|RTCF_MULTICAST))
1243                 return __udp4_lib_mcast_deliver(skb, uh, saddr, daddr, udptable);
1244
1245         sk = __udp4_lib_lookup(saddr, uh->source, daddr, uh->dest,
1246                                skb->dev->ifindex, udptable        );
1247
1248         if (sk != NULL) {
1249                 int ret = udp_queue_rcv_skb(sk, skb);
1250                 sock_put(sk);
1251
1252                 /* a return value > 0 means to resubmit the input, but
1253                  * it wants the return to be -protocol, or 0
1254                  */
1255                 if (ret > 0)
1256                         return -ret;
1257                 return 0;
1258         }
1259
1260         if (!xfrm4_policy_check(NULL, XFRM_POLICY_IN, skb))
1261                 goto drop;
1262         nf_reset(skb);
1263
1264         /* No socket. Drop packet silently, if checksum is wrong */
1265         if (udp_lib_checksum_complete(skb))
1266                 goto csum_error;
1267
1268         UDP_INC_STATS_BH(UDP_MIB_NOPORTS, is_udplite);
1269         icmp_send(skb, ICMP_DEST_UNREACH, ICMP_PORT_UNREACH, 0);
1270
1271         /*
1272          * Hmm.  We got an UDP packet to a port to which we
1273          * don't wanna listen.  Ignore it.
1274          */
1275         kfree_skb(skb);
1276         return(0);
1277
1278 short_packet:
1279         LIMIT_NETDEBUG(KERN_DEBUG "UDP%s: short packet: From %u.%u.%u.%u:%u %d/%d to %u.%u.%u.%u:%u\n",
1280                        is_udplite? "-Lite" : "",
1281                        NIPQUAD(saddr),
1282                        ntohs(uh->source),
1283                        ulen,
1284                        skb->len,
1285                        NIPQUAD(daddr),
1286                        ntohs(uh->dest));
1287         goto drop;
1288
1289 csum_error:
1290         /* 
1291          * RFC1122: OK.  Discards the bad packet silently (as far as 
1292          * the network is concerned, anyway) as per 4.1.3.4 (MUST). 
1293          */
1294         LIMIT_NETDEBUG(KERN_DEBUG "UDP%s: bad checksum. From %d.%d.%d.%d:%d to %d.%d.%d.%d:%d ulen %d\n",
1295                        is_udplite? "-Lite" : "",
1296                        NIPQUAD(saddr),
1297                        ntohs(uh->source),
1298                        NIPQUAD(daddr),
1299                        ntohs(uh->dest),
1300                        ulen);
1301 drop:
1302         UDP_INC_STATS_BH(UDP_MIB_INERRORS, is_udplite);
1303         kfree_skb(skb);
1304         return(0);
1305 }
1306
1307 __inline__ int udp_rcv(struct sk_buff *skb)
1308 {
1309         return __udp4_lib_rcv(skb, udp_hash, 0);
1310 }
1311
1312 int udp_destroy_sock(struct sock *sk)
1313 {
1314         lock_sock(sk);
1315         udp_flush_pending_frames(sk);
1316         release_sock(sk);
1317         return 0;
1318 }
1319
1320 /*
1321  *      Socket option code for UDP
1322  */
1323 int udp_lib_setsockopt(struct sock *sk, int level, int optname,
1324                        char __user *optval, int optlen,
1325                        int (*push_pending_frames)(struct sock *))
1326 {
1327         struct udp_sock *up = udp_sk(sk);
1328         int val;
1329         int err = 0;
1330
1331         if(optlen<sizeof(int))
1332                 return -EINVAL;
1333
1334         if (get_user(val, (int __user *)optval))
1335                 return -EFAULT;
1336
1337         switch(optname) {
1338         case UDP_CORK:
1339                 if (val != 0) {
1340                         up->corkflag = 1;
1341                 } else {
1342                         up->corkflag = 0;
1343                         lock_sock(sk);
1344                         (*push_pending_frames)(sk);
1345                         release_sock(sk);
1346                 }
1347                 break;
1348                 
1349         case UDP_ENCAP:
1350                 switch (val) {
1351                 case 0:
1352                 case UDP_ENCAP_ESPINUDP:
1353                 case UDP_ENCAP_ESPINUDP_NON_IKE:
1354                         up->encap_type = val;
1355                         break;
1356                 default:
1357                         err = -ENOPROTOOPT;
1358                         break;
1359                 }
1360                 break;
1361
1362         /*
1363          *      UDP-Lite's partial checksum coverage (RFC 3828).
1364          */
1365         /* The sender sets actual checksum coverage length via this option.
1366          * The case coverage > packet length is handled by send module. */
1367         case UDPLITE_SEND_CSCOV:
1368                 if (!up->pcflag)         /* Disable the option on UDP sockets */
1369                         return -ENOPROTOOPT;
1370                 if (val != 0 && val < 8) /* Illegal coverage: use default (8) */
1371                         val = 8;
1372                 up->pcslen = val;
1373                 up->pcflag |= UDPLITE_SEND_CC;
1374                 break;
1375
1376         /* The receiver specifies a minimum checksum coverage value. To make
1377          * sense, this should be set to at least 8 (as done below). If zero is
1378          * used, this again means full checksum coverage.                     */
1379         case UDPLITE_RECV_CSCOV:
1380                 if (!up->pcflag)         /* Disable the option on UDP sockets */
1381                         return -ENOPROTOOPT;
1382                 if (val != 0 && val < 8) /* Avoid silly minimal values.       */
1383                         val = 8;
1384                 up->pcrlen = val;
1385                 up->pcflag |= UDPLITE_RECV_CC;
1386                 break;
1387
1388         default:
1389                 err = -ENOPROTOOPT;
1390                 break;
1391         };
1392
1393         return err;
1394 }
1395
1396 int udp_setsockopt(struct sock *sk, int level, int optname,
1397                    char __user *optval, int optlen)
1398 {
1399         if (level == SOL_UDP  ||  level == SOL_UDPLITE)
1400                 return udp_lib_setsockopt(sk, level, optname, optval, optlen,
1401                                           udp_push_pending_frames);
1402         return ip_setsockopt(sk, level, optname, optval, optlen);
1403 }
1404
1405 #ifdef CONFIG_COMPAT
1406 int compat_udp_setsockopt(struct sock *sk, int level, int optname,
1407                           char __user *optval, int optlen)
1408 {
1409         if (level == SOL_UDP  ||  level == SOL_UDPLITE)
1410                 return udp_lib_setsockopt(sk, level, optname, optval, optlen,
1411                                           udp_push_pending_frames);
1412         return compat_ip_setsockopt(sk, level, optname, optval, optlen);
1413 }
1414 #endif
1415
1416 int udp_lib_getsockopt(struct sock *sk, int level, int optname,
1417                        char __user *optval, int __user *optlen)
1418 {
1419         struct udp_sock *up = udp_sk(sk);
1420         int val, len;
1421
1422         if(get_user(len,optlen))
1423                 return -EFAULT;
1424
1425         len = min_t(unsigned int, len, sizeof(int));
1426         
1427         if(len < 0)
1428                 return -EINVAL;
1429
1430         switch(optname) {
1431         case UDP_CORK:
1432                 val = up->corkflag;
1433                 break;
1434
1435         case UDP_ENCAP:
1436                 val = up->encap_type;
1437                 break;
1438
1439         /* The following two cannot be changed on UDP sockets, the return is
1440          * always 0 (which corresponds to the full checksum coverage of UDP). */
1441         case UDPLITE_SEND_CSCOV:
1442                 val = up->pcslen;
1443                 break;
1444
1445         case UDPLITE_RECV_CSCOV:
1446                 val = up->pcrlen;
1447                 break;
1448
1449         default:
1450                 return -ENOPROTOOPT;
1451         };
1452
1453         if(put_user(len, optlen))
1454                 return -EFAULT;
1455         if(copy_to_user(optval, &val,len))
1456                 return -EFAULT;
1457         return 0;
1458 }
1459
1460 int udp_getsockopt(struct sock *sk, int level, int optname,
1461                    char __user *optval, int __user *optlen)
1462 {
1463         if (level == SOL_UDP  ||  level == SOL_UDPLITE)
1464                 return udp_lib_getsockopt(sk, level, optname, optval, optlen);
1465         return ip_getsockopt(sk, level, optname, optval, optlen);
1466 }
1467
1468 #ifdef CONFIG_COMPAT
1469 int compat_udp_getsockopt(struct sock *sk, int level, int optname,
1470                                  char __user *optval, int __user *optlen)
1471 {
1472         if (level == SOL_UDP  ||  level == SOL_UDPLITE)
1473                 return udp_lib_getsockopt(sk, level, optname, optval, optlen);
1474         return compat_ip_getsockopt(sk, level, optname, optval, optlen);
1475 }
1476 #endif
1477 /**
1478  *      udp_poll - wait for a UDP event.
1479  *      @file - file struct
1480  *      @sock - socket
1481  *      @wait - poll table
1482  *
1483  *      This is same as datagram poll, except for the special case of 
1484  *      blocking sockets. If application is using a blocking fd
1485  *      and a packet with checksum error is in the queue;
1486  *      then it could get return from select indicating data available
1487  *      but then block when reading it. Add special case code
1488  *      to work around these arguably broken applications.
1489  */
1490 unsigned int udp_poll(struct file *file, struct socket *sock, poll_table *wait)
1491 {
1492         unsigned int mask = datagram_poll(file, sock, wait);
1493         struct sock *sk = sock->sk;
1494         int     is_lite = IS_UDPLITE(sk);
1495
1496         /* Check for false positives due to checksum errors */
1497         if ( (mask & POLLRDNORM) &&
1498              !(file->f_flags & O_NONBLOCK) &&
1499              !(sk->sk_shutdown & RCV_SHUTDOWN)){
1500                 struct sk_buff_head *rcvq = &sk->sk_receive_queue;
1501                 struct sk_buff *skb;
1502
1503                 spin_lock_bh(&rcvq->lock);
1504                 while ((skb = skb_peek(rcvq)) != NULL) {
1505                         if (udp_lib_checksum_complete(skb)) {
1506                                 UDP_INC_STATS_BH(UDP_MIB_INERRORS, is_lite);
1507                                 __skb_unlink(skb, rcvq);
1508                                 kfree_skb(skb);
1509                         } else {
1510                                 skb->ip_summed = CHECKSUM_UNNECESSARY;
1511                                 break;
1512                         }
1513                 }
1514                 spin_unlock_bh(&rcvq->lock);
1515
1516                 /* nothing to see, move along */
1517                 if (skb == NULL)
1518                         mask &= ~(POLLIN | POLLRDNORM);
1519         }
1520
1521         return mask;
1522         
1523 }
1524
1525 struct proto udp_prot = {
1526         .name              = "UDP",
1527         .owner             = THIS_MODULE,
1528         .close             = udp_lib_close,
1529         .connect           = ip4_datagram_connect,
1530         .disconnect        = udp_disconnect,
1531         .ioctl             = udp_ioctl,
1532         .destroy           = udp_destroy_sock,
1533         .setsockopt        = udp_setsockopt,
1534         .getsockopt        = udp_getsockopt,
1535         .sendmsg           = udp_sendmsg,
1536         .recvmsg           = udp_recvmsg,
1537         .sendpage          = udp_sendpage,
1538         .backlog_rcv       = udp_queue_rcv_skb,
1539         .hash              = udp_lib_hash,
1540         .unhash            = udp_lib_unhash,
1541         .get_port          = udp_v4_get_port,
1542         .obj_size          = sizeof(struct udp_sock),
1543 #ifdef CONFIG_COMPAT
1544         .compat_setsockopt = compat_udp_setsockopt,
1545         .compat_getsockopt = compat_udp_getsockopt,
1546 #endif
1547 };
1548
1549 /* ------------------------------------------------------------------------ */
1550 #ifdef CONFIG_PROC_FS
1551
1552 static struct sock *udp_get_first(struct seq_file *seq)
1553 {
1554         struct sock *sk;
1555         struct udp_iter_state *state = seq->private;
1556
1557         for (state->bucket = 0; state->bucket < UDP_HTABLE_SIZE; ++state->bucket) {
1558                 struct hlist_node *node;
1559                 sk_for_each(sk, node, state->hashtable + state->bucket) {
1560                         if (sk->sk_family == state->family &&
1561                                 nx_check(sk->sk_nid, VS_WATCH_P|VS_IDENT))
1562                                 goto found;
1563                 }
1564         }
1565         sk = NULL;
1566 found:
1567         return sk;
1568 }
1569
1570 static struct sock *udp_get_next(struct seq_file *seq, struct sock *sk)
1571 {
1572         struct udp_iter_state *state = seq->private;
1573
1574         do {
1575                 sk = sk_next(sk);
1576 try_again:
1577                 ;
1578         } while (sk && (sk->sk_family != state->family ||
1579                 !nx_check(sk->sk_nid, VS_WATCH_P|VS_IDENT)));
1580
1581         if (!sk && ++state->bucket < UDP_HTABLE_SIZE) {
1582                 sk = sk_head(state->hashtable + state->bucket);
1583                 goto try_again;
1584         }
1585         return sk;
1586 }
1587
1588 static struct sock *udp_get_idx(struct seq_file *seq, loff_t pos)
1589 {
1590         struct sock *sk = udp_get_first(seq);
1591
1592         if (sk)
1593                 while(pos && (sk = udp_get_next(seq, sk)) != NULL)
1594                         --pos;
1595         return pos ? NULL : sk;
1596 }
1597
1598 static void *udp_seq_start(struct seq_file *seq, loff_t *pos)
1599 {
1600         read_lock(&udp_hash_lock);
1601         return *pos ? udp_get_idx(seq, *pos-1) : (void *)1;
1602 }
1603
1604 static void *udp_seq_next(struct seq_file *seq, void *v, loff_t *pos)
1605 {
1606         struct sock *sk;
1607
1608         if (v == (void *)1)
1609                 sk = udp_get_idx(seq, 0);
1610         else
1611                 sk = udp_get_next(seq, v);
1612
1613         ++*pos;
1614         return sk;
1615 }
1616
1617 static void udp_seq_stop(struct seq_file *seq, void *v)
1618 {
1619         read_unlock(&udp_hash_lock);
1620 }
1621
1622 static int udp_seq_open(struct inode *inode, struct file *file)
1623 {
1624         struct udp_seq_afinfo *afinfo = PDE(inode)->data;
1625         struct seq_file *seq;
1626         int rc = -ENOMEM;
1627         struct udp_iter_state *s = kzalloc(sizeof(*s), GFP_KERNEL);
1628
1629         if (!s)
1630                 goto out;
1631         s->family               = afinfo->family;
1632         s->hashtable            = afinfo->hashtable;
1633         s->seq_ops.start        = udp_seq_start;
1634         s->seq_ops.next         = udp_seq_next;
1635         s->seq_ops.show         = afinfo->seq_show;
1636         s->seq_ops.stop         = udp_seq_stop;
1637
1638         rc = seq_open(file, &s->seq_ops);
1639         if (rc)
1640                 goto out_kfree;
1641
1642         seq          = file->private_data;
1643         seq->private = s;
1644 out:
1645         return rc;
1646 out_kfree:
1647         kfree(s);
1648         goto out;
1649 }
1650
1651 /* ------------------------------------------------------------------------ */
1652 int udp_proc_register(struct udp_seq_afinfo *afinfo)
1653 {
1654         struct proc_dir_entry *p;
1655         int rc = 0;
1656
1657         if (!afinfo)
1658                 return -EINVAL;
1659         afinfo->seq_fops->owner         = afinfo->owner;
1660         afinfo->seq_fops->open          = udp_seq_open;
1661         afinfo->seq_fops->read          = seq_read;
1662         afinfo->seq_fops->llseek        = seq_lseek;
1663         afinfo->seq_fops->release       = seq_release_private;
1664
1665         p = proc_net_fops_create(afinfo->name, S_IRUGO, afinfo->seq_fops);
1666         if (p)
1667                 p->data = afinfo;
1668         else
1669                 rc = -ENOMEM;
1670         return rc;
1671 }
1672
1673 void udp_proc_unregister(struct udp_seq_afinfo *afinfo)
1674 {
1675         if (!afinfo)
1676                 return;
1677         proc_net_remove(afinfo->name);
1678         memset(afinfo->seq_fops, 0, sizeof(*afinfo->seq_fops));
1679 }
1680
1681 /* ------------------------------------------------------------------------ */
1682 static void udp4_format_sock(struct sock *sp, char *tmpbuf, int bucket)
1683 {
1684         struct inet_sock *inet = inet_sk(sp);
1685         __be32 dest = inet->daddr;
1686         __be32 src  = inet->rcv_saddr;
1687         __u16 destp       = ntohs(inet->dport);
1688         __u16 srcp        = ntohs(inet->sport);
1689
1690         sprintf(tmpbuf, "%4d: %08X:%04X %08X:%04X"
1691                 " %02X %08X:%08X %02X:%08lX %08X %5d %8d %lu %d %p",
1692                 bucket, src, srcp, dest, destp, sp->sk_state, 
1693                 atomic_read(&sp->sk_wmem_alloc),
1694                 atomic_read(&sp->sk_rmem_alloc),
1695                 0, 0L, 0, sock_i_uid(sp), 0, sock_i_ino(sp),
1696                 atomic_read(&sp->sk_refcnt), sp);
1697 }
1698
1699 int udp4_seq_show(struct seq_file *seq, void *v)
1700 {
1701         if (v == SEQ_START_TOKEN)
1702                 seq_printf(seq, "%-127s\n",
1703                            "  sl  local_address rem_address   st tx_queue "
1704                            "rx_queue tr tm->when retrnsmt   uid  timeout "
1705                            "inode");
1706         else {
1707                 char tmpbuf[129];
1708                 struct udp_iter_state *state = seq->private;
1709
1710                 udp4_format_sock(v, tmpbuf, state->bucket);
1711                 seq_printf(seq, "%-127s\n", tmpbuf);
1712         }
1713         return 0;
1714 }
1715
1716 /* ------------------------------------------------------------------------ */
1717 static struct file_operations udp4_seq_fops;
1718 static struct udp_seq_afinfo udp4_seq_afinfo = {
1719         .owner          = THIS_MODULE,
1720         .name           = "udp",
1721         .family         = AF_INET,
1722         .hashtable      = udp_hash,
1723         .seq_show       = udp4_seq_show,
1724         .seq_fops       = &udp4_seq_fops,
1725 };
1726
1727 int __init udp4_proc_init(void)
1728 {
1729         return udp_proc_register(&udp4_seq_afinfo);
1730 }
1731
1732 void udp4_proc_exit(void)
1733 {
1734         udp_proc_unregister(&udp4_seq_afinfo);
1735 }
1736 #endif /* CONFIG_PROC_FS */
1737
1738 EXPORT_SYMBOL(udp_disconnect);
1739 EXPORT_SYMBOL(udp_hash);
1740 EXPORT_SYMBOL(udp_hash_lock);
1741 EXPORT_SYMBOL(udp_ioctl);
1742 EXPORT_SYMBOL(udp_get_port);
1743 EXPORT_SYMBOL(udp_prot);
1744 EXPORT_SYMBOL(udp_sendmsg);
1745 EXPORT_SYMBOL(udp_lib_getsockopt);
1746 EXPORT_SYMBOL(udp_lib_setsockopt);
1747 EXPORT_SYMBOL(udp_poll);
1748
1749 #ifdef CONFIG_PROC_FS
1750 EXPORT_SYMBOL(udp_proc_register);
1751 EXPORT_SYMBOL(udp_proc_unregister);
1752 #endif