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