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
);
296 sk
= skb_steal_sock(skb
);
299 return __udp6_lib_lookup(dev_net(skb
->dev
), &iph
->saddr
, sport
,
300 &iph
->daddr
, dport
, inet6_iif(skb
),
304 struct sock
*udp6_lib_lookup_skb(struct sk_buff
*skb
,
305 __be16 sport
, __be16 dport
)
307 const struct ipv6hdr
*iph
= ipv6_hdr(skb
);
309 return __udp6_lib_lookup(dev_net(skb
->dev
), &iph
->saddr
, sport
,
310 &iph
->daddr
, dport
, inet6_iif(skb
),
313 EXPORT_SYMBOL_GPL(udp6_lib_lookup_skb
);
315 /* Must be called under rcu_read_lock().
316 * Does increment socket refcount.
318 #if IS_ENABLED(CONFIG_NETFILTER_XT_MATCH_SOCKET) || \
319 IS_ENABLED(CONFIG_NETFILTER_XT_TARGET_TPROXY) || \
320 IS_ENABLED(CONFIG_NF_SOCKET_IPV6)
321 struct sock
*udp6_lib_lookup(struct net
*net
, const struct in6_addr
*saddr
, __be16 sport
,
322 const struct in6_addr
*daddr
, __be16 dport
, int dif
)
326 sk
= __udp6_lib_lookup(net
, saddr
, sport
, daddr
, dport
,
327 dif
, &udp_table
, NULL
);
328 if (sk
&& !atomic_inc_not_zero(&sk
->sk_refcnt
))
332 EXPORT_SYMBOL_GPL(udp6_lib_lookup
);
336 * This should be easy, if there is something there we
337 * return it, otherwise we block.
340 int udpv6_recvmsg(struct sock
*sk
, struct msghdr
*msg
, size_t len
,
341 int noblock
, int flags
, int *addr_len
)
343 struct ipv6_pinfo
*np
= inet6_sk(sk
);
344 struct inet_sock
*inet
= inet_sk(sk
);
346 unsigned int ulen
, copied
;
347 int peeked
, peeking
, off
;
349 int is_udplite
= IS_UDPLITE(sk
);
350 bool checksum_valid
= false;
353 if (flags
& MSG_ERRQUEUE
)
354 return ipv6_recv_error(sk
, msg
, len
, addr_len
);
356 if (np
->rxpmtu
&& np
->rxopt
.bits
.rxpmtu
)
357 return ipv6_recv_rxpmtu(sk
, msg
, len
, addr_len
);
360 peeking
= off
= sk_peek_offset(sk
, flags
);
361 skb
= __skb_recv_udp(sk
, flags
, noblock
, &peeked
, &off
, &err
);
367 if (copied
> ulen
- off
)
369 else if (copied
< ulen
)
370 msg
->msg_flags
|= MSG_TRUNC
;
372 is_udp4
= (skb
->protocol
== htons(ETH_P_IP
));
375 * If checksum is needed at all, try to do it while copying the
376 * data. If the data is truncated, or if we only want a partial
377 * coverage checksum (UDP-Lite), do it before the copy.
380 if (copied
< ulen
|| peeking
||
381 (is_udplite
&& UDP_SKB_CB(skb
)->partial_cov
)) {
382 checksum_valid
= !udp_lib_checksum_complete(skb
);
387 if (checksum_valid
|| skb_csum_unnecessary(skb
))
388 err
= skb_copy_datagram_msg(skb
, off
, msg
, copied
);
390 err
= skb_copy_and_csum_datagram_msg(skb
, off
, msg
);
396 atomic_inc(&sk
->sk_drops
);
398 UDP_INC_STATS(sock_net(sk
), UDP_MIB_INERRORS
,
401 UDP6_INC_STATS(sock_net(sk
), UDP_MIB_INERRORS
,
409 UDP_INC_STATS(sock_net(sk
), UDP_MIB_INDATAGRAMS
,
412 UDP6_INC_STATS(sock_net(sk
), UDP_MIB_INDATAGRAMS
,
416 sock_recv_ts_and_drops(msg
, sk
, skb
);
418 /* Copy the address. */
420 DECLARE_SOCKADDR(struct sockaddr_in6
*, sin6
, msg
->msg_name
);
421 sin6
->sin6_family
= AF_INET6
;
422 sin6
->sin6_port
= udp_hdr(skb
)->source
;
423 sin6
->sin6_flowinfo
= 0;
426 ipv6_addr_set_v4mapped(ip_hdr(skb
)->saddr
,
428 sin6
->sin6_scope_id
= 0;
430 sin6
->sin6_addr
= ipv6_hdr(skb
)->saddr
;
431 sin6
->sin6_scope_id
=
432 ipv6_iface_scope_id(&sin6
->sin6_addr
,
435 *addr_len
= sizeof(*sin6
);
439 ip6_datagram_recv_common_ctl(sk
, msg
, skb
);
442 if (inet
->cmsg_flags
)
443 ip_cmsg_recv_offset(msg
, sk
, skb
,
444 sizeof(struct udphdr
), off
);
447 ip6_datagram_recv_specific_ctl(sk
, msg
, skb
);
451 if (flags
& MSG_TRUNC
)
454 skb_consume_udp(sk
, skb
, peeking
? -err
: err
);
458 if (!__sk_queue_drop_skb(sk
, skb
, flags
, udp_skb_destructor
)) {
460 UDP_INC_STATS(sock_net(sk
),
461 UDP_MIB_CSUMERRORS
, is_udplite
);
462 UDP_INC_STATS(sock_net(sk
),
463 UDP_MIB_INERRORS
, is_udplite
);
465 UDP6_INC_STATS(sock_net(sk
),
466 UDP_MIB_CSUMERRORS
, is_udplite
);
467 UDP6_INC_STATS(sock_net(sk
),
468 UDP_MIB_INERRORS
, is_udplite
);
473 /* starting over for a new packet, but check if we need to yield */
475 msg
->msg_flags
&= ~MSG_TRUNC
;
479 void __udp6_lib_err(struct sk_buff
*skb
, struct inet6_skb_parm
*opt
,
480 u8 type
, u8 code
, int offset
, __be32 info
,
481 struct udp_table
*udptable
)
483 struct ipv6_pinfo
*np
;
484 const struct ipv6hdr
*hdr
= (const struct ipv6hdr
*)skb
->data
;
485 const struct in6_addr
*saddr
= &hdr
->saddr
;
486 const struct in6_addr
*daddr
= &hdr
->daddr
;
487 struct udphdr
*uh
= (struct udphdr
*)(skb
->data
+offset
);
491 struct net
*net
= dev_net(skb
->dev
);
493 sk
= __udp6_lib_lookup(net
, daddr
, uh
->dest
, saddr
, uh
->source
,
494 inet6_iif(skb
), udptable
, skb
);
496 __ICMP6_INC_STATS(net
, __in6_dev_get(skb
->dev
),
501 harderr
= icmpv6_err_convert(type
, code
, &err
);
504 if (type
== ICMPV6_PKT_TOOBIG
) {
505 if (!ip6_sk_accept_pmtu(sk
))
507 ip6_sk_update_pmtu(skb
, sk
, info
);
508 if (np
->pmtudisc
!= IPV6_PMTUDISC_DONT
)
511 if (type
== NDISC_REDIRECT
) {
512 ip6_sk_redirect(skb
, sk
);
517 if (!harderr
|| sk
->sk_state
!= TCP_ESTABLISHED
)
520 ipv6_icmp_error(sk
, skb
, err
, uh
->dest
, ntohl(info
), (u8
*)(uh
+1));
524 sk
->sk_error_report(sk
);
529 static int __udpv6_queue_rcv_skb(struct sock
*sk
, struct sk_buff
*skb
)
533 if (!ipv6_addr_any(&sk
->sk_v6_daddr
)) {
534 sock_rps_save_rxhash(sk
, skb
);
535 sk_mark_napi_id(sk
, skb
);
536 sk_incoming_cpu_update(sk
);
538 sk_mark_napi_id_once(sk
, skb
);
541 rc
= __udp_enqueue_schedule_skb(sk
, skb
);
543 int is_udplite
= IS_UDPLITE(sk
);
545 /* Note that an ENOMEM error is charged twice */
547 UDP6_INC_STATS(sock_net(sk
),
548 UDP_MIB_RCVBUFERRORS
, is_udplite
);
549 UDP6_INC_STATS(sock_net(sk
), UDP_MIB_INERRORS
, is_udplite
);
557 static __inline__
void udpv6_err(struct sk_buff
*skb
,
558 struct inet6_skb_parm
*opt
, u8 type
,
559 u8 code
, int offset
, __be32 info
)
561 __udp6_lib_err(skb
, opt
, type
, code
, offset
, info
, &udp_table
);
564 static struct static_key udpv6_encap_needed __read_mostly
;
565 void udpv6_encap_enable(void)
567 if (!static_key_enabled(&udpv6_encap_needed
))
568 static_key_slow_inc(&udpv6_encap_needed
);
570 EXPORT_SYMBOL(udpv6_encap_enable
);
572 static int udpv6_queue_rcv_skb(struct sock
*sk
, struct sk_buff
*skb
)
574 struct udp_sock
*up
= udp_sk(sk
);
575 int is_udplite
= IS_UDPLITE(sk
);
577 if (!xfrm6_policy_check(sk
, XFRM_POLICY_IN
, skb
))
580 if (static_key_false(&udpv6_encap_needed
) && up
->encap_type
) {
581 int (*encap_rcv
)(struct sock
*sk
, struct sk_buff
*skb
);
584 * This is an encapsulation socket so pass the skb to
585 * the socket's udp_encap_rcv() hook. Otherwise, just
586 * fall through and pass this up the UDP socket.
587 * up->encap_rcv() returns the following value:
588 * =0 if skb was successfully passed to the encap
589 * handler or was discarded by it.
590 * >0 if skb should be passed on to UDP.
591 * <0 if skb should be resubmitted as proto -N
594 /* if we're overly short, let UDP handle it */
595 encap_rcv
= ACCESS_ONCE(up
->encap_rcv
);
599 /* Verify checksum before giving to encap */
600 if (udp_lib_checksum_complete(skb
))
603 ret
= encap_rcv(sk
, skb
);
605 __UDP_INC_STATS(sock_net(sk
),
612 /* FALLTHROUGH -- it's a UDP Packet */
616 * UDP-Lite specific tests, ignored on UDP sockets (see net/ipv4/udp.c).
618 if ((is_udplite
& UDPLITE_RECV_CC
) && UDP_SKB_CB(skb
)->partial_cov
) {
620 if (up
->pcrlen
== 0) { /* full coverage was set */
621 net_dbg_ratelimited("UDPLITE6: partial coverage %d while full coverage %d requested\n",
622 UDP_SKB_CB(skb
)->cscov
, skb
->len
);
625 if (UDP_SKB_CB(skb
)->cscov
< up
->pcrlen
) {
626 net_dbg_ratelimited("UDPLITE6: coverage %d too small, need min %d\n",
627 UDP_SKB_CB(skb
)->cscov
, up
->pcrlen
);
632 if (rcu_access_pointer(sk
->sk_filter
) &&
633 udp_lib_checksum_complete(skb
))
636 if (sk_filter_trim_cap(sk
, skb
, sizeof(struct udphdr
)))
639 udp_csum_pull_header(skb
);
643 return __udpv6_queue_rcv_skb(sk
, skb
);
646 __UDP6_INC_STATS(sock_net(sk
), UDP_MIB_CSUMERRORS
, is_udplite
);
648 __UDP6_INC_STATS(sock_net(sk
), UDP_MIB_INERRORS
, is_udplite
);
649 atomic_inc(&sk
->sk_drops
);
654 static bool __udp_v6_is_mcast_sock(struct net
*net
, struct sock
*sk
,
655 __be16 loc_port
, const struct in6_addr
*loc_addr
,
656 __be16 rmt_port
, const struct in6_addr
*rmt_addr
,
657 int dif
, unsigned short hnum
)
659 struct inet_sock
*inet
= inet_sk(sk
);
661 if (!net_eq(sock_net(sk
), net
))
664 if (udp_sk(sk
)->udp_port_hash
!= hnum
||
665 sk
->sk_family
!= PF_INET6
||
666 (inet
->inet_dport
&& inet
->inet_dport
!= rmt_port
) ||
667 (!ipv6_addr_any(&sk
->sk_v6_daddr
) &&
668 !ipv6_addr_equal(&sk
->sk_v6_daddr
, rmt_addr
)) ||
669 (sk
->sk_bound_dev_if
&& sk
->sk_bound_dev_if
!= dif
) ||
670 (!ipv6_addr_any(&sk
->sk_v6_rcv_saddr
) &&
671 !ipv6_addr_equal(&sk
->sk_v6_rcv_saddr
, loc_addr
)))
673 if (!inet6_mc_check(sk
, loc_addr
, rmt_addr
))
678 static void udp6_csum_zero_error(struct sk_buff
*skb
)
680 /* RFC 2460 section 8.1 says that we SHOULD log
681 * this error. Well, it is reasonable.
683 net_dbg_ratelimited("IPv6: udp checksum is 0 for [%pI6c]:%u->[%pI6c]:%u\n",
684 &ipv6_hdr(skb
)->saddr
, ntohs(udp_hdr(skb
)->source
),
685 &ipv6_hdr(skb
)->daddr
, ntohs(udp_hdr(skb
)->dest
));
689 * Note: called only from the BH handler context,
690 * so we don't need to lock the hashes.
692 static int __udp6_lib_mcast_deliver(struct net
*net
, struct sk_buff
*skb
,
693 const struct in6_addr
*saddr
, const struct in6_addr
*daddr
,
694 struct udp_table
*udptable
, int proto
)
696 struct sock
*sk
, *first
= NULL
;
697 const struct udphdr
*uh
= udp_hdr(skb
);
698 unsigned short hnum
= ntohs(uh
->dest
);
699 struct udp_hslot
*hslot
= udp_hashslot(udptable
, net
, hnum
);
700 unsigned int offset
= offsetof(typeof(*sk
), sk_node
);
701 unsigned int hash2
= 0, hash2_any
= 0, use_hash2
= (hslot
->count
> 10);
702 int dif
= inet6_iif(skb
);
703 struct hlist_node
*node
;
704 struct sk_buff
*nskb
;
707 hash2_any
= udp6_portaddr_hash(net
, &in6addr_any
, hnum
) &
709 hash2
= udp6_portaddr_hash(net
, daddr
, hnum
) & udptable
->mask
;
711 hslot
= &udptable
->hash2
[hash2
];
712 offset
= offsetof(typeof(*sk
), __sk_common
.skc_portaddr_node
);
715 sk_for_each_entry_offset_rcu(sk
, node
, &hslot
->head
, offset
) {
716 if (!__udp_v6_is_mcast_sock(net
, sk
, uh
->dest
, daddr
,
717 uh
->source
, saddr
, dif
, hnum
))
719 /* If zero checksum and no_check is not on for
720 * the socket then skip it.
722 if (!uh
->check
&& !udp_sk(sk
)->no_check6_rx
)
728 nskb
= skb_clone(skb
, GFP_ATOMIC
);
729 if (unlikely(!nskb
)) {
730 atomic_inc(&sk
->sk_drops
);
731 __UDP6_INC_STATS(net
, UDP_MIB_RCVBUFERRORS
,
733 __UDP6_INC_STATS(net
, UDP_MIB_INERRORS
,
738 if (udpv6_queue_rcv_skb(sk
, nskb
) > 0)
742 /* Also lookup *:port if we are using hash2 and haven't done so yet. */
743 if (use_hash2
&& hash2
!= hash2_any
) {
749 if (udpv6_queue_rcv_skb(first
, skb
) > 0)
753 __UDP6_INC_STATS(net
, UDP_MIB_IGNOREDMULTI
,
754 proto
== IPPROTO_UDPLITE
);
759 int __udp6_lib_rcv(struct sk_buff
*skb
, struct udp_table
*udptable
,
762 const struct in6_addr
*saddr
, *daddr
;
763 struct net
*net
= dev_net(skb
->dev
);
768 if (!pskb_may_pull(skb
, sizeof(struct udphdr
)))
771 saddr
= &ipv6_hdr(skb
)->saddr
;
772 daddr
= &ipv6_hdr(skb
)->daddr
;
775 ulen
= ntohs(uh
->len
);
779 if (proto
== IPPROTO_UDP
) {
780 /* UDP validates ulen. */
782 /* Check for jumbo payload */
786 if (ulen
< sizeof(*uh
))
789 if (ulen
< skb
->len
) {
790 if (pskb_trim_rcsum(skb
, ulen
))
792 saddr
= &ipv6_hdr(skb
)->saddr
;
793 daddr
= &ipv6_hdr(skb
)->daddr
;
798 if (udp6_csum_init(skb
, uh
, proto
))
802 * Multicast receive code
804 if (ipv6_addr_is_multicast(daddr
))
805 return __udp6_lib_mcast_deliver(net
, skb
,
806 saddr
, daddr
, udptable
, proto
);
811 * check socket cache ... must talk to Alan about his plans
812 * for sock caches... i'll skip this for now.
814 sk
= __udp6_lib_lookup_skb(skb
, uh
->source
, uh
->dest
, udptable
);
818 if (!uh
->check
&& !udp_sk(sk
)->no_check6_rx
) {
819 udp6_csum_zero_error(skb
);
823 if (inet_get_convert_csum(sk
) && uh
->check
&& !IS_UDPLITE(sk
))
824 skb_checksum_try_convert(skb
, IPPROTO_UDP
, uh
->check
,
827 ret
= udpv6_queue_rcv_skb(sk
, skb
);
829 /* a return value > 0 means to resubmit the input */
837 udp6_csum_zero_error(skb
);
841 if (!xfrm6_policy_check(NULL
, XFRM_POLICY_IN
, skb
))
844 if (udp_lib_checksum_complete(skb
))
847 __UDP6_INC_STATS(net
, UDP_MIB_NOPORTS
, proto
== IPPROTO_UDPLITE
);
848 icmpv6_send(skb
, ICMPV6_DEST_UNREACH
, ICMPV6_PORT_UNREACH
, 0);
854 net_dbg_ratelimited("UDP%sv6: short packet: From [%pI6c]:%u %d/%d to [%pI6c]:%u\n",
855 proto
== IPPROTO_UDPLITE
? "-Lite" : "",
856 saddr
, ntohs(uh
->source
),
858 daddr
, ntohs(uh
->dest
));
861 __UDP6_INC_STATS(net
, UDP_MIB_CSUMERRORS
, proto
== IPPROTO_UDPLITE
);
863 __UDP6_INC_STATS(net
, UDP_MIB_INERRORS
, proto
== IPPROTO_UDPLITE
);
869 static struct sock
*__udp6_lib_demux_lookup(struct net
*net
,
870 __be16 loc_port
, const struct in6_addr
*loc_addr
,
871 __be16 rmt_port
, const struct in6_addr
*rmt_addr
,
874 unsigned short hnum
= ntohs(loc_port
);
875 unsigned int hash2
= udp6_portaddr_hash(net
, loc_addr
, hnum
);
876 unsigned int slot2
= hash2
& udp_table
.mask
;
877 struct udp_hslot
*hslot2
= &udp_table
.hash2
[slot2
];
878 const __portpair ports
= INET_COMBINED_PORTS(rmt_port
, hnum
);
881 udp_portaddr_for_each_entry_rcu(sk
, &hslot2
->head
) {
882 if (INET6_MATCH(sk
, net
, rmt_addr
, loc_addr
, ports
, dif
))
884 /* Only check first socket in chain */
890 static void udp_v6_early_demux(struct sk_buff
*skb
)
892 struct net
*net
= dev_net(skb
->dev
);
893 const struct udphdr
*uh
;
895 struct dst_entry
*dst
;
896 int dif
= skb
->dev
->ifindex
;
898 if (!pskb_may_pull(skb
, skb_transport_offset(skb
) +
899 sizeof(struct udphdr
)))
904 if (skb
->pkt_type
== PACKET_HOST
)
905 sk
= __udp6_lib_demux_lookup(net
, uh
->dest
,
906 &ipv6_hdr(skb
)->daddr
,
907 uh
->source
, &ipv6_hdr(skb
)->saddr
,
912 if (!sk
|| !atomic_inc_not_zero_hint(&sk
->sk_refcnt
, 2))
916 skb
->destructor
= sock_efree
;
917 dst
= READ_ONCE(sk
->sk_rx_dst
);
920 dst
= dst_check(dst
, inet6_sk(sk
)->rx_dst_cookie
);
922 if (dst
->flags
& DST_NOCACHE
) {
923 if (likely(atomic_inc_not_zero(&dst
->__refcnt
)))
924 skb_dst_set(skb
, dst
);
926 skb_dst_set_noref(skb
, dst
);
931 static __inline__
int udpv6_rcv(struct sk_buff
*skb
)
933 return __udp6_lib_rcv(skb
, &udp_table
, IPPROTO_UDP
);
937 * Throw away all pending data and cancel the corking. Socket is locked.
939 static void udp_v6_flush_pending_frames(struct sock
*sk
)
941 struct udp_sock
*up
= udp_sk(sk
);
943 if (up
->pending
== AF_INET
)
944 udp_flush_pending_frames(sk
);
945 else if (up
->pending
) {
948 ip6_flush_pending_frames(sk
);
953 * udp6_hwcsum_outgoing - handle outgoing HW checksumming
954 * @sk: socket we are sending on
955 * @skb: sk_buff containing the filled-in UDP header
956 * (checksum field must be zeroed out)
958 static void udp6_hwcsum_outgoing(struct sock
*sk
, struct sk_buff
*skb
,
959 const struct in6_addr
*saddr
,
960 const struct in6_addr
*daddr
, int len
)
963 struct udphdr
*uh
= udp_hdr(skb
);
964 struct sk_buff
*frags
= skb_shinfo(skb
)->frag_list
;
968 /* Only one fragment on the socket. */
969 skb
->csum_start
= skb_transport_header(skb
) - skb
->head
;
970 skb
->csum_offset
= offsetof(struct udphdr
, check
);
971 uh
->check
= ~csum_ipv6_magic(saddr
, daddr
, len
, IPPROTO_UDP
, 0);
974 * HW-checksum won't work as there are two or more
975 * fragments on the socket so that all csums of sk_buffs
978 offset
= skb_transport_offset(skb
);
979 skb
->csum
= skb_checksum(skb
, offset
, skb
->len
- offset
, 0);
981 skb
->ip_summed
= CHECKSUM_NONE
;
984 csum
= csum_add(csum
, frags
->csum
);
985 } while ((frags
= frags
->next
));
987 uh
->check
= csum_ipv6_magic(saddr
, daddr
, len
, IPPROTO_UDP
,
990 uh
->check
= CSUM_MANGLED_0
;
998 static int udp_v6_send_skb(struct sk_buff
*skb
, struct flowi6
*fl6
)
1000 struct sock
*sk
= skb
->sk
;
1003 int is_udplite
= IS_UDPLITE(sk
);
1005 int offset
= skb_transport_offset(skb
);
1006 int len
= skb
->len
- offset
;
1009 * Create a UDP header
1012 uh
->source
= fl6
->fl6_sport
;
1013 uh
->dest
= fl6
->fl6_dport
;
1014 uh
->len
= htons(len
);
1018 csum
= udplite_csum(skb
);
1019 else if (udp_sk(sk
)->no_check6_tx
) { /* UDP csum disabled */
1020 skb
->ip_summed
= CHECKSUM_NONE
;
1022 } else if (skb
->ip_summed
== CHECKSUM_PARTIAL
) { /* UDP hardware csum */
1023 udp6_hwcsum_outgoing(sk
, skb
, &fl6
->saddr
, &fl6
->daddr
, len
);
1026 csum
= udp_csum(skb
);
1028 /* add protocol-dependent pseudo-header */
1029 uh
->check
= csum_ipv6_magic(&fl6
->saddr
, &fl6
->daddr
,
1030 len
, fl6
->flowi6_proto
, csum
);
1032 uh
->check
= CSUM_MANGLED_0
;
1035 err
= ip6_send_skb(skb
);
1037 if (err
== -ENOBUFS
&& !inet6_sk(sk
)->recverr
) {
1038 UDP6_INC_STATS(sock_net(sk
),
1039 UDP_MIB_SNDBUFERRORS
, is_udplite
);
1043 UDP6_INC_STATS(sock_net(sk
),
1044 UDP_MIB_OUTDATAGRAMS
, is_udplite
);
1049 static int udp_v6_push_pending_frames(struct sock
*sk
)
1051 struct sk_buff
*skb
;
1052 struct udp_sock
*up
= udp_sk(sk
);
1056 if (up
->pending
== AF_INET
)
1057 return udp_push_pending_frames(sk
);
1059 /* ip6_finish_skb will release the cork, so make a copy of
1062 fl6
= inet_sk(sk
)->cork
.fl
.u
.ip6
;
1064 skb
= ip6_finish_skb(sk
);
1068 err
= udp_v6_send_skb(skb
, &fl6
);
1076 int udpv6_sendmsg(struct sock
*sk
, struct msghdr
*msg
, size_t len
)
1078 struct ipv6_txoptions opt_space
;
1079 struct udp_sock
*up
= udp_sk(sk
);
1080 struct inet_sock
*inet
= inet_sk(sk
);
1081 struct ipv6_pinfo
*np
= inet6_sk(sk
);
1082 DECLARE_SOCKADDR(struct sockaddr_in6
*, sin6
, msg
->msg_name
);
1083 struct in6_addr
*daddr
, *final_p
, final
;
1084 struct ipv6_txoptions
*opt
= NULL
;
1085 struct ipv6_txoptions
*opt_to_free
= NULL
;
1086 struct ip6_flowlabel
*flowlabel
= NULL
;
1088 struct dst_entry
*dst
;
1089 struct ipcm6_cookie ipc6
;
1090 int addr_len
= msg
->msg_namelen
;
1092 int corkreq
= up
->corkflag
|| msg
->msg_flags
&MSG_MORE
;
1095 int is_udplite
= IS_UDPLITE(sk
);
1096 int (*getfrag
)(void *, char *, int, int, int, struct sk_buff
*);
1097 struct sockcm_cookie sockc
;
1102 sockc
.tsflags
= sk
->sk_tsflags
;
1104 /* destination address check */
1106 if (addr_len
< offsetof(struct sockaddr
, sa_data
))
1109 switch (sin6
->sin6_family
) {
1111 if (addr_len
< SIN6_LEN_RFC2133
)
1113 daddr
= &sin6
->sin6_addr
;
1114 if (ipv6_addr_any(daddr
) &&
1115 ipv6_addr_v4mapped(&np
->saddr
))
1116 ipv6_addr_set_v4mapped(htonl(INADDR_LOOPBACK
),
1120 goto do_udp_sendmsg
;
1122 msg
->msg_name
= sin6
= NULL
;
1123 msg
->msg_namelen
= addr_len
= 0;
1129 } else if (!up
->pending
) {
1130 if (sk
->sk_state
!= TCP_ESTABLISHED
)
1131 return -EDESTADDRREQ
;
1132 daddr
= &sk
->sk_v6_daddr
;
1137 if (ipv6_addr_v4mapped(daddr
)) {
1138 struct sockaddr_in sin
;
1139 sin
.sin_family
= AF_INET
;
1140 sin
.sin_port
= sin6
? sin6
->sin6_port
: inet
->inet_dport
;
1141 sin
.sin_addr
.s_addr
= daddr
->s6_addr32
[3];
1142 msg
->msg_name
= &sin
;
1143 msg
->msg_namelen
= sizeof(sin
);
1145 if (__ipv6_only_sock(sk
))
1146 return -ENETUNREACH
;
1147 return udp_sendmsg(sk
, msg
, len
);
1151 if (up
->pending
== AF_INET
)
1152 return udp_sendmsg(sk
, msg
, len
);
1154 /* Rough check on arithmetic overflow,
1155 better check is made in ip6_append_data().
1157 if (len
> INT_MAX
- sizeof(struct udphdr
))
1160 getfrag
= is_udplite
? udplite_getfrag
: ip_generic_getfrag
;
1163 * There are pending frames.
1164 * The socket lock must be held while it's corked.
1167 if (likely(up
->pending
)) {
1168 if (unlikely(up
->pending
!= AF_INET6
)) {
1170 return -EAFNOSUPPORT
;
1173 goto do_append_data
;
1177 ulen
+= sizeof(struct udphdr
);
1179 memset(&fl6
, 0, sizeof(fl6
));
1182 if (sin6
->sin6_port
== 0)
1185 fl6
.fl6_dport
= sin6
->sin6_port
;
1186 daddr
= &sin6
->sin6_addr
;
1189 fl6
.flowlabel
= sin6
->sin6_flowinfo
&IPV6_FLOWINFO_MASK
;
1190 if (fl6
.flowlabel
&IPV6_FLOWLABEL_MASK
) {
1191 flowlabel
= fl6_sock_lookup(sk
, fl6
.flowlabel
);
1198 * Otherwise it will be difficult to maintain
1201 if (sk
->sk_state
== TCP_ESTABLISHED
&&
1202 ipv6_addr_equal(daddr
, &sk
->sk_v6_daddr
))
1203 daddr
= &sk
->sk_v6_daddr
;
1205 if (addr_len
>= sizeof(struct sockaddr_in6
) &&
1206 sin6
->sin6_scope_id
&&
1207 __ipv6_addr_needs_scope_id(__ipv6_addr_type(daddr
)))
1208 fl6
.flowi6_oif
= sin6
->sin6_scope_id
;
1210 if (sk
->sk_state
!= TCP_ESTABLISHED
)
1211 return -EDESTADDRREQ
;
1213 fl6
.fl6_dport
= inet
->inet_dport
;
1214 daddr
= &sk
->sk_v6_daddr
;
1215 fl6
.flowlabel
= np
->flow_label
;
1219 if (!fl6
.flowi6_oif
)
1220 fl6
.flowi6_oif
= sk
->sk_bound_dev_if
;
1222 if (!fl6
.flowi6_oif
)
1223 fl6
.flowi6_oif
= np
->sticky_pktinfo
.ipi6_ifindex
;
1225 fl6
.flowi6_mark
= sk
->sk_mark
;
1226 fl6
.flowi6_uid
= sk
->sk_uid
;
1228 if (msg
->msg_controllen
) {
1230 memset(opt
, 0, sizeof(struct ipv6_txoptions
));
1231 opt
->tot_len
= sizeof(*opt
);
1234 err
= ip6_datagram_send_ctl(sock_net(sk
), sk
, msg
, &fl6
, &ipc6
, &sockc
);
1236 fl6_sock_release(flowlabel
);
1239 if ((fl6
.flowlabel
&IPV6_FLOWLABEL_MASK
) && !flowlabel
) {
1240 flowlabel
= fl6_sock_lookup(sk
, fl6
.flowlabel
);
1244 if (!(opt
->opt_nflen
|opt
->opt_flen
))
1249 opt
= txopt_get(np
);
1253 opt
= fl6_merge_options(&opt_space
, flowlabel
, opt
);
1254 opt
= ipv6_fixup_options(&opt_space
, opt
);
1257 fl6
.flowi6_proto
= sk
->sk_protocol
;
1258 if (!ipv6_addr_any(daddr
))
1261 fl6
.daddr
.s6_addr
[15] = 0x1; /* :: means loopback (BSD'ism) */
1262 if (ipv6_addr_any(&fl6
.saddr
) && !ipv6_addr_any(&np
->saddr
))
1263 fl6
.saddr
= np
->saddr
;
1264 fl6
.fl6_sport
= inet
->inet_sport
;
1266 final_p
= fl6_update_dst(&fl6
, opt
, &final
);
1270 if (!fl6
.flowi6_oif
&& ipv6_addr_is_multicast(&fl6
.daddr
)) {
1271 fl6
.flowi6_oif
= np
->mcast_oif
;
1273 } else if (!fl6
.flowi6_oif
)
1274 fl6
.flowi6_oif
= np
->ucast_oif
;
1276 security_sk_classify_flow(sk
, flowi6_to_flowi(&fl6
));
1278 if (ipc6
.tclass
< 0)
1279 ipc6
.tclass
= np
->tclass
;
1281 fl6
.flowlabel
= ip6_make_flowinfo(ipc6
.tclass
, fl6
.flowlabel
);
1283 dst
= ip6_sk_dst_lookup_flow(sk
, &fl6
, final_p
);
1290 if (ipc6
.hlimit
< 0)
1291 ipc6
.hlimit
= ip6_sk_dst_hoplimit(np
, &fl6
, dst
);
1293 if (msg
->msg_flags
&MSG_CONFIRM
)
1297 /* Lockless fast path for the non-corking case */
1299 struct sk_buff
*skb
;
1301 skb
= ip6_make_skb(sk
, getfrag
, msg
, ulen
,
1302 sizeof(struct udphdr
), &ipc6
,
1303 &fl6
, (struct rt6_info
*)dst
,
1304 msg
->msg_flags
, &sockc
);
1306 if (!IS_ERR_OR_NULL(skb
))
1307 err
= udp_v6_send_skb(skb
, &fl6
);
1312 if (unlikely(up
->pending
)) {
1313 /* The socket is already corked while preparing it. */
1314 /* ... which is an evident application bug. --ANK */
1317 net_dbg_ratelimited("udp cork app bug 2\n");
1322 up
->pending
= AF_INET6
;
1325 if (ipc6
.dontfrag
< 0)
1326 ipc6
.dontfrag
= np
->dontfrag
;
1328 err
= ip6_append_data(sk
, getfrag
, msg
, ulen
, sizeof(struct udphdr
),
1329 &ipc6
, &fl6
, (struct rt6_info
*)dst
,
1330 corkreq
? msg
->msg_flags
|MSG_MORE
: msg
->msg_flags
, &sockc
);
1332 udp_v6_flush_pending_frames(sk
);
1334 err
= udp_v6_push_pending_frames(sk
);
1335 else if (unlikely(skb_queue_empty(&sk
->sk_write_queue
)))
1339 err
= np
->recverr
? net_xmit_errno(err
) : 0;
1345 ip6_dst_store(sk
, dst
,
1346 ipv6_addr_equal(&fl6
.daddr
, &sk
->sk_v6_daddr
) ?
1347 &sk
->sk_v6_daddr
: NULL
,
1348 #ifdef CONFIG_IPV6_SUBTREES
1349 ipv6_addr_equal(&fl6
.saddr
, &np
->saddr
) ?
1361 fl6_sock_release(flowlabel
);
1362 txopt_put(opt_to_free
);
1366 * ENOBUFS = no kernel mem, SOCK_NOSPACE = no sndbuf space. Reporting
1367 * ENOBUFS might not be good (it's not tunable per se), but otherwise
1368 * we don't have a good statistic (IpOutDiscards but it can be too many
1369 * things). We could add another new stat but at least for now that
1370 * seems like overkill.
1372 if (err
== -ENOBUFS
|| test_bit(SOCK_NOSPACE
, &sk
->sk_socket
->flags
)) {
1373 UDP6_INC_STATS(sock_net(sk
),
1374 UDP_MIB_SNDBUFERRORS
, is_udplite
);
1379 if (msg
->msg_flags
& MSG_PROBE
)
1380 dst_confirm_neigh(dst
, &fl6
.daddr
);
1381 if (!(msg
->msg_flags
&MSG_PROBE
) || len
)
1382 goto back_from_confirm
;
1387 void udpv6_destroy_sock(struct sock
*sk
)
1389 struct udp_sock
*up
= udp_sk(sk
);
1391 udp_v6_flush_pending_frames(sk
);
1394 if (static_key_false(&udpv6_encap_needed
) && up
->encap_type
) {
1395 void (*encap_destroy
)(struct sock
*sk
);
1396 encap_destroy
= ACCESS_ONCE(up
->encap_destroy
);
1401 inet6_destroy_sock(sk
);
1405 * Socket option code for UDP
1407 int udpv6_setsockopt(struct sock
*sk
, int level
, int optname
,
1408 char __user
*optval
, unsigned int optlen
)
1410 if (level
== SOL_UDP
|| level
== SOL_UDPLITE
)
1411 return udp_lib_setsockopt(sk
, level
, optname
, optval
, optlen
,
1412 udp_v6_push_pending_frames
);
1413 return ipv6_setsockopt(sk
, level
, optname
, optval
, optlen
);
1416 #ifdef CONFIG_COMPAT
1417 int compat_udpv6_setsockopt(struct sock
*sk
, int level
, int optname
,
1418 char __user
*optval
, unsigned int optlen
)
1420 if (level
== SOL_UDP
|| level
== SOL_UDPLITE
)
1421 return udp_lib_setsockopt(sk
, level
, optname
, optval
, optlen
,
1422 udp_v6_push_pending_frames
);
1423 return compat_ipv6_setsockopt(sk
, level
, optname
, optval
, optlen
);
1427 int udpv6_getsockopt(struct sock
*sk
, int level
, int optname
,
1428 char __user
*optval
, int __user
*optlen
)
1430 if (level
== SOL_UDP
|| level
== SOL_UDPLITE
)
1431 return udp_lib_getsockopt(sk
, level
, optname
, optval
, optlen
);
1432 return ipv6_getsockopt(sk
, level
, optname
, optval
, optlen
);
1435 #ifdef CONFIG_COMPAT
1436 int compat_udpv6_getsockopt(struct sock
*sk
, int level
, int optname
,
1437 char __user
*optval
, int __user
*optlen
)
1439 if (level
== SOL_UDP
|| level
== SOL_UDPLITE
)
1440 return udp_lib_getsockopt(sk
, level
, optname
, optval
, optlen
);
1441 return compat_ipv6_getsockopt(sk
, level
, optname
, optval
, optlen
);
1445 static struct inet6_protocol udpv6_protocol
= {
1446 .early_demux
= udp_v6_early_demux
,
1447 .early_demux_handler
= udp_v6_early_demux
,
1448 .handler
= udpv6_rcv
,
1449 .err_handler
= udpv6_err
,
1450 .flags
= INET6_PROTO_NOPOLICY
|INET6_PROTO_FINAL
,
1453 /* ------------------------------------------------------------------------ */
1454 #ifdef CONFIG_PROC_FS
1455 int udp6_seq_show(struct seq_file
*seq
, void *v
)
1457 if (v
== SEQ_START_TOKEN
) {
1458 seq_puts(seq
, IPV6_SEQ_DGRAM_HEADER
);
1460 int bucket
= ((struct udp_iter_state
*)seq
->private)->bucket
;
1461 struct inet_sock
*inet
= inet_sk(v
);
1462 __u16 srcp
= ntohs(inet
->inet_sport
);
1463 __u16 destp
= ntohs(inet
->inet_dport
);
1464 ip6_dgram_sock_seq_show(seq
, v
, srcp
, destp
, bucket
);
1469 static const struct file_operations udp6_afinfo_seq_fops
= {
1470 .owner
= THIS_MODULE
,
1471 .open
= udp_seq_open
,
1473 .llseek
= seq_lseek
,
1474 .release
= seq_release_net
1477 static struct udp_seq_afinfo udp6_seq_afinfo
= {
1480 .udp_table
= &udp_table
,
1481 .seq_fops
= &udp6_afinfo_seq_fops
,
1483 .show
= udp6_seq_show
,
1487 int __net_init
udp6_proc_init(struct net
*net
)
1489 return udp_proc_register(net
, &udp6_seq_afinfo
);
1492 void udp6_proc_exit(struct net
*net
)
1494 udp_proc_unregister(net
, &udp6_seq_afinfo
);
1496 #endif /* CONFIG_PROC_FS */
1498 /* ------------------------------------------------------------------------ */
1500 struct proto udpv6_prot
= {
1502 .owner
= THIS_MODULE
,
1503 .close
= udp_lib_close
,
1504 .connect
= ip6_datagram_connect
,
1505 .disconnect
= udp_disconnect
,
1507 .init
= udp_init_sock
,
1508 .destroy
= udpv6_destroy_sock
,
1509 .setsockopt
= udpv6_setsockopt
,
1510 .getsockopt
= udpv6_getsockopt
,
1511 .sendmsg
= udpv6_sendmsg
,
1512 .recvmsg
= udpv6_recvmsg
,
1513 .release_cb
= ip6_datagram_release_cb
,
1514 .hash
= udp_lib_hash
,
1515 .unhash
= udp_lib_unhash
,
1516 .rehash
= udp_v6_rehash
,
1517 .get_port
= udp_v6_get_port
,
1518 .memory_allocated
= &udp_memory_allocated
,
1519 .sysctl_mem
= sysctl_udp_mem
,
1520 .sysctl_wmem
= &sysctl_udp_wmem_min
,
1521 .sysctl_rmem
= &sysctl_udp_rmem_min
,
1522 .obj_size
= sizeof(struct udp6_sock
),
1523 .h
.udp_table
= &udp_table
,
1524 #ifdef CONFIG_COMPAT
1525 .compat_setsockopt
= compat_udpv6_setsockopt
,
1526 .compat_getsockopt
= compat_udpv6_getsockopt
,
1528 .diag_destroy
= udp_abort
,
1531 static struct inet_protosw udpv6_protosw
= {
1533 .protocol
= IPPROTO_UDP
,
1534 .prot
= &udpv6_prot
,
1535 .ops
= &inet6_dgram_ops
,
1536 .flags
= INET_PROTOSW_PERMANENT
,
1539 int __init
udpv6_init(void)
1543 ret
= inet6_add_protocol(&udpv6_protocol
, IPPROTO_UDP
);
1547 ret
= inet6_register_protosw(&udpv6_protosw
);
1549 goto out_udpv6_protocol
;
1554 inet6_del_protocol(&udpv6_protocol
, IPPROTO_UDP
);
1558 void udpv6_exit(void)
1560 inet6_unregister_protosw(&udpv6_protosw
);
1561 inet6_del_protocol(&udpv6_protocol
, IPPROTO_UDP
);