allow coexistance of N build and AC build.
[tomato.git] / release / src-rt-6.x / linux / linux-2.6 / net / ipv4 / udp.c
blobbbddba7e52eb97859b4c6a3d73396fc3d6fa3679
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.
6 * The User Datagram Protocol (UDP).
8 * Version: $Id: udp.c,v 1.102 2002/02/01 22:01:04 davem Exp $
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>
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.
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.
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/icmp.h>
102 #include <net/route.h>
103 #include <net/checksum.h>
104 #include <net/xfrm.h>
105 #include "udp_impl.h"
108 * Snmp MIB for the UDP layer
111 DEFINE_SNMP_STAT(struct udp_mib, udp_statistics) __read_mostly;
113 struct hlist_head udp_hash[UDP_HTABLE_SIZE];
114 DEFINE_RWLOCK(udp_hash_lock);
116 static inline int __udp_lib_lport_inuse(__u16 num,
117 const struct hlist_head udptable[])
119 struct sock *sk;
120 struct hlist_node *node;
122 sk_for_each(sk, node, &udptable[num & (UDP_HTABLE_SIZE - 1)])
123 if (sk->sk_hash == num)
124 return 1;
125 return 0;
129 * __udp_lib_get_port - UDP/-Lite port lookup for IPv4 and IPv6
131 * @sk: socket struct in question
132 * @snum: port number to look up
133 * @udptable: hash list table, must be of UDP_HTABLE_SIZE
134 * @saddr_comp: AF-dependent comparison of bound local IP addresses
136 int __udp_lib_get_port(struct sock *sk, unsigned short snum,
137 struct hlist_head udptable[],
138 int (*saddr_comp)(const struct sock *sk1,
139 const struct sock *sk2 ) )
141 struct hlist_node *node;
142 struct hlist_head *head;
143 struct sock *sk2;
144 int error = 1;
146 write_lock_bh(&udp_hash_lock);
148 if (!snum) {
149 int i;
150 int low = sysctl_local_port_range[0];
151 int high = sysctl_local_port_range[1];
152 unsigned rover, best, best_size_so_far;
154 best_size_so_far = UINT_MAX;
155 best = rover = net_random() % (high - low) + low;
157 /* 1st pass: look for empty (or shortest) hash chain */
158 for (i = 0; i < UDP_HTABLE_SIZE; i++) {
159 int size = 0;
161 head = &udptable[rover & (UDP_HTABLE_SIZE - 1)];
162 if (hlist_empty(head))
163 goto gotit;
165 sk_for_each(sk2, node, head) {
166 if (++size >= best_size_so_far)
167 goto next;
169 best_size_so_far = size;
170 best = rover;
171 next:
172 /* fold back if end of range */
173 if (++rover > high)
174 rover = low + ((rover - low)
175 & (UDP_HTABLE_SIZE - 1));
180 /* 2nd pass: find hole in shortest hash chain */
181 rover = best;
182 for (i = 0; i < (1 << 16) / UDP_HTABLE_SIZE; i++) {
183 if (! __udp_lib_lport_inuse(rover, udptable))
184 goto gotit;
185 rover += UDP_HTABLE_SIZE;
186 if (rover > high)
187 rover = low + ((rover - low)
188 & (UDP_HTABLE_SIZE - 1));
192 /* All ports in use! */
193 goto fail;
195 gotit:
196 snum = rover;
197 } else {
198 head = &udptable[snum & (UDP_HTABLE_SIZE - 1)];
200 sk_for_each(sk2, node, head)
201 if (sk2->sk_hash == snum &&
202 sk2 != sk &&
203 (!sk2->sk_reuse || !sk->sk_reuse) &&
204 (!sk2->sk_bound_dev_if || !sk->sk_bound_dev_if
205 || sk2->sk_bound_dev_if == sk->sk_bound_dev_if) &&
206 (*saddr_comp)(sk, sk2) )
207 goto fail;
210 inet_sk(sk)->num = snum;
211 sk->sk_hash = snum;
212 if (sk_unhashed(sk)) {
213 head = &udptable[snum & (UDP_HTABLE_SIZE - 1)];
214 sk_add_node(sk, head);
215 sock_prot_inc_use(sk->sk_prot);
217 error = 0;
218 fail:
219 write_unlock_bh(&udp_hash_lock);
220 return error;
223 int udp_get_port(struct sock *sk, unsigned short snum,
224 int (*scmp)(const struct sock *, const struct sock *))
226 return __udp_lib_get_port(sk, snum, udp_hash, scmp);
229 int ipv4_rcv_saddr_equal(const struct sock *sk1, const struct sock *sk2)
231 struct inet_sock *inet1 = inet_sk(sk1), *inet2 = inet_sk(sk2);
233 return ( !ipv6_only_sock(sk2) &&
234 (!inet1->rcv_saddr || !inet2->rcv_saddr ||
235 inet1->rcv_saddr == inet2->rcv_saddr ));
238 static inline int udp_v4_get_port(struct sock *sk, unsigned short snum)
240 return udp_get_port(sk, snum, ipv4_rcv_saddr_equal);
243 /* UDP is nearly always wildcards out the wazoo, it makes no sense to try
244 * harder than this. -DaveM
246 static struct sock *__udp4_lib_lookup(__be32 saddr, __be16 sport,
247 __be32 daddr, __be16 dport,
248 int dif, struct hlist_head udptable[])
250 struct sock *sk, *result = NULL;
251 struct hlist_node *node;
252 unsigned short hnum = ntohs(dport);
253 int badness = -1;
255 read_lock(&udp_hash_lock);
256 sk_for_each(sk, node, &udptable[hnum & (UDP_HTABLE_SIZE - 1)]) {
257 struct inet_sock *inet = inet_sk(sk);
259 if (sk->sk_hash == hnum && !ipv6_only_sock(sk)) {
260 int score = (sk->sk_family == PF_INET ? 1 : 0);
261 if (inet->rcv_saddr) {
262 if (inet->rcv_saddr != daddr)
263 continue;
264 score+=2;
266 if (inet->daddr) {
267 if (inet->daddr != saddr)
268 continue;
269 score+=2;
271 if (inet->dport) {
272 if (inet->dport != sport)
273 continue;
274 score+=2;
276 if (sk->sk_bound_dev_if) {
277 if (sk->sk_bound_dev_if != dif)
278 continue;
279 score+=2;
281 if (score == 9) {
282 result = sk;
283 break;
284 } else if (score > badness) {
285 result = sk;
286 badness = score;
290 if (result)
291 sock_hold(result);
292 read_unlock(&udp_hash_lock);
293 return result;
296 static inline struct sock *__udp4_lib_lookup_skb(struct sk_buff *skb,
297 __be16 sport, __be16 dport,
298 struct hlist_head udptable[])
300 struct sock *sk;
301 const struct iphdr *iph = ip_hdr(skb);
303 if (unlikely(sk = skb_steal_sock(skb)))
304 return sk;
305 else
306 return __udp4_lib_lookup(iph->saddr, sport,
307 iph->daddr, dport, skb->dev->ifindex,
308 udptable);
311 static inline struct sock *udp_v4_mcast_next(struct sock *sk,
312 __be16 loc_port, __be32 loc_addr,
313 __be16 rmt_port, __be32 rmt_addr,
314 int dif)
316 struct hlist_node *node;
317 struct sock *s = sk;
318 unsigned short hnum = ntohs(loc_port);
320 sk_for_each_from(s, node) {
321 struct inet_sock *inet = inet_sk(s);
323 if (s->sk_hash != hnum ||
324 (inet->daddr && inet->daddr != rmt_addr) ||
325 (inet->dport != rmt_port && inet->dport) ||
326 (inet->rcv_saddr && inet->rcv_saddr != loc_addr) ||
327 ipv6_only_sock(s) ||
328 (s->sk_bound_dev_if && s->sk_bound_dev_if != dif))
329 continue;
330 if (!ip_mc_sf_allow(s, loc_addr, rmt_addr, dif))
331 continue;
332 goto found;
334 s = NULL;
335 found:
336 return s;
340 * This routine is called by the ICMP module when it gets some
341 * sort of error condition. If err < 0 then the socket should
342 * be closed and the error returned to the user. If err > 0
343 * it's just the icmp type << 8 | icmp code.
344 * Header points to the ip header of the error packet. We move
345 * on past this. Then (as it used to claim before adjustment)
346 * header points to the first 8 bytes of the udp header. We need
347 * to find the appropriate port.
350 void __udp4_lib_err(struct sk_buff *skb, u32 info, struct hlist_head udptable[])
352 struct inet_sock *inet;
353 struct iphdr *iph = (struct iphdr*)skb->data;
354 struct udphdr *uh = (struct udphdr*)(skb->data+(iph->ihl<<2));
355 const int type = icmp_hdr(skb)->type;
356 const int code = icmp_hdr(skb)->code;
357 struct sock *sk;
358 int harderr;
359 int err;
361 sk = __udp4_lib_lookup(iph->daddr, uh->dest, iph->saddr, uh->source,
362 skb->dev->ifindex, udptable );
363 if (sk == NULL) {
364 ICMP_INC_STATS_BH(ICMP_MIB_INERRORS);
365 return; /* No socket for error */
368 err = 0;
369 harderr = 0;
370 inet = inet_sk(sk);
372 switch (type) {
373 default:
374 case ICMP_TIME_EXCEEDED:
375 err = EHOSTUNREACH;
376 break;
377 case ICMP_SOURCE_QUENCH:
378 goto out;
379 case ICMP_PARAMETERPROB:
380 err = EPROTO;
381 harderr = 1;
382 break;
383 case ICMP_DEST_UNREACH:
384 if (code == ICMP_FRAG_NEEDED) { /* Path MTU discovery */
385 if (inet->pmtudisc != IP_PMTUDISC_DONT) {
386 err = EMSGSIZE;
387 harderr = 1;
388 break;
390 goto out;
392 err = EHOSTUNREACH;
393 if (code <= NR_ICMP_UNREACH) {
394 harderr = icmp_err_convert[code].fatal;
395 err = icmp_err_convert[code].errno;
397 break;
401 * RFC1122: OK. Passes ICMP errors back to application, as per
402 * 4.1.3.3.
404 if (!inet->recverr) {
405 if (!harderr || sk->sk_state != TCP_ESTABLISHED)
406 goto out;
407 } else {
408 ip_icmp_error(sk, skb, err, uh->dest, info, (u8*)(uh+1));
410 sk->sk_err = err;
411 sk->sk_error_report(sk);
412 out:
413 sock_put(sk);
416 void udp_err(struct sk_buff *skb, u32 info)
418 return __udp4_lib_err(skb, info, udp_hash);
422 * Throw away all pending data and cancel the corking. Socket is locked.
424 static void udp_flush_pending_frames(struct sock *sk)
426 struct udp_sock *up = udp_sk(sk);
428 if (up->pending) {
429 up->len = 0;
430 up->pending = 0;
431 ip_flush_pending_frames(sk);
436 * udp4_hwcsum_outgoing - handle outgoing HW checksumming
437 * @sk: socket we are sending on
438 * @skb: sk_buff containing the filled-in UDP header
439 * (checksum field must be zeroed out)
441 static void udp4_hwcsum_outgoing(struct sock *sk, struct sk_buff *skb,
442 __be32 src, __be32 dst, int len )
444 unsigned int offset;
445 struct udphdr *uh = udp_hdr(skb);
446 __wsum csum = 0;
448 if (skb_queue_len(&sk->sk_write_queue) == 1) {
450 * Only one fragment on the socket.
452 skb->csum_start = skb_transport_header(skb) - skb->head;
453 skb->csum_offset = offsetof(struct udphdr, check);
454 uh->check = ~csum_tcpudp_magic(src, dst, len, IPPROTO_UDP, 0);
455 } else {
457 * HW-checksum won't work as there are two or more
458 * fragments on the socket so that all csums of sk_buffs
459 * should be together
461 offset = skb_transport_offset(skb);
462 skb->csum = skb_checksum(skb, offset, skb->len - offset, 0);
464 skb->ip_summed = CHECKSUM_NONE;
466 skb_queue_walk(&sk->sk_write_queue, skb) {
467 csum = csum_add(csum, skb->csum);
470 uh->check = csum_tcpudp_magic(src, dst, len, IPPROTO_UDP, csum);
471 if (uh->check == 0)
472 uh->check = CSUM_MANGLED_0;
477 * Push out all pending data as one UDP datagram. Socket is locked.
479 static int udp_push_pending_frames(struct sock *sk)
481 struct udp_sock *up = udp_sk(sk);
482 struct inet_sock *inet = inet_sk(sk);
483 struct flowi *fl = &inet->cork.fl;
484 struct sk_buff *skb;
485 struct udphdr *uh;
486 int err = 0;
487 __wsum csum = 0;
489 /* Grab the skbuff where UDP header space exists. */
490 if ((skb = skb_peek(&sk->sk_write_queue)) == NULL)
491 goto out;
494 * Create a UDP header
496 uh = udp_hdr(skb);
497 uh->source = fl->fl_ip_sport;
498 uh->dest = fl->fl_ip_dport;
499 uh->len = htons(up->len);
500 uh->check = 0;
502 if (up->pcflag) /* UDP-Lite */
503 csum = udplite_csum_outgoing(sk, skb);
505 else if (sk->sk_no_check == UDP_CSUM_NOXMIT) { /* UDP csum disabled */
507 skb->ip_summed = CHECKSUM_NONE;
508 goto send;
510 } else if (skb->ip_summed == CHECKSUM_PARTIAL) { /* UDP hardware csum */
512 udp4_hwcsum_outgoing(sk, skb, fl->fl4_src,fl->fl4_dst, up->len);
513 goto send;
515 } else /* `normal' UDP */
516 csum = udp_csum_outgoing(sk, skb);
518 /* add protocol-dependent pseudo-header */
519 uh->check = csum_tcpudp_magic(fl->fl4_src, fl->fl4_dst, up->len,
520 sk->sk_protocol, csum );
521 if (uh->check == 0)
522 uh->check = CSUM_MANGLED_0;
524 send:
525 err = ip_push_pending_frames(sk);
526 out:
527 up->len = 0;
528 up->pending = 0;
529 return err;
532 int udp_sendmsg(struct kiocb *iocb, struct sock *sk, struct msghdr *msg,
533 size_t len)
535 struct inet_sock *inet = inet_sk(sk);
536 struct udp_sock *up = udp_sk(sk);
537 int ulen = len;
538 struct ipcm_cookie ipc;
539 struct rtable *rt = NULL;
540 int free = 0;
541 int connected = 0;
542 __be32 daddr, faddr, saddr;
543 __be16 dport;
544 u8 tos;
545 int err, is_udplite = up->pcflag;
546 int corkreq = up->corkflag || msg->msg_flags&MSG_MORE;
547 int (*getfrag)(void *, char *, int, int, int, struct sk_buff *);
549 if (len > 0xFFFF)
550 return -EMSGSIZE;
553 * Check the flags.
556 if (msg->msg_flags&MSG_OOB) /* Mirror BSD error message compatibility */
557 return -EOPNOTSUPP;
559 ipc.opt = NULL;
561 if (up->pending) {
563 * There are pending frames.
564 * The socket lock must be held while it's corked.
566 lock_sock(sk);
567 if (likely(up->pending)) {
568 if (unlikely(up->pending != AF_INET)) {
569 release_sock(sk);
570 return -EINVAL;
572 goto do_append_data;
574 release_sock(sk);
576 ulen += sizeof(struct udphdr);
579 * Get and verify the address.
581 if (msg->msg_name) {
582 struct sockaddr_in * usin = (struct sockaddr_in*)msg->msg_name;
583 if (msg->msg_namelen < sizeof(*usin))
584 return -EINVAL;
585 if (usin->sin_family != AF_INET) {
586 if (usin->sin_family != AF_UNSPEC)
587 return -EAFNOSUPPORT;
590 daddr = usin->sin_addr.s_addr;
591 dport = usin->sin_port;
592 if (dport == 0)
593 return -EINVAL;
594 } else {
595 if (sk->sk_state != TCP_ESTABLISHED)
596 return -EDESTADDRREQ;
597 daddr = inet->daddr;
598 dport = inet->dport;
599 /* Open fast path for connected socket.
600 Route will not be used, if at least one option is set.
602 connected = 1;
604 ipc.addr = inet->saddr;
606 ipc.oif = sk->sk_bound_dev_if;
607 if (msg->msg_controllen) {
608 err = ip_cmsg_send(msg, &ipc);
609 if (err)
610 return err;
611 if (ipc.opt)
612 free = 1;
613 connected = 0;
615 if (!ipc.opt)
616 ipc.opt = inet->opt;
618 saddr = ipc.addr;
619 ipc.addr = faddr = daddr;
621 if (ipc.opt && ipc.opt->srr) {
622 if (!daddr)
623 return -EINVAL;
624 faddr = ipc.opt->faddr;
625 connected = 0;
627 tos = RT_TOS(inet->tos);
628 if (sock_flag(sk, SOCK_LOCALROUTE) ||
629 (msg->msg_flags & MSG_DONTROUTE) ||
630 (ipc.opt && ipc.opt->is_strictroute)) {
631 tos |= RTO_ONLINK;
632 connected = 0;
635 if (MULTICAST(daddr)) {
636 if (!ipc.oif)
637 ipc.oif = inet->mc_index;
638 if (!saddr)
639 saddr = inet->mc_addr;
640 connected = 0;
643 if (connected)
644 rt = (struct rtable*)sk_dst_check(sk, 0);
646 if (rt == NULL) {
647 struct flowi fl = { .oif = ipc.oif,
648 .nl_u = { .ip4_u =
649 { .daddr = faddr,
650 .saddr = saddr,
651 .tos = tos } },
652 .proto = sk->sk_protocol,
653 .uli_u = { .ports =
654 { .sport = inet->sport,
655 .dport = dport } } };
656 security_sk_classify_flow(sk, &fl);
657 err = ip_route_output_flow(&rt, &fl, sk, 1);
658 if (err) {
659 if (err == -ENETUNREACH)
660 IP_INC_STATS_BH(IPSTATS_MIB_OUTNOROUTES);
661 goto out;
664 err = -EACCES;
665 if ((rt->rt_flags & RTCF_BROADCAST) &&
666 !sock_flag(sk, SOCK_BROADCAST))
667 goto out;
668 if (connected)
669 sk_dst_set(sk, dst_clone(&rt->u.dst));
672 if (msg->msg_flags&MSG_CONFIRM)
673 goto do_confirm;
674 back_from_confirm:
676 saddr = rt->rt_src;
677 if (!ipc.addr)
678 daddr = ipc.addr = rt->rt_dst;
680 lock_sock(sk);
681 if (unlikely(up->pending)) {
682 /* The socket is already corked while preparing it. */
683 /* ... which is an evident application bug. --ANK */
684 release_sock(sk);
686 LIMIT_NETDEBUG(KERN_DEBUG "udp cork app bug 2\n");
687 err = -EINVAL;
688 goto out;
691 * Now cork the socket to pend data.
693 inet->cork.fl.fl4_dst = daddr;
694 inet->cork.fl.fl_ip_dport = dport;
695 inet->cork.fl.fl4_src = saddr;
696 inet->cork.fl.fl_ip_sport = inet->sport;
697 up->pending = AF_INET;
699 do_append_data:
700 up->len += ulen;
701 getfrag = is_udplite ? udplite_getfrag : ip_generic_getfrag;
702 err = ip_append_data(sk, getfrag, msg->msg_iov, ulen,
703 sizeof(struct udphdr), &ipc, rt,
704 corkreq ? msg->msg_flags|MSG_MORE : msg->msg_flags);
705 if (err)
706 udp_flush_pending_frames(sk);
707 else if (!corkreq)
708 err = udp_push_pending_frames(sk);
709 else if (unlikely(skb_queue_empty(&sk->sk_write_queue)))
710 up->pending = 0;
711 release_sock(sk);
713 out:
714 ip_rt_put(rt);
715 if (free)
716 kfree(ipc.opt);
717 if (!err) {
718 UDP_INC_STATS_USER(UDP_MIB_OUTDATAGRAMS, is_udplite);
719 return len;
722 * ENOBUFS = no kernel mem, SOCK_NOSPACE = no sndbuf space. Reporting
723 * ENOBUFS might not be good (it's not tunable per se), but otherwise
724 * we don't have a good statistic (IpOutDiscards but it can be too many
725 * things). We could add another new stat but at least for now that
726 * seems like overkill.
728 if (err == -ENOBUFS || test_bit(SOCK_NOSPACE, &sk->sk_socket->flags)) {
729 UDP_INC_STATS_USER(UDP_MIB_SNDBUFERRORS, is_udplite);
731 return err;
733 do_confirm:
734 dst_confirm(&rt->u.dst);
735 if (!(msg->msg_flags&MSG_PROBE) || len)
736 goto back_from_confirm;
737 err = 0;
738 goto out;
741 int udp_sendpage(struct sock *sk, struct page *page, int offset,
742 size_t size, int flags)
744 struct udp_sock *up = udp_sk(sk);
745 int ret;
747 if (!up->pending) {
748 struct msghdr msg = { .msg_flags = flags|MSG_MORE };
750 /* Call udp_sendmsg to specify destination address which
751 * sendpage interface can't pass.
752 * This will succeed only when the socket is connected.
754 ret = udp_sendmsg(NULL, sk, &msg, 0);
755 if (ret < 0)
756 return ret;
759 lock_sock(sk);
761 if (unlikely(!up->pending)) {
762 release_sock(sk);
764 LIMIT_NETDEBUG(KERN_DEBUG "udp cork app bug 3\n");
765 return -EINVAL;
768 ret = ip_append_page(sk, page, offset, size, flags);
769 if (ret == -EOPNOTSUPP) {
770 release_sock(sk);
771 return sock_no_sendpage(sk->sk_socket, page, offset,
772 size, flags);
774 if (ret < 0) {
775 udp_flush_pending_frames(sk);
776 goto out;
779 up->len += size;
780 if (!(up->corkflag || (flags&MSG_MORE)))
781 ret = udp_push_pending_frames(sk);
782 if (!ret)
783 ret = size;
784 out:
785 release_sock(sk);
786 return ret;
790 * IOCTL requests applicable to the UDP protocol
793 int udp_ioctl(struct sock *sk, int cmd, unsigned long arg)
795 switch (cmd) {
796 case SIOCOUTQ:
798 int amount = sk_wmem_alloc_get(sk);
800 return put_user(amount, (int __user *)arg);
803 case SIOCINQ:
805 struct sk_buff *skb;
806 unsigned long amount;
808 amount = 0;
809 spin_lock_bh(&sk->sk_receive_queue.lock);
810 skb = skb_peek(&sk->sk_receive_queue);
811 if (skb != NULL) {
813 * We will only return the amount
814 * of this packet since that is all
815 * that will be read.
817 amount = skb->len - sizeof(struct udphdr);
819 spin_unlock_bh(&sk->sk_receive_queue.lock);
820 return put_user(amount, (int __user *)arg);
823 default:
824 return -ENOIOCTLCMD;
827 return 0;
831 * This should be easy, if there is something there we
832 * return it, otherwise we block.
835 int udp_recvmsg(struct kiocb *iocb, struct sock *sk, struct msghdr *msg,
836 size_t len, int noblock, int flags, int *addr_len)
838 struct inet_sock *inet = inet_sk(sk);
839 struct sockaddr_in *sin = (struct sockaddr_in *)msg->msg_name;
840 struct sk_buff *skb;
841 unsigned int ulen, copied;
842 int err;
843 int is_udplite = IS_UDPLITE(sk);
846 * Check any passed addresses
848 if (addr_len)
849 *addr_len=sizeof(*sin);
851 if (flags & MSG_ERRQUEUE)
852 return ip_recv_error(sk, msg, len);
854 try_again:
855 skb = skb_recv_datagram(sk, flags, noblock, &err);
856 if (!skb)
857 goto out;
859 ulen = skb->len - sizeof(struct udphdr);
860 copied = len;
861 if (copied > ulen)
862 copied = ulen;
863 else if (copied < ulen)
864 msg->msg_flags |= MSG_TRUNC;
867 * If checksum is needed at all, try to do it while copying the
868 * data. If the data is truncated, or if we only want a partial
869 * coverage checksum (UDP-Lite), do it before the copy.
872 if (copied < ulen || UDP_SKB_CB(skb)->partial_cov) {
873 if (udp_lib_checksum_complete(skb))
874 goto csum_copy_err;
877 if (skb_csum_unnecessary(skb))
878 err = skb_copy_datagram_iovec(skb, sizeof(struct udphdr),
879 msg->msg_iov, copied );
880 else {
881 err = skb_copy_and_csum_datagram_iovec(skb, sizeof(struct udphdr), msg->msg_iov);
883 if (err == -EINVAL)
884 goto csum_copy_err;
887 if (err)
888 goto out_free;
890 sock_recv_timestamp(msg, sk, skb);
892 /* Copy the address. */
893 if (sin)
895 sin->sin_family = AF_INET;
896 sin->sin_port = udp_hdr(skb)->source;
897 sin->sin_addr.s_addr = ip_hdr(skb)->saddr;
898 memset(sin->sin_zero, 0, sizeof(sin->sin_zero));
900 if (inet->cmsg_flags)
901 ip_cmsg_recv(msg, skb);
903 err = copied;
904 if (flags & MSG_TRUNC)
905 err = ulen;
907 out_free:
908 skb_free_datagram_locked(sk, skb);
909 out:
910 return err;
912 csum_copy_err:
913 UDP_INC_STATS_BH(UDP_MIB_INERRORS, is_udplite);
915 skb_kill_datagram(sk, skb, flags);
917 if (noblock)
918 return -EAGAIN;
919 goto try_again;
923 int udp_disconnect(struct sock *sk, int flags)
925 struct inet_sock *inet = inet_sk(sk);
927 * 1003.1g - break association.
930 sk->sk_state = TCP_CLOSE;
931 inet->daddr = 0;
932 inet->dport = 0;
933 sk->sk_bound_dev_if = 0;
934 if (!(sk->sk_userlocks & SOCK_BINDADDR_LOCK))
935 inet_reset_saddr(sk);
937 if (!(sk->sk_userlocks & SOCK_BINDPORT_LOCK)) {
938 sk->sk_prot->unhash(sk);
939 inet->sport = 0;
941 sk_dst_reset(sk);
942 return 0;
945 /* returns:
946 * -1: error
947 * 0: success
948 * >0: "udp encap" protocol resubmission
950 * Note that in the success and error cases, the skb is assumed to
951 * have either been requeued or freed.
953 int udp_queue_rcv_skb(struct sock * sk, struct sk_buff *skb)
955 struct udp_sock *up = udp_sk(sk);
956 int rc;
959 * Charge it to the socket, dropping if the queue is full.
961 if (!xfrm4_policy_check(sk, XFRM_POLICY_IN, skb))
962 goto drop;
963 nf_reset(skb);
965 if (up->encap_type) {
967 * This is an encapsulation socket so pass the skb to
968 * the socket's udp_encap_rcv() hook. Otherwise, just
969 * fall through and pass this up the UDP socket.
970 * up->encap_rcv() returns the following value:
971 * =0 if skb was successfully passed to the encap
972 * handler or was discarded by it.
973 * >0 if skb should be passed on to UDP.
974 * <0 if skb should be resubmitted as proto -N
977 /* if we're overly short, let UDP handle it */
978 if (skb->len > sizeof(struct udphdr) &&
979 up->encap_rcv != NULL) {
980 int ret;
982 ret = (*up->encap_rcv)(sk, skb);
983 if (ret <= 0) {
984 UDP_INC_STATS_BH(UDP_MIB_INDATAGRAMS, up->pcflag);
985 return -ret;
989 /* FALLTHROUGH -- it's a UDP Packet */
993 * UDP-Lite specific tests, ignored on UDP sockets
995 if ((up->pcflag & UDPLITE_RECV_CC) && UDP_SKB_CB(skb)->partial_cov) {
998 * MIB statistics other than incrementing the error count are
999 * disabled for the following two types of errors: these depend
1000 * on the application settings, not on the functioning of the
1001 * protocol stack as such.
1003 * RFC 3828 here recommends (sec 3.3): "There should also be a
1004 * way ... to ... at least let the receiving application block
1005 * delivery of packets with coverage values less than a value
1006 * provided by the application."
1008 if (up->pcrlen == 0) { /* full coverage was set */
1009 LIMIT_NETDEBUG(KERN_WARNING "UDPLITE: partial coverage "
1010 "%d while full coverage %d requested\n",
1011 UDP_SKB_CB(skb)->cscov, skb->len);
1012 goto drop;
1014 /* The next case involves violating the min. coverage requested
1015 * by the receiver. This is subtle: if receiver wants x and x is
1016 * greater than the buffersize/MTU then receiver will complain
1017 * that it wants x while sender emits packets of smaller size y.
1018 * Therefore the above ...()->partial_cov statement is essential.
1020 if (UDP_SKB_CB(skb)->cscov < up->pcrlen) {
1021 LIMIT_NETDEBUG(KERN_WARNING
1022 "UDPLITE: coverage %d too small, need min %d\n",
1023 UDP_SKB_CB(skb)->cscov, up->pcrlen);
1024 goto drop;
1028 if (sk->sk_filter) {
1029 if (udp_lib_checksum_complete(skb))
1030 goto drop;
1033 if ((rc = sock_queue_rcv_skb(sk,skb)) < 0) {
1034 /* Note that an ENOMEM error is charged twice */
1035 if (rc == -ENOMEM)
1036 UDP_INC_STATS_BH(UDP_MIB_RCVBUFERRORS, up->pcflag);
1037 goto drop;
1040 UDP_INC_STATS_BH(UDP_MIB_INDATAGRAMS, up->pcflag);
1041 return 0;
1043 drop:
1044 UDP_INC_STATS_BH(UDP_MIB_INERRORS, up->pcflag);
1045 kfree_skb(skb);
1046 return -1;
1050 * Multicasts and broadcasts go to each listener.
1052 * Note: called only from the BH handler context,
1053 * so we don't need to lock the hashes.
1055 static int __udp4_lib_mcast_deliver(struct sk_buff *skb,
1056 struct udphdr *uh,
1057 __be32 saddr, __be32 daddr,
1058 struct hlist_head udptable[])
1060 struct sock *sk;
1061 int dif;
1063 read_lock(&udp_hash_lock);
1064 sk = sk_head(&udptable[ntohs(uh->dest) & (UDP_HTABLE_SIZE - 1)]);
1065 dif = skb->dev->ifindex;
1066 sk = udp_v4_mcast_next(sk, uh->dest, daddr, uh->source, saddr, dif);
1067 if (sk) {
1068 struct sock *sknext = NULL;
1070 do {
1071 struct sk_buff *skb1 = skb;
1073 sknext = udp_v4_mcast_next(sk_next(sk), uh->dest, daddr,
1074 uh->source, saddr, dif);
1075 if (sknext)
1076 skb1 = skb_clone(skb, GFP_ATOMIC);
1078 if (skb1) {
1079 int ret = udp_queue_rcv_skb(sk, skb1);
1080 if (ret > 0)
1081 /* we should probably re-process instead
1082 * of dropping packets here. */
1083 kfree_skb(skb1);
1085 sk = sknext;
1086 } while (sknext);
1087 } else
1088 kfree_skb(skb);
1089 read_unlock(&udp_hash_lock);
1090 return 0;
1093 /* Initialize UDP checksum. If exited with zero value (success),
1094 * CHECKSUM_UNNECESSARY means, that no more checks are required.
1095 * Otherwise, csum completion requires chacksumming packet body,
1096 * including udp header and folding it to skb->csum.
1098 static inline int udp4_csum_init(struct sk_buff *skb, struct udphdr *uh,
1099 int proto)
1101 const struct iphdr *iph;
1102 int err;
1104 UDP_SKB_CB(skb)->partial_cov = 0;
1105 UDP_SKB_CB(skb)->cscov = skb->len;
1107 if (proto == IPPROTO_UDPLITE) {
1108 err = udplite_checksum_init(skb, uh);
1109 if (err)
1110 return err;
1113 iph = ip_hdr(skb);
1114 if (uh->check == 0) {
1115 skb->ip_summed = CHECKSUM_UNNECESSARY;
1116 } else if (skb->ip_summed == CHECKSUM_COMPLETE) {
1117 if (!csum_tcpudp_magic(iph->saddr, iph->daddr, skb->len,
1118 proto, skb->csum))
1119 skb->ip_summed = CHECKSUM_UNNECESSARY;
1121 if (!skb_csum_unnecessary(skb))
1122 skb->csum = csum_tcpudp_nofold(iph->saddr, iph->daddr,
1123 skb->len, proto, 0);
1124 /* Probably, we should checksum udp header (it should be in cache
1125 * in any case) and data in tiny packets (< rx copybreak).
1128 return 0;
1132 * All we need to do is get the socket, and then do a checksum.
1135 int __udp4_lib_rcv(struct sk_buff *skb, struct hlist_head udptable[],
1136 int proto)
1138 struct sock *sk;
1139 struct udphdr *uh = udp_hdr(skb);
1140 unsigned short ulen;
1141 struct rtable *rt = (struct rtable*)skb->dst;
1142 __be32 saddr, daddr;
1145 * Validate the packet.
1147 if (!pskb_may_pull(skb, sizeof(struct udphdr)))
1148 goto drop; /* No space for header. */
1150 ulen = ntohs(uh->len);
1151 if (ulen > skb->len)
1152 goto short_packet;
1154 if (proto == IPPROTO_UDP) {
1155 /* UDP validates ulen. */
1156 if (ulen < sizeof(*uh) || pskb_trim_rcsum(skb, ulen))
1157 goto short_packet;
1158 uh = udp_hdr(skb);
1161 if (udp4_csum_init(skb, uh, proto))
1162 goto csum_error;
1164 saddr = ip_hdr(skb)->saddr;
1165 daddr = ip_hdr(skb)->daddr;
1167 if (rt->rt_flags & (RTCF_BROADCAST|RTCF_MULTICAST))
1168 return __udp4_lib_mcast_deliver(skb, uh, saddr, daddr, udptable);
1170 sk = __udp4_lib_lookup_skb(skb, uh->source, uh->dest, udptable);
1172 if (sk != NULL) {
1173 int ret = udp_queue_rcv_skb(sk, skb);
1174 sock_put(sk);
1176 /* a return value > 0 means to resubmit the input, but
1177 * it wants the return to be -protocol, or 0
1179 if (ret > 0)
1180 return -ret;
1181 return 0;
1184 if (!xfrm4_policy_check(NULL, XFRM_POLICY_IN, skb))
1185 goto drop;
1186 nf_reset(skb);
1188 /* No socket. Drop packet silently, if checksum is wrong */
1189 if (udp_lib_checksum_complete(skb))
1190 goto csum_error;
1192 UDP_INC_STATS_BH(UDP_MIB_NOPORTS, proto == IPPROTO_UDPLITE);
1193 icmp_send(skb, ICMP_DEST_UNREACH, ICMP_PORT_UNREACH, 0);
1196 * Hmm. We got an UDP packet to a port to which we
1197 * don't wanna listen. Ignore it.
1199 kfree_skb(skb);
1200 return 0;
1202 short_packet:
1203 LIMIT_NETDEBUG(KERN_DEBUG "UDP%s: short packet: From %u.%u.%u.%u:%u %d/%d to %u.%u.%u.%u:%u\n",
1204 proto == IPPROTO_UDPLITE ? "-Lite" : "",
1205 NIPQUAD(saddr),
1206 ntohs(uh->source),
1207 ulen,
1208 skb->len,
1209 NIPQUAD(daddr),
1210 ntohs(uh->dest));
1211 goto drop;
1213 csum_error:
1215 * RFC1122: OK. Discards the bad packet silently (as far as
1216 * the network is concerned, anyway) as per 4.1.3.4 (MUST).
1218 LIMIT_NETDEBUG(KERN_DEBUG "UDP%s: bad checksum. From %d.%d.%d.%d:%d to %d.%d.%d.%d:%d ulen %d\n",
1219 proto == IPPROTO_UDPLITE ? "-Lite" : "",
1220 NIPQUAD(saddr),
1221 ntohs(uh->source),
1222 NIPQUAD(daddr),
1223 ntohs(uh->dest),
1224 ulen);
1225 drop:
1226 UDP_INC_STATS_BH(UDP_MIB_INERRORS, proto == IPPROTO_UDPLITE);
1227 kfree_skb(skb);
1228 return 0;
1231 int udp_rcv(struct sk_buff *skb)
1233 return __udp4_lib_rcv(skb, udp_hash, IPPROTO_UDP);
1236 int udp_destroy_sock(struct sock *sk)
1238 lock_sock(sk);
1239 udp_flush_pending_frames(sk);
1240 release_sock(sk);
1241 return 0;
1245 * Socket option code for UDP
1247 int udp_lib_setsockopt(struct sock *sk, int level, int optname,
1248 char __user *optval, int optlen,
1249 int (*push_pending_frames)(struct sock *))
1251 struct udp_sock *up = udp_sk(sk);
1252 int val;
1253 int err = 0;
1255 if (optlen<sizeof(int))
1256 return -EINVAL;
1258 if (get_user(val, (int __user *)optval))
1259 return -EFAULT;
1261 switch (optname) {
1262 case UDP_CORK:
1263 if (val != 0) {
1264 up->corkflag = 1;
1265 } else {
1266 up->corkflag = 0;
1267 lock_sock(sk);
1268 (*push_pending_frames)(sk);
1269 release_sock(sk);
1271 break;
1273 case UDP_ENCAP:
1274 switch (val) {
1275 case 0:
1276 case UDP_ENCAP_ESPINUDP:
1277 case UDP_ENCAP_ESPINUDP_NON_IKE:
1278 up->encap_rcv = xfrm4_udp_encap_rcv;
1279 /* FALLTHROUGH */
1280 case UDP_ENCAP_L2TPINUDP:
1281 up->encap_type = val;
1282 break;
1283 default:
1284 err = -ENOPROTOOPT;
1285 break;
1287 break;
1290 * UDP-Lite's partial checksum coverage (RFC 3828).
1292 /* The sender sets actual checksum coverage length via this option.
1293 * The case coverage > packet length is handled by send module. */
1294 case UDPLITE_SEND_CSCOV:
1295 if (!up->pcflag) /* Disable the option on UDP sockets */
1296 return -ENOPROTOOPT;
1297 if (val != 0 && val < 8) /* Illegal coverage: use default (8) */
1298 val = 8;
1299 up->pcslen = val;
1300 up->pcflag |= UDPLITE_SEND_CC;
1301 break;
1303 /* The receiver specifies a minimum checksum coverage value. To make
1304 * sense, this should be set to at least 8 (as done below). If zero is
1305 * used, this again means full checksum coverage. */
1306 case UDPLITE_RECV_CSCOV:
1307 if (!up->pcflag) /* Disable the option on UDP sockets */
1308 return -ENOPROTOOPT;
1309 if (val != 0 && val < 8) /* Avoid silly minimal values. */
1310 val = 8;
1311 up->pcrlen = val;
1312 up->pcflag |= UDPLITE_RECV_CC;
1313 break;
1315 default:
1316 err = -ENOPROTOOPT;
1317 break;
1320 return err;
1323 int udp_setsockopt(struct sock *sk, int level, int optname,
1324 char __user *optval, int optlen)
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 ip_setsockopt(sk, level, optname, optval, optlen);
1332 #ifdef CONFIG_COMPAT
1333 int compat_udp_setsockopt(struct sock *sk, int level, int optname,
1334 char __user *optval, int optlen)
1336 if (level == SOL_UDP || level == SOL_UDPLITE)
1337 return udp_lib_setsockopt(sk, level, optname, optval, optlen,
1338 udp_push_pending_frames);
1339 return compat_ip_setsockopt(sk, level, optname, optval, optlen);
1341 #endif
1343 int udp_lib_getsockopt(struct sock *sk, int level, int optname,
1344 char __user *optval, int __user *optlen)
1346 struct udp_sock *up = udp_sk(sk);
1347 int val, len;
1349 if (get_user(len,optlen))
1350 return -EFAULT;
1352 len = min_t(unsigned int, len, sizeof(int));
1354 if (len < 0)
1355 return -EINVAL;
1357 switch (optname) {
1358 case UDP_CORK:
1359 val = up->corkflag;
1360 break;
1362 case UDP_ENCAP:
1363 val = up->encap_type;
1364 break;
1366 /* The following two cannot be changed on UDP sockets, the return is
1367 * always 0 (which corresponds to the full checksum coverage of UDP). */
1368 case UDPLITE_SEND_CSCOV:
1369 val = up->pcslen;
1370 break;
1372 case UDPLITE_RECV_CSCOV:
1373 val = up->pcrlen;
1374 break;
1376 default:
1377 return -ENOPROTOOPT;
1380 if (put_user(len, optlen))
1381 return -EFAULT;
1382 if (copy_to_user(optval, &val,len))
1383 return -EFAULT;
1384 return 0;
1387 int udp_getsockopt(struct sock *sk, int level, int optname,
1388 char __user *optval, int __user *optlen)
1390 if (level == SOL_UDP || level == SOL_UDPLITE)
1391 return udp_lib_getsockopt(sk, level, optname, optval, optlen);
1392 return ip_getsockopt(sk, level, optname, optval, optlen);
1395 #ifdef CONFIG_COMPAT
1396 int compat_udp_getsockopt(struct sock *sk, int level, int optname,
1397 char __user *optval, int __user *optlen)
1399 if (level == SOL_UDP || level == SOL_UDPLITE)
1400 return udp_lib_getsockopt(sk, level, optname, optval, optlen);
1401 return compat_ip_getsockopt(sk, level, optname, optval, optlen);
1403 #endif
1405 * udp_poll - wait for a UDP event.
1406 * @file - file struct
1407 * @sock - socket
1408 * @wait - poll table
1410 * This is same as datagram poll, except for the special case of
1411 * blocking sockets. If application is using a blocking fd
1412 * and a packet with checksum error is in the queue;
1413 * then it could get return from select indicating data available
1414 * but then block when reading it. Add special case code
1415 * to work around these arguably broken applications.
1417 unsigned int udp_poll(struct file *file, struct socket *sock, poll_table *wait)
1419 unsigned int mask = datagram_poll(file, sock, wait);
1420 struct sock *sk = sock->sk;
1421 int is_lite = IS_UDPLITE(sk);
1423 /* Check for false positives due to checksum errors */
1424 if ( (mask & POLLRDNORM) &&
1425 !(file->f_flags & O_NONBLOCK) &&
1426 !(sk->sk_shutdown & RCV_SHUTDOWN)){
1427 struct sk_buff_head *rcvq = &sk->sk_receive_queue;
1428 struct sk_buff *skb;
1430 spin_lock_bh(&rcvq->lock);
1431 while ((skb = skb_peek(rcvq)) != NULL &&
1432 udp_lib_checksum_complete(skb)) {
1433 UDP_INC_STATS_BH(UDP_MIB_INERRORS, is_lite);
1434 __skb_unlink(skb, rcvq);
1435 kfree_skb(skb);
1437 spin_unlock_bh(&rcvq->lock);
1439 /* nothing to see, move along */
1440 if (skb == NULL)
1441 mask &= ~(POLLIN | POLLRDNORM);
1444 return mask;
1448 struct proto udp_prot = {
1449 .name = "UDP",
1450 .owner = THIS_MODULE,
1451 .close = udp_lib_close,
1452 .connect = ip4_datagram_connect,
1453 .disconnect = udp_disconnect,
1454 .ioctl = udp_ioctl,
1455 .destroy = udp_destroy_sock,
1456 .setsockopt = udp_setsockopt,
1457 .getsockopt = udp_getsockopt,
1458 .sendmsg = udp_sendmsg,
1459 .recvmsg = udp_recvmsg,
1460 .sendpage = udp_sendpage,
1461 .backlog_rcv = udp_queue_rcv_skb,
1462 .hash = udp_lib_hash,
1463 .unhash = udp_lib_unhash,
1464 .get_port = udp_v4_get_port,
1465 .obj_size = sizeof(struct udp_sock),
1466 #ifdef CONFIG_COMPAT
1467 .compat_setsockopt = compat_udp_setsockopt,
1468 .compat_getsockopt = compat_udp_getsockopt,
1469 #endif
1472 /* ------------------------------------------------------------------------ */
1473 #ifdef CONFIG_PROC_FS
1475 static struct sock *udp_get_first(struct seq_file *seq)
1477 struct sock *sk;
1478 struct udp_iter_state *state = seq->private;
1480 for (state->bucket = 0; state->bucket < UDP_HTABLE_SIZE; ++state->bucket) {
1481 struct hlist_node *node;
1482 sk_for_each(sk, node, state->hashtable + state->bucket) {
1483 if (sk->sk_family == state->family)
1484 goto found;
1487 sk = NULL;
1488 found:
1489 return sk;
1492 static struct sock *udp_get_next(struct seq_file *seq, struct sock *sk)
1494 struct udp_iter_state *state = seq->private;
1496 do {
1497 sk = sk_next(sk);
1498 try_again:
1500 } while (sk && sk->sk_family != state->family);
1502 if (!sk && ++state->bucket < UDP_HTABLE_SIZE) {
1503 sk = sk_head(state->hashtable + state->bucket);
1504 goto try_again;
1506 return sk;
1509 static struct sock *udp_get_idx(struct seq_file *seq, loff_t pos)
1511 struct sock *sk = udp_get_first(seq);
1513 if (sk)
1514 while (pos && (sk = udp_get_next(seq, sk)) != NULL)
1515 --pos;
1516 return pos ? NULL : sk;
1519 static void *udp_seq_start(struct seq_file *seq, loff_t *pos)
1521 read_lock(&udp_hash_lock);
1522 return *pos ? udp_get_idx(seq, *pos-1) : (void *)1;
1525 static void *udp_seq_next(struct seq_file *seq, void *v, loff_t *pos)
1527 struct sock *sk;
1529 if (v == (void *)1)
1530 sk = udp_get_idx(seq, 0);
1531 else
1532 sk = udp_get_next(seq, v);
1534 ++*pos;
1535 return sk;
1538 static void udp_seq_stop(struct seq_file *seq, void *v)
1540 read_unlock(&udp_hash_lock);
1543 static int udp_seq_open(struct inode *inode, struct file *file)
1545 struct udp_seq_afinfo *afinfo = PDE(inode)->data;
1546 struct udp_iter_state *s;
1548 s = __seq_open_private(file, &afinfo->seq_ops,
1549 sizeof(struct udp_iter_state));
1550 if (s == NULL)
1551 return -ENOMEM;
1553 s->family = afinfo->family;
1554 s->hashtable = afinfo->hashtable;
1556 return 0;
1559 /* ------------------------------------------------------------------------ */
1560 int udp_proc_register(struct udp_seq_afinfo *afinfo)
1562 struct proc_dir_entry *p;
1563 int rc = 0;
1565 if (!afinfo)
1566 return -EINVAL;
1567 afinfo->seq_fops->owner = afinfo->owner;
1568 afinfo->seq_fops->open = udp_seq_open;
1569 afinfo->seq_fops->read = seq_read;
1570 afinfo->seq_fops->llseek = seq_lseek;
1571 afinfo->seq_fops->release = seq_release_private;
1573 afinfo->seq_ops.start = udp_seq_start;
1574 afinfo->seq_ops.next = udp_seq_next;
1575 afinfo->seq_ops.stop = udp_seq_stop;
1577 p = proc_net_fops_create(afinfo->name, S_IRUGO, afinfo->seq_fops);
1578 if (p)
1579 p->data = afinfo;
1580 else
1581 rc = -ENOMEM;
1582 return rc;
1585 void udp_proc_unregister(struct udp_seq_afinfo *afinfo)
1587 if (!afinfo)
1588 return;
1589 proc_net_remove(afinfo->name);
1590 memset(afinfo->seq_fops, 0, sizeof(*afinfo->seq_fops));
1593 /* ------------------------------------------------------------------------ */
1594 static void udp4_format_sock(struct sock *sp, struct seq_file *f,
1595 int bucket, int *len)
1597 struct inet_sock *inet = inet_sk(sp);
1598 __be32 dest = inet->daddr;
1599 __be32 src = inet->rcv_saddr;
1600 __u16 destp = ntohs(inet->dport);
1601 __u16 srcp = ntohs(inet->sport);
1603 seq_printf(f, "%4d: %08X:%04X %08X:%04X"
1604 " %02X %08X:%08X %02X:%08lX %08X %5d %8d %lu %d %p%n",
1605 bucket, src, srcp, dest, destp, sp->sk_state,
1606 sk_wmem_alloc_get(sp),
1607 sk_rmem_alloc_get(sp),
1608 0, 0L, 0, sock_i_uid(sp), 0, sock_i_ino(sp),
1609 atomic_read(&sp->sk_refcnt), sp, len);
1612 int udp4_seq_show(struct seq_file *seq, void *v)
1614 if (v == SEQ_START_TOKEN)
1615 seq_printf(seq, "%-127s\n",
1616 " sl local_address rem_address st tx_queue "
1617 "rx_queue tr tm->when retrnsmt uid timeout "
1618 "inode");
1619 else {
1620 struct udp_iter_state *state = seq->private;
1621 int len;
1623 udp4_format_sock(v, seq, state->bucket, &len);
1624 seq_printf(seq, "%*s\n", 127 - len ,"");
1626 return 0;
1629 /* ------------------------------------------------------------------------ */
1630 static struct file_operations udp4_seq_fops;
1631 static struct udp_seq_afinfo udp4_seq_afinfo = {
1632 .owner = THIS_MODULE,
1633 .name = "udp",
1634 .family = AF_INET,
1635 .hashtable = udp_hash,
1636 .seq_fops = &udp4_seq_fops,
1637 .seq_ops = {
1638 .show = udp4_seq_show,
1642 int __init udp4_proc_init(void)
1644 return udp_proc_register(&udp4_seq_afinfo);
1647 void udp4_proc_exit(void)
1649 udp_proc_unregister(&udp4_seq_afinfo);
1651 #endif /* CONFIG_PROC_FS */
1653 EXPORT_SYMBOL(udp_disconnect);
1654 EXPORT_SYMBOL(udp_hash);
1655 EXPORT_SYMBOL(udp_hash_lock);
1656 EXPORT_SYMBOL(udp_ioctl);
1657 EXPORT_SYMBOL(udp_get_port);
1658 EXPORT_SYMBOL(udp_prot);
1659 EXPORT_SYMBOL(udp_sendmsg);
1660 EXPORT_SYMBOL(udp_lib_getsockopt);
1661 EXPORT_SYMBOL(udp_lib_setsockopt);
1662 EXPORT_SYMBOL(udp_poll);
1664 #ifdef CONFIG_PROC_FS
1665 EXPORT_SYMBOL(udp_proc_register);
1666 EXPORT_SYMBOL(udp_proc_unregister);
1667 #endif