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