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 <linux/uaccess.h>
40 #include <net/addrconf.h>
41 #include <net/ndisc.h>
42 #include <net/protocol.h>
43 #include <net/transp_v6.h>
44 #include <net/ip6_route.h>
46 #include <net/tcp_states.h>
47 #include <net/ip6_checksum.h>
49 #include <net/inet_hashtables.h>
50 #include <net/inet6_hashtables.h>
51 #include <net/busy_poll.h>
52 #include <net/sock_reuseport.h>
54 #include <linux/proc_fs.h>
55 #include <linux/seq_file.h>
56 #include <trace/events/skb.h>
59 static bool udp6_lib_exact_dif_match(struct net
*net
, struct sk_buff
*skb
)
61 #if defined(CONFIG_NET_L3_MASTER_DEV)
62 if (!net
->ipv4
.sysctl_udp_l3mdev_accept
&&
63 skb
&& ipv6_l3mdev_skb(IP6CB(skb
)->flags
))
69 static u32
udp6_ehashfn(const struct net
*net
,
70 const struct in6_addr
*laddr
,
72 const struct in6_addr
*faddr
,
75 static u32 udp6_ehash_secret __read_mostly
;
76 static u32 udp_ipv6_hash_secret __read_mostly
;
80 net_get_random_once(&udp6_ehash_secret
,
81 sizeof(udp6_ehash_secret
));
82 net_get_random_once(&udp_ipv6_hash_secret
,
83 sizeof(udp_ipv6_hash_secret
));
85 lhash
= (__force u32
)laddr
->s6_addr32
[3];
86 fhash
= __ipv6_addr_jhash(faddr
, udp_ipv6_hash_secret
);
88 return __inet6_ehashfn(lhash
, lport
, fhash
, fport
,
89 udp_ipv6_hash_secret
+ net_hash_mix(net
));
92 static u32
udp6_portaddr_hash(const struct net
*net
,
93 const struct in6_addr
*addr6
,
96 unsigned int hash
, mix
= net_hash_mix(net
);
98 if (ipv6_addr_any(addr6
))
99 hash
= jhash_1word(0, mix
);
100 else if (ipv6_addr_v4mapped(addr6
))
101 hash
= jhash_1word((__force u32
)addr6
->s6_addr32
[3], mix
);
103 hash
= jhash2((__force u32
*)addr6
->s6_addr32
, 4, mix
);
108 int udp_v6_get_port(struct sock
*sk
, unsigned short snum
)
110 unsigned int hash2_nulladdr
=
111 udp6_portaddr_hash(sock_net(sk
), &in6addr_any
, snum
);
112 unsigned int hash2_partial
=
113 udp6_portaddr_hash(sock_net(sk
), &sk
->sk_v6_rcv_saddr
, 0);
115 /* precompute partial secondary hash */
116 udp_sk(sk
)->udp_portaddr_hash
= hash2_partial
;
117 return udp_lib_get_port(sk
, snum
, hash2_nulladdr
);
120 static void udp_v6_rehash(struct sock
*sk
)
122 u16 new_hash
= udp6_portaddr_hash(sock_net(sk
),
123 &sk
->sk_v6_rcv_saddr
,
124 inet_sk(sk
)->inet_num
);
126 udp_lib_rehash(sk
, new_hash
);
129 static int compute_score(struct sock
*sk
, struct net
*net
,
130 const struct in6_addr
*saddr
, __be16 sport
,
131 const struct in6_addr
*daddr
, unsigned short hnum
,
132 int dif
, bool exact_dif
)
135 struct inet_sock
*inet
;
137 if (!net_eq(sock_net(sk
), net
) ||
138 udp_sk(sk
)->udp_port_hash
!= hnum
||
139 sk
->sk_family
!= PF_INET6
)
145 if (inet
->inet_dport
) {
146 if (inet
->inet_dport
!= sport
)
151 if (!ipv6_addr_any(&sk
->sk_v6_rcv_saddr
)) {
152 if (!ipv6_addr_equal(&sk
->sk_v6_rcv_saddr
, daddr
))
157 if (!ipv6_addr_any(&sk
->sk_v6_daddr
)) {
158 if (!ipv6_addr_equal(&sk
->sk_v6_daddr
, saddr
))
163 if (sk
->sk_bound_dev_if
|| exact_dif
) {
164 if (sk
->sk_bound_dev_if
!= dif
)
169 if (sk
->sk_incoming_cpu
== raw_smp_processor_id())
175 /* called with rcu_read_lock() */
176 static struct sock
*udp6_lib_lookup2(struct net
*net
,
177 const struct in6_addr
*saddr
, __be16 sport
,
178 const struct in6_addr
*daddr
, unsigned int hnum
, int dif
,
179 bool exact_dif
, struct udp_hslot
*hslot2
,
182 struct sock
*sk
, *result
;
183 int score
, badness
, matches
= 0, reuseport
= 0;
188 udp_portaddr_for_each_entry_rcu(sk
, &hslot2
->head
) {
189 score
= compute_score(sk
, net
, saddr
, sport
,
190 daddr
, hnum
, dif
, exact_dif
);
191 if (score
> badness
) {
192 reuseport
= sk
->sk_reuseport
;
194 hash
= udp6_ehashfn(net
, daddr
, hnum
,
197 result
= reuseport_select_sock(sk
, hash
, skb
,
198 sizeof(struct udphdr
));
205 } else if (score
== badness
&& reuseport
) {
207 if (reciprocal_scale(hash
, matches
) == 0)
209 hash
= next_pseudo_random32(hash
);
215 /* rcu_read_lock() must be held */
216 struct sock
*__udp6_lib_lookup(struct net
*net
,
217 const struct in6_addr
*saddr
, __be16 sport
,
218 const struct in6_addr
*daddr
, __be16 dport
,
219 int dif
, struct udp_table
*udptable
,
222 struct sock
*sk
, *result
;
223 unsigned short hnum
= ntohs(dport
);
224 unsigned int hash2
, slot2
, slot
= udp_hashfn(net
, hnum
, udptable
->mask
);
225 struct udp_hslot
*hslot2
, *hslot
= &udptable
->hash
[slot
];
226 bool exact_dif
= udp6_lib_exact_dif_match(net
, skb
);
227 int score
, badness
, matches
= 0, reuseport
= 0;
230 if (hslot
->count
> 10) {
231 hash2
= udp6_portaddr_hash(net
, daddr
, hnum
);
232 slot2
= hash2
& udptable
->mask
;
233 hslot2
= &udptable
->hash2
[slot2
];
234 if (hslot
->count
< hslot2
->count
)
237 result
= udp6_lib_lookup2(net
, saddr
, sport
,
238 daddr
, hnum
, dif
, exact_dif
,
241 unsigned int old_slot2
= slot2
;
242 hash2
= udp6_portaddr_hash(net
, &in6addr_any
, hnum
);
243 slot2
= hash2
& udptable
->mask
;
244 /* avoid searching the same slot again. */
245 if (unlikely(slot2
== old_slot2
))
248 hslot2
= &udptable
->hash2
[slot2
];
249 if (hslot
->count
< hslot2
->count
)
252 result
= udp6_lib_lookup2(net
, saddr
, sport
,
262 sk_for_each_rcu(sk
, &hslot
->head
) {
263 score
= compute_score(sk
, net
, saddr
, sport
, daddr
, hnum
, dif
,
265 if (score
> badness
) {
266 reuseport
= sk
->sk_reuseport
;
268 hash
= udp6_ehashfn(net
, daddr
, hnum
,
270 result
= reuseport_select_sock(sk
, hash
, skb
,
271 sizeof(struct udphdr
));
278 } else if (score
== badness
&& reuseport
) {
280 if (reciprocal_scale(hash
, matches
) == 0)
282 hash
= next_pseudo_random32(hash
);
287 EXPORT_SYMBOL_GPL(__udp6_lib_lookup
);
289 static struct sock
*__udp6_lib_lookup_skb(struct sk_buff
*skb
,
290 __be16 sport
, __be16 dport
,
291 struct udp_table
*udptable
)
293 const struct ipv6hdr
*iph
= ipv6_hdr(skb
);
295 return __udp6_lib_lookup(dev_net(skb
->dev
), &iph
->saddr
, sport
,
296 &iph
->daddr
, dport
, inet6_iif(skb
),
300 struct sock
*udp6_lib_lookup_skb(struct sk_buff
*skb
,
301 __be16 sport
, __be16 dport
)
303 const struct ipv6hdr
*iph
= ipv6_hdr(skb
);
305 return __udp6_lib_lookup(dev_net(skb
->dev
), &iph
->saddr
, sport
,
306 &iph
->daddr
, dport
, inet6_iif(skb
),
309 EXPORT_SYMBOL_GPL(udp6_lib_lookup_skb
);
311 /* Must be called under rcu_read_lock().
312 * Does increment socket refcount.
314 #if IS_ENABLED(CONFIG_NETFILTER_XT_MATCH_SOCKET) || \
315 IS_ENABLED(CONFIG_NETFILTER_XT_TARGET_TPROXY) || \
316 IS_ENABLED(CONFIG_NF_SOCKET_IPV6)
317 struct sock
*udp6_lib_lookup(struct net
*net
, const struct in6_addr
*saddr
, __be16 sport
,
318 const struct in6_addr
*daddr
, __be16 dport
, int dif
)
322 sk
= __udp6_lib_lookup(net
, saddr
, sport
, daddr
, dport
,
323 dif
, &udp_table
, NULL
);
324 if (sk
&& !refcount_inc_not_zero(&sk
->sk_refcnt
))
328 EXPORT_SYMBOL_GPL(udp6_lib_lookup
);
331 /* do not use the scratch area len for jumbogram: their length execeeds the
332 * scratch area space; note that the IP6CB flags is still in the first
333 * cacheline, so checking for jumbograms is cheap
335 static int udp6_skb_len(struct sk_buff
*skb
)
337 return unlikely(inet6_is_jumbogram(skb
)) ? skb
->len
: udp_skb_len(skb
);
341 * This should be easy, if there is something there we
342 * return it, otherwise we block.
345 int udpv6_recvmsg(struct sock
*sk
, struct msghdr
*msg
, size_t len
,
346 int noblock
, int flags
, int *addr_len
)
348 struct ipv6_pinfo
*np
= inet6_sk(sk
);
349 struct inet_sock
*inet
= inet_sk(sk
);
351 unsigned int ulen
, copied
;
352 int peeked
, peeking
, off
;
354 int is_udplite
= IS_UDPLITE(sk
);
355 bool checksum_valid
= false;
358 if (flags
& MSG_ERRQUEUE
)
359 return ipv6_recv_error(sk
, msg
, len
, addr_len
);
361 if (np
->rxpmtu
&& np
->rxopt
.bits
.rxpmtu
)
362 return ipv6_recv_rxpmtu(sk
, msg
, len
, addr_len
);
365 peeking
= flags
& MSG_PEEK
;
366 off
= sk_peek_offset(sk
, flags
);
367 skb
= __skb_recv_udp(sk
, flags
, noblock
, &peeked
, &off
, &err
);
371 ulen
= udp6_skb_len(skb
);
373 if (copied
> ulen
- off
)
375 else if (copied
< ulen
)
376 msg
->msg_flags
|= MSG_TRUNC
;
378 is_udp4
= (skb
->protocol
== htons(ETH_P_IP
));
381 * If checksum is needed at all, try to do it while copying the
382 * data. If the data is truncated, or if we only want a partial
383 * coverage checksum (UDP-Lite), do it before the copy.
386 if (copied
< ulen
|| peeking
||
387 (is_udplite
&& UDP_SKB_CB(skb
)->partial_cov
)) {
388 checksum_valid
= udp_skb_csum_unnecessary(skb
) ||
389 !__udp_lib_checksum_complete(skb
);
394 if (checksum_valid
|| udp_skb_csum_unnecessary(skb
)) {
395 if (udp_skb_is_linear(skb
))
396 err
= copy_linear_skb(skb
, copied
, off
, &msg
->msg_iter
);
398 err
= skb_copy_datagram_msg(skb
, off
, msg
, copied
);
400 err
= skb_copy_and_csum_datagram_msg(skb
, off
, msg
);
406 atomic_inc(&sk
->sk_drops
);
408 UDP_INC_STATS(sock_net(sk
), UDP_MIB_INERRORS
,
411 UDP6_INC_STATS(sock_net(sk
), UDP_MIB_INERRORS
,
419 UDP_INC_STATS(sock_net(sk
), UDP_MIB_INDATAGRAMS
,
422 UDP6_INC_STATS(sock_net(sk
), UDP_MIB_INDATAGRAMS
,
426 sock_recv_ts_and_drops(msg
, sk
, skb
);
428 /* Copy the address. */
430 DECLARE_SOCKADDR(struct sockaddr_in6
*, sin6
, msg
->msg_name
);
431 sin6
->sin6_family
= AF_INET6
;
432 sin6
->sin6_port
= udp_hdr(skb
)->source
;
433 sin6
->sin6_flowinfo
= 0;
436 ipv6_addr_set_v4mapped(ip_hdr(skb
)->saddr
,
438 sin6
->sin6_scope_id
= 0;
440 sin6
->sin6_addr
= ipv6_hdr(skb
)->saddr
;
441 sin6
->sin6_scope_id
=
442 ipv6_iface_scope_id(&sin6
->sin6_addr
,
445 *addr_len
= sizeof(*sin6
);
449 ip6_datagram_recv_common_ctl(sk
, msg
, skb
);
452 if (inet
->cmsg_flags
)
453 ip_cmsg_recv_offset(msg
, sk
, skb
,
454 sizeof(struct udphdr
), off
);
457 ip6_datagram_recv_specific_ctl(sk
, msg
, skb
);
461 if (flags
& MSG_TRUNC
)
464 skb_consume_udp(sk
, skb
, peeking
? -err
: err
);
468 if (!__sk_queue_drop_skb(sk
, &udp_sk(sk
)->reader_queue
, skb
, flags
,
469 udp_skb_destructor
)) {
471 UDP_INC_STATS(sock_net(sk
),
472 UDP_MIB_CSUMERRORS
, is_udplite
);
473 UDP_INC_STATS(sock_net(sk
),
474 UDP_MIB_INERRORS
, is_udplite
);
476 UDP6_INC_STATS(sock_net(sk
),
477 UDP_MIB_CSUMERRORS
, is_udplite
);
478 UDP6_INC_STATS(sock_net(sk
),
479 UDP_MIB_INERRORS
, is_udplite
);
484 /* starting over for a new packet, but check if we need to yield */
486 msg
->msg_flags
&= ~MSG_TRUNC
;
490 void __udp6_lib_err(struct sk_buff
*skb
, struct inet6_skb_parm
*opt
,
491 u8 type
, u8 code
, int offset
, __be32 info
,
492 struct udp_table
*udptable
)
494 struct ipv6_pinfo
*np
;
495 const struct ipv6hdr
*hdr
= (const struct ipv6hdr
*)skb
->data
;
496 const struct in6_addr
*saddr
= &hdr
->saddr
;
497 const struct in6_addr
*daddr
= &hdr
->daddr
;
498 struct udphdr
*uh
= (struct udphdr
*)(skb
->data
+offset
);
502 struct net
*net
= dev_net(skb
->dev
);
504 sk
= __udp6_lib_lookup(net
, daddr
, uh
->dest
, saddr
, uh
->source
,
505 inet6_iif(skb
), udptable
, skb
);
507 __ICMP6_INC_STATS(net
, __in6_dev_get(skb
->dev
),
512 harderr
= icmpv6_err_convert(type
, code
, &err
);
515 if (type
== ICMPV6_PKT_TOOBIG
) {
516 if (!ip6_sk_accept_pmtu(sk
))
518 ip6_sk_update_pmtu(skb
, sk
, info
);
519 if (np
->pmtudisc
!= IPV6_PMTUDISC_DONT
)
522 if (type
== NDISC_REDIRECT
) {
523 ip6_sk_redirect(skb
, sk
);
528 if (!harderr
|| sk
->sk_state
!= TCP_ESTABLISHED
)
531 ipv6_icmp_error(sk
, skb
, err
, uh
->dest
, ntohl(info
), (u8
*)(uh
+1));
535 sk
->sk_error_report(sk
);
540 static int __udpv6_queue_rcv_skb(struct sock
*sk
, struct sk_buff
*skb
)
544 if (!ipv6_addr_any(&sk
->sk_v6_daddr
)) {
545 sock_rps_save_rxhash(sk
, skb
);
546 sk_mark_napi_id(sk
, skb
);
547 sk_incoming_cpu_update(sk
);
549 sk_mark_napi_id_once(sk
, skb
);
552 rc
= __udp_enqueue_schedule_skb(sk
, skb
);
554 int is_udplite
= IS_UDPLITE(sk
);
556 /* Note that an ENOMEM error is charged twice */
558 UDP6_INC_STATS(sock_net(sk
),
559 UDP_MIB_RCVBUFERRORS
, is_udplite
);
560 UDP6_INC_STATS(sock_net(sk
), UDP_MIB_INERRORS
, is_udplite
);
568 static __inline__
void udpv6_err(struct sk_buff
*skb
,
569 struct inet6_skb_parm
*opt
, u8 type
,
570 u8 code
, int offset
, __be32 info
)
572 __udp6_lib_err(skb
, opt
, type
, code
, offset
, info
, &udp_table
);
575 static struct static_key udpv6_encap_needed __read_mostly
;
576 void udpv6_encap_enable(void)
578 if (!static_key_enabled(&udpv6_encap_needed
))
579 static_key_slow_inc(&udpv6_encap_needed
);
581 EXPORT_SYMBOL(udpv6_encap_enable
);
583 static int udpv6_queue_rcv_skb(struct sock
*sk
, struct sk_buff
*skb
)
585 struct udp_sock
*up
= udp_sk(sk
);
586 int is_udplite
= IS_UDPLITE(sk
);
588 if (!xfrm6_policy_check(sk
, XFRM_POLICY_IN
, skb
))
591 if (static_key_false(&udpv6_encap_needed
) && up
->encap_type
) {
592 int (*encap_rcv
)(struct sock
*sk
, struct sk_buff
*skb
);
595 * This is an encapsulation socket so pass the skb to
596 * the socket's udp_encap_rcv() hook. Otherwise, just
597 * fall through and pass this up the UDP socket.
598 * up->encap_rcv() returns the following value:
599 * =0 if skb was successfully passed to the encap
600 * handler or was discarded by it.
601 * >0 if skb should be passed on to UDP.
602 * <0 if skb should be resubmitted as proto -N
605 /* if we're overly short, let UDP handle it */
606 encap_rcv
= ACCESS_ONCE(up
->encap_rcv
);
610 /* Verify checksum before giving to encap */
611 if (udp_lib_checksum_complete(skb
))
614 ret
= encap_rcv(sk
, skb
);
616 __UDP_INC_STATS(sock_net(sk
),
623 /* FALLTHROUGH -- it's a UDP Packet */
627 * UDP-Lite specific tests, ignored on UDP sockets (see net/ipv4/udp.c).
629 if ((is_udplite
& UDPLITE_RECV_CC
) && UDP_SKB_CB(skb
)->partial_cov
) {
631 if (up
->pcrlen
== 0) { /* full coverage was set */
632 net_dbg_ratelimited("UDPLITE6: partial coverage %d while full coverage %d requested\n",
633 UDP_SKB_CB(skb
)->cscov
, skb
->len
);
636 if (UDP_SKB_CB(skb
)->cscov
< up
->pcrlen
) {
637 net_dbg_ratelimited("UDPLITE6: coverage %d too small, need min %d\n",
638 UDP_SKB_CB(skb
)->cscov
, up
->pcrlen
);
643 prefetch(&sk
->sk_rmem_alloc
);
644 if (rcu_access_pointer(sk
->sk_filter
) &&
645 udp_lib_checksum_complete(skb
))
648 if (sk_filter_trim_cap(sk
, skb
, sizeof(struct udphdr
)))
651 udp_csum_pull_header(skb
);
655 return __udpv6_queue_rcv_skb(sk
, skb
);
658 __UDP6_INC_STATS(sock_net(sk
), UDP_MIB_CSUMERRORS
, is_udplite
);
660 __UDP6_INC_STATS(sock_net(sk
), UDP_MIB_INERRORS
, is_udplite
);
661 atomic_inc(&sk
->sk_drops
);
666 static bool __udp_v6_is_mcast_sock(struct net
*net
, struct sock
*sk
,
667 __be16 loc_port
, const struct in6_addr
*loc_addr
,
668 __be16 rmt_port
, const struct in6_addr
*rmt_addr
,
669 int dif
, unsigned short hnum
)
671 struct inet_sock
*inet
= inet_sk(sk
);
673 if (!net_eq(sock_net(sk
), net
))
676 if (udp_sk(sk
)->udp_port_hash
!= hnum
||
677 sk
->sk_family
!= PF_INET6
||
678 (inet
->inet_dport
&& inet
->inet_dport
!= rmt_port
) ||
679 (!ipv6_addr_any(&sk
->sk_v6_daddr
) &&
680 !ipv6_addr_equal(&sk
->sk_v6_daddr
, rmt_addr
)) ||
681 (sk
->sk_bound_dev_if
&& sk
->sk_bound_dev_if
!= dif
) ||
682 (!ipv6_addr_any(&sk
->sk_v6_rcv_saddr
) &&
683 !ipv6_addr_equal(&sk
->sk_v6_rcv_saddr
, loc_addr
)))
685 if (!inet6_mc_check(sk
, loc_addr
, rmt_addr
))
690 static void udp6_csum_zero_error(struct sk_buff
*skb
)
692 /* RFC 2460 section 8.1 says that we SHOULD log
693 * this error. Well, it is reasonable.
695 net_dbg_ratelimited("IPv6: udp checksum is 0 for [%pI6c]:%u->[%pI6c]:%u\n",
696 &ipv6_hdr(skb
)->saddr
, ntohs(udp_hdr(skb
)->source
),
697 &ipv6_hdr(skb
)->daddr
, ntohs(udp_hdr(skb
)->dest
));
701 * Note: called only from the BH handler context,
702 * so we don't need to lock the hashes.
704 static int __udp6_lib_mcast_deliver(struct net
*net
, struct sk_buff
*skb
,
705 const struct in6_addr
*saddr
, const struct in6_addr
*daddr
,
706 struct udp_table
*udptable
, int proto
)
708 struct sock
*sk
, *first
= NULL
;
709 const struct udphdr
*uh
= udp_hdr(skb
);
710 unsigned short hnum
= ntohs(uh
->dest
);
711 struct udp_hslot
*hslot
= udp_hashslot(udptable
, net
, hnum
);
712 unsigned int offset
= offsetof(typeof(*sk
), sk_node
);
713 unsigned int hash2
= 0, hash2_any
= 0, use_hash2
= (hslot
->count
> 10);
714 int dif
= inet6_iif(skb
);
715 struct hlist_node
*node
;
716 struct sk_buff
*nskb
;
719 hash2_any
= udp6_portaddr_hash(net
, &in6addr_any
, hnum
) &
721 hash2
= udp6_portaddr_hash(net
, daddr
, hnum
) & udptable
->mask
;
723 hslot
= &udptable
->hash2
[hash2
];
724 offset
= offsetof(typeof(*sk
), __sk_common
.skc_portaddr_node
);
727 sk_for_each_entry_offset_rcu(sk
, node
, &hslot
->head
, offset
) {
728 if (!__udp_v6_is_mcast_sock(net
, sk
, uh
->dest
, daddr
,
729 uh
->source
, saddr
, dif
, hnum
))
731 /* If zero checksum and no_check is not on for
732 * the socket then skip it.
734 if (!uh
->check
&& !udp_sk(sk
)->no_check6_rx
)
740 nskb
= skb_clone(skb
, GFP_ATOMIC
);
741 if (unlikely(!nskb
)) {
742 atomic_inc(&sk
->sk_drops
);
743 __UDP6_INC_STATS(net
, UDP_MIB_RCVBUFERRORS
,
745 __UDP6_INC_STATS(net
, UDP_MIB_INERRORS
,
750 if (udpv6_queue_rcv_skb(sk
, nskb
) > 0)
754 /* Also lookup *:port if we are using hash2 and haven't done so yet. */
755 if (use_hash2
&& hash2
!= hash2_any
) {
761 if (udpv6_queue_rcv_skb(first
, skb
) > 0)
765 __UDP6_INC_STATS(net
, UDP_MIB_IGNOREDMULTI
,
766 proto
== IPPROTO_UDPLITE
);
771 static void udp6_sk_rx_dst_set(struct sock
*sk
, struct dst_entry
*dst
)
773 if (udp_sk_rx_dst_set(sk
, dst
)) {
774 const struct rt6_info
*rt
= (const struct rt6_info
*)dst
;
776 inet6_sk(sk
)->rx_dst_cookie
= rt6_get_cookie(rt
);
780 int __udp6_lib_rcv(struct sk_buff
*skb
, struct udp_table
*udptable
,
783 const struct in6_addr
*saddr
, *daddr
;
784 struct net
*net
= dev_net(skb
->dev
);
789 if (!pskb_may_pull(skb
, sizeof(struct udphdr
)))
792 saddr
= &ipv6_hdr(skb
)->saddr
;
793 daddr
= &ipv6_hdr(skb
)->daddr
;
796 ulen
= ntohs(uh
->len
);
800 if (proto
== IPPROTO_UDP
) {
801 /* UDP validates ulen. */
803 /* Check for jumbo payload */
807 if (ulen
< sizeof(*uh
))
810 if (ulen
< skb
->len
) {
811 if (pskb_trim_rcsum(skb
, ulen
))
813 saddr
= &ipv6_hdr(skb
)->saddr
;
814 daddr
= &ipv6_hdr(skb
)->daddr
;
819 if (udp6_csum_init(skb
, uh
, proto
))
822 /* Check if the socket is already available, e.g. due to early demux */
823 sk
= skb_steal_sock(skb
);
825 struct dst_entry
*dst
= skb_dst(skb
);
828 if (unlikely(sk
->sk_rx_dst
!= dst
))
829 udp6_sk_rx_dst_set(sk
, dst
);
831 ret
= udpv6_queue_rcv_skb(sk
, skb
);
834 /* a return value > 0 means to resubmit the input */
841 * Multicast receive code
843 if (ipv6_addr_is_multicast(daddr
))
844 return __udp6_lib_mcast_deliver(net
, skb
,
845 saddr
, daddr
, udptable
, proto
);
848 sk
= __udp6_lib_lookup_skb(skb
, uh
->source
, uh
->dest
, udptable
);
852 if (!uh
->check
&& !udp_sk(sk
)->no_check6_rx
) {
853 udp6_csum_zero_error(skb
);
857 if (inet_get_convert_csum(sk
) && uh
->check
&& !IS_UDPLITE(sk
))
858 skb_checksum_try_convert(skb
, IPPROTO_UDP
, uh
->check
,
861 ret
= udpv6_queue_rcv_skb(sk
, skb
);
863 /* a return value > 0 means to resubmit the input */
871 udp6_csum_zero_error(skb
);
875 if (!xfrm6_policy_check(NULL
, XFRM_POLICY_IN
, skb
))
878 if (udp_lib_checksum_complete(skb
))
881 __UDP6_INC_STATS(net
, UDP_MIB_NOPORTS
, proto
== IPPROTO_UDPLITE
);
882 icmpv6_send(skb
, ICMPV6_DEST_UNREACH
, ICMPV6_PORT_UNREACH
, 0);
888 net_dbg_ratelimited("UDP%sv6: short packet: From [%pI6c]:%u %d/%d to [%pI6c]:%u\n",
889 proto
== IPPROTO_UDPLITE
? "-Lite" : "",
890 saddr
, ntohs(uh
->source
),
892 daddr
, ntohs(uh
->dest
));
895 __UDP6_INC_STATS(net
, UDP_MIB_CSUMERRORS
, proto
== IPPROTO_UDPLITE
);
897 __UDP6_INC_STATS(net
, UDP_MIB_INERRORS
, proto
== IPPROTO_UDPLITE
);
903 static struct sock
*__udp6_lib_demux_lookup(struct net
*net
,
904 __be16 loc_port
, const struct in6_addr
*loc_addr
,
905 __be16 rmt_port
, const struct in6_addr
*rmt_addr
,
908 unsigned short hnum
= ntohs(loc_port
);
909 unsigned int hash2
= udp6_portaddr_hash(net
, loc_addr
, hnum
);
910 unsigned int slot2
= hash2
& udp_table
.mask
;
911 struct udp_hslot
*hslot2
= &udp_table
.hash2
[slot2
];
912 const __portpair ports
= INET_COMBINED_PORTS(rmt_port
, hnum
);
915 udp_portaddr_for_each_entry_rcu(sk
, &hslot2
->head
) {
916 if (sk
->sk_state
== TCP_ESTABLISHED
&&
917 INET6_MATCH(sk
, net
, rmt_addr
, loc_addr
, ports
, dif
))
919 /* Only check first socket in chain */
925 static void udp_v6_early_demux(struct sk_buff
*skb
)
927 struct net
*net
= dev_net(skb
->dev
);
928 const struct udphdr
*uh
;
930 struct dst_entry
*dst
;
931 int dif
= skb
->dev
->ifindex
;
933 if (!pskb_may_pull(skb
, skb_transport_offset(skb
) +
934 sizeof(struct udphdr
)))
939 if (skb
->pkt_type
== PACKET_HOST
)
940 sk
= __udp6_lib_demux_lookup(net
, uh
->dest
,
941 &ipv6_hdr(skb
)->daddr
,
942 uh
->source
, &ipv6_hdr(skb
)->saddr
,
947 if (!sk
|| !refcount_inc_not_zero(&sk
->sk_refcnt
))
951 skb
->destructor
= sock_efree
;
952 dst
= READ_ONCE(sk
->sk_rx_dst
);
955 dst
= dst_check(dst
, inet6_sk(sk
)->rx_dst_cookie
);
957 /* set noref for now.
958 * any place which wants to hold dst has to call
961 skb_dst_set_noref(skb
, dst
);
965 static __inline__
int udpv6_rcv(struct sk_buff
*skb
)
967 return __udp6_lib_rcv(skb
, &udp_table
, IPPROTO_UDP
);
971 * Throw away all pending data and cancel the corking. Socket is locked.
973 static void udp_v6_flush_pending_frames(struct sock
*sk
)
975 struct udp_sock
*up
= udp_sk(sk
);
977 if (up
->pending
== AF_INET
)
978 udp_flush_pending_frames(sk
);
979 else if (up
->pending
) {
982 ip6_flush_pending_frames(sk
);
987 * udp6_hwcsum_outgoing - handle outgoing HW checksumming
988 * @sk: socket we are sending on
989 * @skb: sk_buff containing the filled-in UDP header
990 * (checksum field must be zeroed out)
992 static void udp6_hwcsum_outgoing(struct sock
*sk
, struct sk_buff
*skb
,
993 const struct in6_addr
*saddr
,
994 const struct in6_addr
*daddr
, int len
)
997 struct udphdr
*uh
= udp_hdr(skb
);
998 struct sk_buff
*frags
= skb_shinfo(skb
)->frag_list
;
1002 /* Only one fragment on the socket. */
1003 skb
->csum_start
= skb_transport_header(skb
) - skb
->head
;
1004 skb
->csum_offset
= offsetof(struct udphdr
, check
);
1005 uh
->check
= ~csum_ipv6_magic(saddr
, daddr
, len
, IPPROTO_UDP
, 0);
1008 * HW-checksum won't work as there are two or more
1009 * fragments on the socket so that all csums of sk_buffs
1010 * should be together
1012 offset
= skb_transport_offset(skb
);
1013 skb
->csum
= skb_checksum(skb
, offset
, skb
->len
- offset
, 0);
1016 skb
->ip_summed
= CHECKSUM_NONE
;
1019 csum
= csum_add(csum
, frags
->csum
);
1020 } while ((frags
= frags
->next
));
1022 uh
->check
= csum_ipv6_magic(saddr
, daddr
, len
, IPPROTO_UDP
,
1025 uh
->check
= CSUM_MANGLED_0
;
1033 static int udp_v6_send_skb(struct sk_buff
*skb
, struct flowi6
*fl6
)
1035 struct sock
*sk
= skb
->sk
;
1038 int is_udplite
= IS_UDPLITE(sk
);
1040 int offset
= skb_transport_offset(skb
);
1041 int len
= skb
->len
- offset
;
1044 * Create a UDP header
1047 uh
->source
= fl6
->fl6_sport
;
1048 uh
->dest
= fl6
->fl6_dport
;
1049 uh
->len
= htons(len
);
1053 csum
= udplite_csum(skb
);
1054 else if (udp_sk(sk
)->no_check6_tx
) { /* UDP csum disabled */
1055 skb
->ip_summed
= CHECKSUM_NONE
;
1057 } else if (skb
->ip_summed
== CHECKSUM_PARTIAL
) { /* UDP hardware csum */
1058 udp6_hwcsum_outgoing(sk
, skb
, &fl6
->saddr
, &fl6
->daddr
, len
);
1061 csum
= udp_csum(skb
);
1063 /* add protocol-dependent pseudo-header */
1064 uh
->check
= csum_ipv6_magic(&fl6
->saddr
, &fl6
->daddr
,
1065 len
, fl6
->flowi6_proto
, csum
);
1067 uh
->check
= CSUM_MANGLED_0
;
1070 err
= ip6_send_skb(skb
);
1072 if (err
== -ENOBUFS
&& !inet6_sk(sk
)->recverr
) {
1073 UDP6_INC_STATS(sock_net(sk
),
1074 UDP_MIB_SNDBUFERRORS
, is_udplite
);
1078 UDP6_INC_STATS(sock_net(sk
),
1079 UDP_MIB_OUTDATAGRAMS
, is_udplite
);
1084 static int udp_v6_push_pending_frames(struct sock
*sk
)
1086 struct sk_buff
*skb
;
1087 struct udp_sock
*up
= udp_sk(sk
);
1091 if (up
->pending
== AF_INET
)
1092 return udp_push_pending_frames(sk
);
1094 /* ip6_finish_skb will release the cork, so make a copy of
1097 fl6
= inet_sk(sk
)->cork
.fl
.u
.ip6
;
1099 skb
= ip6_finish_skb(sk
);
1103 err
= udp_v6_send_skb(skb
, &fl6
);
1111 int udpv6_sendmsg(struct sock
*sk
, struct msghdr
*msg
, size_t len
)
1113 struct ipv6_txoptions opt_space
;
1114 struct udp_sock
*up
= udp_sk(sk
);
1115 struct inet_sock
*inet
= inet_sk(sk
);
1116 struct ipv6_pinfo
*np
= inet6_sk(sk
);
1117 DECLARE_SOCKADDR(struct sockaddr_in6
*, sin6
, msg
->msg_name
);
1118 struct in6_addr
*daddr
, *final_p
, final
;
1119 struct ipv6_txoptions
*opt
= NULL
;
1120 struct ipv6_txoptions
*opt_to_free
= NULL
;
1121 struct ip6_flowlabel
*flowlabel
= NULL
;
1123 struct dst_entry
*dst
;
1124 struct ipcm6_cookie ipc6
;
1125 int addr_len
= msg
->msg_namelen
;
1127 int corkreq
= up
->corkflag
|| msg
->msg_flags
&MSG_MORE
;
1130 int is_udplite
= IS_UDPLITE(sk
);
1131 int (*getfrag
)(void *, char *, int, int, int, struct sk_buff
*);
1132 struct sockcm_cookie sockc
;
1137 sockc
.tsflags
= sk
->sk_tsflags
;
1139 /* destination address check */
1141 if (addr_len
< offsetof(struct sockaddr
, sa_data
))
1144 switch (sin6
->sin6_family
) {
1146 if (addr_len
< SIN6_LEN_RFC2133
)
1148 daddr
= &sin6
->sin6_addr
;
1149 if (ipv6_addr_any(daddr
) &&
1150 ipv6_addr_v4mapped(&np
->saddr
))
1151 ipv6_addr_set_v4mapped(htonl(INADDR_LOOPBACK
),
1155 goto do_udp_sendmsg
;
1157 msg
->msg_name
= sin6
= NULL
;
1158 msg
->msg_namelen
= addr_len
= 0;
1164 } else if (!up
->pending
) {
1165 if (sk
->sk_state
!= TCP_ESTABLISHED
)
1166 return -EDESTADDRREQ
;
1167 daddr
= &sk
->sk_v6_daddr
;
1172 if (ipv6_addr_v4mapped(daddr
)) {
1173 struct sockaddr_in sin
;
1174 sin
.sin_family
= AF_INET
;
1175 sin
.sin_port
= sin6
? sin6
->sin6_port
: inet
->inet_dport
;
1176 sin
.sin_addr
.s_addr
= daddr
->s6_addr32
[3];
1177 msg
->msg_name
= &sin
;
1178 msg
->msg_namelen
= sizeof(sin
);
1180 if (__ipv6_only_sock(sk
))
1181 return -ENETUNREACH
;
1182 return udp_sendmsg(sk
, msg
, len
);
1186 if (up
->pending
== AF_INET
)
1187 return udp_sendmsg(sk
, msg
, len
);
1189 /* Rough check on arithmetic overflow,
1190 better check is made in ip6_append_data().
1192 if (len
> INT_MAX
- sizeof(struct udphdr
))
1195 getfrag
= is_udplite
? udplite_getfrag
: ip_generic_getfrag
;
1198 * There are pending frames.
1199 * The socket lock must be held while it's corked.
1202 if (likely(up
->pending
)) {
1203 if (unlikely(up
->pending
!= AF_INET6
)) {
1205 return -EAFNOSUPPORT
;
1208 goto do_append_data
;
1212 ulen
+= sizeof(struct udphdr
);
1214 memset(&fl6
, 0, sizeof(fl6
));
1217 if (sin6
->sin6_port
== 0)
1220 fl6
.fl6_dport
= sin6
->sin6_port
;
1221 daddr
= &sin6
->sin6_addr
;
1224 fl6
.flowlabel
= sin6
->sin6_flowinfo
&IPV6_FLOWINFO_MASK
;
1225 if (fl6
.flowlabel
&IPV6_FLOWLABEL_MASK
) {
1226 flowlabel
= fl6_sock_lookup(sk
, fl6
.flowlabel
);
1233 * Otherwise it will be difficult to maintain
1236 if (sk
->sk_state
== TCP_ESTABLISHED
&&
1237 ipv6_addr_equal(daddr
, &sk
->sk_v6_daddr
))
1238 daddr
= &sk
->sk_v6_daddr
;
1240 if (addr_len
>= sizeof(struct sockaddr_in6
) &&
1241 sin6
->sin6_scope_id
&&
1242 __ipv6_addr_needs_scope_id(__ipv6_addr_type(daddr
)))
1243 fl6
.flowi6_oif
= sin6
->sin6_scope_id
;
1245 if (sk
->sk_state
!= TCP_ESTABLISHED
)
1246 return -EDESTADDRREQ
;
1248 fl6
.fl6_dport
= inet
->inet_dport
;
1249 daddr
= &sk
->sk_v6_daddr
;
1250 fl6
.flowlabel
= np
->flow_label
;
1254 if (!fl6
.flowi6_oif
)
1255 fl6
.flowi6_oif
= sk
->sk_bound_dev_if
;
1257 if (!fl6
.flowi6_oif
)
1258 fl6
.flowi6_oif
= np
->sticky_pktinfo
.ipi6_ifindex
;
1260 fl6
.flowi6_mark
= sk
->sk_mark
;
1261 fl6
.flowi6_uid
= sk
->sk_uid
;
1263 if (msg
->msg_controllen
) {
1265 memset(opt
, 0, sizeof(struct ipv6_txoptions
));
1266 opt
->tot_len
= sizeof(*opt
);
1269 err
= ip6_datagram_send_ctl(sock_net(sk
), sk
, msg
, &fl6
, &ipc6
, &sockc
);
1271 fl6_sock_release(flowlabel
);
1274 if ((fl6
.flowlabel
&IPV6_FLOWLABEL_MASK
) && !flowlabel
) {
1275 flowlabel
= fl6_sock_lookup(sk
, fl6
.flowlabel
);
1279 if (!(opt
->opt_nflen
|opt
->opt_flen
))
1284 opt
= txopt_get(np
);
1288 opt
= fl6_merge_options(&opt_space
, flowlabel
, opt
);
1289 opt
= ipv6_fixup_options(&opt_space
, opt
);
1292 fl6
.flowi6_proto
= sk
->sk_protocol
;
1293 if (!ipv6_addr_any(daddr
))
1296 fl6
.daddr
.s6_addr
[15] = 0x1; /* :: means loopback (BSD'ism) */
1297 if (ipv6_addr_any(&fl6
.saddr
) && !ipv6_addr_any(&np
->saddr
))
1298 fl6
.saddr
= np
->saddr
;
1299 fl6
.fl6_sport
= inet
->inet_sport
;
1301 final_p
= fl6_update_dst(&fl6
, opt
, &final
);
1305 if (!fl6
.flowi6_oif
&& ipv6_addr_is_multicast(&fl6
.daddr
)) {
1306 fl6
.flowi6_oif
= np
->mcast_oif
;
1308 } else if (!fl6
.flowi6_oif
)
1309 fl6
.flowi6_oif
= np
->ucast_oif
;
1311 security_sk_classify_flow(sk
, flowi6_to_flowi(&fl6
));
1313 if (ipc6
.tclass
< 0)
1314 ipc6
.tclass
= np
->tclass
;
1316 fl6
.flowlabel
= ip6_make_flowinfo(ipc6
.tclass
, fl6
.flowlabel
);
1318 dst
= ip6_sk_dst_lookup_flow(sk
, &fl6
, final_p
);
1325 if (ipc6
.hlimit
< 0)
1326 ipc6
.hlimit
= ip6_sk_dst_hoplimit(np
, &fl6
, dst
);
1328 if (msg
->msg_flags
&MSG_CONFIRM
)
1332 /* Lockless fast path for the non-corking case */
1334 struct sk_buff
*skb
;
1336 skb
= ip6_make_skb(sk
, getfrag
, msg
, ulen
,
1337 sizeof(struct udphdr
), &ipc6
,
1338 &fl6
, (struct rt6_info
*)dst
,
1339 msg
->msg_flags
, &sockc
);
1341 if (!IS_ERR_OR_NULL(skb
))
1342 err
= udp_v6_send_skb(skb
, &fl6
);
1347 if (unlikely(up
->pending
)) {
1348 /* The socket is already corked while preparing it. */
1349 /* ... which is an evident application bug. --ANK */
1352 net_dbg_ratelimited("udp cork app bug 2\n");
1357 up
->pending
= AF_INET6
;
1360 if (ipc6
.dontfrag
< 0)
1361 ipc6
.dontfrag
= np
->dontfrag
;
1363 err
= ip6_append_data(sk
, getfrag
, msg
, ulen
, sizeof(struct udphdr
),
1364 &ipc6
, &fl6
, (struct rt6_info
*)dst
,
1365 corkreq
? msg
->msg_flags
|MSG_MORE
: msg
->msg_flags
, &sockc
);
1367 udp_v6_flush_pending_frames(sk
);
1369 err
= udp_v6_push_pending_frames(sk
);
1370 else if (unlikely(skb_queue_empty(&sk
->sk_write_queue
)))
1374 err
= np
->recverr
? net_xmit_errno(err
) : 0;
1380 ip6_dst_store(sk
, dst
,
1381 ipv6_addr_equal(&fl6
.daddr
, &sk
->sk_v6_daddr
) ?
1382 &sk
->sk_v6_daddr
: NULL
,
1383 #ifdef CONFIG_IPV6_SUBTREES
1384 ipv6_addr_equal(&fl6
.saddr
, &np
->saddr
) ?
1396 fl6_sock_release(flowlabel
);
1397 txopt_put(opt_to_free
);
1401 * ENOBUFS = no kernel mem, SOCK_NOSPACE = no sndbuf space. Reporting
1402 * ENOBUFS might not be good (it's not tunable per se), but otherwise
1403 * we don't have a good statistic (IpOutDiscards but it can be too many
1404 * things). We could add another new stat but at least for now that
1405 * seems like overkill.
1407 if (err
== -ENOBUFS
|| test_bit(SOCK_NOSPACE
, &sk
->sk_socket
->flags
)) {
1408 UDP6_INC_STATS(sock_net(sk
),
1409 UDP_MIB_SNDBUFERRORS
, is_udplite
);
1414 if (msg
->msg_flags
& MSG_PROBE
)
1415 dst_confirm_neigh(dst
, &fl6
.daddr
);
1416 if (!(msg
->msg_flags
&MSG_PROBE
) || len
)
1417 goto back_from_confirm
;
1422 void udpv6_destroy_sock(struct sock
*sk
)
1424 struct udp_sock
*up
= udp_sk(sk
);
1426 udp_v6_flush_pending_frames(sk
);
1429 if (static_key_false(&udpv6_encap_needed
) && up
->encap_type
) {
1430 void (*encap_destroy
)(struct sock
*sk
);
1431 encap_destroy
= ACCESS_ONCE(up
->encap_destroy
);
1436 inet6_destroy_sock(sk
);
1440 * Socket option code for UDP
1442 int udpv6_setsockopt(struct sock
*sk
, int level
, int optname
,
1443 char __user
*optval
, unsigned int optlen
)
1445 if (level
== SOL_UDP
|| level
== SOL_UDPLITE
)
1446 return udp_lib_setsockopt(sk
, level
, optname
, optval
, optlen
,
1447 udp_v6_push_pending_frames
);
1448 return ipv6_setsockopt(sk
, level
, optname
, optval
, optlen
);
1451 #ifdef CONFIG_COMPAT
1452 int compat_udpv6_setsockopt(struct sock
*sk
, int level
, int optname
,
1453 char __user
*optval
, unsigned int optlen
)
1455 if (level
== SOL_UDP
|| level
== SOL_UDPLITE
)
1456 return udp_lib_setsockopt(sk
, level
, optname
, optval
, optlen
,
1457 udp_v6_push_pending_frames
);
1458 return compat_ipv6_setsockopt(sk
, level
, optname
, optval
, optlen
);
1462 int udpv6_getsockopt(struct sock
*sk
, int level
, int optname
,
1463 char __user
*optval
, int __user
*optlen
)
1465 if (level
== SOL_UDP
|| level
== SOL_UDPLITE
)
1466 return udp_lib_getsockopt(sk
, level
, optname
, optval
, optlen
);
1467 return ipv6_getsockopt(sk
, level
, optname
, optval
, optlen
);
1470 #ifdef CONFIG_COMPAT
1471 int compat_udpv6_getsockopt(struct sock
*sk
, int level
, int optname
,
1472 char __user
*optval
, int __user
*optlen
)
1474 if (level
== SOL_UDP
|| level
== SOL_UDPLITE
)
1475 return udp_lib_getsockopt(sk
, level
, optname
, optval
, optlen
);
1476 return compat_ipv6_getsockopt(sk
, level
, optname
, optval
, optlen
);
1480 static struct inet6_protocol udpv6_protocol
= {
1481 .early_demux
= udp_v6_early_demux
,
1482 .early_demux_handler
= udp_v6_early_demux
,
1483 .handler
= udpv6_rcv
,
1484 .err_handler
= udpv6_err
,
1485 .flags
= INET6_PROTO_NOPOLICY
|INET6_PROTO_FINAL
,
1488 /* ------------------------------------------------------------------------ */
1489 #ifdef CONFIG_PROC_FS
1490 int udp6_seq_show(struct seq_file
*seq
, void *v
)
1492 if (v
== SEQ_START_TOKEN
) {
1493 seq_puts(seq
, IPV6_SEQ_DGRAM_HEADER
);
1495 int bucket
= ((struct udp_iter_state
*)seq
->private)->bucket
;
1496 struct inet_sock
*inet
= inet_sk(v
);
1497 __u16 srcp
= ntohs(inet
->inet_sport
);
1498 __u16 destp
= ntohs(inet
->inet_dport
);
1499 ip6_dgram_sock_seq_show(seq
, v
, srcp
, destp
, bucket
);
1504 static const struct file_operations udp6_afinfo_seq_fops
= {
1505 .owner
= THIS_MODULE
,
1506 .open
= udp_seq_open
,
1508 .llseek
= seq_lseek
,
1509 .release
= seq_release_net
1512 static struct udp_seq_afinfo udp6_seq_afinfo
= {
1515 .udp_table
= &udp_table
,
1516 .seq_fops
= &udp6_afinfo_seq_fops
,
1518 .show
= udp6_seq_show
,
1522 int __net_init
udp6_proc_init(struct net
*net
)
1524 return udp_proc_register(net
, &udp6_seq_afinfo
);
1527 void udp6_proc_exit(struct net
*net
)
1529 udp_proc_unregister(net
, &udp6_seq_afinfo
);
1531 #endif /* CONFIG_PROC_FS */
1533 /* ------------------------------------------------------------------------ */
1535 struct proto udpv6_prot
= {
1537 .owner
= THIS_MODULE
,
1538 .close
= udp_lib_close
,
1539 .connect
= ip6_datagram_connect
,
1540 .disconnect
= udp_disconnect
,
1542 .init
= udp_init_sock
,
1543 .destroy
= udpv6_destroy_sock
,
1544 .setsockopt
= udpv6_setsockopt
,
1545 .getsockopt
= udpv6_getsockopt
,
1546 .sendmsg
= udpv6_sendmsg
,
1547 .recvmsg
= udpv6_recvmsg
,
1548 .release_cb
= ip6_datagram_release_cb
,
1549 .hash
= udp_lib_hash
,
1550 .unhash
= udp_lib_unhash
,
1551 .rehash
= udp_v6_rehash
,
1552 .get_port
= udp_v6_get_port
,
1553 .memory_allocated
= &udp_memory_allocated
,
1554 .sysctl_mem
= sysctl_udp_mem
,
1555 .sysctl_wmem
= &sysctl_udp_wmem_min
,
1556 .sysctl_rmem
= &sysctl_udp_rmem_min
,
1557 .obj_size
= sizeof(struct udp6_sock
),
1558 .h
.udp_table
= &udp_table
,
1559 #ifdef CONFIG_COMPAT
1560 .compat_setsockopt
= compat_udpv6_setsockopt
,
1561 .compat_getsockopt
= compat_udpv6_getsockopt
,
1563 .diag_destroy
= udp_abort
,
1566 static struct inet_protosw udpv6_protosw
= {
1568 .protocol
= IPPROTO_UDP
,
1569 .prot
= &udpv6_prot
,
1570 .ops
= &inet6_dgram_ops
,
1571 .flags
= INET_PROTOSW_PERMANENT
,
1574 int __init
udpv6_init(void)
1578 ret
= inet6_add_protocol(&udpv6_protocol
, IPPROTO_UDP
);
1582 ret
= inet6_register_protosw(&udpv6_protosw
);
1584 goto out_udpv6_protocol
;
1589 inet6_del_protocol(&udpv6_protocol
, IPPROTO_UDP
);
1593 void udpv6_exit(void)
1595 inet6_unregister_protosw(&udpv6_protosw
);
1596 inet6_del_protocol(&udpv6_protocol
, IPPROTO_UDP
);