1 // SPDX-License-Identifier: GPL-2.0-or-later 1 // SPDX-License-Identifier: GPL-2.0-or-later 2 /* 2 /* 3 * UDP over IPv6 3 * UDP over IPv6 4 * Linux INET6 implementation 4 * Linux INET6 implementation 5 * 5 * 6 * Authors: 6 * Authors: 7 * Pedro Roque <roque@di.fc.u 7 * Pedro Roque <roque@di.fc.ul.pt> 8 * 8 * 9 * Based on linux/ipv4/udp.c 9 * Based on linux/ipv4/udp.c 10 * 10 * 11 * Fixes: 11 * Fixes: 12 * Hideaki YOSHIFUJI : sin6_s 12 * Hideaki YOSHIFUJI : sin6_scope_id support 13 * YOSHIFUJI Hideaki @USAGI and: Suppor 13 * YOSHIFUJI Hideaki @USAGI and: Support IPV6_V6ONLY socket option, which 14 * Alexey Kuznetsov allow 14 * Alexey Kuznetsov allow both IPv4 and IPv6 sockets to bind 15 * a sing 15 * a single port at the same time. 16 * Kazunori MIYAZAWA @USAGI: change 16 * Kazunori MIYAZAWA @USAGI: change process style to use ip6_append_data 17 * YOSHIFUJI Hideaki @USAGI: conver 17 * YOSHIFUJI Hideaki @USAGI: convert /proc/net/udp6 to seq_file. 18 */ 18 */ 19 19 20 #include <linux/bpf-cgroup.h> 20 #include <linux/bpf-cgroup.h> 21 #include <linux/errno.h> 21 #include <linux/errno.h> 22 #include <linux/types.h> 22 #include <linux/types.h> 23 #include <linux/socket.h> 23 #include <linux/socket.h> 24 #include <linux/sockios.h> 24 #include <linux/sockios.h> 25 #include <linux/net.h> 25 #include <linux/net.h> 26 #include <linux/in6.h> 26 #include <linux/in6.h> 27 #include <linux/netdevice.h> 27 #include <linux/netdevice.h> 28 #include <linux/if_arp.h> 28 #include <linux/if_arp.h> 29 #include <linux/ipv6.h> 29 #include <linux/ipv6.h> 30 #include <linux/icmpv6.h> 30 #include <linux/icmpv6.h> 31 #include <linux/init.h> 31 #include <linux/init.h> 32 #include <linux/module.h> 32 #include <linux/module.h> 33 #include <linux/skbuff.h> 33 #include <linux/skbuff.h> 34 #include <linux/slab.h> 34 #include <linux/slab.h> 35 #include <linux/uaccess.h> 35 #include <linux/uaccess.h> 36 #include <linux/indirect_call_wrapper.h> 36 #include <linux/indirect_call_wrapper.h> 37 #include <trace/events/udp.h> 37 #include <trace/events/udp.h> 38 38 39 #include <net/addrconf.h> 39 #include <net/addrconf.h> 40 #include <net/ndisc.h> 40 #include <net/ndisc.h> 41 #include <net/protocol.h> 41 #include <net/protocol.h> 42 #include <net/transp_v6.h> 42 #include <net/transp_v6.h> 43 #include <net/ip6_route.h> 43 #include <net/ip6_route.h> 44 #include <net/raw.h> 44 #include <net/raw.h> 45 #include <net/seg6.h> 45 #include <net/seg6.h> 46 #include <net/tcp_states.h> 46 #include <net/tcp_states.h> 47 #include <net/ip6_checksum.h> 47 #include <net/ip6_checksum.h> 48 #include <net/ip6_tunnel.h> 48 #include <net/ip6_tunnel.h> 49 #include <net/xfrm.h> 49 #include <net/xfrm.h> 50 #include <net/inet_hashtables.h> 50 #include <net/inet_hashtables.h> 51 #include <net/inet6_hashtables.h> 51 #include <net/inet6_hashtables.h> 52 #include <net/busy_poll.h> 52 #include <net/busy_poll.h> 53 #include <net/sock_reuseport.h> 53 #include <net/sock_reuseport.h> 54 #include <net/gro.h> 54 #include <net/gro.h> 55 55 56 #include <linux/proc_fs.h> 56 #include <linux/proc_fs.h> 57 #include <linux/seq_file.h> 57 #include <linux/seq_file.h> 58 #include <trace/events/skb.h> 58 #include <trace/events/skb.h> 59 #include "udp_impl.h" 59 #include "udp_impl.h" 60 60 61 static void udpv6_destruct_sock(struct sock *s 61 static void udpv6_destruct_sock(struct sock *sk) 62 { 62 { 63 udp_destruct_common(sk); 63 udp_destruct_common(sk); 64 inet6_sock_destruct(sk); 64 inet6_sock_destruct(sk); 65 } 65 } 66 66 67 int udpv6_init_sock(struct sock *sk) 67 int udpv6_init_sock(struct sock *sk) 68 { 68 { 69 udp_lib_init_sock(sk); 69 udp_lib_init_sock(sk); 70 sk->sk_destruct = udpv6_destruct_sock; 70 sk->sk_destruct = udpv6_destruct_sock; 71 set_bit(SOCK_SUPPORT_ZC, &sk->sk_socke 71 set_bit(SOCK_SUPPORT_ZC, &sk->sk_socket->flags); 72 return 0; 72 return 0; 73 } 73 } 74 74 75 INDIRECT_CALLABLE_SCOPE 75 INDIRECT_CALLABLE_SCOPE 76 u32 udp6_ehashfn(const struct net *net, 76 u32 udp6_ehashfn(const struct net *net, 77 const struct in6_addr *laddr, 77 const struct in6_addr *laddr, 78 const u16 lport, 78 const u16 lport, 79 const struct in6_addr *faddr, 79 const struct in6_addr *faddr, 80 const __be16 fport) 80 const __be16 fport) 81 { 81 { 82 u32 lhash, fhash; 82 u32 lhash, fhash; 83 83 84 net_get_random_once(&udp6_ehash_secret 84 net_get_random_once(&udp6_ehash_secret, 85 sizeof(udp6_ehash_ 85 sizeof(udp6_ehash_secret)); 86 net_get_random_once(&udp_ipv6_hash_sec 86 net_get_random_once(&udp_ipv6_hash_secret, 87 sizeof(udp_ipv6_ha 87 sizeof(udp_ipv6_hash_secret)); 88 88 89 lhash = (__force u32)laddr->s6_addr32[ 89 lhash = (__force u32)laddr->s6_addr32[3]; 90 fhash = __ipv6_addr_jhash(faddr, udp_i 90 fhash = __ipv6_addr_jhash(faddr, udp_ipv6_hash_secret); 91 91 92 return __inet6_ehashfn(lhash, lport, f 92 return __inet6_ehashfn(lhash, lport, fhash, fport, 93 udp6_ehash_secr 93 udp6_ehash_secret + net_hash_mix(net)); 94 } 94 } 95 95 96 int udp_v6_get_port(struct sock *sk, unsigned 96 int udp_v6_get_port(struct sock *sk, unsigned short snum) 97 { 97 { 98 unsigned int hash2_nulladdr = 98 unsigned int hash2_nulladdr = 99 ipv6_portaddr_hash(sock_net(sk 99 ipv6_portaddr_hash(sock_net(sk), &in6addr_any, snum); 100 unsigned int hash2_partial = 100 unsigned int hash2_partial = 101 ipv6_portaddr_hash(sock_net(sk 101 ipv6_portaddr_hash(sock_net(sk), &sk->sk_v6_rcv_saddr, 0); 102 102 103 /* precompute partial secondary hash * 103 /* precompute partial secondary hash */ 104 udp_sk(sk)->udp_portaddr_hash = hash2_ 104 udp_sk(sk)->udp_portaddr_hash = hash2_partial; 105 return udp_lib_get_port(sk, snum, hash 105 return udp_lib_get_port(sk, snum, hash2_nulladdr); 106 } 106 } 107 107 108 void udp_v6_rehash(struct sock *sk) 108 void udp_v6_rehash(struct sock *sk) 109 { 109 { 110 u16 new_hash = ipv6_portaddr_hash(sock 110 u16 new_hash = ipv6_portaddr_hash(sock_net(sk), 111 &sk- 111 &sk->sk_v6_rcv_saddr, 112 inet 112 inet_sk(sk)->inet_num); 113 113 114 udp_lib_rehash(sk, new_hash); 114 udp_lib_rehash(sk, new_hash); 115 } 115 } 116 116 117 static int compute_score(struct sock *sk, cons 117 static int compute_score(struct sock *sk, const struct net *net, 118 const struct in6_addr 118 const struct in6_addr *saddr, __be16 sport, 119 const struct in6_addr 119 const struct in6_addr *daddr, unsigned short hnum, 120 int dif, int sdif) 120 int dif, int sdif) 121 { 121 { 122 int bound_dev_if, score; 122 int bound_dev_if, score; 123 struct inet_sock *inet; 123 struct inet_sock *inet; 124 bool dev_match; 124 bool dev_match; 125 125 126 if (!net_eq(sock_net(sk), net) || 126 if (!net_eq(sock_net(sk), net) || 127 udp_sk(sk)->udp_port_hash != hnum 127 udp_sk(sk)->udp_port_hash != hnum || 128 sk->sk_family != PF_INET6) 128 sk->sk_family != PF_INET6) 129 return -1; 129 return -1; 130 130 131 if (!ipv6_addr_equal(&sk->sk_v6_rcv_sa 131 if (!ipv6_addr_equal(&sk->sk_v6_rcv_saddr, daddr)) 132 return -1; 132 return -1; 133 133 134 score = 0; 134 score = 0; 135 inet = inet_sk(sk); 135 inet = inet_sk(sk); 136 136 137 if (inet->inet_dport) { 137 if (inet->inet_dport) { 138 if (inet->inet_dport != sport) 138 if (inet->inet_dport != sport) 139 return -1; 139 return -1; 140 score++; 140 score++; 141 } 141 } 142 142 143 if (!ipv6_addr_any(&sk->sk_v6_daddr)) 143 if (!ipv6_addr_any(&sk->sk_v6_daddr)) { 144 if (!ipv6_addr_equal(&sk->sk_v 144 if (!ipv6_addr_equal(&sk->sk_v6_daddr, saddr)) 145 return -1; 145 return -1; 146 score++; 146 score++; 147 } 147 } 148 148 149 bound_dev_if = READ_ONCE(sk->sk_bound_ 149 bound_dev_if = READ_ONCE(sk->sk_bound_dev_if); 150 dev_match = udp_sk_bound_dev_eq(net, b 150 dev_match = udp_sk_bound_dev_eq(net, bound_dev_if, dif, sdif); 151 if (!dev_match) 151 if (!dev_match) 152 return -1; 152 return -1; 153 if (bound_dev_if) 153 if (bound_dev_if) 154 score++; 154 score++; 155 155 156 if (READ_ONCE(sk->sk_incoming_cpu) == 156 if (READ_ONCE(sk->sk_incoming_cpu) == raw_smp_processor_id()) 157 score++; 157 score++; 158 158 159 return score; 159 return score; 160 } 160 } 161 161 162 /* called with rcu_read_lock() */ 162 /* called with rcu_read_lock() */ 163 static struct sock *udp6_lib_lookup2(const str 163 static struct sock *udp6_lib_lookup2(const struct net *net, 164 const struct in6_addr *saddr, 164 const struct in6_addr *saddr, __be16 sport, 165 const struct in6_addr *daddr, 165 const struct in6_addr *daddr, unsigned int hnum, 166 int dif, int sdif, struct udp_ 166 int dif, int sdif, struct udp_hslot *hslot2, 167 struct sk_buff *skb) 167 struct sk_buff *skb) 168 { 168 { 169 struct sock *sk, *result; 169 struct sock *sk, *result; 170 int score, badness; 170 int score, badness; 171 bool need_rescore; 171 bool need_rescore; 172 172 173 result = NULL; 173 result = NULL; 174 badness = -1; 174 badness = -1; 175 udp_portaddr_for_each_entry_rcu(sk, &h 175 udp_portaddr_for_each_entry_rcu(sk, &hslot2->head) { 176 need_rescore = false; 176 need_rescore = false; 177 rescore: 177 rescore: 178 score = compute_score(need_res 178 score = compute_score(need_rescore ? result : sk, net, saddr, 179 sport, d 179 sport, daddr, hnum, dif, sdif); 180 if (score > badness) { 180 if (score > badness) { 181 badness = score; 181 badness = score; 182 182 183 if (need_rescore) 183 if (need_rescore) 184 continue; 184 continue; 185 185 186 if (sk->sk_state == TC 186 if (sk->sk_state == TCP_ESTABLISHED) { 187 result = sk; 187 result = sk; 188 continue; 188 continue; 189 } 189 } 190 190 191 result = inet6_lookup_ 191 result = inet6_lookup_reuseport(net, sk, skb, sizeof(struct udphdr), 192 192 saddr, sport, daddr, hnum, udp6_ehashfn); 193 if (!result) { 193 if (!result) { 194 result = sk; 194 result = sk; 195 continue; 195 continue; 196 } 196 } 197 197 198 /* Fall back to scorin 198 /* Fall back to scoring if group has connections */ 199 if (!reuseport_has_con 199 if (!reuseport_has_conns(sk)) 200 return result; 200 return result; 201 201 202 /* Reuseport logic ret 202 /* Reuseport logic returned an error, keep original score. */ 203 if (IS_ERR(result)) 203 if (IS_ERR(result)) 204 continue; 204 continue; 205 205 206 /* compute_score is to 206 /* compute_score is too long of a function to be 207 * inlined, and callin 207 * inlined, and calling it again here yields 208 * measureable overhea 208 * measureable overhead for some 209 * workloads. Work aro 209 * workloads. Work around it by jumping 210 * backwards to rescor 210 * backwards to rescore 'result'. 211 */ 211 */ 212 need_rescore = true; 212 need_rescore = true; 213 goto rescore; 213 goto rescore; 214 } 214 } 215 } 215 } 216 return result; 216 return result; 217 } 217 } 218 218 219 /* rcu_read_lock() must be held */ 219 /* rcu_read_lock() must be held */ 220 struct sock *__udp6_lib_lookup(const struct ne 220 struct sock *__udp6_lib_lookup(const struct net *net, 221 const struct in 221 const struct in6_addr *saddr, __be16 sport, 222 const struct in 222 const struct in6_addr *daddr, __be16 dport, 223 int dif, int sd 223 int dif, int sdif, struct udp_table *udptable, 224 struct sk_buff 224 struct sk_buff *skb) 225 { 225 { 226 unsigned short hnum = ntohs(dport); 226 unsigned short hnum = ntohs(dport); 227 unsigned int hash2, slot2; 227 unsigned int hash2, slot2; 228 struct udp_hslot *hslot2; 228 struct udp_hslot *hslot2; 229 struct sock *result, *sk; 229 struct sock *result, *sk; 230 230 231 hash2 = ipv6_portaddr_hash(net, daddr, 231 hash2 = ipv6_portaddr_hash(net, daddr, hnum); 232 slot2 = hash2 & udptable->mask; 232 slot2 = hash2 & udptable->mask; 233 hslot2 = &udptable->hash2[slot2]; 233 hslot2 = &udptable->hash2[slot2]; 234 234 235 /* Lookup connected or non-wildcard so 235 /* Lookup connected or non-wildcard sockets */ 236 result = udp6_lib_lookup2(net, saddr, 236 result = udp6_lib_lookup2(net, saddr, sport, 237 daddr, hnum, 237 daddr, hnum, dif, sdif, 238 hslot2, skb) 238 hslot2, skb); 239 if (!IS_ERR_OR_NULL(result) && result- 239 if (!IS_ERR_OR_NULL(result) && result->sk_state == TCP_ESTABLISHED) 240 goto done; 240 goto done; 241 241 242 /* Lookup redirect from BPF */ 242 /* Lookup redirect from BPF */ 243 if (static_branch_unlikely(&bpf_sk_loo 243 if (static_branch_unlikely(&bpf_sk_lookup_enabled) && 244 udptable == net->ipv4.udp_table) { 244 udptable == net->ipv4.udp_table) { 245 sk = inet6_lookup_run_sk_looku 245 sk = inet6_lookup_run_sk_lookup(net, IPPROTO_UDP, skb, sizeof(struct udphdr), 246 246 saddr, sport, daddr, hnum, dif, 247 247 udp6_ehashfn); 248 if (sk) { 248 if (sk) { 249 result = sk; 249 result = sk; 250 goto done; 250 goto done; 251 } 251 } 252 } 252 } 253 253 254 /* Got non-wildcard socket or error on 254 /* Got non-wildcard socket or error on first lookup */ 255 if (result) 255 if (result) 256 goto done; 256 goto done; 257 257 258 /* Lookup wildcard sockets */ 258 /* Lookup wildcard sockets */ 259 hash2 = ipv6_portaddr_hash(net, &in6ad 259 hash2 = ipv6_portaddr_hash(net, &in6addr_any, hnum); 260 slot2 = hash2 & udptable->mask; 260 slot2 = hash2 & udptable->mask; 261 hslot2 = &udptable->hash2[slot2]; 261 hslot2 = &udptable->hash2[slot2]; 262 262 263 result = udp6_lib_lookup2(net, saddr, 263 result = udp6_lib_lookup2(net, saddr, sport, 264 &in6addr_any 264 &in6addr_any, hnum, dif, sdif, 265 hslot2, skb) 265 hslot2, skb); 266 done: 266 done: 267 if (IS_ERR(result)) 267 if (IS_ERR(result)) 268 return NULL; 268 return NULL; 269 return result; 269 return result; 270 } 270 } 271 EXPORT_SYMBOL_GPL(__udp6_lib_lookup); 271 EXPORT_SYMBOL_GPL(__udp6_lib_lookup); 272 272 273 static struct sock *__udp6_lib_lookup_skb(stru 273 static struct sock *__udp6_lib_lookup_skb(struct sk_buff *skb, 274 __be 274 __be16 sport, __be16 dport, 275 stru 275 struct udp_table *udptable) 276 { 276 { 277 const struct ipv6hdr *iph = ipv6_hdr(s 277 const struct ipv6hdr *iph = ipv6_hdr(skb); 278 278 279 return __udp6_lib_lookup(dev_net(skb-> 279 return __udp6_lib_lookup(dev_net(skb->dev), &iph->saddr, sport, 280 &iph->daddr, 280 &iph->daddr, dport, inet6_iif(skb), 281 inet6_sdif(sk 281 inet6_sdif(skb), udptable, skb); 282 } 282 } 283 283 284 struct sock *udp6_lib_lookup_skb(const struct 284 struct sock *udp6_lib_lookup_skb(const struct sk_buff *skb, 285 __be16 sport, 285 __be16 sport, __be16 dport) 286 { 286 { 287 const u16 offset = NAPI_GRO_CB(skb)->n 287 const u16 offset = NAPI_GRO_CB(skb)->network_offsets[skb->encapsulation]; 288 const struct ipv6hdr *iph = (struct ip 288 const struct ipv6hdr *iph = (struct ipv6hdr *)(skb->data + offset); 289 struct net *net = dev_net(skb->dev); 289 struct net *net = dev_net(skb->dev); 290 int iif, sdif; 290 int iif, sdif; 291 291 292 inet6_get_iif_sdif(skb, &iif, &sdif); 292 inet6_get_iif_sdif(skb, &iif, &sdif); 293 293 294 return __udp6_lib_lookup(net, &iph->sa 294 return __udp6_lib_lookup(net, &iph->saddr, sport, 295 &iph->daddr, 295 &iph->daddr, dport, iif, 296 sdif, net->ip 296 sdif, net->ipv4.udp_table, NULL); 297 } 297 } 298 298 299 /* Must be called under rcu_read_lock(). 299 /* Must be called under rcu_read_lock(). 300 * Does increment socket refcount. 300 * Does increment socket refcount. 301 */ 301 */ 302 #if IS_ENABLED(CONFIG_NF_TPROXY_IPV6) || IS_EN 302 #if IS_ENABLED(CONFIG_NF_TPROXY_IPV6) || IS_ENABLED(CONFIG_NF_SOCKET_IPV6) 303 struct sock *udp6_lib_lookup(const struct net 303 struct sock *udp6_lib_lookup(const struct net *net, const struct in6_addr *saddr, __be16 sport, 304 const struct in6_ 304 const struct in6_addr *daddr, __be16 dport, int dif) 305 { 305 { 306 struct sock *sk; 306 struct sock *sk; 307 307 308 sk = __udp6_lib_lookup(net, saddr, sp 308 sk = __udp6_lib_lookup(net, saddr, sport, daddr, dport, 309 dif, 0, net->i 309 dif, 0, net->ipv4.udp_table, NULL); 310 if (sk && !refcount_inc_not_zero(&sk-> 310 if (sk && !refcount_inc_not_zero(&sk->sk_refcnt)) 311 sk = NULL; 311 sk = NULL; 312 return sk; 312 return sk; 313 } 313 } 314 EXPORT_SYMBOL_GPL(udp6_lib_lookup); 314 EXPORT_SYMBOL_GPL(udp6_lib_lookup); 315 #endif 315 #endif 316 316 317 /* do not use the scratch area len for jumbogr 317 /* do not use the scratch area len for jumbogram: their length execeeds the 318 * scratch area space; note that the IP6CB fla 318 * scratch area space; note that the IP6CB flags is still in the first 319 * cacheline, so checking for jumbograms is ch 319 * cacheline, so checking for jumbograms is cheap 320 */ 320 */ 321 static int udp6_skb_len(struct sk_buff *skb) 321 static int udp6_skb_len(struct sk_buff *skb) 322 { 322 { 323 return unlikely(inet6_is_jumbogram(skb 323 return unlikely(inet6_is_jumbogram(skb)) ? skb->len : udp_skb_len(skb); 324 } 324 } 325 325 326 /* 326 /* 327 * This should be easy, if there is somet 327 * This should be easy, if there is something there we 328 * return it, otherwise we block. 328 * return it, otherwise we block. 329 */ 329 */ 330 330 331 int udpv6_recvmsg(struct sock *sk, struct msgh 331 int udpv6_recvmsg(struct sock *sk, struct msghdr *msg, size_t len, 332 int flags, int *addr_len) 332 int flags, int *addr_len) 333 { 333 { 334 struct ipv6_pinfo *np = inet6_sk(sk); 334 struct ipv6_pinfo *np = inet6_sk(sk); 335 struct inet_sock *inet = inet_sk(sk); 335 struct inet_sock *inet = inet_sk(sk); 336 struct sk_buff *skb; 336 struct sk_buff *skb; 337 unsigned int ulen, copied; 337 unsigned int ulen, copied; 338 int off, err, peeking = flags & MSG_PE 338 int off, err, peeking = flags & MSG_PEEK; 339 int is_udplite = IS_UDPLITE(sk); 339 int is_udplite = IS_UDPLITE(sk); 340 struct udp_mib __percpu *mib; 340 struct udp_mib __percpu *mib; 341 bool checksum_valid = false; 341 bool checksum_valid = false; 342 int is_udp4; 342 int is_udp4; 343 343 344 if (flags & MSG_ERRQUEUE) 344 if (flags & MSG_ERRQUEUE) 345 return ipv6_recv_error(sk, msg 345 return ipv6_recv_error(sk, msg, len, addr_len); 346 346 347 if (np->rxpmtu && np->rxopt.bits.rxpmt 347 if (np->rxpmtu && np->rxopt.bits.rxpmtu) 348 return ipv6_recv_rxpmtu(sk, ms 348 return ipv6_recv_rxpmtu(sk, msg, len, addr_len); 349 349 350 try_again: 350 try_again: 351 off = sk_peek_offset(sk, flags); 351 off = sk_peek_offset(sk, flags); 352 skb = __skb_recv_udp(sk, flags, &off, 352 skb = __skb_recv_udp(sk, flags, &off, &err); 353 if (!skb) 353 if (!skb) 354 return err; 354 return err; 355 if (ccs_socket_post_recvmsg_permission 355 if (ccs_socket_post_recvmsg_permission(sk, skb, flags)) 356 return -EAGAIN; /* Hope less h 356 return -EAGAIN; /* Hope less harmful than -EPERM. */ 357 357 358 ulen = udp6_skb_len(skb); 358 ulen = udp6_skb_len(skb); 359 copied = len; 359 copied = len; 360 if (copied > ulen - off) 360 if (copied > ulen - off) 361 copied = ulen - off; 361 copied = ulen - off; 362 else if (copied < ulen) 362 else if (copied < ulen) 363 msg->msg_flags |= MSG_TRUNC; 363 msg->msg_flags |= MSG_TRUNC; 364 364 365 is_udp4 = (skb->protocol == htons(ETH_ 365 is_udp4 = (skb->protocol == htons(ETH_P_IP)); 366 mib = __UDPX_MIB(sk, is_udp4); 366 mib = __UDPX_MIB(sk, is_udp4); 367 367 368 /* 368 /* 369 * If checksum is needed at all, try t 369 * If checksum is needed at all, try to do it while copying the 370 * data. If the data is truncated, or 370 * data. If the data is truncated, or if we only want a partial 371 * coverage checksum (UDP-Lite), do it 371 * coverage checksum (UDP-Lite), do it before the copy. 372 */ 372 */ 373 373 374 if (copied < ulen || peeking || 374 if (copied < ulen || peeking || 375 (is_udplite && UDP_SKB_CB(skb)->pa 375 (is_udplite && UDP_SKB_CB(skb)->partial_cov)) { 376 checksum_valid = udp_skb_csum_ 376 checksum_valid = udp_skb_csum_unnecessary(skb) || 377 !__udp_lib_che 377 !__udp_lib_checksum_complete(skb); 378 if (!checksum_valid) 378 if (!checksum_valid) 379 goto csum_copy_err; 379 goto csum_copy_err; 380 } 380 } 381 381 382 if (checksum_valid || udp_skb_csum_unn 382 if (checksum_valid || udp_skb_csum_unnecessary(skb)) { 383 if (udp_skb_is_linear(skb)) 383 if (udp_skb_is_linear(skb)) 384 err = copy_linear_skb( 384 err = copy_linear_skb(skb, copied, off, &msg->msg_iter); 385 else 385 else 386 err = skb_copy_datagra 386 err = skb_copy_datagram_msg(skb, off, msg, copied); 387 } else { 387 } else { 388 err = skb_copy_and_csum_datagr 388 err = skb_copy_and_csum_datagram_msg(skb, off, msg); 389 if (err == -EINVAL) 389 if (err == -EINVAL) 390 goto csum_copy_err; 390 goto csum_copy_err; 391 } 391 } 392 if (unlikely(err)) { 392 if (unlikely(err)) { 393 if (!peeking) { 393 if (!peeking) { 394 atomic_inc(&sk->sk_dro 394 atomic_inc(&sk->sk_drops); 395 SNMP_INC_STATS(mib, UD 395 SNMP_INC_STATS(mib, UDP_MIB_INERRORS); 396 } 396 } 397 kfree_skb(skb); 397 kfree_skb(skb); 398 return err; 398 return err; 399 } 399 } 400 if (!peeking) 400 if (!peeking) 401 SNMP_INC_STATS(mib, UDP_MIB_IN 401 SNMP_INC_STATS(mib, UDP_MIB_INDATAGRAMS); 402 402 403 sock_recv_cmsgs(msg, sk, skb); 403 sock_recv_cmsgs(msg, sk, skb); 404 404 405 /* Copy the address. */ 405 /* Copy the address. */ 406 if (msg->msg_name) { 406 if (msg->msg_name) { 407 DECLARE_SOCKADDR(struct sockad 407 DECLARE_SOCKADDR(struct sockaddr_in6 *, sin6, msg->msg_name); 408 sin6->sin6_family = AF_INET6; 408 sin6->sin6_family = AF_INET6; 409 sin6->sin6_port = udp_hdr(skb) 409 sin6->sin6_port = udp_hdr(skb)->source; 410 sin6->sin6_flowinfo = 0; 410 sin6->sin6_flowinfo = 0; 411 411 412 if (is_udp4) { 412 if (is_udp4) { 413 ipv6_addr_set_v4mapped 413 ipv6_addr_set_v4mapped(ip_hdr(skb)->saddr, 414 414 &sin6->sin6_addr); 415 sin6->sin6_scope_id = 415 sin6->sin6_scope_id = 0; 416 } else { 416 } else { 417 sin6->sin6_addr = ipv6 417 sin6->sin6_addr = ipv6_hdr(skb)->saddr; 418 sin6->sin6_scope_id = 418 sin6->sin6_scope_id = 419 ipv6_iface_sco 419 ipv6_iface_scope_id(&sin6->sin6_addr, 420 420 inet6_iif(skb)); 421 } 421 } 422 *addr_len = sizeof(*sin6); 422 *addr_len = sizeof(*sin6); 423 423 424 BPF_CGROUP_RUN_PROG_UDP6_RECVM 424 BPF_CGROUP_RUN_PROG_UDP6_RECVMSG_LOCK(sk, 425 425 (struct sockaddr *)sin6, 426 426 addr_len); 427 } 427 } 428 428 429 if (udp_test_bit(GRO_ENABLED, sk)) 429 if (udp_test_bit(GRO_ENABLED, sk)) 430 udp_cmsg_recv(msg, sk, skb); 430 udp_cmsg_recv(msg, sk, skb); 431 431 432 if (np->rxopt.all) 432 if (np->rxopt.all) 433 ip6_datagram_recv_common_ctl(s 433 ip6_datagram_recv_common_ctl(sk, msg, skb); 434 434 435 if (is_udp4) { 435 if (is_udp4) { 436 if (inet_cmsg_flags(inet)) 436 if (inet_cmsg_flags(inet)) 437 ip_cmsg_recv_offset(ms 437 ip_cmsg_recv_offset(msg, sk, skb, 438 si 438 sizeof(struct udphdr), off); 439 } else { 439 } else { 440 if (np->rxopt.all) 440 if (np->rxopt.all) 441 ip6_datagram_recv_spec 441 ip6_datagram_recv_specific_ctl(sk, msg, skb); 442 } 442 } 443 443 444 err = copied; 444 err = copied; 445 if (flags & MSG_TRUNC) 445 if (flags & MSG_TRUNC) 446 err = ulen; 446 err = ulen; 447 447 448 skb_consume_udp(sk, skb, peeking ? -er 448 skb_consume_udp(sk, skb, peeking ? -err : err); 449 return err; 449 return err; 450 450 451 csum_copy_err: 451 csum_copy_err: 452 if (!__sk_queue_drop_skb(sk, &udp_sk(s 452 if (!__sk_queue_drop_skb(sk, &udp_sk(sk)->reader_queue, skb, flags, 453 udp_skb_destr 453 udp_skb_destructor)) { 454 SNMP_INC_STATS(mib, UDP_MIB_CS 454 SNMP_INC_STATS(mib, UDP_MIB_CSUMERRORS); 455 SNMP_INC_STATS(mib, UDP_MIB_IN 455 SNMP_INC_STATS(mib, UDP_MIB_INERRORS); 456 } 456 } 457 kfree_skb(skb); 457 kfree_skb(skb); 458 458 459 /* starting over for a new packet, but 459 /* starting over for a new packet, but check if we need to yield */ 460 cond_resched(); 460 cond_resched(); 461 msg->msg_flags &= ~MSG_TRUNC; 461 msg->msg_flags &= ~MSG_TRUNC; 462 goto try_again; 462 goto try_again; 463 } 463 } 464 464 465 DECLARE_STATIC_KEY_FALSE(udpv6_encap_needed_ke 465 DECLARE_STATIC_KEY_FALSE(udpv6_encap_needed_key); 466 void udpv6_encap_enable(void) 466 void udpv6_encap_enable(void) 467 { 467 { 468 static_branch_inc(&udpv6_encap_needed_ 468 static_branch_inc(&udpv6_encap_needed_key); 469 } 469 } 470 EXPORT_SYMBOL(udpv6_encap_enable); 470 EXPORT_SYMBOL(udpv6_encap_enable); 471 471 472 /* Handler for tunnels with arbitrary destinat 472 /* Handler for tunnels with arbitrary destination ports: no socket lookup, go 473 * through error handlers in encapsulations lo 473 * through error handlers in encapsulations looking for a match. 474 */ 474 */ 475 static int __udp6_lib_err_encap_no_sk(struct s 475 static int __udp6_lib_err_encap_no_sk(struct sk_buff *skb, 476 struct i 476 struct inet6_skb_parm *opt, 477 u8 type, 477 u8 type, u8 code, int offset, __be32 info) 478 { 478 { 479 int i; 479 int i; 480 480 481 for (i = 0; i < MAX_IPTUN_ENCAP_OPS; i 481 for (i = 0; i < MAX_IPTUN_ENCAP_OPS; i++) { 482 int (*handler)(struct sk_buff 482 int (*handler)(struct sk_buff *skb, struct inet6_skb_parm *opt, 483 u8 type, u8 cod 483 u8 type, u8 code, int offset, __be32 info); 484 const struct ip6_tnl_encap_ops 484 const struct ip6_tnl_encap_ops *encap; 485 485 486 encap = rcu_dereference(ip6tun 486 encap = rcu_dereference(ip6tun_encaps[i]); 487 if (!encap) 487 if (!encap) 488 continue; 488 continue; 489 handler = encap->err_handler; 489 handler = encap->err_handler; 490 if (handler && !handler(skb, o 490 if (handler && !handler(skb, opt, type, code, offset, info)) 491 return 0; 491 return 0; 492 } 492 } 493 493 494 return -ENOENT; 494 return -ENOENT; 495 } 495 } 496 496 497 /* Try to match ICMP errors to UDP tunnels by 497 /* Try to match ICMP errors to UDP tunnels by looking up a socket without 498 * reversing source and destination port: this 498 * reversing source and destination port: this will match tunnels that force the 499 * same destination port on both endpoints (e. 499 * same destination port on both endpoints (e.g. VXLAN, GENEVE). Note that 500 * lwtunnels might actually break this assumpt 500 * lwtunnels might actually break this assumption by being configured with 501 * different destination ports on endpoints, i 501 * different destination ports on endpoints, in this case we won't be able to 502 * trace ICMP messages back to them. 502 * trace ICMP messages back to them. 503 * 503 * 504 * If this doesn't match any socket, probe tun 504 * If this doesn't match any socket, probe tunnels with arbitrary destination 505 * ports (e.g. FoU, GUE): there, the receiving 505 * ports (e.g. FoU, GUE): there, the receiving socket is useless, as the port 506 * we've sent packets to won't necessarily mat 506 * we've sent packets to won't necessarily match the local destination port. 507 * 507 * 508 * Then ask the tunnel implementation to match 508 * Then ask the tunnel implementation to match the error against a valid 509 * association. 509 * association. 510 * 510 * 511 * Return an error if we can't find a match, t 511 * Return an error if we can't find a match, the socket if we need further 512 * processing, zero otherwise. 512 * processing, zero otherwise. 513 */ 513 */ 514 static struct sock *__udp6_lib_err_encap(struc 514 static struct sock *__udp6_lib_err_encap(struct net *net, 515 const 515 const struct ipv6hdr *hdr, int offset, 516 struc 516 struct udphdr *uh, 517 struc 517 struct udp_table *udptable, 518 struc 518 struct sock *sk, 519 struc 519 struct sk_buff *skb, 520 struc 520 struct inet6_skb_parm *opt, 521 u8 ty 521 u8 type, u8 code, __be32 info) 522 { 522 { 523 int (*lookup)(struct sock *sk, struct 523 int (*lookup)(struct sock *sk, struct sk_buff *skb); 524 int network_offset, transport_offset; 524 int network_offset, transport_offset; 525 struct udp_sock *up; 525 struct udp_sock *up; 526 526 527 network_offset = skb_network_offset(sk 527 network_offset = skb_network_offset(skb); 528 transport_offset = skb_transport_offse 528 transport_offset = skb_transport_offset(skb); 529 529 530 /* Network header needs to point to th 530 /* Network header needs to point to the outer IPv6 header inside ICMP */ 531 skb_reset_network_header(skb); 531 skb_reset_network_header(skb); 532 532 533 /* Transport header needs to point to 533 /* Transport header needs to point to the UDP header */ 534 skb_set_transport_header(skb, offset); 534 skb_set_transport_header(skb, offset); 535 535 536 if (sk) { 536 if (sk) { 537 up = udp_sk(sk); 537 up = udp_sk(sk); 538 538 539 lookup = READ_ONCE(up->encap_e 539 lookup = READ_ONCE(up->encap_err_lookup); 540 if (lookup && lookup(sk, skb)) 540 if (lookup && lookup(sk, skb)) 541 sk = NULL; 541 sk = NULL; 542 542 543 goto out; 543 goto out; 544 } 544 } 545 545 546 sk = __udp6_lib_lookup(net, &hdr->dadd 546 sk = __udp6_lib_lookup(net, &hdr->daddr, uh->source, 547 &hdr->saddr, uh 547 &hdr->saddr, uh->dest, 548 inet6_iif(skb), 548 inet6_iif(skb), 0, udptable, skb); 549 if (sk) { 549 if (sk) { 550 up = udp_sk(sk); 550 up = udp_sk(sk); 551 551 552 lookup = READ_ONCE(up->encap_e 552 lookup = READ_ONCE(up->encap_err_lookup); 553 if (!lookup || lookup(sk, skb) 553 if (!lookup || lookup(sk, skb)) 554 sk = NULL; 554 sk = NULL; 555 } 555 } 556 556 557 out: 557 out: 558 if (!sk) { 558 if (!sk) { 559 sk = ERR_PTR(__udp6_lib_err_en 559 sk = ERR_PTR(__udp6_lib_err_encap_no_sk(skb, opt, type, code, 560 560 offset, info)); 561 } 561 } 562 562 563 skb_set_transport_header(skb, transpor 563 skb_set_transport_header(skb, transport_offset); 564 skb_set_network_header(skb, network_of 564 skb_set_network_header(skb, network_offset); 565 565 566 return sk; 566 return sk; 567 } 567 } 568 568 569 int __udp6_lib_err(struct sk_buff *skb, struct 569 int __udp6_lib_err(struct sk_buff *skb, struct inet6_skb_parm *opt, 570 u8 type, u8 code, int offse 570 u8 type, u8 code, int offset, __be32 info, 571 struct udp_table *udptable) 571 struct udp_table *udptable) 572 { 572 { 573 struct ipv6_pinfo *np; 573 struct ipv6_pinfo *np; 574 const struct ipv6hdr *hdr = (const str 574 const struct ipv6hdr *hdr = (const struct ipv6hdr *)skb->data; 575 const struct in6_addr *saddr = &hdr->s 575 const struct in6_addr *saddr = &hdr->saddr; 576 const struct in6_addr *daddr = seg6_ge 576 const struct in6_addr *daddr = seg6_get_daddr(skb, opt) ? : &hdr->daddr; 577 struct udphdr *uh = (struct udphdr *)( 577 struct udphdr *uh = (struct udphdr *)(skb->data+offset); 578 bool tunnel = false; 578 bool tunnel = false; 579 struct sock *sk; 579 struct sock *sk; 580 int harderr; 580 int harderr; 581 int err; 581 int err; 582 struct net *net = dev_net(skb->dev); 582 struct net *net = dev_net(skb->dev); 583 583 584 sk = __udp6_lib_lookup(net, daddr, uh- 584 sk = __udp6_lib_lookup(net, daddr, uh->dest, saddr, uh->source, 585 inet6_iif(skb), 585 inet6_iif(skb), inet6_sdif(skb), udptable, NULL); 586 586 587 if (!sk || READ_ONCE(udp_sk(sk)->encap 587 if (!sk || READ_ONCE(udp_sk(sk)->encap_type)) { 588 /* No socket for error: try tu 588 /* No socket for error: try tunnels before discarding */ 589 if (static_branch_unlikely(&ud 589 if (static_branch_unlikely(&udpv6_encap_needed_key)) { 590 sk = __udp6_lib_err_en 590 sk = __udp6_lib_err_encap(net, hdr, offset, uh, 591 591 udptable, sk, skb, 592 592 opt, type, code, info); 593 if (!sk) 593 if (!sk) 594 return 0; 594 return 0; 595 } else 595 } else 596 sk = ERR_PTR(-ENOENT); 596 sk = ERR_PTR(-ENOENT); 597 597 598 if (IS_ERR(sk)) { 598 if (IS_ERR(sk)) { 599 __ICMP6_INC_STATS(net, 599 __ICMP6_INC_STATS(net, __in6_dev_get(skb->dev), 600 ICMP 600 ICMP6_MIB_INERRORS); 601 return PTR_ERR(sk); 601 return PTR_ERR(sk); 602 } 602 } 603 603 604 tunnel = true; 604 tunnel = true; 605 } 605 } 606 606 607 harderr = icmpv6_err_convert(type, cod 607 harderr = icmpv6_err_convert(type, code, &err); 608 np = inet6_sk(sk); 608 np = inet6_sk(sk); 609 609 610 if (type == ICMPV6_PKT_TOOBIG) { 610 if (type == ICMPV6_PKT_TOOBIG) { 611 if (!ip6_sk_accept_pmtu(sk)) 611 if (!ip6_sk_accept_pmtu(sk)) 612 goto out; 612 goto out; 613 ip6_sk_update_pmtu(skb, sk, in 613 ip6_sk_update_pmtu(skb, sk, info); 614 if (READ_ONCE(np->pmtudisc) != 614 if (READ_ONCE(np->pmtudisc) != IPV6_PMTUDISC_DONT) 615 harderr = 1; 615 harderr = 1; 616 } 616 } 617 if (type == NDISC_REDIRECT) { 617 if (type == NDISC_REDIRECT) { 618 if (tunnel) { 618 if (tunnel) { 619 ip6_redirect(skb, sock 619 ip6_redirect(skb, sock_net(sk), inet6_iif(skb), 620 READ_ONCE 620 READ_ONCE(sk->sk_mark), sk->sk_uid); 621 } else { 621 } else { 622 ip6_sk_redirect(skb, s 622 ip6_sk_redirect(skb, sk); 623 } 623 } 624 goto out; 624 goto out; 625 } 625 } 626 626 627 /* Tunnels don't have an application s 627 /* Tunnels don't have an application socket: don't pass errors back */ 628 if (tunnel) { 628 if (tunnel) { 629 if (udp_sk(sk)->encap_err_rcv) 629 if (udp_sk(sk)->encap_err_rcv) 630 udp_sk(sk)->encap_err_ 630 udp_sk(sk)->encap_err_rcv(sk, skb, err, uh->dest, 631 631 ntohl(info), (u8 *)(uh+1)); 632 goto out; 632 goto out; 633 } 633 } 634 634 635 if (!inet6_test_bit(RECVERR6, sk)) { 635 if (!inet6_test_bit(RECVERR6, sk)) { 636 if (!harderr || sk->sk_state ! 636 if (!harderr || sk->sk_state != TCP_ESTABLISHED) 637 goto out; 637 goto out; 638 } else { 638 } else { 639 ipv6_icmp_error(sk, skb, err, 639 ipv6_icmp_error(sk, skb, err, uh->dest, ntohl(info), (u8 *)(uh+1)); 640 } 640 } 641 641 642 sk->sk_err = err; 642 sk->sk_err = err; 643 sk_error_report(sk); 643 sk_error_report(sk); 644 out: 644 out: 645 return 0; 645 return 0; 646 } 646 } 647 647 648 static int __udpv6_queue_rcv_skb(struct sock * 648 static int __udpv6_queue_rcv_skb(struct sock *sk, struct sk_buff *skb) 649 { 649 { 650 int rc; 650 int rc; 651 651 652 if (!ipv6_addr_any(&sk->sk_v6_daddr)) 652 if (!ipv6_addr_any(&sk->sk_v6_daddr)) { 653 sock_rps_save_rxhash(sk, skb); 653 sock_rps_save_rxhash(sk, skb); 654 sk_mark_napi_id(sk, skb); 654 sk_mark_napi_id(sk, skb); 655 sk_incoming_cpu_update(sk); 655 sk_incoming_cpu_update(sk); 656 } else { 656 } else { 657 sk_mark_napi_id_once(sk, skb); 657 sk_mark_napi_id_once(sk, skb); 658 } 658 } 659 659 660 rc = __udp_enqueue_schedule_skb(sk, sk 660 rc = __udp_enqueue_schedule_skb(sk, skb); 661 if (rc < 0) { 661 if (rc < 0) { 662 int is_udplite = IS_UDPLITE(sk 662 int is_udplite = IS_UDPLITE(sk); 663 enum skb_drop_reason drop_reas 663 enum skb_drop_reason drop_reason; 664 664 665 /* Note that an ENOMEM error i 665 /* Note that an ENOMEM error is charged twice */ 666 if (rc == -ENOMEM) { 666 if (rc == -ENOMEM) { 667 UDP6_INC_STATS(sock_ne 667 UDP6_INC_STATS(sock_net(sk), 668 UDP_M 668 UDP_MIB_RCVBUFERRORS, is_udplite); 669 drop_reason = SKB_DROP 669 drop_reason = SKB_DROP_REASON_SOCKET_RCVBUFF; 670 } else { 670 } else { 671 UDP6_INC_STATS(sock_ne 671 UDP6_INC_STATS(sock_net(sk), 672 UDP_MIB 672 UDP_MIB_MEMERRORS, is_udplite); 673 drop_reason = SKB_DROP 673 drop_reason = SKB_DROP_REASON_PROTO_MEM; 674 } 674 } 675 UDP6_INC_STATS(sock_net(sk), U 675 UDP6_INC_STATS(sock_net(sk), UDP_MIB_INERRORS, is_udplite); 676 trace_udp_fail_queue_rcv_skb(r 676 trace_udp_fail_queue_rcv_skb(rc, sk, skb); 677 sk_skb_reason_drop(sk, skb, dr 677 sk_skb_reason_drop(sk, skb, drop_reason); 678 return -1; 678 return -1; 679 } 679 } 680 680 681 return 0; 681 return 0; 682 } 682 } 683 683 684 static __inline__ int udpv6_err(struct sk_buff 684 static __inline__ int udpv6_err(struct sk_buff *skb, 685 struct inet6_s 685 struct inet6_skb_parm *opt, u8 type, 686 u8 code, int o 686 u8 code, int offset, __be32 info) 687 { 687 { 688 return __udp6_lib_err(skb, opt, type, 688 return __udp6_lib_err(skb, opt, type, code, offset, info, 689 dev_net(skb->dev 689 dev_net(skb->dev)->ipv4.udp_table); 690 } 690 } 691 691 692 static int udpv6_queue_rcv_one_skb(struct sock 692 static int udpv6_queue_rcv_one_skb(struct sock *sk, struct sk_buff *skb) 693 { 693 { 694 enum skb_drop_reason drop_reason = SKB 694 enum skb_drop_reason drop_reason = SKB_DROP_REASON_NOT_SPECIFIED; 695 struct udp_sock *up = udp_sk(sk); 695 struct udp_sock *up = udp_sk(sk); 696 int is_udplite = IS_UDPLITE(sk); 696 int is_udplite = IS_UDPLITE(sk); 697 697 698 if (!xfrm6_policy_check(sk, XFRM_POLIC 698 if (!xfrm6_policy_check(sk, XFRM_POLICY_IN, skb)) { 699 drop_reason = SKB_DROP_REASON_ 699 drop_reason = SKB_DROP_REASON_XFRM_POLICY; 700 goto drop; 700 goto drop; 701 } 701 } 702 nf_reset_ct(skb); 702 nf_reset_ct(skb); 703 703 704 if (static_branch_unlikely(&udpv6_enca 704 if (static_branch_unlikely(&udpv6_encap_needed_key) && 705 READ_ONCE(up->encap_type)) { 705 READ_ONCE(up->encap_type)) { 706 int (*encap_rcv)(struct sock * 706 int (*encap_rcv)(struct sock *sk, struct sk_buff *skb); 707 707 708 /* 708 /* 709 * This is an encapsulation so 709 * This is an encapsulation socket so pass the skb to 710 * the socket's udp_encap_rcv( 710 * the socket's udp_encap_rcv() hook. Otherwise, just 711 * fall through and pass this 711 * fall through and pass this up the UDP socket. 712 * up->encap_rcv() returns the 712 * up->encap_rcv() returns the following value: 713 * =0 if skb was successfully 713 * =0 if skb was successfully passed to the encap 714 * handler or was discarded 714 * handler or was discarded by it. 715 * >0 if skb should be passed 715 * >0 if skb should be passed on to UDP. 716 * <0 if skb should be resubmi 716 * <0 if skb should be resubmitted as proto -N 717 */ 717 */ 718 718 719 /* if we're overly short, let 719 /* if we're overly short, let UDP handle it */ 720 encap_rcv = READ_ONCE(up->enca 720 encap_rcv = READ_ONCE(up->encap_rcv); 721 if (encap_rcv) { 721 if (encap_rcv) { 722 int ret; 722 int ret; 723 723 724 /* Verify checksum bef 724 /* Verify checksum before giving to encap */ 725 if (udp_lib_checksum_c 725 if (udp_lib_checksum_complete(skb)) 726 goto csum_erro 726 goto csum_error; 727 727 728 ret = encap_rcv(sk, sk 728 ret = encap_rcv(sk, skb); 729 if (ret <= 0) { 729 if (ret <= 0) { 730 __UDP6_INC_STA 730 __UDP6_INC_STATS(sock_net(sk), 731 731 UDP_MIB_INDATAGRAMS, 732 732 is_udplite); 733 return -ret; 733 return -ret; 734 } 734 } 735 } 735 } 736 736 737 /* FALLTHROUGH -- it's a UDP P 737 /* FALLTHROUGH -- it's a UDP Packet */ 738 } 738 } 739 739 740 /* 740 /* 741 * UDP-Lite specific tests, ignored on 741 * UDP-Lite specific tests, ignored on UDP sockets (see net/ipv4/udp.c). 742 */ 742 */ 743 if (udp_test_bit(UDPLITE_RECV_CC, sk) 743 if (udp_test_bit(UDPLITE_RECV_CC, sk) && UDP_SKB_CB(skb)->partial_cov) { 744 u16 pcrlen = READ_ONCE(up->pcr 744 u16 pcrlen = READ_ONCE(up->pcrlen); 745 745 746 if (pcrlen == 0) { /* 746 if (pcrlen == 0) { /* full coverage was set */ 747 net_dbg_ratelimited("U 747 net_dbg_ratelimited("UDPLITE6: partial coverage %d while full coverage %d requested\n", 748 UD 748 UDP_SKB_CB(skb)->cscov, skb->len); 749 goto drop; 749 goto drop; 750 } 750 } 751 if (UDP_SKB_CB(skb)->cscov < p 751 if (UDP_SKB_CB(skb)->cscov < pcrlen) { 752 net_dbg_ratelimited("U 752 net_dbg_ratelimited("UDPLITE6: coverage %d too small, need min %d\n", 753 UD 753 UDP_SKB_CB(skb)->cscov, pcrlen); 754 goto drop; 754 goto drop; 755 } 755 } 756 } 756 } 757 757 758 prefetch(&sk->sk_rmem_alloc); 758 prefetch(&sk->sk_rmem_alloc); 759 if (rcu_access_pointer(sk->sk_filter) 759 if (rcu_access_pointer(sk->sk_filter) && 760 udp_lib_checksum_complete(skb)) 760 udp_lib_checksum_complete(skb)) 761 goto csum_error; 761 goto csum_error; 762 762 763 if (sk_filter_trim_cap(sk, skb, sizeof 763 if (sk_filter_trim_cap(sk, skb, sizeof(struct udphdr))) { 764 drop_reason = SKB_DROP_REASON_ 764 drop_reason = SKB_DROP_REASON_SOCKET_FILTER; 765 goto drop; 765 goto drop; 766 } 766 } 767 767 768 udp_csum_pull_header(skb); 768 udp_csum_pull_header(skb); 769 769 770 skb_dst_drop(skb); 770 skb_dst_drop(skb); 771 771 772 return __udpv6_queue_rcv_skb(sk, skb); 772 return __udpv6_queue_rcv_skb(sk, skb); 773 773 774 csum_error: 774 csum_error: 775 drop_reason = SKB_DROP_REASON_UDP_CSUM 775 drop_reason = SKB_DROP_REASON_UDP_CSUM; 776 __UDP6_INC_STATS(sock_net(sk), UDP_MIB 776 __UDP6_INC_STATS(sock_net(sk), UDP_MIB_CSUMERRORS, is_udplite); 777 drop: 777 drop: 778 __UDP6_INC_STATS(sock_net(sk), UDP_MIB 778 __UDP6_INC_STATS(sock_net(sk), UDP_MIB_INERRORS, is_udplite); 779 atomic_inc(&sk->sk_drops); 779 atomic_inc(&sk->sk_drops); 780 sk_skb_reason_drop(sk, skb, drop_reaso 780 sk_skb_reason_drop(sk, skb, drop_reason); 781 return -1; 781 return -1; 782 } 782 } 783 783 784 static int udpv6_queue_rcv_skb(struct sock *sk 784 static int udpv6_queue_rcv_skb(struct sock *sk, struct sk_buff *skb) 785 { 785 { 786 struct sk_buff *next, *segs; 786 struct sk_buff *next, *segs; 787 int ret; 787 int ret; 788 788 789 if (likely(!udp_unexpected_gso(sk, skb 789 if (likely(!udp_unexpected_gso(sk, skb))) 790 return udpv6_queue_rcv_one_skb 790 return udpv6_queue_rcv_one_skb(sk, skb); 791 791 792 __skb_push(skb, -skb_mac_offset(skb)); 792 __skb_push(skb, -skb_mac_offset(skb)); 793 segs = udp_rcv_segment(sk, skb, false) 793 segs = udp_rcv_segment(sk, skb, false); 794 skb_list_walk_safe(segs, skb, next) { 794 skb_list_walk_safe(segs, skb, next) { 795 __skb_pull(skb, skb_transport_ 795 __skb_pull(skb, skb_transport_offset(skb)); 796 796 797 udp_post_segment_fix_csum(skb) 797 udp_post_segment_fix_csum(skb); 798 ret = udpv6_queue_rcv_one_skb( 798 ret = udpv6_queue_rcv_one_skb(sk, skb); 799 if (ret > 0) 799 if (ret > 0) 800 ip6_protocol_deliver_r 800 ip6_protocol_deliver_rcu(dev_net(skb->dev), skb, ret, 801 801 true); 802 } 802 } 803 return 0; 803 return 0; 804 } 804 } 805 805 806 static bool __udp_v6_is_mcast_sock(struct net 806 static bool __udp_v6_is_mcast_sock(struct net *net, const struct sock *sk, 807 __be16 loc_ 807 __be16 loc_port, const struct in6_addr *loc_addr, 808 __be16 rmt_ 808 __be16 rmt_port, const struct in6_addr *rmt_addr, 809 int dif, in 809 int dif, int sdif, unsigned short hnum) 810 { 810 { 811 const struct inet_sock *inet = inet_sk 811 const struct inet_sock *inet = inet_sk(sk); 812 812 813 if (!net_eq(sock_net(sk), net)) 813 if (!net_eq(sock_net(sk), net)) 814 return false; 814 return false; 815 815 816 if (udp_sk(sk)->udp_port_hash != hnum 816 if (udp_sk(sk)->udp_port_hash != hnum || 817 sk->sk_family != PF_INET6 || 817 sk->sk_family != PF_INET6 || 818 (inet->inet_dport && inet->inet_dp 818 (inet->inet_dport && inet->inet_dport != rmt_port) || 819 (!ipv6_addr_any(&sk->sk_v6_daddr) 819 (!ipv6_addr_any(&sk->sk_v6_daddr) && 820 !ipv6_addr_equal(&sk->sk_v 820 !ipv6_addr_equal(&sk->sk_v6_daddr, rmt_addr)) || 821 !udp_sk_bound_dev_eq(net, READ_ONC 821 !udp_sk_bound_dev_eq(net, READ_ONCE(sk->sk_bound_dev_if), dif, sdif) || 822 (!ipv6_addr_any(&sk->sk_v6_rcv_sad 822 (!ipv6_addr_any(&sk->sk_v6_rcv_saddr) && 823 !ipv6_addr_equal(&sk->sk_v 823 !ipv6_addr_equal(&sk->sk_v6_rcv_saddr, loc_addr))) 824 return false; 824 return false; 825 if (!inet6_mc_check(sk, loc_addr, rmt_ 825 if (!inet6_mc_check(sk, loc_addr, rmt_addr)) 826 return false; 826 return false; 827 return true; 827 return true; 828 } 828 } 829 829 830 static void udp6_csum_zero_error(struct sk_buf 830 static void udp6_csum_zero_error(struct sk_buff *skb) 831 { 831 { 832 /* RFC 2460 section 8.1 says that we S 832 /* RFC 2460 section 8.1 says that we SHOULD log 833 * this error. Well, it is reasonable. 833 * this error. Well, it is reasonable. 834 */ 834 */ 835 net_dbg_ratelimited("IPv6: udp checksu 835 net_dbg_ratelimited("IPv6: udp checksum is 0 for [%pI6c]:%u->[%pI6c]:%u\n", 836 &ipv6_hdr(skb)->sa 836 &ipv6_hdr(skb)->saddr, ntohs(udp_hdr(skb)->source), 837 &ipv6_hdr(skb)->da 837 &ipv6_hdr(skb)->daddr, ntohs(udp_hdr(skb)->dest)); 838 } 838 } 839 839 840 /* 840 /* 841 * Note: called only from the BH handler conte 841 * Note: called only from the BH handler context, 842 * so we don't need to lock the hashes. 842 * so we don't need to lock the hashes. 843 */ 843 */ 844 static int __udp6_lib_mcast_deliver(struct net 844 static int __udp6_lib_mcast_deliver(struct net *net, struct sk_buff *skb, 845 const struct in6_addr *saddr, 845 const struct in6_addr *saddr, const struct in6_addr *daddr, 846 struct udp_table *udptable, in 846 struct udp_table *udptable, int proto) 847 { 847 { 848 struct sock *sk, *first = NULL; 848 struct sock *sk, *first = NULL; 849 const struct udphdr *uh = udp_hdr(skb) 849 const struct udphdr *uh = udp_hdr(skb); 850 unsigned short hnum = ntohs(uh->dest); 850 unsigned short hnum = ntohs(uh->dest); 851 struct udp_hslot *hslot = udp_hashslot 851 struct udp_hslot *hslot = udp_hashslot(udptable, net, hnum); 852 unsigned int offset = offsetof(typeof( 852 unsigned int offset = offsetof(typeof(*sk), sk_node); 853 unsigned int hash2 = 0, hash2_any = 0, 853 unsigned int hash2 = 0, hash2_any = 0, use_hash2 = (hslot->count > 10); 854 int dif = inet6_iif(skb); 854 int dif = inet6_iif(skb); 855 int sdif = inet6_sdif(skb); 855 int sdif = inet6_sdif(skb); 856 struct hlist_node *node; 856 struct hlist_node *node; 857 struct sk_buff *nskb; 857 struct sk_buff *nskb; 858 858 859 if (use_hash2) { 859 if (use_hash2) { 860 hash2_any = ipv6_portaddr_hash 860 hash2_any = ipv6_portaddr_hash(net, &in6addr_any, hnum) & 861 udptable->mask; 861 udptable->mask; 862 hash2 = ipv6_portaddr_hash(net 862 hash2 = ipv6_portaddr_hash(net, daddr, hnum) & udptable->mask; 863 start_lookup: 863 start_lookup: 864 hslot = &udptable->hash2[hash2 864 hslot = &udptable->hash2[hash2]; 865 offset = offsetof(typeof(*sk), 865 offset = offsetof(typeof(*sk), __sk_common.skc_portaddr_node); 866 } 866 } 867 867 868 sk_for_each_entry_offset_rcu(sk, node, 868 sk_for_each_entry_offset_rcu(sk, node, &hslot->head, offset) { 869 if (!__udp_v6_is_mcast_sock(ne 869 if (!__udp_v6_is_mcast_sock(net, sk, uh->dest, daddr, 870 uh 870 uh->source, saddr, dif, sdif, 871 hn 871 hnum)) 872 continue; 872 continue; 873 /* If zero checksum and no_che 873 /* If zero checksum and no_check is not on for 874 * the socket then skip it. 874 * the socket then skip it. 875 */ 875 */ 876 if (!uh->check && !udp_get_no_ 876 if (!uh->check && !udp_get_no_check6_rx(sk)) 877 continue; 877 continue; 878 if (!first) { 878 if (!first) { 879 first = sk; 879 first = sk; 880 continue; 880 continue; 881 } 881 } 882 nskb = skb_clone(skb, GFP_ATOM 882 nskb = skb_clone(skb, GFP_ATOMIC); 883 if (unlikely(!nskb)) { 883 if (unlikely(!nskb)) { 884 atomic_inc(&sk->sk_dro 884 atomic_inc(&sk->sk_drops); 885 __UDP6_INC_STATS(net, 885 __UDP6_INC_STATS(net, UDP_MIB_RCVBUFERRORS, 886 IS_UD 886 IS_UDPLITE(sk)); 887 __UDP6_INC_STATS(net, 887 __UDP6_INC_STATS(net, UDP_MIB_INERRORS, 888 IS_UD 888 IS_UDPLITE(sk)); 889 continue; 889 continue; 890 } 890 } 891 891 892 if (udpv6_queue_rcv_skb(sk, ns 892 if (udpv6_queue_rcv_skb(sk, nskb) > 0) 893 consume_skb(nskb); 893 consume_skb(nskb); 894 } 894 } 895 895 896 /* Also lookup *:port if we are using 896 /* Also lookup *:port if we are using hash2 and haven't done so yet. */ 897 if (use_hash2 && hash2 != hash2_any) { 897 if (use_hash2 && hash2 != hash2_any) { 898 hash2 = hash2_any; 898 hash2 = hash2_any; 899 goto start_lookup; 899 goto start_lookup; 900 } 900 } 901 901 902 if (first) { 902 if (first) { 903 if (udpv6_queue_rcv_skb(first, 903 if (udpv6_queue_rcv_skb(first, skb) > 0) 904 consume_skb(skb); 904 consume_skb(skb); 905 } else { 905 } else { 906 kfree_skb(skb); 906 kfree_skb(skb); 907 __UDP6_INC_STATS(net, UDP_MIB_ 907 __UDP6_INC_STATS(net, UDP_MIB_IGNOREDMULTI, 908 proto == IPPR 908 proto == IPPROTO_UDPLITE); 909 } 909 } 910 return 0; 910 return 0; 911 } 911 } 912 912 913 static void udp6_sk_rx_dst_set(struct sock *sk 913 static void udp6_sk_rx_dst_set(struct sock *sk, struct dst_entry *dst) 914 { 914 { 915 if (udp_sk_rx_dst_set(sk, dst)) 915 if (udp_sk_rx_dst_set(sk, dst)) 916 sk->sk_rx_dst_cookie = rt6_get 916 sk->sk_rx_dst_cookie = rt6_get_cookie(dst_rt6_info(dst)); 917 } 917 } 918 918 919 /* wrapper for udp_queue_rcv_skb tacking care 919 /* wrapper for udp_queue_rcv_skb tacking care of csum conversion and 920 * return code conversion for ip layer consump 920 * return code conversion for ip layer consumption 921 */ 921 */ 922 static int udp6_unicast_rcv_skb(struct sock *s 922 static int udp6_unicast_rcv_skb(struct sock *sk, struct sk_buff *skb, 923 struct udphdr 923 struct udphdr *uh) 924 { 924 { 925 int ret; 925 int ret; 926 926 927 if (inet_get_convert_csum(sk) && uh->c 927 if (inet_get_convert_csum(sk) && uh->check && !IS_UDPLITE(sk)) 928 skb_checksum_try_convert(skb, 928 skb_checksum_try_convert(skb, IPPROTO_UDP, ip6_compute_pseudo); 929 929 930 ret = udpv6_queue_rcv_skb(sk, skb); 930 ret = udpv6_queue_rcv_skb(sk, skb); 931 931 932 /* a return value > 0 means to resubmi 932 /* a return value > 0 means to resubmit the input */ 933 if (ret > 0) 933 if (ret > 0) 934 return ret; 934 return ret; 935 return 0; 935 return 0; 936 } 936 } 937 937 938 int __udp6_lib_rcv(struct sk_buff *skb, struct 938 int __udp6_lib_rcv(struct sk_buff *skb, struct udp_table *udptable, 939 int proto) 939 int proto) 940 { 940 { 941 enum skb_drop_reason reason = SKB_DROP 941 enum skb_drop_reason reason = SKB_DROP_REASON_NOT_SPECIFIED; 942 const struct in6_addr *saddr, *daddr; 942 const struct in6_addr *saddr, *daddr; 943 struct net *net = dev_net(skb->dev); 943 struct net *net = dev_net(skb->dev); 944 struct sock *sk = NULL; 944 struct sock *sk = NULL; 945 struct udphdr *uh; 945 struct udphdr *uh; 946 bool refcounted; 946 bool refcounted; 947 u32 ulen = 0; 947 u32 ulen = 0; 948 948 949 if (!pskb_may_pull(skb, sizeof(struct 949 if (!pskb_may_pull(skb, sizeof(struct udphdr))) 950 goto discard; 950 goto discard; 951 951 952 saddr = &ipv6_hdr(skb)->saddr; 952 saddr = &ipv6_hdr(skb)->saddr; 953 daddr = &ipv6_hdr(skb)->daddr; 953 daddr = &ipv6_hdr(skb)->daddr; 954 uh = udp_hdr(skb); 954 uh = udp_hdr(skb); 955 955 956 ulen = ntohs(uh->len); 956 ulen = ntohs(uh->len); 957 if (ulen > skb->len) 957 if (ulen > skb->len) 958 goto short_packet; 958 goto short_packet; 959 959 960 if (proto == IPPROTO_UDP) { 960 if (proto == IPPROTO_UDP) { 961 /* UDP validates ulen. */ 961 /* UDP validates ulen. */ 962 962 963 /* Check for jumbo payload */ 963 /* Check for jumbo payload */ 964 if (ulen == 0) 964 if (ulen == 0) 965 ulen = skb->len; 965 ulen = skb->len; 966 966 967 if (ulen < sizeof(*uh)) 967 if (ulen < sizeof(*uh)) 968 goto short_packet; 968 goto short_packet; 969 969 970 if (ulen < skb->len) { 970 if (ulen < skb->len) { 971 if (pskb_trim_rcsum(sk 971 if (pskb_trim_rcsum(skb, ulen)) 972 goto short_pac 972 goto short_packet; 973 saddr = &ipv6_hdr(skb) 973 saddr = &ipv6_hdr(skb)->saddr; 974 daddr = &ipv6_hdr(skb) 974 daddr = &ipv6_hdr(skb)->daddr; 975 uh = udp_hdr(skb); 975 uh = udp_hdr(skb); 976 } 976 } 977 } 977 } 978 978 979 if (udp6_csum_init(skb, uh, proto)) 979 if (udp6_csum_init(skb, uh, proto)) 980 goto csum_error; 980 goto csum_error; 981 981 982 /* Check if the socket is already avai 982 /* Check if the socket is already available, e.g. due to early demux */ 983 sk = inet6_steal_sock(net, skb, sizeof 983 sk = inet6_steal_sock(net, skb, sizeof(struct udphdr), saddr, uh->source, daddr, uh->dest, 984 &refcounted, udp 984 &refcounted, udp6_ehashfn); 985 if (IS_ERR(sk)) 985 if (IS_ERR(sk)) 986 goto no_sk; 986 goto no_sk; 987 987 988 if (sk) { 988 if (sk) { 989 struct dst_entry *dst = skb_ds 989 struct dst_entry *dst = skb_dst(skb); 990 int ret; 990 int ret; 991 991 992 if (unlikely(rcu_dereference(s 992 if (unlikely(rcu_dereference(sk->sk_rx_dst) != dst)) 993 udp6_sk_rx_dst_set(sk, 993 udp6_sk_rx_dst_set(sk, dst); 994 994 995 if (!uh->check && !udp_get_no_ 995 if (!uh->check && !udp_get_no_check6_rx(sk)) { 996 if (refcounted) 996 if (refcounted) 997 sock_put(sk); 997 sock_put(sk); 998 goto report_csum_error 998 goto report_csum_error; 999 } 999 } 1000 1000 1001 ret = udp6_unicast_rcv_skb(sk 1001 ret = udp6_unicast_rcv_skb(sk, skb, uh); 1002 if (refcounted) 1002 if (refcounted) 1003 sock_put(sk); 1003 sock_put(sk); 1004 return ret; 1004 return ret; 1005 } 1005 } 1006 1006 1007 /* 1007 /* 1008 * Multicast receive code 1008 * Multicast receive code 1009 */ 1009 */ 1010 if (ipv6_addr_is_multicast(daddr)) 1010 if (ipv6_addr_is_multicast(daddr)) 1011 return __udp6_lib_mcast_deliv 1011 return __udp6_lib_mcast_deliver(net, skb, 1012 saddr, daddr, 1012 saddr, daddr, udptable, proto); 1013 1013 1014 /* Unicast */ 1014 /* Unicast */ 1015 sk = __udp6_lib_lookup_skb(skb, uh->s 1015 sk = __udp6_lib_lookup_skb(skb, uh->source, uh->dest, udptable); 1016 if (sk) { 1016 if (sk) { 1017 if (!uh->check && !udp_get_no 1017 if (!uh->check && !udp_get_no_check6_rx(sk)) 1018 goto report_csum_erro 1018 goto report_csum_error; 1019 return udp6_unicast_rcv_skb(s 1019 return udp6_unicast_rcv_skb(sk, skb, uh); 1020 } 1020 } 1021 no_sk: 1021 no_sk: 1022 reason = SKB_DROP_REASON_NO_SOCKET; 1022 reason = SKB_DROP_REASON_NO_SOCKET; 1023 1023 1024 if (!uh->check) 1024 if (!uh->check) 1025 goto report_csum_error; 1025 goto report_csum_error; 1026 1026 1027 if (!xfrm6_policy_check(NULL, XFRM_PO 1027 if (!xfrm6_policy_check(NULL, XFRM_POLICY_IN, skb)) 1028 goto discard; 1028 goto discard; 1029 nf_reset_ct(skb); 1029 nf_reset_ct(skb); 1030 1030 1031 if (udp_lib_checksum_complete(skb)) 1031 if (udp_lib_checksum_complete(skb)) 1032 goto csum_error; 1032 goto csum_error; 1033 1033 1034 __UDP6_INC_STATS(net, UDP_MIB_NOPORTS 1034 __UDP6_INC_STATS(net, UDP_MIB_NOPORTS, proto == IPPROTO_UDPLITE); 1035 icmpv6_send(skb, ICMPV6_DEST_UNREACH, 1035 icmpv6_send(skb, ICMPV6_DEST_UNREACH, ICMPV6_PORT_UNREACH, 0); 1036 1036 1037 sk_skb_reason_drop(sk, skb, reason); 1037 sk_skb_reason_drop(sk, skb, reason); 1038 return 0; 1038 return 0; 1039 1039 1040 short_packet: 1040 short_packet: 1041 if (reason == SKB_DROP_REASON_NOT_SPE 1041 if (reason == SKB_DROP_REASON_NOT_SPECIFIED) 1042 reason = SKB_DROP_REASON_PKT_ 1042 reason = SKB_DROP_REASON_PKT_TOO_SMALL; 1043 net_dbg_ratelimited("UDP%sv6: short p 1043 net_dbg_ratelimited("UDP%sv6: short packet: From [%pI6c]:%u %d/%d to [%pI6c]:%u\n", 1044 proto == IPPROTO_ 1044 proto == IPPROTO_UDPLITE ? "-Lite" : "", 1045 saddr, ntohs(uh-> 1045 saddr, ntohs(uh->source), 1046 ulen, skb->len, 1046 ulen, skb->len, 1047 daddr, ntohs(uh-> 1047 daddr, ntohs(uh->dest)); 1048 goto discard; 1048 goto discard; 1049 1049 1050 report_csum_error: 1050 report_csum_error: 1051 udp6_csum_zero_error(skb); 1051 udp6_csum_zero_error(skb); 1052 csum_error: 1052 csum_error: 1053 if (reason == SKB_DROP_REASON_NOT_SPE 1053 if (reason == SKB_DROP_REASON_NOT_SPECIFIED) 1054 reason = SKB_DROP_REASON_UDP_ 1054 reason = SKB_DROP_REASON_UDP_CSUM; 1055 __UDP6_INC_STATS(net, UDP_MIB_CSUMERR 1055 __UDP6_INC_STATS(net, UDP_MIB_CSUMERRORS, proto == IPPROTO_UDPLITE); 1056 discard: 1056 discard: 1057 __UDP6_INC_STATS(net, UDP_MIB_INERROR 1057 __UDP6_INC_STATS(net, UDP_MIB_INERRORS, proto == IPPROTO_UDPLITE); 1058 sk_skb_reason_drop(sk, skb, reason); 1058 sk_skb_reason_drop(sk, skb, reason); 1059 return 0; 1059 return 0; 1060 } 1060 } 1061 1061 1062 1062 1063 static struct sock *__udp6_lib_demux_lookup(s 1063 static struct sock *__udp6_lib_demux_lookup(struct net *net, 1064 __be16 loc_port, cons 1064 __be16 loc_port, const struct in6_addr *loc_addr, 1065 __be16 rmt_port, cons 1065 __be16 rmt_port, const struct in6_addr *rmt_addr, 1066 int dif, int sdif) 1066 int dif, int sdif) 1067 { 1067 { 1068 struct udp_table *udptable = net->ipv 1068 struct udp_table *udptable = net->ipv4.udp_table; 1069 unsigned short hnum = ntohs(loc_port) 1069 unsigned short hnum = ntohs(loc_port); 1070 unsigned int hash2, slot2; 1070 unsigned int hash2, slot2; 1071 struct udp_hslot *hslot2; 1071 struct udp_hslot *hslot2; 1072 __portpair ports; 1072 __portpair ports; 1073 struct sock *sk; 1073 struct sock *sk; 1074 1074 1075 hash2 = ipv6_portaddr_hash(net, loc_a 1075 hash2 = ipv6_portaddr_hash(net, loc_addr, hnum); 1076 slot2 = hash2 & udptable->mask; 1076 slot2 = hash2 & udptable->mask; 1077 hslot2 = &udptable->hash2[slot2]; 1077 hslot2 = &udptable->hash2[slot2]; 1078 ports = INET_COMBINED_PORTS(rmt_port, 1078 ports = INET_COMBINED_PORTS(rmt_port, hnum); 1079 1079 1080 udp_portaddr_for_each_entry_rcu(sk, & 1080 udp_portaddr_for_each_entry_rcu(sk, &hslot2->head) { 1081 if (sk->sk_state == TCP_ESTAB 1081 if (sk->sk_state == TCP_ESTABLISHED && 1082 inet6_match(net, sk, rmt_ 1082 inet6_match(net, sk, rmt_addr, loc_addr, ports, dif, sdif)) 1083 return sk; 1083 return sk; 1084 /* Only check first socket in 1084 /* Only check first socket in chain */ 1085 break; 1085 break; 1086 } 1086 } 1087 return NULL; 1087 return NULL; 1088 } 1088 } 1089 1089 1090 void udp_v6_early_demux(struct sk_buff *skb) 1090 void udp_v6_early_demux(struct sk_buff *skb) 1091 { 1091 { 1092 struct net *net = dev_net(skb->dev); 1092 struct net *net = dev_net(skb->dev); 1093 const struct udphdr *uh; 1093 const struct udphdr *uh; 1094 struct sock *sk; 1094 struct sock *sk; 1095 struct dst_entry *dst; 1095 struct dst_entry *dst; 1096 int dif = skb->dev->ifindex; 1096 int dif = skb->dev->ifindex; 1097 int sdif = inet6_sdif(skb); 1097 int sdif = inet6_sdif(skb); 1098 1098 1099 if (!pskb_may_pull(skb, skb_transport 1099 if (!pskb_may_pull(skb, skb_transport_offset(skb) + 1100 sizeof(struct udphdr))) 1100 sizeof(struct udphdr))) 1101 return; 1101 return; 1102 1102 1103 uh = udp_hdr(skb); 1103 uh = udp_hdr(skb); 1104 1104 1105 if (skb->pkt_type == PACKET_HOST) 1105 if (skb->pkt_type == PACKET_HOST) 1106 sk = __udp6_lib_demux_lookup( 1106 sk = __udp6_lib_demux_lookup(net, uh->dest, 1107 1107 &ipv6_hdr(skb)->daddr, 1108 1108 uh->source, &ipv6_hdr(skb)->saddr, 1109 1109 dif, sdif); 1110 else 1110 else 1111 return; 1111 return; 1112 1112 1113 if (!sk) 1113 if (!sk) 1114 return; 1114 return; 1115 1115 1116 skb->sk = sk; 1116 skb->sk = sk; 1117 DEBUG_NET_WARN_ON_ONCE(sk_is_refcount 1117 DEBUG_NET_WARN_ON_ONCE(sk_is_refcounted(sk)); 1118 skb->destructor = sock_pfree; 1118 skb->destructor = sock_pfree; 1119 dst = rcu_dereference(sk->sk_rx_dst); 1119 dst = rcu_dereference(sk->sk_rx_dst); 1120 1120 1121 if (dst) 1121 if (dst) 1122 dst = dst_check(dst, sk->sk_r 1122 dst = dst_check(dst, sk->sk_rx_dst_cookie); 1123 if (dst) { 1123 if (dst) { 1124 /* set noref for now. 1124 /* set noref for now. 1125 * any place which wants to h 1125 * any place which wants to hold dst has to call 1126 * dst_hold_safe() 1126 * dst_hold_safe() 1127 */ 1127 */ 1128 skb_dst_set_noref(skb, dst); 1128 skb_dst_set_noref(skb, dst); 1129 } 1129 } 1130 } 1130 } 1131 1131 1132 INDIRECT_CALLABLE_SCOPE int udpv6_rcv(struct 1132 INDIRECT_CALLABLE_SCOPE int udpv6_rcv(struct sk_buff *skb) 1133 { 1133 { 1134 return __udp6_lib_rcv(skb, dev_net(sk 1134 return __udp6_lib_rcv(skb, dev_net(skb->dev)->ipv4.udp_table, IPPROTO_UDP); 1135 } 1135 } 1136 1136 1137 /* 1137 /* 1138 * Throw away all pending data and cancel the 1138 * Throw away all pending data and cancel the corking. Socket is locked. 1139 */ 1139 */ 1140 static void udp_v6_flush_pending_frames(struc 1140 static void udp_v6_flush_pending_frames(struct sock *sk) 1141 { 1141 { 1142 struct udp_sock *up = udp_sk(sk); 1142 struct udp_sock *up = udp_sk(sk); 1143 1143 1144 if (up->pending == AF_INET) 1144 if (up->pending == AF_INET) 1145 udp_flush_pending_frames(sk); 1145 udp_flush_pending_frames(sk); 1146 else if (up->pending) { 1146 else if (up->pending) { 1147 up->len = 0; 1147 up->len = 0; 1148 WRITE_ONCE(up->pending, 0); 1148 WRITE_ONCE(up->pending, 0); 1149 ip6_flush_pending_frames(sk); 1149 ip6_flush_pending_frames(sk); 1150 } 1150 } 1151 } 1151 } 1152 1152 1153 static int udpv6_pre_connect(struct sock *sk, 1153 static int udpv6_pre_connect(struct sock *sk, struct sockaddr *uaddr, 1154 int addr_len) 1154 int addr_len) 1155 { 1155 { 1156 if (addr_len < offsetofend(struct soc 1156 if (addr_len < offsetofend(struct sockaddr, sa_family)) 1157 return -EINVAL; 1157 return -EINVAL; 1158 /* The following checks are replicate 1158 /* The following checks are replicated from __ip6_datagram_connect() 1159 * and intended to prevent BPF progra 1159 * and intended to prevent BPF program called below from accessing 1160 * bytes that are out of the bound sp 1160 * bytes that are out of the bound specified by user in addr_len. 1161 */ 1161 */ 1162 if (uaddr->sa_family == AF_INET) { 1162 if (uaddr->sa_family == AF_INET) { 1163 if (ipv6_only_sock(sk)) 1163 if (ipv6_only_sock(sk)) 1164 return -EAFNOSUPPORT; 1164 return -EAFNOSUPPORT; 1165 return udp_pre_connect(sk, ua 1165 return udp_pre_connect(sk, uaddr, addr_len); 1166 } 1166 } 1167 1167 1168 if (addr_len < SIN6_LEN_RFC2133) 1168 if (addr_len < SIN6_LEN_RFC2133) 1169 return -EINVAL; 1169 return -EINVAL; 1170 1170 1171 return BPF_CGROUP_RUN_PROG_INET6_CONN 1171 return BPF_CGROUP_RUN_PROG_INET6_CONNECT_LOCK(sk, uaddr, &addr_len); 1172 } 1172 } 1173 1173 1174 /** 1174 /** 1175 * udp6_hwcsum_outgoing - handle outgo 1175 * udp6_hwcsum_outgoing - handle outgoing HW checksumming 1176 * @sk: socket we are sending on 1176 * @sk: socket we are sending on 1177 * @skb: sk_buff containing the filled 1177 * @skb: sk_buff containing the filled-in UDP header 1178 * (checksum field must be zeroe 1178 * (checksum field must be zeroed out) 1179 * @saddr: source address 1179 * @saddr: source address 1180 * @daddr: destination address 1180 * @daddr: destination address 1181 * @len: length of packet 1181 * @len: length of packet 1182 */ 1182 */ 1183 static void udp6_hwcsum_outgoing(struct sock 1183 static void udp6_hwcsum_outgoing(struct sock *sk, struct sk_buff *skb, 1184 const struct 1184 const struct in6_addr *saddr, 1185 const struct 1185 const struct in6_addr *daddr, int len) 1186 { 1186 { 1187 unsigned int offset; 1187 unsigned int offset; 1188 struct udphdr *uh = udp_hdr(skb); 1188 struct udphdr *uh = udp_hdr(skb); 1189 struct sk_buff *frags = skb_shinfo(sk 1189 struct sk_buff *frags = skb_shinfo(skb)->frag_list; 1190 __wsum csum = 0; 1190 __wsum csum = 0; 1191 1191 1192 if (!frags) { 1192 if (!frags) { 1193 /* Only one fragment on the s 1193 /* Only one fragment on the socket. */ 1194 skb->csum_start = skb_transpo 1194 skb->csum_start = skb_transport_header(skb) - skb->head; 1195 skb->csum_offset = offsetof(s 1195 skb->csum_offset = offsetof(struct udphdr, check); 1196 uh->check = ~csum_ipv6_magic( 1196 uh->check = ~csum_ipv6_magic(saddr, daddr, len, IPPROTO_UDP, 0); 1197 } else { 1197 } else { 1198 /* 1198 /* 1199 * HW-checksum won't work as 1199 * HW-checksum won't work as there are two or more 1200 * fragments on the socket so 1200 * fragments on the socket so that all csums of sk_buffs 1201 * should be together 1201 * should be together 1202 */ 1202 */ 1203 offset = skb_transport_offset 1203 offset = skb_transport_offset(skb); 1204 skb->csum = skb_checksum(skb, 1204 skb->csum = skb_checksum(skb, offset, skb->len - offset, 0); 1205 csum = skb->csum; 1205 csum = skb->csum; 1206 1206 1207 skb->ip_summed = CHECKSUM_NON 1207 skb->ip_summed = CHECKSUM_NONE; 1208 1208 1209 do { 1209 do { 1210 csum = csum_add(csum, 1210 csum = csum_add(csum, frags->csum); 1211 } while ((frags = frags->next 1211 } while ((frags = frags->next)); 1212 1212 1213 uh->check = csum_ipv6_magic(s 1213 uh->check = csum_ipv6_magic(saddr, daddr, len, IPPROTO_UDP, 1214 c 1214 csum); 1215 if (uh->check == 0) 1215 if (uh->check == 0) 1216 uh->check = CSUM_MANG 1216 uh->check = CSUM_MANGLED_0; 1217 } 1217 } 1218 } 1218 } 1219 1219 1220 /* 1220 /* 1221 * Sending 1221 * Sending 1222 */ 1222 */ 1223 1223 1224 static int udp_v6_send_skb(struct sk_buff *sk 1224 static int udp_v6_send_skb(struct sk_buff *skb, struct flowi6 *fl6, 1225 struct inet_cork * 1225 struct inet_cork *cork) 1226 { 1226 { 1227 struct sock *sk = skb->sk; 1227 struct sock *sk = skb->sk; 1228 struct udphdr *uh; 1228 struct udphdr *uh; 1229 int err = 0; 1229 int err = 0; 1230 int is_udplite = IS_UDPLITE(sk); 1230 int is_udplite = IS_UDPLITE(sk); 1231 __wsum csum = 0; 1231 __wsum csum = 0; 1232 int offset = skb_transport_offset(skb 1232 int offset = skb_transport_offset(skb); 1233 int len = skb->len - offset; 1233 int len = skb->len - offset; 1234 int datalen = len - sizeof(*uh); 1234 int datalen = len - sizeof(*uh); 1235 1235 1236 /* 1236 /* 1237 * Create a UDP header 1237 * Create a UDP header 1238 */ 1238 */ 1239 uh = udp_hdr(skb); 1239 uh = udp_hdr(skb); 1240 uh->source = fl6->fl6_sport; 1240 uh->source = fl6->fl6_sport; 1241 uh->dest = fl6->fl6_dport; 1241 uh->dest = fl6->fl6_dport; 1242 uh->len = htons(len); 1242 uh->len = htons(len); 1243 uh->check = 0; 1243 uh->check = 0; 1244 1244 1245 if (cork->gso_size) { 1245 if (cork->gso_size) { 1246 const int hlen = skb_network_ 1246 const int hlen = skb_network_header_len(skb) + 1247 sizeof(struc 1247 sizeof(struct udphdr); 1248 1248 1249 if (hlen + cork->gso_size > c 1249 if (hlen + cork->gso_size > cork->fragsize) { 1250 kfree_skb(skb); 1250 kfree_skb(skb); 1251 return -EINVAL; 1251 return -EINVAL; 1252 } 1252 } 1253 if (datalen > cork->gso_size 1253 if (datalen > cork->gso_size * UDP_MAX_SEGMENTS) { 1254 kfree_skb(skb); 1254 kfree_skb(skb); 1255 return -EINVAL; 1255 return -EINVAL; 1256 } 1256 } 1257 if (udp_get_no_check6_tx(sk)) 1257 if (udp_get_no_check6_tx(sk)) { 1258 kfree_skb(skb); 1258 kfree_skb(skb); 1259 return -EINVAL; 1259 return -EINVAL; 1260 } 1260 } 1261 if (is_udplite || dst_xfrm(sk 1261 if (is_udplite || dst_xfrm(skb_dst(skb))) { 1262 kfree_skb(skb); 1262 kfree_skb(skb); 1263 return -EIO; 1263 return -EIO; 1264 } 1264 } 1265 1265 1266 if (datalen > cork->gso_size) 1266 if (datalen > cork->gso_size) { 1267 skb_shinfo(skb)->gso_ 1267 skb_shinfo(skb)->gso_size = cork->gso_size; 1268 skb_shinfo(skb)->gso_ 1268 skb_shinfo(skb)->gso_type = SKB_GSO_UDP_L4; 1269 skb_shinfo(skb)->gso_ 1269 skb_shinfo(skb)->gso_segs = DIV_ROUND_UP(datalen, 1270 1270 cork->gso_size); 1271 1271 1272 /* Don't checksum the 1272 /* Don't checksum the payload, skb will get segmented */ 1273 goto csum_partial; 1273 goto csum_partial; 1274 } 1274 } 1275 } 1275 } 1276 1276 1277 if (is_udplite) 1277 if (is_udplite) 1278 csum = udplite_csum(skb); 1278 csum = udplite_csum(skb); 1279 else if (udp_get_no_check6_tx(sk)) { 1279 else if (udp_get_no_check6_tx(sk)) { /* UDP csum disabled */ 1280 skb->ip_summed = CHECKSUM_NON 1280 skb->ip_summed = CHECKSUM_NONE; 1281 goto send; 1281 goto send; 1282 } else if (skb->ip_summed == CHECKSUM 1282 } else if (skb->ip_summed == CHECKSUM_PARTIAL) { /* UDP hardware csum */ 1283 csum_partial: 1283 csum_partial: 1284 udp6_hwcsum_outgoing(sk, skb, 1284 udp6_hwcsum_outgoing(sk, skb, &fl6->saddr, &fl6->daddr, len); 1285 goto send; 1285 goto send; 1286 } else 1286 } else 1287 csum = udp_csum(skb); 1287 csum = udp_csum(skb); 1288 1288 1289 /* add protocol-dependent pseudo-head 1289 /* add protocol-dependent pseudo-header */ 1290 uh->check = csum_ipv6_magic(&fl6->sad 1290 uh->check = csum_ipv6_magic(&fl6->saddr, &fl6->daddr, 1291 len, fl6- 1291 len, fl6->flowi6_proto, csum); 1292 if (uh->check == 0) 1292 if (uh->check == 0) 1293 uh->check = CSUM_MANGLED_0; 1293 uh->check = CSUM_MANGLED_0; 1294 1294 1295 send: 1295 send: 1296 err = ip6_send_skb(skb); 1296 err = ip6_send_skb(skb); 1297 if (err) { 1297 if (err) { 1298 if (err == -ENOBUFS && !inet6 1298 if (err == -ENOBUFS && !inet6_test_bit(RECVERR6, sk)) { 1299 UDP6_INC_STATS(sock_n 1299 UDP6_INC_STATS(sock_net(sk), 1300 UDP_MI 1300 UDP_MIB_SNDBUFERRORS, is_udplite); 1301 err = 0; 1301 err = 0; 1302 } 1302 } 1303 } else { 1303 } else { 1304 UDP6_INC_STATS(sock_net(sk), 1304 UDP6_INC_STATS(sock_net(sk), 1305 UDP_MIB_OUTDAT 1305 UDP_MIB_OUTDATAGRAMS, is_udplite); 1306 } 1306 } 1307 return err; 1307 return err; 1308 } 1308 } 1309 1309 1310 static int udp_v6_push_pending_frames(struct 1310 static int udp_v6_push_pending_frames(struct sock *sk) 1311 { 1311 { 1312 struct sk_buff *skb; 1312 struct sk_buff *skb; 1313 struct udp_sock *up = udp_sk(sk); 1313 struct udp_sock *up = udp_sk(sk); 1314 int err = 0; 1314 int err = 0; 1315 1315 1316 if (up->pending == AF_INET) 1316 if (up->pending == AF_INET) 1317 return udp_push_pending_frame 1317 return udp_push_pending_frames(sk); 1318 1318 1319 skb = ip6_finish_skb(sk); 1319 skb = ip6_finish_skb(sk); 1320 if (!skb) 1320 if (!skb) 1321 goto out; 1321 goto out; 1322 1322 1323 err = udp_v6_send_skb(skb, &inet_sk(s 1323 err = udp_v6_send_skb(skb, &inet_sk(sk)->cork.fl.u.ip6, 1324 &inet_sk(sk)->c 1324 &inet_sk(sk)->cork.base); 1325 out: 1325 out: 1326 up->len = 0; 1326 up->len = 0; 1327 WRITE_ONCE(up->pending, 0); 1327 WRITE_ONCE(up->pending, 0); 1328 return err; 1328 return err; 1329 } 1329 } 1330 1330 1331 int udpv6_sendmsg(struct sock *sk, struct msg 1331 int udpv6_sendmsg(struct sock *sk, struct msghdr *msg, size_t len) 1332 { 1332 { 1333 struct ipv6_txoptions opt_space; 1333 struct ipv6_txoptions opt_space; 1334 struct udp_sock *up = udp_sk(sk); 1334 struct udp_sock *up = udp_sk(sk); 1335 struct inet_sock *inet = inet_sk(sk); 1335 struct inet_sock *inet = inet_sk(sk); 1336 struct ipv6_pinfo *np = inet6_sk(sk); 1336 struct ipv6_pinfo *np = inet6_sk(sk); 1337 DECLARE_SOCKADDR(struct sockaddr_in6 1337 DECLARE_SOCKADDR(struct sockaddr_in6 *, sin6, msg->msg_name); 1338 struct in6_addr *daddr, *final_p, fin 1338 struct in6_addr *daddr, *final_p, final; 1339 struct ipv6_txoptions *opt = NULL; 1339 struct ipv6_txoptions *opt = NULL; 1340 struct ipv6_txoptions *opt_to_free = 1340 struct ipv6_txoptions *opt_to_free = NULL; 1341 struct ip6_flowlabel *flowlabel = NUL 1341 struct ip6_flowlabel *flowlabel = NULL; 1342 struct inet_cork_full cork; 1342 struct inet_cork_full cork; 1343 struct flowi6 *fl6 = &cork.fl.u.ip6; 1343 struct flowi6 *fl6 = &cork.fl.u.ip6; 1344 struct dst_entry *dst; 1344 struct dst_entry *dst; 1345 struct ipcm6_cookie ipc6; 1345 struct ipcm6_cookie ipc6; 1346 int addr_len = msg->msg_namelen; 1346 int addr_len = msg->msg_namelen; 1347 bool connected = false; 1347 bool connected = false; 1348 int ulen = len; 1348 int ulen = len; 1349 int corkreq = udp_test_bit(CORK, sk) 1349 int corkreq = udp_test_bit(CORK, sk) || msg->msg_flags & MSG_MORE; 1350 int err; 1350 int err; 1351 int is_udplite = IS_UDPLITE(sk); 1351 int is_udplite = IS_UDPLITE(sk); 1352 int (*getfrag)(void *, char *, int, i 1352 int (*getfrag)(void *, char *, int, int, int, struct sk_buff *); 1353 1353 1354 ipcm6_init(&ipc6); 1354 ipcm6_init(&ipc6); 1355 ipc6.gso_size = READ_ONCE(up->gso_siz 1355 ipc6.gso_size = READ_ONCE(up->gso_size); 1356 ipc6.sockc.tsflags = READ_ONCE(sk->sk 1356 ipc6.sockc.tsflags = READ_ONCE(sk->sk_tsflags); 1357 ipc6.sockc.mark = READ_ONCE(sk->sk_ma 1357 ipc6.sockc.mark = READ_ONCE(sk->sk_mark); 1358 1358 1359 /* destination address check */ 1359 /* destination address check */ 1360 if (sin6) { 1360 if (sin6) { 1361 if (addr_len < offsetof(struc 1361 if (addr_len < offsetof(struct sockaddr, sa_data)) 1362 return -EINVAL; 1362 return -EINVAL; 1363 1363 1364 switch (sin6->sin6_family) { 1364 switch (sin6->sin6_family) { 1365 case AF_INET6: 1365 case AF_INET6: 1366 if (addr_len < SIN6_L 1366 if (addr_len < SIN6_LEN_RFC2133) 1367 return -EINVA 1367 return -EINVAL; 1368 daddr = &sin6->sin6_a 1368 daddr = &sin6->sin6_addr; 1369 if (ipv6_addr_any(dad 1369 if (ipv6_addr_any(daddr) && 1370 ipv6_addr_v4mappe 1370 ipv6_addr_v4mapped(&np->saddr)) 1371 ipv6_addr_set 1371 ipv6_addr_set_v4mapped(htonl(INADDR_LOOPBACK), 1372 1372 daddr); 1373 break; 1373 break; 1374 case AF_INET: 1374 case AF_INET: 1375 goto do_udp_sendmsg; 1375 goto do_udp_sendmsg; 1376 case AF_UNSPEC: 1376 case AF_UNSPEC: 1377 msg->msg_name = sin6 1377 msg->msg_name = sin6 = NULL; 1378 msg->msg_namelen = ad 1378 msg->msg_namelen = addr_len = 0; 1379 daddr = NULL; 1379 daddr = NULL; 1380 break; 1380 break; 1381 default: 1381 default: 1382 return -EINVAL; 1382 return -EINVAL; 1383 } 1383 } 1384 } else if (!READ_ONCE(up->pending)) { 1384 } else if (!READ_ONCE(up->pending)) { 1385 if (sk->sk_state != TCP_ESTAB 1385 if (sk->sk_state != TCP_ESTABLISHED) 1386 return -EDESTADDRREQ; 1386 return -EDESTADDRREQ; 1387 daddr = &sk->sk_v6_daddr; 1387 daddr = &sk->sk_v6_daddr; 1388 } else 1388 } else 1389 daddr = NULL; 1389 daddr = NULL; 1390 1390 1391 if (daddr) { 1391 if (daddr) { 1392 if (ipv6_addr_v4mapped(daddr) 1392 if (ipv6_addr_v4mapped(daddr)) { 1393 struct sockaddr_in si 1393 struct sockaddr_in sin; 1394 sin.sin_family = AF_I 1394 sin.sin_family = AF_INET; 1395 sin.sin_port = sin6 ? 1395 sin.sin_port = sin6 ? sin6->sin6_port : inet->inet_dport; 1396 sin.sin_addr.s_addr = 1396 sin.sin_addr.s_addr = daddr->s6_addr32[3]; 1397 msg->msg_name = &sin; 1397 msg->msg_name = &sin; 1398 msg->msg_namelen = si 1398 msg->msg_namelen = sizeof(sin); 1399 do_udp_sendmsg: 1399 do_udp_sendmsg: 1400 err = ipv6_only_sock( 1400 err = ipv6_only_sock(sk) ? 1401 -ENETUNREACH 1401 -ENETUNREACH : udp_sendmsg(sk, msg, len); 1402 msg->msg_name = sin6; 1402 msg->msg_name = sin6; 1403 msg->msg_namelen = ad 1403 msg->msg_namelen = addr_len; 1404 return err; 1404 return err; 1405 } 1405 } 1406 } 1406 } 1407 1407 1408 /* Rough check on arithmetic overflow 1408 /* Rough check on arithmetic overflow, 1409 better check is made in ip6_append 1409 better check is made in ip6_append_data(). 1410 */ 1410 */ 1411 if (len > INT_MAX - sizeof(struct udp 1411 if (len > INT_MAX - sizeof(struct udphdr)) 1412 return -EMSGSIZE; 1412 return -EMSGSIZE; 1413 1413 1414 getfrag = is_udplite ? udplite_get 1414 getfrag = is_udplite ? udplite_getfrag : ip_generic_getfrag; 1415 if (READ_ONCE(up->pending)) { 1415 if (READ_ONCE(up->pending)) { 1416 if (READ_ONCE(up->pending) == 1416 if (READ_ONCE(up->pending) == AF_INET) 1417 return udp_sendmsg(sk 1417 return udp_sendmsg(sk, msg, len); 1418 /* 1418 /* 1419 * There are pending frames. 1419 * There are pending frames. 1420 * The socket lock must be he 1420 * The socket lock must be held while it's corked. 1421 */ 1421 */ 1422 lock_sock(sk); 1422 lock_sock(sk); 1423 if (likely(up->pending)) { 1423 if (likely(up->pending)) { 1424 if (unlikely(up->pend 1424 if (unlikely(up->pending != AF_INET6)) { 1425 release_sock( 1425 release_sock(sk); 1426 return -EAFNO 1426 return -EAFNOSUPPORT; 1427 } 1427 } 1428 dst = NULL; 1428 dst = NULL; 1429 goto do_append_data; 1429 goto do_append_data; 1430 } 1430 } 1431 release_sock(sk); 1431 release_sock(sk); 1432 } 1432 } 1433 ulen += sizeof(struct udphdr); 1433 ulen += sizeof(struct udphdr); 1434 1434 1435 memset(fl6, 0, sizeof(*fl6)); 1435 memset(fl6, 0, sizeof(*fl6)); 1436 1436 1437 if (sin6) { 1437 if (sin6) { 1438 if (sin6->sin6_port == 0) 1438 if (sin6->sin6_port == 0) 1439 return -EINVAL; 1439 return -EINVAL; 1440 1440 1441 fl6->fl6_dport = sin6->sin6_p 1441 fl6->fl6_dport = sin6->sin6_port; 1442 daddr = &sin6->sin6_addr; 1442 daddr = &sin6->sin6_addr; 1443 1443 1444 if (inet6_test_bit(SNDFLOW, s 1444 if (inet6_test_bit(SNDFLOW, sk)) { 1445 fl6->flowlabel = sin6 1445 fl6->flowlabel = sin6->sin6_flowinfo&IPV6_FLOWINFO_MASK; 1446 if (fl6->flowlabel & 1446 if (fl6->flowlabel & IPV6_FLOWLABEL_MASK) { 1447 flowlabel = f 1447 flowlabel = fl6_sock_lookup(sk, fl6->flowlabel); 1448 if (IS_ERR(fl 1448 if (IS_ERR(flowlabel)) 1449 retur 1449 return -EINVAL; 1450 } 1450 } 1451 } 1451 } 1452 1452 1453 /* 1453 /* 1454 * Otherwise it will be diffi 1454 * Otherwise it will be difficult to maintain 1455 * sk->sk_dst_cache. 1455 * sk->sk_dst_cache. 1456 */ 1456 */ 1457 if (sk->sk_state == TCP_ESTAB 1457 if (sk->sk_state == TCP_ESTABLISHED && 1458 ipv6_addr_equal(daddr, &s 1458 ipv6_addr_equal(daddr, &sk->sk_v6_daddr)) 1459 daddr = &sk->sk_v6_da 1459 daddr = &sk->sk_v6_daddr; 1460 1460 1461 if (addr_len >= sizeof(struct 1461 if (addr_len >= sizeof(struct sockaddr_in6) && 1462 sin6->sin6_scope_id && 1462 sin6->sin6_scope_id && 1463 __ipv6_addr_needs_scope_i 1463 __ipv6_addr_needs_scope_id(__ipv6_addr_type(daddr))) 1464 fl6->flowi6_oif = sin 1464 fl6->flowi6_oif = sin6->sin6_scope_id; 1465 } else { 1465 } else { 1466 if (sk->sk_state != TCP_ESTAB 1466 if (sk->sk_state != TCP_ESTABLISHED) 1467 return -EDESTADDRREQ; 1467 return -EDESTADDRREQ; 1468 1468 1469 fl6->fl6_dport = inet->inet_d 1469 fl6->fl6_dport = inet->inet_dport; 1470 daddr = &sk->sk_v6_daddr; 1470 daddr = &sk->sk_v6_daddr; 1471 fl6->flowlabel = np->flow_lab 1471 fl6->flowlabel = np->flow_label; 1472 connected = true; 1472 connected = true; 1473 } 1473 } 1474 1474 1475 if (!fl6->flowi6_oif) 1475 if (!fl6->flowi6_oif) 1476 fl6->flowi6_oif = READ_ONCE(s 1476 fl6->flowi6_oif = READ_ONCE(sk->sk_bound_dev_if); 1477 1477 1478 if (!fl6->flowi6_oif) 1478 if (!fl6->flowi6_oif) 1479 fl6->flowi6_oif = np->sticky_ 1479 fl6->flowi6_oif = np->sticky_pktinfo.ipi6_ifindex; 1480 1480 1481 fl6->flowi6_uid = sk->sk_uid; 1481 fl6->flowi6_uid = sk->sk_uid; 1482 1482 1483 if (msg->msg_controllen) { 1483 if (msg->msg_controllen) { 1484 opt = &opt_space; 1484 opt = &opt_space; 1485 memset(opt, 0, sizeof(struct 1485 memset(opt, 0, sizeof(struct ipv6_txoptions)); 1486 opt->tot_len = sizeof(*opt); 1486 opt->tot_len = sizeof(*opt); 1487 ipc6.opt = opt; 1487 ipc6.opt = opt; 1488 1488 1489 err = udp_cmsg_send(sk, msg, 1489 err = udp_cmsg_send(sk, msg, &ipc6.gso_size); 1490 if (err > 0) { 1490 if (err > 0) { 1491 err = ip6_datagram_se 1491 err = ip6_datagram_send_ctl(sock_net(sk), sk, msg, fl6, 1492 1492 &ipc6); 1493 connected = false; 1493 connected = false; 1494 } 1494 } 1495 if (err < 0) { 1495 if (err < 0) { 1496 fl6_sock_release(flow 1496 fl6_sock_release(flowlabel); 1497 return err; 1497 return err; 1498 } 1498 } 1499 if ((fl6->flowlabel&IPV6_FLOW 1499 if ((fl6->flowlabel&IPV6_FLOWLABEL_MASK) && !flowlabel) { 1500 flowlabel = fl6_sock_ 1500 flowlabel = fl6_sock_lookup(sk, fl6->flowlabel); 1501 if (IS_ERR(flowlabel) 1501 if (IS_ERR(flowlabel)) 1502 return -EINVA 1502 return -EINVAL; 1503 } 1503 } 1504 if (!(opt->opt_nflen|opt->opt 1504 if (!(opt->opt_nflen|opt->opt_flen)) 1505 opt = NULL; 1505 opt = NULL; 1506 } 1506 } 1507 if (!opt) { 1507 if (!opt) { 1508 opt = txopt_get(np); 1508 opt = txopt_get(np); 1509 opt_to_free = opt; 1509 opt_to_free = opt; 1510 } 1510 } 1511 if (flowlabel) 1511 if (flowlabel) 1512 opt = fl6_merge_options(&opt_ 1512 opt = fl6_merge_options(&opt_space, flowlabel, opt); 1513 opt = ipv6_fixup_options(&opt_space, 1513 opt = ipv6_fixup_options(&opt_space, opt); 1514 ipc6.opt = opt; 1514 ipc6.opt = opt; 1515 1515 1516 fl6->flowi6_proto = sk->sk_protocol; 1516 fl6->flowi6_proto = sk->sk_protocol; 1517 fl6->flowi6_mark = ipc6.sockc.mark; 1517 fl6->flowi6_mark = ipc6.sockc.mark; 1518 fl6->daddr = *daddr; 1518 fl6->daddr = *daddr; 1519 if (ipv6_addr_any(&fl6->saddr) && !ip 1519 if (ipv6_addr_any(&fl6->saddr) && !ipv6_addr_any(&np->saddr)) 1520 fl6->saddr = np->saddr; 1520 fl6->saddr = np->saddr; 1521 fl6->fl6_sport = inet->inet_sport; 1521 fl6->fl6_sport = inet->inet_sport; 1522 1522 1523 if (cgroup_bpf_enabled(CGROUP_UDP6_SE 1523 if (cgroup_bpf_enabled(CGROUP_UDP6_SENDMSG) && !connected) { 1524 err = BPF_CGROUP_RUN_PROG_UDP 1524 err = BPF_CGROUP_RUN_PROG_UDP6_SENDMSG_LOCK(sk, 1525 (s 1525 (struct sockaddr *)sin6, 1526 &a 1526 &addr_len, 1527 &f 1527 &fl6->saddr); 1528 if (err) 1528 if (err) 1529 goto out_no_dst; 1529 goto out_no_dst; 1530 if (sin6) { 1530 if (sin6) { 1531 if (ipv6_addr_v4mappe 1531 if (ipv6_addr_v4mapped(&sin6->sin6_addr)) { 1532 /* BPF progra 1532 /* BPF program rewrote IPv6-only by IPv4-mapped 1533 * IPv6. It's 1533 * IPv6. It's currently unsupported. 1534 */ 1534 */ 1535 err = -ENOTSU 1535 err = -ENOTSUPP; 1536 goto out_no_d 1536 goto out_no_dst; 1537 } 1537 } 1538 if (sin6->sin6_port = 1538 if (sin6->sin6_port == 0) { 1539 /* BPF progra 1539 /* BPF program set invalid port. Reject it. */ 1540 err = -EINVAL 1540 err = -EINVAL; 1541 goto out_no_d 1541 goto out_no_dst; 1542 } 1542 } 1543 fl6->fl6_dport = sin6 1543 fl6->fl6_dport = sin6->sin6_port; 1544 fl6->daddr = sin6->si 1544 fl6->daddr = sin6->sin6_addr; 1545 } 1545 } 1546 } 1546 } 1547 1547 1548 if (ipv6_addr_any(&fl6->daddr)) 1548 if (ipv6_addr_any(&fl6->daddr)) 1549 fl6->daddr.s6_addr[15] = 0x1; 1549 fl6->daddr.s6_addr[15] = 0x1; /* :: means loopback (BSD'ism) */ 1550 1550 1551 final_p = fl6_update_dst(fl6, opt, &f 1551 final_p = fl6_update_dst(fl6, opt, &final); 1552 if (final_p) 1552 if (final_p) 1553 connected = false; 1553 connected = false; 1554 1554 1555 if (!fl6->flowi6_oif && ipv6_addr_is_ 1555 if (!fl6->flowi6_oif && ipv6_addr_is_multicast(&fl6->daddr)) { 1556 fl6->flowi6_oif = READ_ONCE(n 1556 fl6->flowi6_oif = READ_ONCE(np->mcast_oif); 1557 connected = false; 1557 connected = false; 1558 } else if (!fl6->flowi6_oif) 1558 } else if (!fl6->flowi6_oif) 1559 fl6->flowi6_oif = READ_ONCE(n 1559 fl6->flowi6_oif = READ_ONCE(np->ucast_oif); 1560 1560 1561 security_sk_classify_flow(sk, flowi6_ 1561 security_sk_classify_flow(sk, flowi6_to_flowi_common(fl6)); 1562 1562 1563 if (ipc6.tclass < 0) 1563 if (ipc6.tclass < 0) 1564 ipc6.tclass = np->tclass; 1564 ipc6.tclass = np->tclass; 1565 1565 1566 fl6->flowlabel = ip6_make_flowinfo(ip 1566 fl6->flowlabel = ip6_make_flowinfo(ipc6.tclass, fl6->flowlabel); 1567 1567 1568 dst = ip6_sk_dst_lookup_flow(sk, fl6, 1568 dst = ip6_sk_dst_lookup_flow(sk, fl6, final_p, connected); 1569 if (IS_ERR(dst)) { 1569 if (IS_ERR(dst)) { 1570 err = PTR_ERR(dst); 1570 err = PTR_ERR(dst); 1571 dst = NULL; 1571 dst = NULL; 1572 goto out; 1572 goto out; 1573 } 1573 } 1574 1574 1575 if (ipc6.hlimit < 0) 1575 if (ipc6.hlimit < 0) 1576 ipc6.hlimit = ip6_sk_dst_hopl 1576 ipc6.hlimit = ip6_sk_dst_hoplimit(np, fl6, dst); 1577 1577 1578 if (msg->msg_flags&MSG_CONFIRM) 1578 if (msg->msg_flags&MSG_CONFIRM) 1579 goto do_confirm; 1579 goto do_confirm; 1580 back_from_confirm: 1580 back_from_confirm: 1581 1581 1582 /* Lockless fast path for the non-cor 1582 /* Lockless fast path for the non-corking case */ 1583 if (!corkreq) { 1583 if (!corkreq) { 1584 struct sk_buff *skb; 1584 struct sk_buff *skb; 1585 1585 1586 skb = ip6_make_skb(sk, getfra 1586 skb = ip6_make_skb(sk, getfrag, msg, ulen, 1587 sizeof(str 1587 sizeof(struct udphdr), &ipc6, 1588 dst_rt6_in 1588 dst_rt6_info(dst), 1589 msg->msg_f 1589 msg->msg_flags, &cork); 1590 err = PTR_ERR(skb); 1590 err = PTR_ERR(skb); 1591 if (!IS_ERR_OR_NULL(skb)) 1591 if (!IS_ERR_OR_NULL(skb)) 1592 err = udp_v6_send_skb 1592 err = udp_v6_send_skb(skb, fl6, &cork.base); 1593 /* ip6_make_skb steals dst re 1593 /* ip6_make_skb steals dst reference */ 1594 goto out_no_dst; 1594 goto out_no_dst; 1595 } 1595 } 1596 1596 1597 lock_sock(sk); 1597 lock_sock(sk); 1598 if (unlikely(up->pending)) { 1598 if (unlikely(up->pending)) { 1599 /* The socket is already cork 1599 /* The socket is already corked while preparing it. */ 1600 /* ... which is an evident ap 1600 /* ... which is an evident application bug. --ANK */ 1601 release_sock(sk); 1601 release_sock(sk); 1602 1602 1603 net_dbg_ratelimited("udp cork 1603 net_dbg_ratelimited("udp cork app bug 2\n"); 1604 err = -EINVAL; 1604 err = -EINVAL; 1605 goto out; 1605 goto out; 1606 } 1606 } 1607 1607 1608 WRITE_ONCE(up->pending, AF_INET6); 1608 WRITE_ONCE(up->pending, AF_INET6); 1609 1609 1610 do_append_data: 1610 do_append_data: 1611 if (ipc6.dontfrag < 0) 1611 if (ipc6.dontfrag < 0) 1612 ipc6.dontfrag = inet6_test_bi 1612 ipc6.dontfrag = inet6_test_bit(DONTFRAG, sk); 1613 up->len += ulen; 1613 up->len += ulen; 1614 err = ip6_append_data(sk, getfrag, ms 1614 err = ip6_append_data(sk, getfrag, msg, ulen, sizeof(struct udphdr), 1615 &ipc6, fl6, dst 1615 &ipc6, fl6, dst_rt6_info(dst), 1616 corkreq ? msg-> 1616 corkreq ? msg->msg_flags|MSG_MORE : msg->msg_flags); 1617 if (err) 1617 if (err) 1618 udp_v6_flush_pending_frames(s 1618 udp_v6_flush_pending_frames(sk); 1619 else if (!corkreq) 1619 else if (!corkreq) 1620 err = udp_v6_push_pending_fra 1620 err = udp_v6_push_pending_frames(sk); 1621 else if (unlikely(skb_queue_empty(&sk 1621 else if (unlikely(skb_queue_empty(&sk->sk_write_queue))) 1622 WRITE_ONCE(up->pending, 0); 1622 WRITE_ONCE(up->pending, 0); 1623 1623 1624 if (err > 0) 1624 if (err > 0) 1625 err = inet6_test_bit(RECVERR6 1625 err = inet6_test_bit(RECVERR6, sk) ? net_xmit_errno(err) : 0; 1626 release_sock(sk); 1626 release_sock(sk); 1627 1627 1628 out: 1628 out: 1629 dst_release(dst); 1629 dst_release(dst); 1630 out_no_dst: 1630 out_no_dst: 1631 fl6_sock_release(flowlabel); 1631 fl6_sock_release(flowlabel); 1632 txopt_put(opt_to_free); 1632 txopt_put(opt_to_free); 1633 if (!err) 1633 if (!err) 1634 return len; 1634 return len; 1635 /* 1635 /* 1636 * ENOBUFS = no kernel mem, SOCK_NOSP 1636 * ENOBUFS = no kernel mem, SOCK_NOSPACE = no sndbuf space. Reporting 1637 * ENOBUFS might not be good (it's no 1637 * ENOBUFS might not be good (it's not tunable per se), but otherwise 1638 * we don't have a good statistic (Ip 1638 * we don't have a good statistic (IpOutDiscards but it can be too many 1639 * things). We could add another new 1639 * things). We could add another new stat but at least for now that 1640 * seems like overkill. 1640 * seems like overkill. 1641 */ 1641 */ 1642 if (err == -ENOBUFS || test_bit(SOCK_ 1642 if (err == -ENOBUFS || test_bit(SOCK_NOSPACE, &sk->sk_socket->flags)) { 1643 UDP6_INC_STATS(sock_net(sk), 1643 UDP6_INC_STATS(sock_net(sk), 1644 UDP_MIB_SNDBUF 1644 UDP_MIB_SNDBUFERRORS, is_udplite); 1645 } 1645 } 1646 return err; 1646 return err; 1647 1647 1648 do_confirm: 1648 do_confirm: 1649 if (msg->msg_flags & MSG_PROBE) 1649 if (msg->msg_flags & MSG_PROBE) 1650 dst_confirm_neigh(dst, &fl6-> 1650 dst_confirm_neigh(dst, &fl6->daddr); 1651 if (!(msg->msg_flags&MSG_PROBE) || le 1651 if (!(msg->msg_flags&MSG_PROBE) || len) 1652 goto back_from_confirm; 1652 goto back_from_confirm; 1653 err = 0; 1653 err = 0; 1654 goto out; 1654 goto out; 1655 } 1655 } 1656 EXPORT_SYMBOL(udpv6_sendmsg); 1656 EXPORT_SYMBOL(udpv6_sendmsg); 1657 1657 1658 static void udpv6_splice_eof(struct socket *s 1658 static void udpv6_splice_eof(struct socket *sock) 1659 { 1659 { 1660 struct sock *sk = sock->sk; 1660 struct sock *sk = sock->sk; 1661 struct udp_sock *up = udp_sk(sk); 1661 struct udp_sock *up = udp_sk(sk); 1662 1662 1663 if (!READ_ONCE(up->pending) || udp_te 1663 if (!READ_ONCE(up->pending) || udp_test_bit(CORK, sk)) 1664 return; 1664 return; 1665 1665 1666 lock_sock(sk); 1666 lock_sock(sk); 1667 if (up->pending && !udp_test_bit(CORK 1667 if (up->pending && !udp_test_bit(CORK, sk)) 1668 udp_v6_push_pending_frames(sk 1668 udp_v6_push_pending_frames(sk); 1669 release_sock(sk); 1669 release_sock(sk); 1670 } 1670 } 1671 1671 1672 void udpv6_destroy_sock(struct sock *sk) 1672 void udpv6_destroy_sock(struct sock *sk) 1673 { 1673 { 1674 struct udp_sock *up = udp_sk(sk); 1674 struct udp_sock *up = udp_sk(sk); 1675 lock_sock(sk); 1675 lock_sock(sk); 1676 1676 1677 /* protects from races with udp_abort 1677 /* protects from races with udp_abort() */ 1678 sock_set_flag(sk, SOCK_DEAD); 1678 sock_set_flag(sk, SOCK_DEAD); 1679 udp_v6_flush_pending_frames(sk); 1679 udp_v6_flush_pending_frames(sk); 1680 release_sock(sk); 1680 release_sock(sk); 1681 1681 1682 if (static_branch_unlikely(&udpv6_enc 1682 if (static_branch_unlikely(&udpv6_encap_needed_key)) { 1683 if (up->encap_type) { 1683 if (up->encap_type) { 1684 void (*encap_destroy) 1684 void (*encap_destroy)(struct sock *sk); 1685 encap_destroy = READ_ 1685 encap_destroy = READ_ONCE(up->encap_destroy); 1686 if (encap_destroy) 1686 if (encap_destroy) 1687 encap_destroy 1687 encap_destroy(sk); 1688 } 1688 } 1689 if (udp_test_bit(ENCAP_ENABLE 1689 if (udp_test_bit(ENCAP_ENABLED, sk)) { 1690 static_branch_dec(&ud 1690 static_branch_dec(&udpv6_encap_needed_key); 1691 udp_encap_disable(); 1691 udp_encap_disable(); 1692 } 1692 } 1693 } 1693 } 1694 } 1694 } 1695 1695 1696 /* 1696 /* 1697 * Socket option code for UDP 1697 * Socket option code for UDP 1698 */ 1698 */ 1699 int udpv6_setsockopt(struct sock *sk, int lev 1699 int udpv6_setsockopt(struct sock *sk, int level, int optname, sockptr_t optval, 1700 unsigned int optlen) 1700 unsigned int optlen) 1701 { 1701 { 1702 if (level == SOL_UDP || level == SO 1702 if (level == SOL_UDP || level == SOL_UDPLITE || level == SOL_SOCKET) 1703 return udp_lib_setsockopt(sk, 1703 return udp_lib_setsockopt(sk, level, optname, 1704 opt 1704 optval, optlen, 1705 udp 1705 udp_v6_push_pending_frames); 1706 return ipv6_setsockopt(sk, level, opt 1706 return ipv6_setsockopt(sk, level, optname, optval, optlen); 1707 } 1707 } 1708 1708 1709 int udpv6_getsockopt(struct sock *sk, int lev 1709 int udpv6_getsockopt(struct sock *sk, int level, int optname, 1710 char __user *optval, int 1710 char __user *optval, int __user *optlen) 1711 { 1711 { 1712 if (level == SOL_UDP || level == SO 1712 if (level == SOL_UDP || level == SOL_UDPLITE) 1713 return udp_lib_getsockopt(sk, 1713 return udp_lib_getsockopt(sk, level, optname, optval, optlen); 1714 return ipv6_getsockopt(sk, level, opt 1714 return ipv6_getsockopt(sk, level, optname, optval, optlen); 1715 } 1715 } 1716 1716 1717 1717 1718 /* ------------------------------------------ 1718 /* ------------------------------------------------------------------------ */ 1719 #ifdef CONFIG_PROC_FS 1719 #ifdef CONFIG_PROC_FS 1720 int udp6_seq_show(struct seq_file *seq, void 1720 int udp6_seq_show(struct seq_file *seq, void *v) 1721 { 1721 { 1722 if (v == SEQ_START_TOKEN) { 1722 if (v == SEQ_START_TOKEN) { 1723 seq_puts(seq, IPV6_SEQ_DGRAM_ 1723 seq_puts(seq, IPV6_SEQ_DGRAM_HEADER); 1724 } else { 1724 } else { 1725 int bucket = ((struct udp_ite 1725 int bucket = ((struct udp_iter_state *)seq->private)->bucket; 1726 const struct inet_sock *inet 1726 const struct inet_sock *inet = inet_sk((const struct sock *)v); 1727 __u16 srcp = ntohs(inet->inet 1727 __u16 srcp = ntohs(inet->inet_sport); 1728 __u16 destp = ntohs(inet->ine 1728 __u16 destp = ntohs(inet->inet_dport); 1729 __ip6_dgram_sock_seq_show(seq 1729 __ip6_dgram_sock_seq_show(seq, v, srcp, destp, 1730 udp 1730 udp_rqueue_get(v), bucket); 1731 } 1731 } 1732 return 0; 1732 return 0; 1733 } 1733 } 1734 1734 1735 const struct seq_operations udp6_seq_ops = { 1735 const struct seq_operations udp6_seq_ops = { 1736 .start = udp_seq_start, 1736 .start = udp_seq_start, 1737 .next = udp_seq_next, 1737 .next = udp_seq_next, 1738 .stop = udp_seq_stop, 1738 .stop = udp_seq_stop, 1739 .show = udp6_seq_show, 1739 .show = udp6_seq_show, 1740 }; 1740 }; 1741 EXPORT_SYMBOL(udp6_seq_ops); 1741 EXPORT_SYMBOL(udp6_seq_ops); 1742 1742 1743 static struct udp_seq_afinfo udp6_seq_afinfo 1743 static struct udp_seq_afinfo udp6_seq_afinfo = { 1744 .family = AF_INET6, 1744 .family = AF_INET6, 1745 .udp_table = NULL, 1745 .udp_table = NULL, 1746 }; 1746 }; 1747 1747 1748 int __net_init udp6_proc_init(struct net *net 1748 int __net_init udp6_proc_init(struct net *net) 1749 { 1749 { 1750 if (!proc_create_net_data("udp6", 044 1750 if (!proc_create_net_data("udp6", 0444, net->proc_net, &udp6_seq_ops, 1751 sizeof(struct udp_ite 1751 sizeof(struct udp_iter_state), &udp6_seq_afinfo)) 1752 return -ENOMEM; 1752 return -ENOMEM; 1753 return 0; 1753 return 0; 1754 } 1754 } 1755 1755 1756 void udp6_proc_exit(struct net *net) 1756 void udp6_proc_exit(struct net *net) 1757 { 1757 { 1758 remove_proc_entry("udp6", net->proc_n 1758 remove_proc_entry("udp6", net->proc_net); 1759 } 1759 } 1760 #endif /* CONFIG_PROC_FS */ 1760 #endif /* CONFIG_PROC_FS */ 1761 1761 1762 /* ------------------------------------------ 1762 /* ------------------------------------------------------------------------ */ 1763 1763 1764 struct proto udpv6_prot = { 1764 struct proto udpv6_prot = { 1765 .name = "UDPv6", 1765 .name = "UDPv6", 1766 .owner = THIS_MODULE 1766 .owner = THIS_MODULE, 1767 .close = udp_lib_clo 1767 .close = udp_lib_close, 1768 .pre_connect = udpv6_pre_c 1768 .pre_connect = udpv6_pre_connect, 1769 .connect = ip6_datagra 1769 .connect = ip6_datagram_connect, 1770 .disconnect = udp_disconn 1770 .disconnect = udp_disconnect, 1771 .ioctl = udp_ioctl, 1771 .ioctl = udp_ioctl, 1772 .init = udpv6_init_ 1772 .init = udpv6_init_sock, 1773 .destroy = udpv6_destr 1773 .destroy = udpv6_destroy_sock, 1774 .setsockopt = udpv6_setso 1774 .setsockopt = udpv6_setsockopt, 1775 .getsockopt = udpv6_getso 1775 .getsockopt = udpv6_getsockopt, 1776 .sendmsg = udpv6_sendm 1776 .sendmsg = udpv6_sendmsg, 1777 .recvmsg = udpv6_recvm 1777 .recvmsg = udpv6_recvmsg, 1778 .splice_eof = udpv6_splic 1778 .splice_eof = udpv6_splice_eof, 1779 .release_cb = ip6_datagra 1779 .release_cb = ip6_datagram_release_cb, 1780 .hash = udp_lib_has 1780 .hash = udp_lib_hash, 1781 .unhash = udp_lib_unh 1781 .unhash = udp_lib_unhash, 1782 .rehash = udp_v6_reha 1782 .rehash = udp_v6_rehash, 1783 .get_port = udp_v6_get_ 1783 .get_port = udp_v6_get_port, 1784 .put_port = udp_lib_unh 1784 .put_port = udp_lib_unhash, 1785 #ifdef CONFIG_BPF_SYSCALL 1785 #ifdef CONFIG_BPF_SYSCALL 1786 .psock_update_sk_prot = udp_bpf_upd 1786 .psock_update_sk_prot = udp_bpf_update_proto, 1787 #endif 1787 #endif 1788 1788 1789 .memory_allocated = &udp_memory 1789 .memory_allocated = &udp_memory_allocated, 1790 .per_cpu_fw_alloc = &udp_memory 1790 .per_cpu_fw_alloc = &udp_memory_per_cpu_fw_alloc, 1791 1791 1792 .sysctl_mem = sysctl_udp_ 1792 .sysctl_mem = sysctl_udp_mem, 1793 .sysctl_wmem_offset = offsetof(st 1793 .sysctl_wmem_offset = offsetof(struct net, ipv4.sysctl_udp_wmem_min), 1794 .sysctl_rmem_offset = offsetof(st 1794 .sysctl_rmem_offset = offsetof(struct net, ipv4.sysctl_udp_rmem_min), 1795 .obj_size = sizeof(stru 1795 .obj_size = sizeof(struct udp6_sock), 1796 .ipv6_pinfo_offset = offsetof(struct 1796 .ipv6_pinfo_offset = offsetof(struct udp6_sock, inet6), 1797 .h.udp_table = NULL, 1797 .h.udp_table = NULL, 1798 .diag_destroy = udp_abort, 1798 .diag_destroy = udp_abort, 1799 }; 1799 }; 1800 1800 1801 static struct inet_protosw udpv6_protosw = { 1801 static struct inet_protosw udpv6_protosw = { 1802 .type = SOCK_DGRAM, 1802 .type = SOCK_DGRAM, 1803 .protocol = IPPROTO_UDP, 1803 .protocol = IPPROTO_UDP, 1804 .prot = &udpv6_prot, 1804 .prot = &udpv6_prot, 1805 .ops = &inet6_dgram_ops, 1805 .ops = &inet6_dgram_ops, 1806 .flags = INET_PROTOSW_PERMANENT, 1806 .flags = INET_PROTOSW_PERMANENT, 1807 }; 1807 }; 1808 1808 1809 int __init udpv6_init(void) 1809 int __init udpv6_init(void) 1810 { 1810 { 1811 int ret; 1811 int ret; 1812 1812 1813 net_hotdata.udpv6_protocol = (struct 1813 net_hotdata.udpv6_protocol = (struct inet6_protocol) { 1814 .handler = udpv6_rcv, 1814 .handler = udpv6_rcv, 1815 .err_handler = udpv6_err, 1815 .err_handler = udpv6_err, 1816 .flags = INET6_PROTO_NO 1816 .flags = INET6_PROTO_NOPOLICY | INET6_PROTO_FINAL, 1817 }; 1817 }; 1818 ret = inet6_add_protocol(&net_hotdata 1818 ret = inet6_add_protocol(&net_hotdata.udpv6_protocol, IPPROTO_UDP); 1819 if (ret) 1819 if (ret) 1820 goto out; 1820 goto out; 1821 1821 1822 ret = inet6_register_protosw(&udpv6_p 1822 ret = inet6_register_protosw(&udpv6_protosw); 1823 if (ret) 1823 if (ret) 1824 goto out_udpv6_protocol; 1824 goto out_udpv6_protocol; 1825 out: 1825 out: 1826 return ret; 1826 return ret; 1827 1827 1828 out_udpv6_protocol: 1828 out_udpv6_protocol: 1829 inet6_del_protocol(&net_hotdata.udpv6 1829 inet6_del_protocol(&net_hotdata.udpv6_protocol, IPPROTO_UDP); 1830 goto out; 1830 goto out; 1831 } 1831 } 1832 1832 1833 void udpv6_exit(void) 1833 void udpv6_exit(void) 1834 { 1834 { 1835 inet6_unregister_protosw(&udpv6_proto 1835 inet6_unregister_protosw(&udpv6_protosw); 1836 inet6_del_protocol(&net_hotdata.udpv6 1836 inet6_del_protocol(&net_hotdata.udpv6_protocol, IPPROTO_UDP); 1837 } 1837 } 1838 1838
Linux® is a registered trademark of Linus Torvalds in the United States and other countries.
TOMOYO® is a registered trademark of NTT DATA CORPORATION.