3 * Linux INET6 implementation
6 * Pedro Roque <roque@di.fc.ul.pt>
8 * Based on linux/ipv4/udp.c
11 * Hideaki YOSHIFUJI : sin6_scope_id support
12 * YOSHIFUJI Hideaki @USAGI and: Support IPV6_V6ONLY socket option, which
13 * Alexey Kuznetsov allow both IPv4 and IPv6 sockets to bind
14 * a single port at the same time.
15 * Kazunori MIYAZAWA @USAGI: change process style to use ip6_append_data
16 * YOSHIFUJI Hideaki @USAGI: convert /proc/net/udp6 to seq_file.
18 * This program is free software; you can redistribute it and/or
19 * modify it under the terms of the GNU General Public License
20 * as published by the Free Software Foundation; either version
21 * 2 of the License, or (at your option) any later version.
24 #include <linux/errno.h>
25 #include <linux/types.h>
26 #include <linux/socket.h>
27 #include <linux/sockios.h>
28 #include <linux/net.h>
29 #include <linux/in6.h>
30 #include <linux/netdevice.h>
31 #include <linux/if_arp.h>
32 #include <linux/ipv6.h>
33 #include <linux/icmpv6.h>
34 #include <linux/init.h>
35 #include <linux/module.h>
36 #include <linux/skbuff.h>
37 #include <linux/slab.h>
38 #include <asm/uaccess.h>
40 #include <net/ndisc.h>
41 #include <net/protocol.h>
42 #include <net/transp_v6.h>
43 #include <net/ip6_route.h>
45 #include <net/tcp_states.h>
46 #include <net/ip6_checksum.h>
49 #include <linux/proc_fs.h>
50 #include <linux/seq_file.h>
53 int ipv6_rcv_saddr_equal(const struct sock
*sk
, const struct sock
*sk2
)
55 const struct in6_addr
*sk_rcv_saddr6
= &inet6_sk(sk
)->rcv_saddr
;
56 const struct in6_addr
*sk2_rcv_saddr6
= inet6_rcv_saddr(sk2
);
57 __be32 sk1_rcv_saddr
= sk_rcv_saddr(sk
);
58 __be32 sk2_rcv_saddr
= sk_rcv_saddr(sk2
);
59 int sk_ipv6only
= ipv6_only_sock(sk
);
60 int sk2_ipv6only
= inet_v6_ipv6only(sk2
);
61 int addr_type
= ipv6_addr_type(sk_rcv_saddr6
);
62 int addr_type2
= sk2_rcv_saddr6
? ipv6_addr_type(sk2_rcv_saddr6
) : IPV6_ADDR_MAPPED
;
64 /* if both are mapped, treat as IPv4 */
65 if (addr_type
== IPV6_ADDR_MAPPED
&& addr_type2
== IPV6_ADDR_MAPPED
)
66 return (!sk2_ipv6only
&&
67 (!sk1_rcv_saddr
|| !sk2_rcv_saddr
||
68 sk1_rcv_saddr
== sk2_rcv_saddr
));
70 if (addr_type2
== IPV6_ADDR_ANY
&&
71 !(sk2_ipv6only
&& addr_type
== IPV6_ADDR_MAPPED
))
74 if (addr_type
== IPV6_ADDR_ANY
&&
75 !(sk_ipv6only
&& addr_type2
== IPV6_ADDR_MAPPED
))
79 ipv6_addr_equal(sk_rcv_saddr6
, sk2_rcv_saddr6
))
85 static unsigned int udp6_portaddr_hash(struct net
*net
,
86 const struct in6_addr
*addr6
,
89 unsigned int hash
, mix
= net_hash_mix(net
);
91 if (ipv6_addr_any(addr6
))
92 hash
= jhash_1word(0, mix
);
93 else if (ipv6_addr_v4mapped(addr6
))
94 hash
= jhash_1word((__force u32
)addr6
->s6_addr32
[3], mix
);
96 hash
= jhash2((__force u32
*)addr6
->s6_addr32
, 4, mix
);
102 int udp_v6_get_port(struct sock
*sk
, unsigned short snum
)
104 unsigned int hash2_nulladdr
=
105 udp6_portaddr_hash(sock_net(sk
), &in6addr_any
, snum
);
106 unsigned int hash2_partial
=
107 udp6_portaddr_hash(sock_net(sk
), &inet6_sk(sk
)->rcv_saddr
, 0);
109 /* precompute partial secondary hash */
110 udp_sk(sk
)->udp_portaddr_hash
= hash2_partial
;
111 return udp_lib_get_port(sk
, snum
, ipv6_rcv_saddr_equal
, hash2_nulladdr
);
114 static void udp_v6_rehash(struct sock
*sk
)
116 u16 new_hash
= udp6_portaddr_hash(sock_net(sk
),
117 &inet6_sk(sk
)->rcv_saddr
,
118 inet_sk(sk
)->inet_num
);
120 udp_lib_rehash(sk
, new_hash
);
123 static inline int compute_score(struct sock
*sk
, struct net
*net
,
125 const struct in6_addr
*saddr
, __be16 sport
,
126 const struct in6_addr
*daddr
, __be16 dport
,
131 if (net_eq(sock_net(sk
), net
) && udp_sk(sk
)->udp_port_hash
== hnum
&&
132 sk
->sk_family
== PF_INET6
) {
133 struct ipv6_pinfo
*np
= inet6_sk(sk
);
134 struct inet_sock
*inet
= inet_sk(sk
);
137 if (inet
->inet_dport
) {
138 if (inet
->inet_dport
!= sport
)
142 if (!ipv6_addr_any(&np
->rcv_saddr
)) {
143 if (!ipv6_addr_equal(&np
->rcv_saddr
, daddr
))
147 if (!ipv6_addr_any(&np
->daddr
)) {
148 if (!ipv6_addr_equal(&np
->daddr
, saddr
))
152 if (sk
->sk_bound_dev_if
) {
153 if (sk
->sk_bound_dev_if
!= dif
)
161 #define SCORE2_MAX (1 + 1 + 1)
162 static inline int compute_score2(struct sock
*sk
, struct net
*net
,
163 const struct in6_addr
*saddr
, __be16 sport
,
164 const struct in6_addr
*daddr
, unsigned short hnum
,
169 if (net_eq(sock_net(sk
), net
) && udp_sk(sk
)->udp_port_hash
== hnum
&&
170 sk
->sk_family
== PF_INET6
) {
171 struct ipv6_pinfo
*np
= inet6_sk(sk
);
172 struct inet_sock
*inet
= inet_sk(sk
);
174 if (!ipv6_addr_equal(&np
->rcv_saddr
, daddr
))
177 if (inet
->inet_dport
) {
178 if (inet
->inet_dport
!= sport
)
182 if (!ipv6_addr_any(&np
->daddr
)) {
183 if (!ipv6_addr_equal(&np
->daddr
, saddr
))
187 if (sk
->sk_bound_dev_if
) {
188 if (sk
->sk_bound_dev_if
!= dif
)
197 /* called with read_rcu_lock() */
198 static struct sock
*udp6_lib_lookup2(struct net
*net
,
199 const struct in6_addr
*saddr
, __be16 sport
,
200 const struct in6_addr
*daddr
, unsigned int hnum
, int dif
,
201 struct udp_hslot
*hslot2
, unsigned int slot2
)
203 struct sock
*sk
, *result
;
204 struct hlist_nulls_node
*node
;
210 udp_portaddr_for_each_entry_rcu(sk
, node
, &hslot2
->head
) {
211 score
= compute_score2(sk
, net
, saddr
, sport
,
213 if (score
> badness
) {
216 if (score
== SCORE2_MAX
)
221 * if the nulls value we got at the end of this lookup is
222 * not the expected one, we must restart lookup.
223 * We probably met an item that was moved to another chain.
225 if (get_nulls_value(node
) != slot2
)
230 if (unlikely(!atomic_inc_not_zero_hint(&result
->sk_refcnt
, 2)))
232 else if (unlikely(compute_score2(result
, net
, saddr
, sport
,
233 daddr
, hnum
, dif
) < badness
)) {
241 struct sock
*__udp6_lib_lookup(struct net
*net
,
242 const struct in6_addr
*saddr
, __be16 sport
,
243 const struct in6_addr
*daddr
, __be16 dport
,
244 int dif
, struct udp_table
*udptable
)
246 struct sock
*sk
, *result
;
247 struct hlist_nulls_node
*node
;
248 unsigned short hnum
= ntohs(dport
);
249 unsigned int hash2
, slot2
, slot
= udp_hashfn(net
, hnum
, udptable
->mask
);
250 struct udp_hslot
*hslot2
, *hslot
= &udptable
->hash
[slot
];
254 if (hslot
->count
> 10) {
255 hash2
= udp6_portaddr_hash(net
, daddr
, hnum
);
256 slot2
= hash2
& udptable
->mask
;
257 hslot2
= &udptable
->hash2
[slot2
];
258 if (hslot
->count
< hslot2
->count
)
261 result
= udp6_lib_lookup2(net
, saddr
, sport
,
265 hash2
= udp6_portaddr_hash(net
, &in6addr_any
, hnum
);
266 slot2
= hash2
& udptable
->mask
;
267 hslot2
= &udptable
->hash2
[slot2
];
268 if (hslot
->count
< hslot2
->count
)
271 result
= udp6_lib_lookup2(net
, saddr
, sport
,
272 &in6addr_any
, hnum
, dif
,
281 sk_nulls_for_each_rcu(sk
, node
, &hslot
->head
) {
282 score
= compute_score(sk
, net
, hnum
, saddr
, sport
, daddr
, dport
, dif
);
283 if (score
> badness
) {
289 * if the nulls value we got at the end of this lookup is
290 * not the expected one, we must restart lookup.
291 * We probably met an item that was moved to another chain.
293 if (get_nulls_value(node
) != slot
)
297 if (unlikely(!atomic_inc_not_zero_hint(&result
->sk_refcnt
, 2)))
299 else if (unlikely(compute_score(result
, net
, hnum
, saddr
, sport
,
300 daddr
, dport
, dif
) < badness
)) {
308 EXPORT_SYMBOL_GPL(__udp6_lib_lookup
);
310 static struct sock
*__udp6_lib_lookup_skb(struct sk_buff
*skb
,
311 __be16 sport
, __be16 dport
,
312 struct udp_table
*udptable
)
315 const struct ipv6hdr
*iph
= ipv6_hdr(skb
);
317 if (unlikely(sk
= skb_steal_sock(skb
)))
319 return __udp6_lib_lookup(dev_net(skb_dst(skb
)->dev
), &iph
->saddr
, sport
,
320 &iph
->daddr
, dport
, inet6_iif(skb
),
324 struct sock
*udp6_lib_lookup(struct net
*net
, const struct in6_addr
*saddr
, __be16 sport
,
325 const struct in6_addr
*daddr
, __be16 dport
, int dif
)
327 return __udp6_lib_lookup(net
, saddr
, sport
, daddr
, dport
, dif
, &udp_table
);
329 EXPORT_SYMBOL_GPL(udp6_lib_lookup
);
333 * This should be easy, if there is something there we
334 * return it, otherwise we block.
337 int udpv6_recvmsg(struct kiocb
*iocb
, struct sock
*sk
,
338 struct msghdr
*msg
, size_t len
,
339 int noblock
, int flags
, int *addr_len
)
341 struct ipv6_pinfo
*np
= inet6_sk(sk
);
342 struct inet_sock
*inet
= inet_sk(sk
);
344 unsigned int ulen
, copied
;
347 int is_udplite
= IS_UDPLITE(sk
);
352 *addr_len
=sizeof(struct sockaddr_in6
);
354 if (flags
& MSG_ERRQUEUE
)
355 return ipv6_recv_error(sk
, msg
, len
);
357 if (np
->rxpmtu
&& np
->rxopt
.bits
.rxpmtu
)
358 return ipv6_recv_rxpmtu(sk
, msg
, len
);
361 skb
= __skb_recv_datagram(sk
, flags
| (noblock
? MSG_DONTWAIT
: 0),
366 ulen
= skb
->len
- sizeof(struct udphdr
);
370 else if (copied
< ulen
)
371 msg
->msg_flags
|= MSG_TRUNC
;
373 is_udp4
= (skb
->protocol
== htons(ETH_P_IP
));
376 * If checksum is needed at all, try to do it while copying the
377 * data. If the data is truncated, or if we only want a partial
378 * coverage checksum (UDP-Lite), do it before the copy.
381 if (copied
< ulen
|| UDP_SKB_CB(skb
)->partial_cov
) {
382 if (udp_lib_checksum_complete(skb
))
386 if (skb_csum_unnecessary(skb
))
387 err
= skb_copy_datagram_iovec(skb
, sizeof(struct udphdr
),
388 msg
->msg_iov
, copied
);
390 err
= skb_copy_and_csum_datagram_iovec(skb
, sizeof(struct udphdr
), msg
->msg_iov
);
399 UDP_INC_STATS_USER(sock_net(sk
),
400 UDP_MIB_INDATAGRAMS
, is_udplite
);
402 UDP6_INC_STATS_USER(sock_net(sk
),
403 UDP_MIB_INDATAGRAMS
, is_udplite
);
406 sock_recv_ts_and_drops(msg
, sk
, skb
);
408 /* Copy the address. */
410 struct sockaddr_in6
*sin6
;
412 sin6
= (struct sockaddr_in6
*) msg
->msg_name
;
413 sin6
->sin6_family
= AF_INET6
;
414 sin6
->sin6_port
= udp_hdr(skb
)->source
;
415 sin6
->sin6_flowinfo
= 0;
416 sin6
->sin6_scope_id
= 0;
419 ipv6_addr_set_v4mapped(ip_hdr(skb
)->saddr
,
422 sin6
->sin6_addr
= ipv6_hdr(skb
)->saddr
;
423 if (ipv6_addr_type(&sin6
->sin6_addr
) & IPV6_ADDR_LINKLOCAL
)
424 sin6
->sin6_scope_id
= IP6CB(skb
)->iif
;
429 if (inet
->cmsg_flags
)
430 ip_cmsg_recv(msg
, skb
);
433 datagram_recv_ctl(sk
, msg
, skb
);
437 if (flags
& MSG_TRUNC
)
441 skb_free_datagram_locked(sk
, skb
);
446 slow
= lock_sock_fast(sk
);
447 if (!skb_kill_datagram(sk
, skb
, flags
)) {
449 UDP_INC_STATS_USER(sock_net(sk
),
450 UDP_MIB_INERRORS
, is_udplite
);
452 UDP6_INC_STATS_USER(sock_net(sk
),
453 UDP_MIB_INERRORS
, is_udplite
);
455 unlock_sock_fast(sk
, slow
);
460 /* starting over for a new packet */
461 msg
->msg_flags
&= ~MSG_TRUNC
;
465 void __udp6_lib_err(struct sk_buff
*skb
, struct inet6_skb_parm
*opt
,
466 u8 type
, u8 code
, int offset
, __be32 info
,
467 struct udp_table
*udptable
)
469 struct ipv6_pinfo
*np
;
470 const struct ipv6hdr
*hdr
= (const struct ipv6hdr
*)skb
->data
;
471 const struct in6_addr
*saddr
= &hdr
->saddr
;
472 const struct in6_addr
*daddr
= &hdr
->daddr
;
473 struct udphdr
*uh
= (struct udphdr
*)(skb
->data
+offset
);
477 sk
= __udp6_lib_lookup(dev_net(skb
->dev
), daddr
, uh
->dest
,
478 saddr
, uh
->source
, inet6_iif(skb
), udptable
);
484 if (!icmpv6_err_convert(type
, code
, &err
) && !np
->recverr
)
487 if (sk
->sk_state
!= TCP_ESTABLISHED
&& !np
->recverr
)
491 ipv6_icmp_error(sk
, skb
, err
, uh
->dest
, ntohl(info
), (u8
*)(uh
+1));
494 sk
->sk_error_report(sk
);
499 static __inline__
void udpv6_err(struct sk_buff
*skb
,
500 struct inet6_skb_parm
*opt
, u8 type
,
501 u8 code
, int offset
, __be32 info
)
503 __udp6_lib_err(skb
, opt
, type
, code
, offset
, info
, &udp_table
);
506 int udpv6_queue_rcv_skb(struct sock
* sk
, struct sk_buff
*skb
)
508 struct udp_sock
*up
= udp_sk(sk
);
510 int is_udplite
= IS_UDPLITE(sk
);
512 if (!ipv6_addr_any(&inet6_sk(sk
)->daddr
))
513 sock_rps_save_rxhash(sk
, skb
);
515 if (!xfrm6_policy_check(sk
, XFRM_POLICY_IN
, skb
))
519 * UDP-Lite specific tests, ignored on UDP sockets (see net/ipv4/udp.c).
521 if ((is_udplite
& UDPLITE_RECV_CC
) && UDP_SKB_CB(skb
)->partial_cov
) {
523 if (up
->pcrlen
== 0) { /* full coverage was set */
524 LIMIT_NETDEBUG(KERN_WARNING
"UDPLITE6: partial coverage"
525 " %d while full coverage %d requested\n",
526 UDP_SKB_CB(skb
)->cscov
, skb
->len
);
529 if (UDP_SKB_CB(skb
)->cscov
< up
->pcrlen
) {
530 LIMIT_NETDEBUG(KERN_WARNING
"UDPLITE6: coverage %d "
531 "too small, need min %d\n",
532 UDP_SKB_CB(skb
)->cscov
, up
->pcrlen
);
537 if (rcu_access_pointer(sk
->sk_filter
)) {
538 if (udp_lib_checksum_complete(skb
))
543 rc
= sock_queue_rcv_skb(sk
, skb
);
545 /* Note that an ENOMEM error is charged twice */
547 UDP6_INC_STATS_BH(sock_net(sk
),
548 UDP_MIB_RCVBUFERRORS
, is_udplite
);
549 goto drop_no_sk_drops_inc
;
554 atomic_inc(&sk
->sk_drops
);
555 drop_no_sk_drops_inc
:
556 UDP6_INC_STATS_BH(sock_net(sk
), UDP_MIB_INERRORS
, is_udplite
);
561 static struct sock
*udp_v6_mcast_next(struct net
*net
, struct sock
*sk
,
562 __be16 loc_port
, const struct in6_addr
*loc_addr
,
563 __be16 rmt_port
, const struct in6_addr
*rmt_addr
,
566 struct hlist_nulls_node
*node
;
568 unsigned short num
= ntohs(loc_port
);
570 sk_nulls_for_each_from(s
, node
) {
571 struct inet_sock
*inet
= inet_sk(s
);
573 if (!net_eq(sock_net(s
), net
))
576 if (udp_sk(s
)->udp_port_hash
== num
&&
577 s
->sk_family
== PF_INET6
) {
578 struct ipv6_pinfo
*np
= inet6_sk(s
);
579 if (inet
->inet_dport
) {
580 if (inet
->inet_dport
!= rmt_port
)
583 if (!ipv6_addr_any(&np
->daddr
) &&
584 !ipv6_addr_equal(&np
->daddr
, rmt_addr
))
587 if (s
->sk_bound_dev_if
&& s
->sk_bound_dev_if
!= dif
)
590 if (!ipv6_addr_any(&np
->rcv_saddr
)) {
591 if (!ipv6_addr_equal(&np
->rcv_saddr
, loc_addr
))
594 if (!inet6_mc_check(s
, loc_addr
, rmt_addr
))
602 static void flush_stack(struct sock
**stack
, unsigned int count
,
603 struct sk_buff
*skb
, unsigned int final
)
607 struct sk_buff
*skb1
;
609 for (i
= 0; i
< count
; i
++) {
610 skb1
= (i
== final
) ? skb
: skb_clone(skb
, GFP_ATOMIC
);
614 if (sk_rcvqueues_full(sk
, skb1
)) {
619 if (!sock_owned_by_user(sk
))
620 udpv6_queue_rcv_skb(sk
, skb1
);
621 else if (sk_add_backlog(sk
, skb1
)) {
630 atomic_inc(&sk
->sk_drops
);
631 UDP6_INC_STATS_BH(sock_net(sk
),
632 UDP_MIB_RCVBUFERRORS
, IS_UDPLITE(sk
));
633 UDP6_INC_STATS_BH(sock_net(sk
),
634 UDP_MIB_INERRORS
, IS_UDPLITE(sk
));
638 * Note: called only from the BH handler context,
639 * so we don't need to lock the hashes.
641 static int __udp6_lib_mcast_deliver(struct net
*net
, struct sk_buff
*skb
,
642 const struct in6_addr
*saddr
, const struct in6_addr
*daddr
,
643 struct udp_table
*udptable
)
645 struct sock
*sk
, *stack
[256 / sizeof(struct sock
*)];
646 const struct udphdr
*uh
= udp_hdr(skb
);
647 struct udp_hslot
*hslot
= udp_hashslot(udptable
, net
, ntohs(uh
->dest
));
649 unsigned int i
, count
= 0;
651 spin_lock(&hslot
->lock
);
652 sk
= sk_nulls_head(&hslot
->head
);
653 dif
= inet6_iif(skb
);
654 sk
= udp_v6_mcast_next(net
, sk
, uh
->dest
, daddr
, uh
->source
, saddr
, dif
);
657 sk
= udp_v6_mcast_next(net
, sk_nulls_next(sk
), uh
->dest
, daddr
,
658 uh
->source
, saddr
, dif
);
659 if (unlikely(count
== ARRAY_SIZE(stack
))) {
662 flush_stack(stack
, count
, skb
, ~0);
667 * before releasing the lock, we must take reference on sockets
669 for (i
= 0; i
< count
; i
++)
672 spin_unlock(&hslot
->lock
);
675 flush_stack(stack
, count
, skb
, count
- 1);
677 for (i
= 0; i
< count
; i
++)
685 static inline int udp6_csum_init(struct sk_buff
*skb
, struct udphdr
*uh
,
690 UDP_SKB_CB(skb
)->partial_cov
= 0;
691 UDP_SKB_CB(skb
)->cscov
= skb
->len
;
693 if (proto
== IPPROTO_UDPLITE
) {
694 err
= udplite_checksum_init(skb
, uh
);
699 if (uh
->check
== 0) {
700 /* RFC 2460 section 8.1 says that we SHOULD log
701 this error. Well, it is reasonable.
703 LIMIT_NETDEBUG(KERN_INFO
"IPv6: udp checksum is 0\n");
706 if (skb
->ip_summed
== CHECKSUM_COMPLETE
&&
707 !csum_ipv6_magic(&ipv6_hdr(skb
)->saddr
, &ipv6_hdr(skb
)->daddr
,
708 skb
->len
, proto
, skb
->csum
))
709 skb
->ip_summed
= CHECKSUM_UNNECESSARY
;
711 if (!skb_csum_unnecessary(skb
))
712 skb
->csum
= ~csum_unfold(csum_ipv6_magic(&ipv6_hdr(skb
)->saddr
,
713 &ipv6_hdr(skb
)->daddr
,
714 skb
->len
, proto
, 0));
719 int __udp6_lib_rcv(struct sk_buff
*skb
, struct udp_table
*udptable
,
722 struct net
*net
= dev_net(skb
->dev
);
725 const struct in6_addr
*saddr
, *daddr
;
728 if (!pskb_may_pull(skb
, sizeof(struct udphdr
)))
731 saddr
= &ipv6_hdr(skb
)->saddr
;
732 daddr
= &ipv6_hdr(skb
)->daddr
;
735 ulen
= ntohs(uh
->len
);
739 if (proto
== IPPROTO_UDP
) {
740 /* UDP validates ulen. */
742 /* Check for jumbo payload */
746 if (ulen
< sizeof(*uh
))
749 if (ulen
< skb
->len
) {
750 if (pskb_trim_rcsum(skb
, ulen
))
752 saddr
= &ipv6_hdr(skb
)->saddr
;
753 daddr
= &ipv6_hdr(skb
)->daddr
;
758 if (udp6_csum_init(skb
, uh
, proto
))
762 * Multicast receive code
764 if (ipv6_addr_is_multicast(daddr
))
765 return __udp6_lib_mcast_deliver(net
, skb
,
766 saddr
, daddr
, udptable
);
771 * check socket cache ... must talk to Alan about his plans
772 * for sock caches... i'll skip this for now.
774 sk
= __udp6_lib_lookup_skb(skb
, uh
->source
, uh
->dest
, udptable
);
777 if (!xfrm6_policy_check(NULL
, XFRM_POLICY_IN
, skb
))
780 if (udp_lib_checksum_complete(skb
))
782 UDP6_INC_STATS_BH(net
, UDP_MIB_NOPORTS
,
783 proto
== IPPROTO_UDPLITE
);
785 icmpv6_send(skb
, ICMPV6_DEST_UNREACH
, ICMPV6_PORT_UNREACH
, 0);
793 if (sk_rcvqueues_full(sk
, skb
)) {
798 if (!sock_owned_by_user(sk
))
799 udpv6_queue_rcv_skb(sk
, skb
);
800 else if (sk_add_backlog(sk
, skb
)) {
801 atomic_inc(&sk
->sk_drops
);
811 LIMIT_NETDEBUG(KERN_DEBUG
"UDP%sv6: short packet: From [%pI6c]:%u %d/%d to [%pI6c]:%u\n",
812 proto
== IPPROTO_UDPLITE
? "-Lite" : "",
821 UDP6_INC_STATS_BH(net
, UDP_MIB_INERRORS
, proto
== IPPROTO_UDPLITE
);
826 static __inline__
int udpv6_rcv(struct sk_buff
*skb
)
828 return __udp6_lib_rcv(skb
, &udp_table
, IPPROTO_UDP
);
832 * Throw away all pending data and cancel the corking. Socket is locked.
834 static void udp_v6_flush_pending_frames(struct sock
*sk
)
836 struct udp_sock
*up
= udp_sk(sk
);
838 if (up
->pending
== AF_INET
)
839 udp_flush_pending_frames(sk
);
840 else if (up
->pending
) {
843 ip6_flush_pending_frames(sk
);
848 * udp6_hwcsum_outgoing - handle outgoing HW checksumming
849 * @sk: socket we are sending on
850 * @skb: sk_buff containing the filled-in UDP header
851 * (checksum field must be zeroed out)
853 static void udp6_hwcsum_outgoing(struct sock
*sk
, struct sk_buff
*skb
,
854 const struct in6_addr
*saddr
,
855 const struct in6_addr
*daddr
, int len
)
858 struct udphdr
*uh
= udp_hdr(skb
);
861 if (skb_queue_len(&sk
->sk_write_queue
) == 1) {
862 /* Only one fragment on the socket. */
863 skb
->csum_start
= skb_transport_header(skb
) - skb
->head
;
864 skb
->csum_offset
= offsetof(struct udphdr
, check
);
865 uh
->check
= ~csum_ipv6_magic(saddr
, daddr
, len
, IPPROTO_UDP
, 0);
868 * HW-checksum won't work as there are two or more
869 * fragments on the socket so that all csums of sk_buffs
872 offset
= skb_transport_offset(skb
);
873 skb
->csum
= skb_checksum(skb
, offset
, skb
->len
- offset
, 0);
875 skb
->ip_summed
= CHECKSUM_NONE
;
877 skb_queue_walk(&sk
->sk_write_queue
, skb
) {
878 csum
= csum_add(csum
, skb
->csum
);
881 uh
->check
= csum_ipv6_magic(saddr
, daddr
, len
, IPPROTO_UDP
,
884 uh
->check
= CSUM_MANGLED_0
;
892 static int udp_v6_push_pending_frames(struct sock
*sk
)
896 struct udp_sock
*up
= udp_sk(sk
);
897 struct inet_sock
*inet
= inet_sk(sk
);
898 struct flowi6
*fl6
= &inet
->cork
.fl
.u
.ip6
;
900 int is_udplite
= IS_UDPLITE(sk
);
903 /* Grab the skbuff where UDP header space exists. */
904 if ((skb
= skb_peek(&sk
->sk_write_queue
)) == NULL
)
908 * Create a UDP header
911 uh
->source
= fl6
->fl6_sport
;
912 uh
->dest
= fl6
->fl6_dport
;
913 uh
->len
= htons(up
->len
);
917 csum
= udplite_csum_outgoing(sk
, skb
);
918 else if (skb
->ip_summed
== CHECKSUM_PARTIAL
) { /* UDP hardware csum */
919 udp6_hwcsum_outgoing(sk
, skb
, &fl6
->saddr
, &fl6
->daddr
,
923 csum
= udp_csum_outgoing(sk
, skb
);
925 /* add protocol-dependent pseudo-header */
926 uh
->check
= csum_ipv6_magic(&fl6
->saddr
, &fl6
->daddr
,
927 up
->len
, fl6
->flowi6_proto
, csum
);
929 uh
->check
= CSUM_MANGLED_0
;
932 err
= ip6_push_pending_frames(sk
);
934 if (err
== -ENOBUFS
&& !inet6_sk(sk
)->recverr
) {
935 UDP6_INC_STATS_USER(sock_net(sk
),
936 UDP_MIB_SNDBUFERRORS
, is_udplite
);
940 UDP6_INC_STATS_USER(sock_net(sk
),
941 UDP_MIB_OUTDATAGRAMS
, is_udplite
);
948 int udpv6_sendmsg(struct kiocb
*iocb
, struct sock
*sk
,
949 struct msghdr
*msg
, size_t len
)
951 struct ipv6_txoptions opt_space
;
952 struct udp_sock
*up
= udp_sk(sk
);
953 struct inet_sock
*inet
= inet_sk(sk
);
954 struct ipv6_pinfo
*np
= inet6_sk(sk
);
955 struct sockaddr_in6
*sin6
= (struct sockaddr_in6
*) msg
->msg_name
;
956 struct in6_addr
*daddr
, *final_p
, final
;
957 struct ipv6_txoptions
*opt
= NULL
;
958 struct ip6_flowlabel
*flowlabel
= NULL
;
960 struct dst_entry
*dst
;
961 int addr_len
= msg
->msg_namelen
;
966 int corkreq
= up
->corkflag
|| msg
->msg_flags
&MSG_MORE
;
969 int is_udplite
= IS_UDPLITE(sk
);
970 int (*getfrag
)(void *, char *, int, int, int, struct sk_buff
*);
972 /* destination address check */
974 if (addr_len
< offsetof(struct sockaddr
, sa_data
))
977 switch (sin6
->sin6_family
) {
979 if (addr_len
< SIN6_LEN_RFC2133
)
981 daddr
= &sin6
->sin6_addr
;
986 msg
->msg_name
= sin6
= NULL
;
987 msg
->msg_namelen
= addr_len
= 0;
993 } else if (!up
->pending
) {
994 if (sk
->sk_state
!= TCP_ESTABLISHED
)
995 return -EDESTADDRREQ
;
1001 if (ipv6_addr_v4mapped(daddr
)) {
1002 struct sockaddr_in sin
;
1003 sin
.sin_family
= AF_INET
;
1004 sin
.sin_port
= sin6
? sin6
->sin6_port
: inet
->inet_dport
;
1005 sin
.sin_addr
.s_addr
= daddr
->s6_addr32
[3];
1006 msg
->msg_name
= &sin
;
1007 msg
->msg_namelen
= sizeof(sin
);
1009 if (__ipv6_only_sock(sk
))
1010 return -ENETUNREACH
;
1011 return udp_sendmsg(iocb
, sk
, msg
, len
);
1015 if (up
->pending
== AF_INET
)
1016 return udp_sendmsg(iocb
, sk
, msg
, len
);
1018 /* Rough check on arithmetic overflow,
1019 better check is made in ip6_append_data().
1021 if (len
> INT_MAX
- sizeof(struct udphdr
))
1026 * There are pending frames.
1027 * The socket lock must be held while it's corked.
1030 if (likely(up
->pending
)) {
1031 if (unlikely(up
->pending
!= AF_INET6
)) {
1033 return -EAFNOSUPPORT
;
1036 goto do_append_data
;
1040 ulen
+= sizeof(struct udphdr
);
1042 memset(&fl6
, 0, sizeof(fl6
));
1045 if (sin6
->sin6_port
== 0)
1048 fl6
.fl6_dport
= sin6
->sin6_port
;
1049 daddr
= &sin6
->sin6_addr
;
1052 fl6
.flowlabel
= sin6
->sin6_flowinfo
&IPV6_FLOWINFO_MASK
;
1053 if (fl6
.flowlabel
&IPV6_FLOWLABEL_MASK
) {
1054 flowlabel
= fl6_sock_lookup(sk
, fl6
.flowlabel
);
1055 if (flowlabel
== NULL
)
1057 daddr
= &flowlabel
->dst
;
1062 * Otherwise it will be difficult to maintain
1065 if (sk
->sk_state
== TCP_ESTABLISHED
&&
1066 ipv6_addr_equal(daddr
, &np
->daddr
))
1069 if (addr_len
>= sizeof(struct sockaddr_in6
) &&
1070 sin6
->sin6_scope_id
&&
1071 ipv6_addr_type(daddr
)&IPV6_ADDR_LINKLOCAL
)
1072 fl6
.flowi6_oif
= sin6
->sin6_scope_id
;
1074 if (sk
->sk_state
!= TCP_ESTABLISHED
)
1075 return -EDESTADDRREQ
;
1077 fl6
.fl6_dport
= inet
->inet_dport
;
1079 fl6
.flowlabel
= np
->flow_label
;
1083 if (!fl6
.flowi6_oif
)
1084 fl6
.flowi6_oif
= sk
->sk_bound_dev_if
;
1086 if (!fl6
.flowi6_oif
)
1087 fl6
.flowi6_oif
= np
->sticky_pktinfo
.ipi6_ifindex
;
1089 fl6
.flowi6_mark
= sk
->sk_mark
;
1091 if (msg
->msg_controllen
) {
1093 memset(opt
, 0, sizeof(struct ipv6_txoptions
));
1094 opt
->tot_len
= sizeof(*opt
);
1096 err
= datagram_send_ctl(sock_net(sk
), sk
, msg
, &fl6
, opt
,
1097 &hlimit
, &tclass
, &dontfrag
);
1099 fl6_sock_release(flowlabel
);
1102 if ((fl6
.flowlabel
&IPV6_FLOWLABEL_MASK
) && !flowlabel
) {
1103 flowlabel
= fl6_sock_lookup(sk
, fl6
.flowlabel
);
1104 if (flowlabel
== NULL
)
1107 if (!(opt
->opt_nflen
|opt
->opt_flen
))
1114 opt
= fl6_merge_options(&opt_space
, flowlabel
, opt
);
1115 opt
= ipv6_fixup_options(&opt_space
, opt
);
1117 fl6
.flowi6_proto
= sk
->sk_protocol
;
1118 if (!ipv6_addr_any(daddr
))
1121 fl6
.daddr
.s6_addr
[15] = 0x1; /* :: means loopback (BSD'ism) */
1122 if (ipv6_addr_any(&fl6
.saddr
) && !ipv6_addr_any(&np
->saddr
))
1123 fl6
.saddr
= np
->saddr
;
1124 fl6
.fl6_sport
= inet
->inet_sport
;
1126 final_p
= fl6_update_dst(&fl6
, opt
, &final
);
1130 if (!fl6
.flowi6_oif
&& ipv6_addr_is_multicast(&fl6
.daddr
)) {
1131 fl6
.flowi6_oif
= np
->mcast_oif
;
1135 security_sk_classify_flow(sk
, flowi6_to_flowi(&fl6
));
1137 dst
= ip6_sk_dst_lookup_flow(sk
, &fl6
, final_p
, true);
1145 if (ipv6_addr_is_multicast(&fl6
.daddr
))
1146 hlimit
= np
->mcast_hops
;
1148 hlimit
= np
->hop_limit
;
1150 hlimit
= ip6_dst_hoplimit(dst
);
1154 tclass
= np
->tclass
;
1157 dontfrag
= np
->dontfrag
;
1159 if (msg
->msg_flags
&MSG_CONFIRM
)
1164 if (unlikely(up
->pending
)) {
1165 /* The socket is already corked while preparing it. */
1166 /* ... which is an evident application bug. --ANK */
1169 LIMIT_NETDEBUG(KERN_DEBUG
"udp cork app bug 2\n");
1174 up
->pending
= AF_INET6
;
1178 getfrag
= is_udplite
? udplite_getfrag
: ip_generic_getfrag
;
1179 err
= ip6_append_data(sk
, getfrag
, msg
->msg_iov
, ulen
,
1180 sizeof(struct udphdr
), hlimit
, tclass
, opt
, &fl6
,
1181 (struct rt6_info
*)dst
,
1182 corkreq
? msg
->msg_flags
|MSG_MORE
: msg
->msg_flags
, dontfrag
);
1184 udp_v6_flush_pending_frames(sk
);
1186 err
= udp_v6_push_pending_frames(sk
);
1187 else if (unlikely(skb_queue_empty(&sk
->sk_write_queue
)))
1192 ip6_dst_store(sk
, dst
,
1193 ipv6_addr_equal(&fl6
.daddr
, &np
->daddr
) ?
1195 #ifdef CONFIG_IPV6_SUBTREES
1196 ipv6_addr_equal(&fl6
.saddr
, &np
->saddr
) ?
1207 err
= np
->recverr
? net_xmit_errno(err
) : 0;
1211 fl6_sock_release(flowlabel
);
1215 * ENOBUFS = no kernel mem, SOCK_NOSPACE = no sndbuf space. Reporting
1216 * ENOBUFS might not be good (it's not tunable per se), but otherwise
1217 * we don't have a good statistic (IpOutDiscards but it can be too many
1218 * things). We could add another new stat but at least for now that
1219 * seems like overkill.
1221 if (err
== -ENOBUFS
|| test_bit(SOCK_NOSPACE
, &sk
->sk_socket
->flags
)) {
1222 UDP6_INC_STATS_USER(sock_net(sk
),
1223 UDP_MIB_SNDBUFERRORS
, is_udplite
);
1229 if (!(msg
->msg_flags
&MSG_PROBE
) || len
)
1230 goto back_from_confirm
;
1235 void udpv6_destroy_sock(struct sock
*sk
)
1238 udp_v6_flush_pending_frames(sk
);
1241 inet6_destroy_sock(sk
);
1245 * Socket option code for UDP
1247 int udpv6_setsockopt(struct sock
*sk
, int level
, int optname
,
1248 char __user
*optval
, unsigned int optlen
)
1250 if (level
== SOL_UDP
|| level
== SOL_UDPLITE
)
1251 return udp_lib_setsockopt(sk
, level
, optname
, optval
, optlen
,
1252 udp_v6_push_pending_frames
);
1253 return ipv6_setsockopt(sk
, level
, optname
, optval
, optlen
);
1256 #ifdef CONFIG_COMPAT
1257 int compat_udpv6_setsockopt(struct sock
*sk
, int level
, int optname
,
1258 char __user
*optval
, unsigned int optlen
)
1260 if (level
== SOL_UDP
|| level
== SOL_UDPLITE
)
1261 return udp_lib_setsockopt(sk
, level
, optname
, optval
, optlen
,
1262 udp_v6_push_pending_frames
);
1263 return compat_ipv6_setsockopt(sk
, level
, optname
, optval
, optlen
);
1267 int udpv6_getsockopt(struct sock
*sk
, int level
, int optname
,
1268 char __user
*optval
, int __user
*optlen
)
1270 if (level
== SOL_UDP
|| level
== SOL_UDPLITE
)
1271 return udp_lib_getsockopt(sk
, level
, optname
, optval
, optlen
);
1272 return ipv6_getsockopt(sk
, level
, optname
, optval
, optlen
);
1275 #ifdef CONFIG_COMPAT
1276 int compat_udpv6_getsockopt(struct sock
*sk
, int level
, int optname
,
1277 char __user
*optval
, int __user
*optlen
)
1279 if (level
== SOL_UDP
|| level
== SOL_UDPLITE
)
1280 return udp_lib_getsockopt(sk
, level
, optname
, optval
, optlen
);
1281 return compat_ipv6_getsockopt(sk
, level
, optname
, optval
, optlen
);
1285 static int udp6_ufo_send_check(struct sk_buff
*skb
)
1287 const struct ipv6hdr
*ipv6h
;
1290 if (!pskb_may_pull(skb
, sizeof(*uh
)))
1293 ipv6h
= ipv6_hdr(skb
);
1296 uh
->check
= ~csum_ipv6_magic(&ipv6h
->saddr
, &ipv6h
->daddr
, skb
->len
,
1298 skb
->csum_start
= skb_transport_header(skb
) - skb
->head
;
1299 skb
->csum_offset
= offsetof(struct udphdr
, check
);
1300 skb
->ip_summed
= CHECKSUM_PARTIAL
;
1304 static struct sk_buff
*udp6_ufo_fragment(struct sk_buff
*skb
,
1305 netdev_features_t features
)
1307 struct sk_buff
*segs
= ERR_PTR(-EINVAL
);
1309 unsigned int unfrag_ip6hlen
, unfrag_len
;
1310 struct frag_hdr
*fptr
;
1311 u8
*mac_start
, *prevhdr
;
1313 u8 frag_hdr_sz
= sizeof(struct frag_hdr
);
1317 mss
= skb_shinfo(skb
)->gso_size
;
1318 if (unlikely(skb
->len
<= mss
))
1321 if (skb_gso_ok(skb
, features
| NETIF_F_GSO_ROBUST
)) {
1322 /* Packet is from an untrusted source, reset gso_segs. */
1323 int type
= skb_shinfo(skb
)->gso_type
;
1325 if (unlikely(type
& ~(SKB_GSO_UDP
| SKB_GSO_DODGY
) ||
1326 !(type
& (SKB_GSO_UDP
))))
1329 skb_shinfo(skb
)->gso_segs
= DIV_ROUND_UP(skb
->len
, mss
);
1335 /* Do software UFO. Complete and fill in the UDP checksum as HW cannot
1336 * do checksum of UDP packets sent as multiple IP fragments.
1338 offset
= skb_checksum_start_offset(skb
);
1339 csum
= skb_checksum(skb
, offset
, skb
->len
- offset
, 0);
1340 offset
+= skb
->csum_offset
;
1341 *(__sum16
*)(skb
->data
+ offset
) = csum_fold(csum
);
1342 skb
->ip_summed
= CHECKSUM_NONE
;
1344 /* Check if there is enough headroom to insert fragment header. */
1345 if ((skb_mac_header(skb
) < skb
->head
+ frag_hdr_sz
) &&
1346 pskb_expand_head(skb
, frag_hdr_sz
, 0, GFP_ATOMIC
))
1349 /* Find the unfragmentable header and shift it left by frag_hdr_sz
1350 * bytes to insert fragment header.
1352 unfrag_ip6hlen
= ip6_find_1stfragopt(skb
, &prevhdr
);
1354 *prevhdr
= NEXTHDR_FRAGMENT
;
1355 unfrag_len
= skb_network_header(skb
) - skb_mac_header(skb
) +
1357 mac_start
= skb_mac_header(skb
);
1358 memmove(mac_start
-frag_hdr_sz
, mac_start
, unfrag_len
);
1360 skb
->mac_header
-= frag_hdr_sz
;
1361 skb
->network_header
-= frag_hdr_sz
;
1363 fptr
= (struct frag_hdr
*)(skb_network_header(skb
) + unfrag_ip6hlen
);
1364 fptr
->nexthdr
= nexthdr
;
1366 ipv6_select_ident(fptr
, (struct rt6_info
*)skb_dst(skb
));
1368 /* Fragment the skb. ipv6 header and the remaining fields of the
1369 * fragment header are updated in ipv6_gso_segment()
1371 segs
= skb_segment(skb
, features
);
1377 static const struct inet6_protocol udpv6_protocol
= {
1378 .handler
= udpv6_rcv
,
1379 .err_handler
= udpv6_err
,
1380 .gso_send_check
= udp6_ufo_send_check
,
1381 .gso_segment
= udp6_ufo_fragment
,
1382 .flags
= INET6_PROTO_NOPOLICY
|INET6_PROTO_FINAL
,
1385 /* ------------------------------------------------------------------------ */
1386 #ifdef CONFIG_PROC_FS
1388 static void udp6_sock_seq_show(struct seq_file
*seq
, struct sock
*sp
, int bucket
)
1390 struct inet_sock
*inet
= inet_sk(sp
);
1391 struct ipv6_pinfo
*np
= inet6_sk(sp
);
1392 const struct in6_addr
*dest
, *src
;
1396 src
= &np
->rcv_saddr
;
1397 destp
= ntohs(inet
->inet_dport
);
1398 srcp
= ntohs(inet
->inet_sport
);
1400 "%5d: %08X%08X%08X%08X:%04X %08X%08X%08X%08X:%04X "
1401 "%02X %08X:%08X %02X:%08lX %08X %5d %8d %lu %d %pK %d\n",
1403 src
->s6_addr32
[0], src
->s6_addr32
[1],
1404 src
->s6_addr32
[2], src
->s6_addr32
[3], srcp
,
1405 dest
->s6_addr32
[0], dest
->s6_addr32
[1],
1406 dest
->s6_addr32
[2], dest
->s6_addr32
[3], destp
,
1408 sk_wmem_alloc_get(sp
),
1409 sk_rmem_alloc_get(sp
),
1413 atomic_read(&sp
->sk_refcnt
), sp
,
1414 atomic_read(&sp
->sk_drops
));
1417 int udp6_seq_show(struct seq_file
*seq
, void *v
)
1419 if (v
== SEQ_START_TOKEN
)
1424 "st tx_queue rx_queue tr tm->when retrnsmt"
1425 " uid timeout inode ref pointer drops\n");
1427 udp6_sock_seq_show(seq
, v
, ((struct udp_iter_state
*)seq
->private)->bucket
);
1431 static const struct file_operations udp6_afinfo_seq_fops
= {
1432 .owner
= THIS_MODULE
,
1433 .open
= udp_seq_open
,
1435 .llseek
= seq_lseek
,
1436 .release
= seq_release_net
1439 static struct udp_seq_afinfo udp6_seq_afinfo
= {
1442 .udp_table
= &udp_table
,
1443 .seq_fops
= &udp6_afinfo_seq_fops
,
1445 .show
= udp6_seq_show
,
1449 int __net_init
udp6_proc_init(struct net
*net
)
1451 return udp_proc_register(net
, &udp6_seq_afinfo
);
1454 void udp6_proc_exit(struct net
*net
) {
1455 udp_proc_unregister(net
, &udp6_seq_afinfo
);
1457 #endif /* CONFIG_PROC_FS */
1459 /* ------------------------------------------------------------------------ */
1461 struct proto udpv6_prot
= {
1463 .owner
= THIS_MODULE
,
1464 .close
= udp_lib_close
,
1465 .connect
= ip6_datagram_connect
,
1466 .disconnect
= udp_disconnect
,
1468 .destroy
= udpv6_destroy_sock
,
1469 .setsockopt
= udpv6_setsockopt
,
1470 .getsockopt
= udpv6_getsockopt
,
1471 .sendmsg
= udpv6_sendmsg
,
1472 .recvmsg
= udpv6_recvmsg
,
1473 .backlog_rcv
= udpv6_queue_rcv_skb
,
1474 .hash
= udp_lib_hash
,
1475 .unhash
= udp_lib_unhash
,
1476 .rehash
= udp_v6_rehash
,
1477 .get_port
= udp_v6_get_port
,
1478 .memory_allocated
= &udp_memory_allocated
,
1479 .sysctl_mem
= sysctl_udp_mem
,
1480 .sysctl_wmem
= &sysctl_udp_wmem_min
,
1481 .sysctl_rmem
= &sysctl_udp_rmem_min
,
1482 .obj_size
= sizeof(struct udp6_sock
),
1483 .slab_flags
= SLAB_DESTROY_BY_RCU
,
1484 .h
.udp_table
= &udp_table
,
1485 #ifdef CONFIG_COMPAT
1486 .compat_setsockopt
= compat_udpv6_setsockopt
,
1487 .compat_getsockopt
= compat_udpv6_getsockopt
,
1489 .clear_sk
= sk_prot_clear_portaddr_nulls
,
1492 static struct inet_protosw udpv6_protosw
= {
1494 .protocol
= IPPROTO_UDP
,
1495 .prot
= &udpv6_prot
,
1496 .ops
= &inet6_dgram_ops
,
1497 .no_check
= UDP_CSUM_DEFAULT
,
1498 .flags
= INET_PROTOSW_PERMANENT
,
1502 int __init
udpv6_init(void)
1506 ret
= inet6_add_protocol(&udpv6_protocol
, IPPROTO_UDP
);
1510 ret
= inet6_register_protosw(&udpv6_protosw
);
1512 goto out_udpv6_protocol
;
1517 inet6_del_protocol(&udpv6_protocol
, IPPROTO_UDP
);
1521 void udpv6_exit(void)
1523 inet6_unregister_protosw(&udpv6_protosw
);
1524 inet6_del_protocol(&udpv6_protocol
, IPPROTO_UDP
);