3 * Linux INET6 implementation
6 * Pedro Roque <roque@di.fc.ul.pt>
8 * Based on linux/ipv4/udp.c
10 * $Id: udp.c,v 1.65 2002/02/01 22:01:04 davem Exp $
13 * Hideaki YOSHIFUJI : sin6_scope_id support
14 * YOSHIFUJI Hideaki @USAGI and: Support IPV6_V6ONLY socket option, which
15 * Alexey Kuznetsov allow both IPv4 and IPv6 sockets to bind
16 * a single port at the same time.
17 * Kazunori MIYAZAWA @USAGI: change process style to use ip6_append_data
18 * YOSHIFUJI Hideaki @USAGI: convert /proc/net/udp6 to seq_file.
20 * This program is free software; you can redistribute it and/or
21 * modify it under the terms of the GNU General Public License
22 * as published by the Free Software Foundation; either version
23 * 2 of the License, or (at your option) any later version.
26 #include <linux/config.h>
27 #include <linux/errno.h>
28 #include <linux/types.h>
29 #include <linux/socket.h>
30 #include <linux/sockios.h>
31 #include <linux/sched.h>
32 #include <linux/net.h>
33 #include <linux/in6.h>
34 #include <linux/netdevice.h>
35 #include <linux/if_arp.h>
36 #include <linux/ipv6.h>
37 #include <linux/icmpv6.h>
38 #include <linux/init.h>
39 #include <asm/uaccess.h>
45 #include <net/ndisc.h>
46 #include <net/protocol.h>
47 #include <net/transp_v6.h>
48 #include <net/ip6_route.h>
49 #include <net/addrconf.h>
53 #include <net/inet_common.h>
55 #include <net/ip6_checksum.h>
58 #include <linux/proc_fs.h>
59 #include <linux/seq_file.h>
61 DEFINE_SNMP_STAT(struct udp_mib
, udp_stats_in6
);
63 /* Grrr, addr_type already calculated by caller, but I don't want
64 * to add some silly "cookie" argument to this method just for that.
66 static int udp_v6_get_port(struct sock
*sk
, unsigned short snum
)
69 struct hlist_node
*node
;
71 write_lock_bh(&udp_hash_lock
);
73 int best_size_so_far
, best
, result
, i
;
75 if (udp_port_rover
> sysctl_local_port_range
[1] ||
76 udp_port_rover
< sysctl_local_port_range
[0])
77 udp_port_rover
= sysctl_local_port_range
[0];
78 best_size_so_far
= 32767;
79 best
= result
= udp_port_rover
;
80 for (i
= 0; i
< UDP_HTABLE_SIZE
; i
++, result
++) {
82 struct hlist_head
*list
;
84 list
= &udp_hash
[result
& (UDP_HTABLE_SIZE
- 1)];
85 if (hlist_empty(list
)) {
86 if (result
> sysctl_local_port_range
[1])
87 result
= sysctl_local_port_range
[0] +
88 ((result
- sysctl_local_port_range
[0]) &
89 (UDP_HTABLE_SIZE
- 1));
93 sk_for_each(sk2
, node
, list
)
94 if (++size
>= best_size_so_far
)
96 best_size_so_far
= size
;
101 for(;; result
+= UDP_HTABLE_SIZE
) {
102 if (result
> sysctl_local_port_range
[1])
103 result
= sysctl_local_port_range
[0]
104 + ((result
- sysctl_local_port_range
[0]) &
105 (UDP_HTABLE_SIZE
- 1));
106 if (!udp_lport_inuse(result
))
110 udp_port_rover
= snum
= result
;
112 sk_for_each(sk2
, node
,
113 &udp_hash
[snum
& (UDP_HTABLE_SIZE
- 1)]) {
114 if (inet_sk(sk2
)->num
== snum
&&
116 (!sk2
->sk_bound_dev_if
||
117 !sk
->sk_bound_dev_if
||
118 sk2
->sk_bound_dev_if
== sk
->sk_bound_dev_if
) &&
119 (!sk2
->sk_reuse
|| !sk
->sk_reuse
) &&
120 ipv6_rcv_saddr_equal(sk
, sk2
))
125 inet_sk(sk
)->num
= snum
;
126 if (sk_unhashed(sk
)) {
127 sk_add_node(sk
, &udp_hash
[snum
& (UDP_HTABLE_SIZE
- 1)]);
128 sock_prot_inc_use(sk
->sk_prot
);
130 write_unlock_bh(&udp_hash_lock
);
134 write_unlock_bh(&udp_hash_lock
);
138 static void udp_v6_hash(struct sock
*sk
)
143 static void udp_v6_unhash(struct sock
*sk
)
145 write_lock_bh(&udp_hash_lock
);
146 if (sk_del_node_init(sk
)) {
147 inet_sk(sk
)->num
= 0;
148 sock_prot_dec_use(sk
->sk_prot
);
150 write_unlock_bh(&udp_hash_lock
);
153 static struct sock
*udp_v6_lookup(struct in6_addr
*saddr
, u16 sport
,
154 struct in6_addr
*daddr
, u16 dport
, int dif
)
156 struct sock
*sk
, *result
= NULL
;
157 struct hlist_node
*node
;
158 unsigned short hnum
= ntohs(dport
);
161 read_lock(&udp_hash_lock
);
162 sk_for_each(sk
, node
, &udp_hash
[hnum
& (UDP_HTABLE_SIZE
- 1)]) {
163 struct inet_sock
*inet
= inet_sk(sk
);
165 if (inet
->num
== hnum
&& sk
->sk_family
== PF_INET6
) {
166 struct ipv6_pinfo
*np
= inet6_sk(sk
);
169 if (inet
->dport
!= sport
)
173 if (!ipv6_addr_any(&np
->rcv_saddr
)) {
174 if (!ipv6_addr_equal(&np
->rcv_saddr
, daddr
))
178 if (!ipv6_addr_any(&np
->daddr
)) {
179 if (!ipv6_addr_equal(&np
->daddr
, saddr
))
183 if (sk
->sk_bound_dev_if
) {
184 if (sk
->sk_bound_dev_if
!= dif
)
191 } else if(score
> badness
) {
199 read_unlock(&udp_hash_lock
);
207 static void udpv6_close(struct sock
*sk
, long timeout
)
209 sk_common_release(sk
);
213 * This should be easy, if there is something there we
214 * return it, otherwise we block.
217 static int udpv6_recvmsg(struct kiocb
*iocb
, struct sock
*sk
,
218 struct msghdr
*msg
, size_t len
,
219 int noblock
, int flags
, int *addr_len
)
221 struct ipv6_pinfo
*np
= inet6_sk(sk
);
222 struct inet_sock
*inet
= inet_sk(sk
);
228 *addr_len
=sizeof(struct sockaddr_in6
);
230 if (flags
& MSG_ERRQUEUE
)
231 return ipv6_recv_error(sk
, msg
, len
);
234 skb
= skb_recv_datagram(sk
, flags
, noblock
, &err
);
238 copied
= skb
->len
- sizeof(struct udphdr
);
241 msg
->msg_flags
|= MSG_TRUNC
;
244 if (skb
->ip_summed
==CHECKSUM_UNNECESSARY
) {
245 err
= skb_copy_datagram_iovec(skb
, sizeof(struct udphdr
), msg
->msg_iov
,
247 } else if (msg
->msg_flags
&MSG_TRUNC
) {
248 if ((unsigned short)csum_fold(skb_checksum(skb
, 0, skb
->len
, skb
->csum
)))
250 err
= skb_copy_datagram_iovec(skb
, sizeof(struct udphdr
), msg
->msg_iov
,
253 err
= skb_copy_and_csum_datagram_iovec(skb
, sizeof(struct udphdr
), msg
->msg_iov
);
260 sock_recv_timestamp(msg
, sk
, skb
);
262 /* Copy the address. */
264 struct sockaddr_in6
*sin6
;
266 sin6
= (struct sockaddr_in6
*) msg
->msg_name
;
267 sin6
->sin6_family
= AF_INET6
;
268 sin6
->sin6_port
= skb
->h
.uh
->source
;
269 sin6
->sin6_flowinfo
= 0;
270 sin6
->sin6_scope_id
= 0;
272 if (skb
->protocol
== htons(ETH_P_IP
))
273 ipv6_addr_set(&sin6
->sin6_addr
, 0, 0,
274 htonl(0xffff), skb
->nh
.iph
->saddr
);
276 ipv6_addr_copy(&sin6
->sin6_addr
, &skb
->nh
.ipv6h
->saddr
);
277 if (ipv6_addr_type(&sin6
->sin6_addr
) & IPV6_ADDR_LINKLOCAL
)
278 sin6
->sin6_scope_id
= IP6CB(skb
)->iif
;
282 if (skb
->protocol
== htons(ETH_P_IP
)) {
283 if (inet
->cmsg_flags
)
284 ip_cmsg_recv(msg
, skb
);
287 datagram_recv_ctl(sk
, msg
, skb
);
291 if (flags
& MSG_TRUNC
)
292 err
= skb
->len
- sizeof(struct udphdr
);
295 skb_free_datagram(sk
, skb
);
301 if (flags
&MSG_PEEK
) {
303 spin_lock_irq(&sk
->sk_receive_queue
.lock
);
304 if (skb
== skb_peek(&sk
->sk_receive_queue
)) {
305 __skb_unlink(skb
, &sk
->sk_receive_queue
);
308 spin_unlock_irq(&sk
->sk_receive_queue
.lock
);
313 skb_free_datagram(sk
, skb
);
315 if (flags
& MSG_DONTWAIT
) {
316 UDP6_INC_STATS_USER(UDP_MIB_INERRORS
);
322 static void udpv6_err(struct sk_buff
*skb
, struct inet6_skb_parm
*opt
,
323 int type
, int code
, int offset
, __u32 info
)
325 struct ipv6_pinfo
*np
;
326 struct ipv6hdr
*hdr
= (struct ipv6hdr
*)skb
->data
;
327 struct net_device
*dev
= skb
->dev
;
328 struct in6_addr
*saddr
= &hdr
->saddr
;
329 struct in6_addr
*daddr
= &hdr
->daddr
;
330 struct udphdr
*uh
= (struct udphdr
*)(skb
->data
+offset
);
334 sk
= udp_v6_lookup(daddr
, uh
->dest
, saddr
, uh
->source
, dev
->ifindex
);
341 if (!icmpv6_err_convert(type
, code
, &err
) && !np
->recverr
)
344 if (sk
->sk_state
!= TCP_ESTABLISHED
&& !np
->recverr
)
348 ipv6_icmp_error(sk
, skb
, err
, uh
->dest
, ntohl(info
), (u8
*)(uh
+1));
351 sk
->sk_error_report(sk
);
356 static inline int udpv6_queue_rcv_skb(struct sock
* sk
, struct sk_buff
*skb
)
358 if (!xfrm6_policy_check(sk
, XFRM_POLICY_IN
, skb
)) {
363 if (skb
->ip_summed
!= CHECKSUM_UNNECESSARY
) {
364 if ((unsigned short)csum_fold(skb_checksum(skb
, 0, skb
->len
, skb
->csum
))) {
365 UDP6_INC_STATS_BH(UDP_MIB_INERRORS
);
369 skb
->ip_summed
= CHECKSUM_UNNECESSARY
;
372 if (sock_queue_rcv_skb(sk
,skb
)<0) {
373 UDP6_INC_STATS_BH(UDP_MIB_INERRORS
);
377 UDP6_INC_STATS_BH(UDP_MIB_INDATAGRAMS
);
381 static struct sock
*udp_v6_mcast_next(struct sock
*sk
,
382 u16 loc_port
, struct in6_addr
*loc_addr
,
383 u16 rmt_port
, struct in6_addr
*rmt_addr
,
386 struct hlist_node
*node
;
388 unsigned short num
= ntohs(loc_port
);
390 sk_for_each_from(s
, node
) {
391 struct inet_sock
*inet
= inet_sk(s
);
393 if (inet
->num
== num
&& s
->sk_family
== PF_INET6
) {
394 struct ipv6_pinfo
*np
= inet6_sk(s
);
396 if (inet
->dport
!= rmt_port
)
399 if (!ipv6_addr_any(&np
->daddr
) &&
400 !ipv6_addr_equal(&np
->daddr
, rmt_addr
))
403 if (s
->sk_bound_dev_if
&& s
->sk_bound_dev_if
!= dif
)
406 if (!ipv6_addr_any(&np
->rcv_saddr
)) {
407 if (ipv6_addr_equal(&np
->rcv_saddr
, loc_addr
))
411 if(!inet6_mc_check(s
, loc_addr
, rmt_addr
))
420 * Note: called only from the BH handler context,
421 * so we don't need to lock the hashes.
423 static void udpv6_mcast_deliver(struct udphdr
*uh
,
424 struct in6_addr
*saddr
, struct in6_addr
*daddr
,
427 struct sock
*sk
, *sk2
;
430 read_lock(&udp_hash_lock
);
431 sk
= sk_head(&udp_hash
[ntohs(uh
->dest
) & (UDP_HTABLE_SIZE
- 1)]);
432 dif
= skb
->dev
->ifindex
;
433 sk
= udp_v6_mcast_next(sk
, uh
->dest
, daddr
, uh
->source
, saddr
, dif
);
440 while ((sk2
= udp_v6_mcast_next(sk_next(sk2
), uh
->dest
, daddr
,
441 uh
->source
, saddr
, dif
))) {
442 struct sk_buff
*buff
= skb_clone(skb
, GFP_ATOMIC
);
444 udpv6_queue_rcv_skb(sk2
, buff
);
446 udpv6_queue_rcv_skb(sk
, skb
);
448 read_unlock(&udp_hash_lock
);
451 static int udpv6_rcv(struct sk_buff
**pskb
, unsigned int *nhoffp
)
453 struct sk_buff
*skb
= *pskb
;
456 struct net_device
*dev
= skb
->dev
;
457 struct in6_addr
*saddr
, *daddr
;
460 if (!pskb_may_pull(skb
, sizeof(struct udphdr
)))
463 saddr
= &skb
->nh
.ipv6h
->saddr
;
464 daddr
= &skb
->nh
.ipv6h
->daddr
;
467 ulen
= ntohs(uh
->len
);
469 /* Check for jumbo payload */
473 if (ulen
> skb
->len
|| ulen
< sizeof(*uh
))
476 if (uh
->check
== 0) {
477 /* RFC 2460 section 8.1 says that we SHOULD log
478 this error. Well, it is reasonable.
481 printk(KERN_INFO
"IPv6: udp checksum is 0\n"));
485 if (ulen
< skb
->len
) {
486 if (__pskb_trim(skb
, ulen
))
488 saddr
= &skb
->nh
.ipv6h
->saddr
;
489 daddr
= &skb
->nh
.ipv6h
->daddr
;
493 if (skb
->ip_summed
==CHECKSUM_HW
) {
494 skb
->ip_summed
= CHECKSUM_UNNECESSARY
;
495 if (csum_ipv6_magic(saddr
, daddr
, ulen
, IPPROTO_UDP
, skb
->csum
)) {
496 LIMIT_NETDEBUG(printk(KERN_DEBUG
"udp v6 hw csum failure.\n"));
497 skb
->ip_summed
= CHECKSUM_NONE
;
500 if (skb
->ip_summed
!= CHECKSUM_UNNECESSARY
)
501 skb
->csum
= ~csum_ipv6_magic(saddr
, daddr
, ulen
, IPPROTO_UDP
, 0);
504 * Multicast receive code
506 if (ipv6_addr_is_multicast(daddr
)) {
507 udpv6_mcast_deliver(uh
, saddr
, daddr
, skb
);
514 * check socket cache ... must talk to Alan about his plans
515 * for sock caches... i'll skip this for now.
517 sk
= udp_v6_lookup(saddr
, uh
->source
, daddr
, uh
->dest
, dev
->ifindex
);
520 if (!xfrm6_policy_check(NULL
, XFRM_POLICY_IN
, skb
))
523 if (skb
->ip_summed
!= CHECKSUM_UNNECESSARY
&&
524 (unsigned short)csum_fold(skb_checksum(skb
, 0, skb
->len
, skb
->csum
)))
526 UDP6_INC_STATS_BH(UDP_MIB_NOPORTS
);
528 icmpv6_send(skb
, ICMPV6_DEST_UNREACH
, ICMPV6_PORT_UNREACH
, 0, dev
);
536 udpv6_queue_rcv_skb(sk
, skb
);
542 printk(KERN_DEBUG
"UDP: short packet: %d/%u\n", ulen
, skb
->len
);
545 UDP6_INC_STATS_BH(UDP_MIB_INERRORS
);
550 * Throw away all pending data and cancel the corking. Socket is locked.
552 static void udp_v6_flush_pending_frames(struct sock
*sk
)
554 struct udp_sock
*up
= udp_sk(sk
);
559 ip6_flush_pending_frames(sk
);
567 static int udp_v6_push_pending_frames(struct sock
*sk
, struct udp_sock
*up
)
571 struct inet_sock
*inet
= inet_sk(sk
);
572 struct flowi
*fl
= &inet
->cork
.fl
;
575 /* Grab the skbuff where UDP header space exists. */
576 if ((skb
= skb_peek(&sk
->sk_write_queue
)) == NULL
)
580 * Create a UDP header
583 uh
->source
= fl
->fl_ip_sport
;
584 uh
->dest
= fl
->fl_ip_dport
;
585 uh
->len
= htons(up
->len
);
588 if (sk
->sk_no_check
== UDP_CSUM_NOXMIT
) {
589 skb
->ip_summed
= CHECKSUM_NONE
;
593 if (skb_queue_len(&sk
->sk_write_queue
) == 1) {
594 skb
->csum
= csum_partial((char *)uh
,
595 sizeof(struct udphdr
), skb
->csum
);
596 uh
->check
= csum_ipv6_magic(&fl
->fl6_src
,
598 up
->len
, fl
->proto
, skb
->csum
);
602 skb_queue_walk(&sk
->sk_write_queue
, skb
) {
603 tmp_csum
= csum_add(tmp_csum
, skb
->csum
);
605 tmp_csum
= csum_partial((char *)uh
,
606 sizeof(struct udphdr
), tmp_csum
);
607 tmp_csum
= csum_ipv6_magic(&fl
->fl6_src
,
609 up
->len
, fl
->proto
, tmp_csum
);
610 uh
->check
= tmp_csum
;
617 err
= ip6_push_pending_frames(sk
);
624 static int udpv6_sendmsg(struct kiocb
*iocb
, struct sock
*sk
,
625 struct msghdr
*msg
, size_t len
)
627 struct ipv6_txoptions opt_space
;
628 struct udp_sock
*up
= udp_sk(sk
);
629 struct inet_sock
*inet
= inet_sk(sk
);
630 struct ipv6_pinfo
*np
= inet6_sk(sk
);
631 struct sockaddr_in6
*sin6
= (struct sockaddr_in6
*) msg
->msg_name
;
632 struct in6_addr
*daddr
, *final_p
= NULL
, final
;
633 struct ipv6_txoptions
*opt
= NULL
;
634 struct ip6_flowlabel
*flowlabel
= NULL
;
635 struct flowi
*fl
= &inet
->cork
.fl
;
636 struct dst_entry
*dst
;
637 int addr_len
= msg
->msg_namelen
;
640 int corkreq
= up
->corkflag
|| msg
->msg_flags
&MSG_MORE
;
643 /* destination address check */
645 if (addr_len
< offsetof(struct sockaddr
, sa_data
))
648 switch (sin6
->sin6_family
) {
650 if (addr_len
< SIN6_LEN_RFC2133
)
652 daddr
= &sin6
->sin6_addr
;
657 msg
->msg_name
= sin6
= NULL
;
658 msg
->msg_namelen
= addr_len
= 0;
664 } else if (!up
->pending
) {
665 if (sk
->sk_state
!= TCP_ESTABLISHED
)
666 return -EDESTADDRREQ
;
672 if (ipv6_addr_type(daddr
) == IPV6_ADDR_MAPPED
) {
673 struct sockaddr_in sin
;
674 sin
.sin_family
= AF_INET
;
675 sin
.sin_port
= sin6
? sin6
->sin6_port
: inet
->dport
;
676 sin
.sin_addr
.s_addr
= daddr
->s6_addr32
[3];
677 msg
->msg_name
= &sin
;
678 msg
->msg_namelen
= sizeof(sin
);
680 if (__ipv6_only_sock(sk
))
682 return udp_sendmsg(iocb
, sk
, msg
, len
);
686 if (up
->pending
== AF_INET
)
687 return udp_sendmsg(iocb
, sk
, msg
, len
);
689 /* Rough check on arithmetic overflow,
690 better check is made in ip6_build_xmit
692 if (len
> INT_MAX
- sizeof(struct udphdr
))
697 * There are pending frames.
698 * The socket lock must be held while it's corked.
701 if (likely(up
->pending
)) {
702 if (unlikely(up
->pending
!= AF_INET6
)) {
704 return -EAFNOSUPPORT
;
711 ulen
+= sizeof(struct udphdr
);
713 memset(fl
, 0, sizeof(*fl
));
716 if (sin6
->sin6_port
== 0)
719 fl
->fl_ip_dport
= sin6
->sin6_port
;
720 daddr
= &sin6
->sin6_addr
;
723 fl
->fl6_flowlabel
= sin6
->sin6_flowinfo
&IPV6_FLOWINFO_MASK
;
724 if (fl
->fl6_flowlabel
&IPV6_FLOWLABEL_MASK
) {
725 flowlabel
= fl6_sock_lookup(sk
, fl
->fl6_flowlabel
);
726 if (flowlabel
== NULL
)
728 daddr
= &flowlabel
->dst
;
733 * Otherwise it will be difficult to maintain
736 if (sk
->sk_state
== TCP_ESTABLISHED
&&
737 ipv6_addr_equal(daddr
, &np
->daddr
))
740 if (addr_len
>= sizeof(struct sockaddr_in6
) &&
741 sin6
->sin6_scope_id
&&
742 ipv6_addr_type(daddr
)&IPV6_ADDR_LINKLOCAL
)
743 fl
->oif
= sin6
->sin6_scope_id
;
745 if (sk
->sk_state
!= TCP_ESTABLISHED
)
746 return -EDESTADDRREQ
;
748 fl
->fl_ip_dport
= inet
->dport
;
750 fl
->fl6_flowlabel
= np
->flow_label
;
754 fl
->oif
= sk
->sk_bound_dev_if
;
756 if (msg
->msg_controllen
) {
758 memset(opt
, 0, sizeof(struct ipv6_txoptions
));
759 opt
->tot_len
= sizeof(*opt
);
761 err
= datagram_send_ctl(msg
, fl
, opt
, &hlimit
);
763 fl6_sock_release(flowlabel
);
766 if ((fl
->fl6_flowlabel
&IPV6_FLOWLABEL_MASK
) && !flowlabel
) {
767 flowlabel
= fl6_sock_lookup(sk
, fl
->fl6_flowlabel
);
768 if (flowlabel
== NULL
)
771 if (!(opt
->opt_nflen
|opt
->opt_flen
))
777 opt
= fl6_merge_options(&opt_space
, flowlabel
, opt
);
779 fl
->proto
= IPPROTO_UDP
;
780 ipv6_addr_copy(&fl
->fl6_dst
, daddr
);
781 if (ipv6_addr_any(&fl
->fl6_src
) && !ipv6_addr_any(&np
->saddr
))
782 ipv6_addr_copy(&fl
->fl6_src
, &np
->saddr
);
783 fl
->fl_ip_sport
= inet
->sport
;
785 /* merge ip6_build_xmit from ip6_output */
786 if (opt
&& opt
->srcrt
) {
787 struct rt0_hdr
*rt0
= (struct rt0_hdr
*) opt
->srcrt
;
788 ipv6_addr_copy(&final
, &fl
->fl6_dst
);
789 ipv6_addr_copy(&fl
->fl6_dst
, rt0
->addr
);
793 if (!fl
->oif
&& ipv6_addr_is_multicast(&fl
->fl6_dst
))
794 fl
->oif
= np
->mcast_oif
;
796 err
= ip6_dst_lookup(sk
, &dst
, fl
);
800 ipv6_addr_copy(&fl
->fl6_dst
, final_p
);
802 if ((err
= xfrm_lookup(&dst
, fl
, sk
, 0)) < 0) {
808 if (ipv6_addr_is_multicast(&fl
->fl6_dst
))
809 hlimit
= np
->mcast_hops
;
811 hlimit
= np
->hop_limit
;
813 hlimit
= dst_metric(dst
, RTAX_HOPLIMIT
);
815 hlimit
= ipv6_get_hoplimit(dst
->dev
);
818 if (msg
->msg_flags
&MSG_CONFIRM
)
823 if (unlikely(up
->pending
)) {
824 /* The socket is already corked while preparing it. */
825 /* ... which is an evident application bug. --ANK */
828 LIMIT_NETDEBUG(printk(KERN_DEBUG
"udp cork app bug 2\n"));
833 up
->pending
= AF_INET6
;
837 err
= ip6_append_data(sk
, ip_generic_getfrag
, msg
->msg_iov
, ulen
, sizeof(struct udphdr
),
838 hlimit
, opt
, fl
, (struct rt6_info
*)dst
,
839 corkreq
? msg
->msg_flags
|MSG_MORE
: msg
->msg_flags
);
841 udp_v6_flush_pending_frames(sk
);
843 err
= udp_v6_push_pending_frames(sk
, up
);
846 ip6_dst_store(sk
, dst
,
847 ipv6_addr_equal(&fl
->fl6_dst
, &np
->daddr
) ?
850 err
= np
->recverr
? net_xmit_errno(err
) : 0;
853 fl6_sock_release(flowlabel
);
855 UDP6_INC_STATS_USER(UDP_MIB_OUTDATAGRAMS
);
862 if (!(msg
->msg_flags
&MSG_PROBE
) || len
)
863 goto back_from_confirm
;
868 static int udpv6_destroy_sock(struct sock
*sk
)
871 udp_v6_flush_pending_frames(sk
);
874 inet6_destroy_sock(sk
);
880 * Socket option code for UDP
882 static int udpv6_setsockopt(struct sock
*sk
, int level
, int optname
,
883 char __user
*optval
, int optlen
)
885 struct udp_sock
*up
= udp_sk(sk
);
889 if (level
!= SOL_UDP
)
890 return ipv6_setsockopt(sk
, level
, optname
, optval
, optlen
);
892 if(optlen
<sizeof(int))
895 if (get_user(val
, (int __user
*)optval
))
905 udp_v6_push_pending_frames(sk
, up
);
913 up
->encap_type
= val
;
929 static int udpv6_getsockopt(struct sock
*sk
, int level
, int optname
,
930 char __user
*optval
, int __user
*optlen
)
932 struct udp_sock
*up
= udp_sk(sk
);
935 if (level
!= SOL_UDP
)
936 return ipv6_getsockopt(sk
, level
, optname
, optval
, optlen
);
938 if(get_user(len
,optlen
))
941 len
= min_t(unsigned int, len
, sizeof(int));
952 val
= up
->encap_type
;
959 if(put_user(len
, optlen
))
961 if(copy_to_user(optval
, &val
,len
))
966 static struct inet6_protocol udpv6_protocol
= {
967 .handler
= udpv6_rcv
,
968 .err_handler
= udpv6_err
,
969 .flags
= INET6_PROTO_NOPOLICY
|INET6_PROTO_FINAL
,
972 /* ------------------------------------------------------------------------ */
973 #ifdef CONFIG_PROC_FS
975 static void udp6_sock_seq_show(struct seq_file
*seq
, struct sock
*sp
, int bucket
)
977 struct inet_sock
*inet
= inet_sk(sp
);
978 struct ipv6_pinfo
*np
= inet6_sk(sp
);
979 struct in6_addr
*dest
, *src
;
983 src
= &np
->rcv_saddr
;
984 destp
= ntohs(inet
->dport
);
985 srcp
= ntohs(inet
->sport
);
987 "%4d: %08X%08X%08X%08X:%04X %08X%08X%08X%08X:%04X "
988 "%02X %08X:%08X %02X:%08lX %08X %5d %8d %lu %d %p\n",
990 src
->s6_addr32
[0], src
->s6_addr32
[1],
991 src
->s6_addr32
[2], src
->s6_addr32
[3], srcp
,
992 dest
->s6_addr32
[0], dest
->s6_addr32
[1],
993 dest
->s6_addr32
[2], dest
->s6_addr32
[3], destp
,
995 atomic_read(&sp
->sk_wmem_alloc
),
996 atomic_read(&sp
->sk_rmem_alloc
),
1000 atomic_read(&sp
->sk_refcnt
), sp
);
1003 static int udp6_seq_show(struct seq_file
*seq
, void *v
)
1005 if (v
== SEQ_START_TOKEN
)
1010 "st tx_queue rx_queue tr tm->when retrnsmt"
1011 " uid timeout inode\n");
1013 udp6_sock_seq_show(seq
, v
, ((struct udp_iter_state
*)seq
->private)->bucket
);
1017 static struct file_operations udp6_seq_fops
;
1018 static struct udp_seq_afinfo udp6_seq_afinfo
= {
1019 .owner
= THIS_MODULE
,
1022 .seq_show
= udp6_seq_show
,
1023 .seq_fops
= &udp6_seq_fops
,
1026 int __init
udp6_proc_init(void)
1028 return udp_proc_register(&udp6_seq_afinfo
);
1031 void udp6_proc_exit(void) {
1032 udp_proc_unregister(&udp6_seq_afinfo
);
1034 #endif /* CONFIG_PROC_FS */
1036 /* ------------------------------------------------------------------------ */
1038 struct proto udpv6_prot
= {
1040 .owner
= THIS_MODULE
,
1041 .close
= udpv6_close
,
1042 .connect
= ip6_datagram_connect
,
1043 .disconnect
= udp_disconnect
,
1045 .destroy
= udpv6_destroy_sock
,
1046 .setsockopt
= udpv6_setsockopt
,
1047 .getsockopt
= udpv6_getsockopt
,
1048 .sendmsg
= udpv6_sendmsg
,
1049 .recvmsg
= udpv6_recvmsg
,
1050 .backlog_rcv
= udpv6_queue_rcv_skb
,
1051 .hash
= udp_v6_hash
,
1052 .unhash
= udp_v6_unhash
,
1053 .get_port
= udp_v6_get_port
,
1054 .obj_size
= sizeof(struct udp6_sock
),
1057 extern struct proto_ops inet6_dgram_ops
;
1059 static struct inet_protosw udpv6_protosw
= {
1061 .protocol
= IPPROTO_UDP
,
1062 .prot
= &udpv6_prot
,
1063 .ops
= &inet6_dgram_ops
,
1065 .no_check
= UDP_CSUM_DEFAULT
,
1066 .flags
= INET_PROTOSW_PERMANENT
,
1070 void __init
udpv6_init(void)
1072 if (inet6_add_protocol(&udpv6_protocol
, IPPROTO_UDP
) < 0)
1073 printk(KERN_ERR
"udpv6_init: Could not register protocol\n");
1074 inet6_register_protosw(&udpv6_protosw
);