udp6: fix socket leak on early demux
[linux-2.6-block.git] / net / ipv6 / udp.c
CommitLineData
1da177e4
LT
1/*
2 * UDP over IPv6
1ab1457c 3 * Linux INET6 implementation
1da177e4
LT
4 *
5 * Authors:
1ab1457c 6 * Pedro Roque <roque@di.fc.ul.pt>
1da177e4
LT
7 *
8 * Based on linux/ipv4/udp.c
9 *
1da177e4
LT
10 * Fixes:
11 * Hideaki YOSHIFUJI : sin6_scope_id support
12 * YOSHIFUJI Hideaki @USAGI and: Support IPV6_V6ONLY socket option, which
13 * Alexey Kuznetsov allow both IPv4 and IPv6 sockets to bind
14 * a single port at the same time.
15 * Kazunori MIYAZAWA @USAGI: change process style to use ip6_append_data
16 * YOSHIFUJI Hideaki @USAGI: convert /proc/net/udp6 to seq_file.
17 *
18 * This program is free software; you can redistribute it and/or
19 * modify it under the terms of the GNU General Public License
20 * as published by the Free Software Foundation; either version
21 * 2 of the License, or (at your option) any later version.
22 */
23
1da177e4
LT
24#include <linux/errno.h>
25#include <linux/types.h>
26#include <linux/socket.h>
27#include <linux/sockios.h>
1da177e4
LT
28#include <linux/net.h>
29#include <linux/in6.h>
30#include <linux/netdevice.h>
31#include <linux/if_arp.h>
32#include <linux/ipv6.h>
33#include <linux/icmpv6.h>
34#include <linux/init.h>
1781f7f5 35#include <linux/module.h>
3305b80c 36#include <linux/skbuff.h>
5a0e3ad6 37#include <linux/slab.h>
7c0f6ba6 38#include <linux/uaccess.h>
1da177e4 39
496611d7 40#include <net/addrconf.h>
1da177e4
LT
41#include <net/ndisc.h>
42#include <net/protocol.h>
43#include <net/transp_v6.h>
44#include <net/ip6_route.h>
1da177e4 45#include <net/raw.h>
c752f073 46#include <net/tcp_states.h>
1da177e4
LT
47#include <net/ip6_checksum.h>
48#include <net/xfrm.h>
0bd84065 49#include <net/inet_hashtables.h>
72289b96 50#include <net/inet6_hashtables.h>
076bb0c8 51#include <net/busy_poll.h>
e32ea7e7 52#include <net/sock_reuseport.h>
1da177e4
LT
53
54#include <linux/proc_fs.h>
55#include <linux/seq_file.h>
22911fc5 56#include <trace/events/skb.h>
ba4e58ec 57#include "udp_impl.h"
1da177e4 58
63a6fff3
RS
59static bool udp6_lib_exact_dif_match(struct net *net, struct sk_buff *skb)
60{
61#if defined(CONFIG_NET_L3_MASTER_DEV)
62 if (!net->ipv4.sysctl_udp_l3mdev_accept &&
63 skb && ipv6_l3mdev_skb(IP6CB(skb)->flags))
64 return true;
65#endif
66 return false;
67}
68
6eada011
ED
69static u32 udp6_ehashfn(const struct net *net,
70 const struct in6_addr *laddr,
71 const u16 lport,
72 const struct in6_addr *faddr,
73 const __be16 fport)
b50026b5 74{
1bbdceef
HFS
75 static u32 udp6_ehash_secret __read_mostly;
76 static u32 udp_ipv6_hash_secret __read_mostly;
77
78 u32 lhash, fhash;
79
80 net_get_random_once(&udp6_ehash_secret,
81 sizeof(udp6_ehash_secret));
82 net_get_random_once(&udp_ipv6_hash_secret,
83 sizeof(udp_ipv6_hash_secret));
84
85 lhash = (__force u32)laddr->s6_addr32[3];
86 fhash = __ipv6_addr_jhash(faddr, udp_ipv6_hash_secret);
87
b50026b5 88 return __inet6_ehashfn(lhash, lport, fhash, fport,
1bbdceef 89 udp_ipv6_hash_secret + net_hash_mix(net));
b50026b5
HFS
90}
91
6eada011
ED
92static u32 udp6_portaddr_hash(const struct net *net,
93 const struct in6_addr *addr6,
94 unsigned int port)
d4cada4a
ED
95{
96 unsigned int hash, mix = net_hash_mix(net);
97
98 if (ipv6_addr_any(addr6))
99 hash = jhash_1word(0, mix);
856540ee 100 else if (ipv6_addr_v4mapped(addr6))
0eae88f3 101 hash = jhash_1word((__force u32)addr6->s6_addr32[3], mix);
d4cada4a 102 else
0eae88f3 103 hash = jhash2((__force u32 *)addr6->s6_addr32, 4, mix);
d4cada4a
ED
104
105 return hash ^ port;
106}
107
6ba5a3c5 108int udp_v6_get_port(struct sock *sk, unsigned short snum)
1da177e4 109{
30fff923
ED
110 unsigned int hash2_nulladdr =
111 udp6_portaddr_hash(sock_net(sk), &in6addr_any, snum);
9a52e97e 112 unsigned int hash2_partial =
efe4208f 113 udp6_portaddr_hash(sock_net(sk), &sk->sk_v6_rcv_saddr, 0);
30fff923 114
d4cada4a 115 /* precompute partial secondary hash */
30fff923 116 udp_sk(sk)->udp_portaddr_hash = hash2_partial;
fe38d2a1 117 return udp_lib_get_port(sk, snum, hash2_nulladdr);
1da177e4
LT
118}
119
719f8358
ED
120static void udp_v6_rehash(struct sock *sk)
121{
122 u16 new_hash = udp6_portaddr_hash(sock_net(sk),
efe4208f 123 &sk->sk_v6_rcv_saddr,
719f8358
ED
124 inet_sk(sk)->inet_num);
125
126 udp_lib_rehash(sk, new_hash);
127}
128
d1e37288
SX
129static int compute_score(struct sock *sk, struct net *net,
130 const struct in6_addr *saddr, __be16 sport,
131 const struct in6_addr *daddr, unsigned short hnum,
63a6fff3 132 int dif, bool exact_dif)
645ca708 133{
60c04aec
JP
134 int score;
135 struct inet_sock *inet;
136
137 if (!net_eq(sock_net(sk), net) ||
138 udp_sk(sk)->udp_port_hash != hnum ||
139 sk->sk_family != PF_INET6)
140 return -1;
141
142 score = 0;
143 inet = inet_sk(sk);
144
145 if (inet->inet_dport) {
146 if (inet->inet_dport != sport)
147 return -1;
148 score++;
149 }
150
151 if (!ipv6_addr_any(&sk->sk_v6_rcv_saddr)) {
152 if (!ipv6_addr_equal(&sk->sk_v6_rcv_saddr, daddr))
153 return -1;
154 score++;
155 }
156
157 if (!ipv6_addr_any(&sk->sk_v6_daddr)) {
158 if (!ipv6_addr_equal(&sk->sk_v6_daddr, saddr))
159 return -1;
160 score++;
161 }
162
63a6fff3 163 if (sk->sk_bound_dev_if || exact_dif) {
60c04aec
JP
164 if (sk->sk_bound_dev_if != dif)
165 return -1;
166 score++;
645ca708 167 }
60c04aec 168
70da268b
ED
169 if (sk->sk_incoming_cpu == raw_smp_processor_id())
170 score++;
171
645ca708
ED
172 return score;
173}
174
d1e37288 175/* called with rcu_read_lock() */
fddc17de
ED
176static struct sock *udp6_lib_lookup2(struct net *net,
177 const struct in6_addr *saddr, __be16 sport,
178 const struct in6_addr *daddr, unsigned int hnum, int dif,
63a6fff3 179 bool exact_dif, struct udp_hslot *hslot2,
1134158b 180 struct sk_buff *skb)
fddc17de
ED
181{
182 struct sock *sk, *result;
72289b96
TH
183 int score, badness, matches = 0, reuseport = 0;
184 u32 hash = 0;
fddc17de 185
fddc17de
ED
186 result = NULL;
187 badness = -1;
ca065d0c 188 udp_portaddr_for_each_entry_rcu(sk, &hslot2->head) {
d1e37288 189 score = compute_score(sk, net, saddr, sport,
63a6fff3 190 daddr, hnum, dif, exact_dif);
fddc17de 191 if (score > badness) {
72289b96
TH
192 reuseport = sk->sk_reuseport;
193 if (reuseport) {
b50026b5
HFS
194 hash = udp6_ehashfn(net, daddr, hnum,
195 saddr, sport);
ed0dfffd 196
ca065d0c 197 result = reuseport_select_sock(sk, hash, skb,
ed0dfffd 198 sizeof(struct udphdr));
ca065d0c
ED
199 if (result)
200 return result;
72289b96 201 matches = 1;
70da268b 202 }
ca065d0c
ED
203 result = sk;
204 badness = score;
72289b96
TH
205 } else if (score == badness && reuseport) {
206 matches++;
8fc54f68 207 if (reciprocal_scale(hash, matches) == 0)
72289b96
TH
208 result = sk;
209 hash = next_pseudo_random32(hash);
fddc17de
ED
210 }
211 }
fddc17de
ED
212 return result;
213}
214
ca065d0c 215/* rcu_read_lock() must be held */
fce82338 216struct sock *__udp6_lib_lookup(struct net *net,
88440ae7
BS
217 const struct in6_addr *saddr, __be16 sport,
218 const struct in6_addr *daddr, __be16 dport,
538950a1
CG
219 int dif, struct udp_table *udptable,
220 struct sk_buff *skb)
1da177e4 221{
271b72c7 222 struct sock *sk, *result;
1da177e4 223 unsigned short hnum = ntohs(dport);
fddc17de
ED
224 unsigned int hash2, slot2, slot = udp_hashfn(net, hnum, udptable->mask);
225 struct udp_hslot *hslot2, *hslot = &udptable->hash[slot];
63a6fff3 226 bool exact_dif = udp6_lib_exact_dif_match(net, skb);
72289b96
TH
227 int score, badness, matches = 0, reuseport = 0;
228 u32 hash = 0;
645ca708 229
fddc17de
ED
230 if (hslot->count > 10) {
231 hash2 = udp6_portaddr_hash(net, daddr, hnum);
232 slot2 = hash2 & udptable->mask;
233 hslot2 = &udptable->hash2[slot2];
234 if (hslot->count < hslot2->count)
235 goto begin;
236
237 result = udp6_lib_lookup2(net, saddr, sport,
63a6fff3 238 daddr, hnum, dif, exact_dif,
d1e37288 239 hslot2, skb);
fddc17de 240 if (!result) {
d1e37288 241 unsigned int old_slot2 = slot2;
fddc17de
ED
242 hash2 = udp6_portaddr_hash(net, &in6addr_any, hnum);
243 slot2 = hash2 & udptable->mask;
d1e37288
SX
244 /* avoid searching the same slot again. */
245 if (unlikely(slot2 == old_slot2))
246 return result;
247
fddc17de
ED
248 hslot2 = &udptable->hash2[slot2];
249 if (hslot->count < hslot2->count)
250 goto begin;
251
1223c67c 252 result = udp6_lib_lookup2(net, saddr, sport,
d1e37288 253 daddr, hnum, dif,
63a6fff3
RS
254 exact_dif, hslot2,
255 skb);
fddc17de 256 }
fddc17de
ED
257 return result;
258 }
271b72c7
ED
259begin:
260 result = NULL;
261 badness = -1;
ca065d0c 262 sk_for_each_rcu(sk, &hslot->head) {
63a6fff3
RS
263 score = compute_score(sk, net, saddr, sport, daddr, hnum, dif,
264 exact_dif);
645ca708 265 if (score > badness) {
72289b96
TH
266 reuseport = sk->sk_reuseport;
267 if (reuseport) {
b50026b5
HFS
268 hash = udp6_ehashfn(net, daddr, hnum,
269 saddr, sport);
ca065d0c 270 result = reuseport_select_sock(sk, hash, skb,
538950a1 271 sizeof(struct udphdr));
ca065d0c
ED
272 if (result)
273 return result;
72289b96
TH
274 matches = 1;
275 }
ca065d0c
ED
276 result = sk;
277 badness = score;
72289b96
TH
278 } else if (score == badness && reuseport) {
279 matches++;
8fc54f68 280 if (reciprocal_scale(hash, matches) == 0)
72289b96
TH
281 result = sk;
282 hash = next_pseudo_random32(hash);
1da177e4
LT
283 }
284 }
1da177e4
LT
285 return result;
286}
fce82338 287EXPORT_SYMBOL_GPL(__udp6_lib_lookup);
1da177e4 288
607c4aaf
KK
289static struct sock *__udp6_lib_lookup_skb(struct sk_buff *skb,
290 __be16 sport, __be16 dport,
645ca708 291 struct udp_table *udptable)
607c4aaf 292{
b71d1d42 293 const struct ipv6hdr *iph = ipv6_hdr(skb);
607c4aaf 294
ed7cbbce 295 return __udp6_lib_lookup(dev_net(skb->dev), &iph->saddr, sport,
adf30907 296 &iph->daddr, dport, inet6_iif(skb),
538950a1 297 udptable, skb);
607c4aaf
KK
298}
299
63058308
TH
300struct sock *udp6_lib_lookup_skb(struct sk_buff *skb,
301 __be16 sport, __be16 dport)
302{
303 const struct ipv6hdr *iph = ipv6_hdr(skb);
63058308 304
ed7cbbce 305 return __udp6_lib_lookup(dev_net(skb->dev), &iph->saddr, sport,
63058308
TH
306 &iph->daddr, dport, inet6_iif(skb),
307 &udp_table, skb);
308}
309EXPORT_SYMBOL_GPL(udp6_lib_lookup_skb);
310
ca065d0c
ED
311/* Must be called under rcu_read_lock().
312 * Does increment socket refcount.
313 */
314#if IS_ENABLED(CONFIG_NETFILTER_XT_MATCH_SOCKET) || \
30f58158
AB
315 IS_ENABLED(CONFIG_NETFILTER_XT_TARGET_TPROXY) || \
316 IS_ENABLED(CONFIG_NF_SOCKET_IPV6)
aa976fc0
BS
317struct sock *udp6_lib_lookup(struct net *net, const struct in6_addr *saddr, __be16 sport,
318 const struct in6_addr *daddr, __be16 dport, int dif)
319{
ca065d0c
ED
320 struct sock *sk;
321
322 sk = __udp6_lib_lookup(net, saddr, sport, daddr, dport,
323 dif, &udp_table, NULL);
41c6d650 324 if (sk && !refcount_inc_not_zero(&sk->sk_refcnt))
ca065d0c
ED
325 sk = NULL;
326 return sk;
aa976fc0
BS
327}
328EXPORT_SYMBOL_GPL(udp6_lib_lookup);
ca065d0c 329#endif
aa976fc0 330
1da177e4 331/*
67ba4152
IM
332 * This should be easy, if there is something there we
333 * return it, otherwise we block.
1da177e4
LT
334 */
335
1b784140 336int udpv6_recvmsg(struct sock *sk, struct msghdr *msg, size_t len,
1da177e4
LT
337 int noblock, int flags, int *addr_len)
338{
339 struct ipv6_pinfo *np = inet6_sk(sk);
340 struct inet_sock *inet = inet_sk(sk);
1ab1457c 341 struct sk_buff *skb;
59c2cdae 342 unsigned int ulen, copied;
627d2d6b 343 int peeked, peeking, off;
759e5d00
HX
344 int err;
345 int is_udplite = IS_UDPLITE(sk);
197c949e 346 bool checksum_valid = false;
f26ba175 347 int is_udp4;
1da177e4 348
1da177e4 349 if (flags & MSG_ERRQUEUE)
85fbaa75 350 return ipv6_recv_error(sk, msg, len, addr_len);
1da177e4 351
4b340ae2 352 if (np->rxpmtu && np->rxopt.bits.rxpmtu)
85fbaa75 353 return ipv6_recv_rxpmtu(sk, msg, len, addr_len);
4b340ae2 354
1da177e4 355try_again:
627d2d6b 356 peeking = off = sk_peek_offset(sk, flags);
7c13f97f 357 skb = __skb_recv_udp(sk, flags, noblock, &peeked, &off, &err);
1da177e4 358 if (!skb)
627d2d6b 359 return err;
1da177e4 360
67a51780 361 ulen = udp_skb_len(skb);
59c2cdae 362 copied = len;
627d2d6b 363 if (copied > ulen - off)
364 copied = ulen - off;
59c2cdae 365 else if (copied < ulen)
1ab1457c 366 msg->msg_flags |= MSG_TRUNC;
1da177e4 367
f26ba175
WY
368 is_udp4 = (skb->protocol == htons(ETH_P_IP));
369
ba4e58ec 370 /*
759e5d00
HX
371 * If checksum is needed at all, try to do it while copying the
372 * data. If the data is truncated, or if we only want a partial
373 * coverage checksum (UDP-Lite), do it before the copy.
ba4e58ec 374 */
ba4e58ec 375
d21dbdfe
ED
376 if (copied < ulen || peeking ||
377 (is_udplite && UDP_SKB_CB(skb)->partial_cov)) {
67a51780
PA
378 checksum_valid = udp_skb_csum_unnecessary(skb) ||
379 !__udp_lib_checksum_complete(skb);
197c949e 380 if (!checksum_valid)
1da177e4 381 goto csum_copy_err;
ba4e58ec
GR
382 }
383
67a51780
PA
384 if (checksum_valid || udp_skb_csum_unnecessary(skb)) {
385 if (udp_skb_is_linear(skb))
386 err = copy_linear_skb(skb, copied, off, &msg->msg_iter);
387 else
388 err = skb_copy_datagram_msg(skb, off, msg, copied);
389 } else {
627d2d6b 390 err = skb_copy_and_csum_datagram_msg(skb, off, msg);
1da177e4
LT
391 if (err == -EINVAL)
392 goto csum_copy_err;
393 }
22911fc5 394 if (unlikely(err)) {
979402b1
ED
395 if (!peeked) {
396 atomic_inc(&sk->sk_drops);
397 if (is_udp4)
6aef70a8
ED
398 UDP_INC_STATS(sock_net(sk), UDP_MIB_INERRORS,
399 is_udplite);
979402b1 400 else
6aef70a8
ED
401 UDP6_INC_STATS(sock_net(sk), UDP_MIB_INERRORS,
402 is_udplite);
979402b1 403 }
850cbadd 404 kfree_skb(skb);
627d2d6b 405 return err;
22911fc5 406 }
f26ba175
WY
407 if (!peeked) {
408 if (is_udp4)
6aef70a8
ED
409 UDP_INC_STATS(sock_net(sk), UDP_MIB_INDATAGRAMS,
410 is_udplite);
f26ba175 411 else
6aef70a8
ED
412 UDP6_INC_STATS(sock_net(sk), UDP_MIB_INDATAGRAMS,
413 is_udplite);
f26ba175 414 }
cb75994e 415
3b885787 416 sock_recv_ts_and_drops(msg, sk, skb);
1da177e4
LT
417
418 /* Copy the address. */
419 if (msg->msg_name) {
342dfc30 420 DECLARE_SOCKADDR(struct sockaddr_in6 *, sin6, msg->msg_name);
1da177e4 421 sin6->sin6_family = AF_INET6;
4bedb452 422 sin6->sin6_port = udp_hdr(skb)->source;
1da177e4 423 sin6->sin6_flowinfo = 0;
1da177e4 424
842df073 425 if (is_udp4) {
b301e82c
BH
426 ipv6_addr_set_v4mapped(ip_hdr(skb)->saddr,
427 &sin6->sin6_addr);
842df073
HFS
428 sin6->sin6_scope_id = 0;
429 } else {
4e3fd7a0 430 sin6->sin6_addr = ipv6_hdr(skb)->saddr;
842df073
HFS
431 sin6->sin6_scope_id =
432 ipv6_iface_scope_id(&sin6->sin6_addr,
4330487a 433 inet6_iif(skb));
1da177e4 434 }
bceaa902 435 *addr_len = sizeof(*sin6);
1da177e4 436 }
4b261c75
HFS
437
438 if (np->rxopt.all)
439 ip6_datagram_recv_common_ctl(sk, msg, skb);
440
f26ba175 441 if (is_udp4) {
1da177e4 442 if (inet->cmsg_flags)
ad959036 443 ip_cmsg_recv_offset(msg, sk, skb,
10df8e61 444 sizeof(struct udphdr), off);
1da177e4
LT
445 } else {
446 if (np->rxopt.all)
4b261c75 447 ip6_datagram_recv_specific_ctl(sk, msg, skb);
1ab1457c 448 }
1da177e4 449
59c2cdae 450 err = copied;
1da177e4 451 if (flags & MSG_TRUNC)
759e5d00 452 err = ulen;
1da177e4 453
850cbadd 454 skb_consume_udp(sk, skb, peeking ? -err : err);
1da177e4
LT
455 return err;
456
457csum_copy_err:
2276f58a
PA
458 if (!__sk_queue_drop_skb(sk, &udp_sk(sk)->reader_queue, skb, flags,
459 udp_skb_destructor)) {
6a5dc9e5 460 if (is_udp4) {
6aef70a8
ED
461 UDP_INC_STATS(sock_net(sk),
462 UDP_MIB_CSUMERRORS, is_udplite);
463 UDP_INC_STATS(sock_net(sk),
464 UDP_MIB_INERRORS, is_udplite);
6a5dc9e5 465 } else {
6aef70a8
ED
466 UDP6_INC_STATS(sock_net(sk),
467 UDP_MIB_CSUMERRORS, is_udplite);
468 UDP6_INC_STATS(sock_net(sk),
469 UDP_MIB_INERRORS, is_udplite);
6a5dc9e5 470 }
0856f939 471 }
850cbadd 472 kfree_skb(skb);
1da177e4 473
beb39db5
ED
474 /* starting over for a new packet, but check if we need to yield */
475 cond_resched();
9cfaa8de 476 msg->msg_flags &= ~MSG_TRUNC;
1da177e4
LT
477 goto try_again;
478}
479
ba4e58ec 480void __udp6_lib_err(struct sk_buff *skb, struct inet6_skb_parm *opt,
d5fdd6ba 481 u8 type, u8 code, int offset, __be32 info,
645ca708 482 struct udp_table *udptable)
1da177e4
LT
483{
484 struct ipv6_pinfo *np;
b71d1d42
ED
485 const struct ipv6hdr *hdr = (const struct ipv6hdr *)skb->data;
486 const struct in6_addr *saddr = &hdr->saddr;
487 const struct in6_addr *daddr = &hdr->daddr;
67ba4152 488 struct udphdr *uh = (struct udphdr *)(skb->data+offset);
1da177e4 489 struct sock *sk;
e0d8c1b7 490 int harderr;
1da177e4 491 int err;
7304fe46 492 struct net *net = dev_net(skb->dev);
1da177e4 493
e32ea7e7 494 sk = __udp6_lib_lookup(net, daddr, uh->dest, saddr, uh->source,
538950a1 495 inet6_iif(skb), udptable, skb);
63159f29 496 if (!sk) {
a16292a0
ED
497 __ICMP6_INC_STATS(net, __in6_dev_get(skb->dev),
498 ICMP6_MIB_INERRORS);
1da177e4 499 return;
7304fe46 500 }
1da177e4 501
e0d8c1b7
WW
502 harderr = icmpv6_err_convert(type, code, &err);
503 np = inet6_sk(sk);
504
93b36cf3
HFS
505 if (type == ICMPV6_PKT_TOOBIG) {
506 if (!ip6_sk_accept_pmtu(sk))
507 goto out;
81aded24 508 ip6_sk_update_pmtu(skb, sk, info);
e0d8c1b7
WW
509 if (np->pmtudisc != IPV6_PMTUDISC_DONT)
510 harderr = 1;
93b36cf3 511 }
1a462d18 512 if (type == NDISC_REDIRECT) {
ec18d9a2 513 ip6_sk_redirect(skb, sk);
1a462d18
DJ
514 goto out;
515 }
81aded24 516
e0d8c1b7
WW
517 if (!np->recverr) {
518 if (!harderr || sk->sk_state != TCP_ESTABLISHED)
519 goto out;
520 } else {
1da177e4 521 ipv6_icmp_error(sk, skb, err, uh->dest, ntohl(info), (u8 *)(uh+1));
e0d8c1b7 522 }
b1faf566 523
1da177e4
LT
524 sk->sk_err = err;
525 sk->sk_error_report(sk);
526out:
ca065d0c 527 return;
1da177e4
LT
528}
529
a3f96c47 530static int __udpv6_queue_rcv_skb(struct sock *sk, struct sk_buff *skb)
f7ad74fe
BL
531{
532 int rc;
533
efe4208f 534 if (!ipv6_addr_any(&sk->sk_v6_daddr)) {
f7ad74fe 535 sock_rps_save_rxhash(sk, skb);
005ec974 536 sk_mark_napi_id(sk, skb);
2c8c56e1 537 sk_incoming_cpu_update(sk);
e68b6e50
ED
538 } else {
539 sk_mark_napi_id_once(sk, skb);
005ec974 540 }
f7ad74fe 541
850cbadd 542 rc = __udp_enqueue_schedule_skb(sk, skb);
f7ad74fe
BL
543 if (rc < 0) {
544 int is_udplite = IS_UDPLITE(sk);
545
546 /* Note that an ENOMEM error is charged twice */
547 if (rc == -ENOMEM)
e61da9e2 548 UDP6_INC_STATS(sock_net(sk),
02c22347 549 UDP_MIB_RCVBUFERRORS, is_udplite);
e61da9e2 550 UDP6_INC_STATS(sock_net(sk), UDP_MIB_INERRORS, is_udplite);
f7ad74fe
BL
551 kfree_skb(skb);
552 return -1;
553 }
850cbadd 554
f7ad74fe
BL
555 return 0;
556}
557
ba4e58ec 558static __inline__ void udpv6_err(struct sk_buff *skb,
d5fdd6ba 559 struct inet6_skb_parm *opt, u8 type,
67ba4152 560 u8 code, int offset, __be32 info)
ba4e58ec 561{
645ca708 562 __udp6_lib_err(skb, opt, type, code, offset, info, &udp_table);
ba4e58ec
GR
563}
564
d7f3f621
BL
565static struct static_key udpv6_encap_needed __read_mostly;
566void udpv6_encap_enable(void)
567{
568 if (!static_key_enabled(&udpv6_encap_needed))
569 static_key_slow_inc(&udpv6_encap_needed);
570}
571EXPORT_SYMBOL(udpv6_encap_enable);
572
a3f96c47 573static int udpv6_queue_rcv_skb(struct sock *sk, struct sk_buff *skb)
1da177e4 574{
ba4e58ec 575 struct udp_sock *up = udp_sk(sk);
b2bf1e26 576 int is_udplite = IS_UDPLITE(sk);
a18135eb 577
ba4e58ec
GR
578 if (!xfrm6_policy_check(sk, XFRM_POLICY_IN, skb))
579 goto drop;
1da177e4 580
d7f3f621
BL
581 if (static_key_false(&udpv6_encap_needed) && up->encap_type) {
582 int (*encap_rcv)(struct sock *sk, struct sk_buff *skb);
583
584 /*
585 * This is an encapsulation socket so pass the skb to
586 * the socket's udp_encap_rcv() hook. Otherwise, just
587 * fall through and pass this up the UDP socket.
588 * up->encap_rcv() returns the following value:
589 * =0 if skb was successfully passed to the encap
590 * handler or was discarded by it.
591 * >0 if skb should be passed on to UDP.
592 * <0 if skb should be resubmitted as proto -N
593 */
594
595 /* if we're overly short, let UDP handle it */
596 encap_rcv = ACCESS_ONCE(up->encap_rcv);
e5aed006 597 if (encap_rcv) {
d7f3f621
BL
598 int ret;
599
0a80966b
TH
600 /* Verify checksum before giving to encap */
601 if (udp_lib_checksum_complete(skb))
602 goto csum_error;
603
d7f3f621
BL
604 ret = encap_rcv(sk, skb);
605 if (ret <= 0) {
02c22347
ED
606 __UDP_INC_STATS(sock_net(sk),
607 UDP_MIB_INDATAGRAMS,
608 is_udplite);
d7f3f621
BL
609 return -ret;
610 }
611 }
612
613 /* FALLTHROUGH -- it's a UDP Packet */
614 }
615
ba4e58ec
GR
616 /*
617 * UDP-Lite specific tests, ignored on UDP sockets (see net/ipv4/udp.c).
618 */
b2bf1e26 619 if ((is_udplite & UDPLITE_RECV_CC) && UDP_SKB_CB(skb)->partial_cov) {
ba4e58ec
GR
620
621 if (up->pcrlen == 0) { /* full coverage was set */
ba7a46f1
JP
622 net_dbg_ratelimited("UDPLITE6: partial coverage %d while full coverage %d requested\n",
623 UDP_SKB_CB(skb)->cscov, skb->len);
ba4e58ec
GR
624 goto drop;
625 }
626 if (UDP_SKB_CB(skb)->cscov < up->pcrlen) {
ba7a46f1
JP
627 net_dbg_ratelimited("UDPLITE6: coverage %d too small, need min %d\n",
628 UDP_SKB_CB(skb)->cscov, up->pcrlen);
ba4e58ec
GR
629 goto drop;
630 }
1da177e4
LT
631 }
632
4b943fae 633 prefetch(&sk->sk_rmem_alloc);
ce25d66a
ED
634 if (rcu_access_pointer(sk->sk_filter) &&
635 udp_lib_checksum_complete(skb))
636 goto csum_error;
637
ba66bbe5 638 if (sk_filter_trim_cap(sk, skb, sizeof(struct udphdr)))
a6127697 639 goto drop;
ba4e58ec 640
e6afc8ac 641 udp_csum_pull_header(skb);
cb80ef46 642
d826eb14 643 skb_dst_drop(skb);
cb75994e 644
850cbadd 645 return __udpv6_queue_rcv_skb(sk, skb);
3e215c8d 646
6a5dc9e5 647csum_error:
02c22347 648 __UDP6_INC_STATS(sock_net(sk), UDP_MIB_CSUMERRORS, is_udplite);
ba4e58ec 649drop:
02c22347 650 __UDP6_INC_STATS(sock_net(sk), UDP_MIB_INERRORS, is_udplite);
cb80ef46 651 atomic_inc(&sk->sk_drops);
ba4e58ec
GR
652 kfree_skb(skb);
653 return -1;
1da177e4
LT
654}
655
5cf3d461
DH
656static bool __udp_v6_is_mcast_sock(struct net *net, struct sock *sk,
657 __be16 loc_port, const struct in6_addr *loc_addr,
658 __be16 rmt_port, const struct in6_addr *rmt_addr,
659 int dif, unsigned short hnum)
1da177e4 660{
5cf3d461 661 struct inet_sock *inet = inet_sk(sk);
1da177e4 662
5cf3d461
DH
663 if (!net_eq(sock_net(sk), net))
664 return false;
665
666 if (udp_sk(sk)->udp_port_hash != hnum ||
667 sk->sk_family != PF_INET6 ||
668 (inet->inet_dport && inet->inet_dport != rmt_port) ||
669 (!ipv6_addr_any(&sk->sk_v6_daddr) &&
670 !ipv6_addr_equal(&sk->sk_v6_daddr, rmt_addr)) ||
33b4b015
HR
671 (sk->sk_bound_dev_if && sk->sk_bound_dev_if != dif) ||
672 (!ipv6_addr_any(&sk->sk_v6_rcv_saddr) &&
673 !ipv6_addr_equal(&sk->sk_v6_rcv_saddr, loc_addr)))
5cf3d461
DH
674 return false;
675 if (!inet6_mc_check(sk, loc_addr, rmt_addr))
676 return false;
677 return true;
1da177e4
LT
678}
679
4068579e
TH
680static void udp6_csum_zero_error(struct sk_buff *skb)
681{
682 /* RFC 2460 section 8.1 says that we SHOULD log
683 * this error. Well, it is reasonable.
684 */
ba7a46f1
JP
685 net_dbg_ratelimited("IPv6: udp checksum is 0 for [%pI6c]:%u->[%pI6c]:%u\n",
686 &ipv6_hdr(skb)->saddr, ntohs(udp_hdr(skb)->source),
687 &ipv6_hdr(skb)->daddr, ntohs(udp_hdr(skb)->dest));
4068579e
TH
688}
689
1da177e4
LT
690/*
691 * Note: called only from the BH handler context,
692 * so we don't need to lock the hashes.
693 */
e3163493 694static int __udp6_lib_mcast_deliver(struct net *net, struct sk_buff *skb,
b71d1d42 695 const struct in6_addr *saddr, const struct in6_addr *daddr,
36cbb245 696 struct udp_table *udptable, int proto)
1da177e4 697{
ca065d0c 698 struct sock *sk, *first = NULL;
4bedb452 699 const struct udphdr *uh = udp_hdr(skb);
5cf3d461
DH
700 unsigned short hnum = ntohs(uh->dest);
701 struct udp_hslot *hslot = udp_hashslot(udptable, net, hnum);
ca065d0c 702 unsigned int offset = offsetof(typeof(*sk), sk_node);
2dc41cff 703 unsigned int hash2 = 0, hash2_any = 0, use_hash2 = (hslot->count > 10);
ca065d0c
ED
704 int dif = inet6_iif(skb);
705 struct hlist_node *node;
706 struct sk_buff *nskb;
2dc41cff
DH
707
708 if (use_hash2) {
709 hash2_any = udp6_portaddr_hash(net, &in6addr_any, hnum) &
73e2d5e3
PN
710 udptable->mask;
711 hash2 = udp6_portaddr_hash(net, daddr, hnum) & udptable->mask;
2dc41cff 712start_lookup:
73e2d5e3 713 hslot = &udptable->hash2[hash2];
2dc41cff
DH
714 offset = offsetof(typeof(*sk), __sk_common.skc_portaddr_node);
715 }
1da177e4 716
ca065d0c
ED
717 sk_for_each_entry_offset_rcu(sk, node, &hslot->head, offset) {
718 if (!__udp_v6_is_mcast_sock(net, sk, uh->dest, daddr,
719 uh->source, saddr, dif, hnum))
720 continue;
721 /* If zero checksum and no_check is not on for
722 * the socket then skip it.
723 */
724 if (!uh->check && !udp_sk(sk)->no_check6_rx)
725 continue;
726 if (!first) {
727 first = sk;
728 continue;
729 }
730 nskb = skb_clone(skb, GFP_ATOMIC);
731 if (unlikely(!nskb)) {
732 atomic_inc(&sk->sk_drops);
02c22347
ED
733 __UDP6_INC_STATS(net, UDP_MIB_RCVBUFERRORS,
734 IS_UDPLITE(sk));
735 __UDP6_INC_STATS(net, UDP_MIB_INERRORS,
736 IS_UDPLITE(sk));
ca065d0c 737 continue;
95766fff 738 }
a1ab77f9 739
ca065d0c
ED
740 if (udpv6_queue_rcv_skb(sk, nskb) > 0)
741 consume_skb(nskb);
742 }
a1ab77f9 743
2dc41cff
DH
744 /* Also lookup *:port if we are using hash2 and haven't done so yet. */
745 if (use_hash2 && hash2 != hash2_any) {
746 hash2 = hash2_any;
747 goto start_lookup;
748 }
749
ca065d0c
ED
750 if (first) {
751 if (udpv6_queue_rcv_skb(first, skb) > 0)
752 consume_skb(skb);
a1ab77f9 753 } else {
ca065d0c 754 kfree_skb(skb);
02c22347
ED
755 __UDP6_INC_STATS(net, UDP_MIB_IGNOREDMULTI,
756 proto == IPPROTO_UDPLITE);
a1ab77f9 757 }
ba4e58ec 758 return 0;
1da177e4
LT
759}
760
645ca708 761int __udp6_lib_rcv(struct sk_buff *skb, struct udp_table *udptable,
759e5d00 762 int proto)
1da177e4 763{
ca065d0c 764 const struct in6_addr *saddr, *daddr;
3ffe533c 765 struct net *net = dev_net(skb->dev);
1ab1457c 766 struct udphdr *uh;
ca065d0c 767 struct sock *sk;
1da177e4
LT
768 u32 ulen = 0;
769
770 if (!pskb_may_pull(skb, sizeof(struct udphdr)))
d6bc0149 771 goto discard;
1da177e4 772
0660e03f
ACM
773 saddr = &ipv6_hdr(skb)->saddr;
774 daddr = &ipv6_hdr(skb)->daddr;
4bedb452 775 uh = udp_hdr(skb);
1da177e4
LT
776
777 ulen = ntohs(uh->len);
ba4e58ec
GR
778 if (ulen > skb->len)
779 goto short_packet;
1da177e4 780
759e5d00
HX
781 if (proto == IPPROTO_UDP) {
782 /* UDP validates ulen. */
1da177e4 783
ba4e58ec
GR
784 /* Check for jumbo payload */
785 if (ulen == 0)
786 ulen = skb->len;
1da177e4 787
ba4e58ec
GR
788 if (ulen < sizeof(*uh))
789 goto short_packet;
1da177e4 790
ba4e58ec
GR
791 if (ulen < skb->len) {
792 if (pskb_trim_rcsum(skb, ulen))
793 goto short_packet;
0660e03f
ACM
794 saddr = &ipv6_hdr(skb)->saddr;
795 daddr = &ipv6_hdr(skb)->daddr;
4bedb452 796 uh = udp_hdr(skb);
ba4e58ec 797 }
ba4e58ec 798 }
1da177e4 799
759e5d00 800 if (udp6_csum_init(skb, uh, proto))
6a5dc9e5 801 goto csum_error;
759e5d00 802
c9f2c1ae
PA
803 /* Check if the socket is already available, e.g. due to early demux */
804 sk = skb_steal_sock(skb);
805 if (sk) {
806 struct dst_entry *dst = skb_dst(skb);
807 int ret;
808
809 if (unlikely(sk->sk_rx_dst != dst))
810 udp_sk_rx_dst_set(sk, dst);
811
812 ret = udpv6_queue_rcv_skb(sk, skb);
813 sock_put(sk);
814
815 /* a return value > 0 means to resubmit the input */
816 if (ret > 0)
817 return ret;
818 return 0;
819 }
820
1ab1457c
YH
821 /*
822 * Multicast receive code
1da177e4 823 */
ba4e58ec 824 if (ipv6_addr_is_multicast(daddr))
e3163493 825 return __udp6_lib_mcast_deliver(net, skb,
36cbb245 826 saddr, daddr, udptable, proto);
1da177e4
LT
827
828 /* Unicast */
607c4aaf 829 sk = __udp6_lib_lookup_skb(skb, uh->source, uh->dest, udptable);
53b24b8f 830 if (sk) {
a5b50476
ET
831 int ret;
832
1c19448c 833 if (!uh->check && !udp_sk(sk)->no_check6_rx) {
4068579e
TH
834 udp6_csum_zero_error(skb);
835 goto csum_error;
836 }
837
224d019c 838 if (inet_get_convert_csum(sk) && uh->check && !IS_UDPLITE(sk))
2abb7cdc
TH
839 skb_checksum_try_convert(skb, IPPROTO_UDP, uh->check,
840 ip6_compute_pseudo);
841
a5b50476 842 ret = udpv6_queue_rcv_skb(sk, skb);
1da177e4 843
59dca1d8 844 /* a return value > 0 means to resubmit the input */
cb80ef46 845 if (ret > 0)
59dca1d8 846 return ret;
1da177e4 847
add459aa 848 return 0;
1da177e4 849 }
1ab1457c 850
4068579e
TH
851 if (!uh->check) {
852 udp6_csum_zero_error(skb);
853 goto csum_error;
854 }
855
cb80ef46 856 if (!xfrm6_policy_check(NULL, XFRM_POLICY_IN, skb))
c377411f 857 goto discard;
cb80ef46
BL
858
859 if (udp_lib_checksum_complete(skb))
6a5dc9e5 860 goto csum_error;
cb80ef46 861
02c22347 862 __UDP6_INC_STATS(net, UDP_MIB_NOPORTS, proto == IPPROTO_UDPLITE);
cb80ef46
BL
863 icmpv6_send(skb, ICMPV6_DEST_UNREACH, ICMPV6_PORT_UNREACH, 0);
864
865 kfree_skb(skb);
add459aa 866 return 0;
1da177e4 867
1ab1457c 868short_packet:
ba7a46f1
JP
869 net_dbg_ratelimited("UDP%sv6: short packet: From [%pI6c]:%u %d/%d to [%pI6c]:%u\n",
870 proto == IPPROTO_UDPLITE ? "-Lite" : "",
871 saddr, ntohs(uh->source),
872 ulen, skb->len,
873 daddr, ntohs(uh->dest));
6a5dc9e5
ED
874 goto discard;
875csum_error:
02c22347 876 __UDP6_INC_STATS(net, UDP_MIB_CSUMERRORS, proto == IPPROTO_UDPLITE);
1da177e4 877discard:
02c22347 878 __UDP6_INC_STATS(net, UDP_MIB_INERRORS, proto == IPPROTO_UDPLITE);
1da177e4 879 kfree_skb(skb);
add459aa 880 return 0;
1da177e4 881}
ba4e58ec 882
0bd84065 883
5425077d 884static struct sock *__udp6_lib_demux_lookup(struct net *net,
885 __be16 loc_port, const struct in6_addr *loc_addr,
886 __be16 rmt_port, const struct in6_addr *rmt_addr,
887 int dif)
888{
0bd84065 889 unsigned short hnum = ntohs(loc_port);
890 unsigned int hash2 = udp6_portaddr_hash(net, loc_addr, hnum);
891 unsigned int slot2 = hash2 & udp_table.mask;
892 struct udp_hslot *hslot2 = &udp_table.hash2[slot2];
893 const __portpair ports = INET_COMBINED_PORTS(rmt_port, hnum);
5425077d 894 struct sock *sk;
895
0bd84065 896 udp_portaddr_for_each_entry_rcu(sk, &hslot2->head) {
85cb73ff
WW
897 if (sk->sk_state == TCP_ESTABLISHED &&
898 INET6_MATCH(sk, net, rmt_addr, loc_addr, ports, dif))
0bd84065 899 return sk;
900 /* Only check first socket in chain */
901 break;
902 }
903 return NULL;
5425077d 904}
905
906static void udp_v6_early_demux(struct sk_buff *skb)
907{
908 struct net *net = dev_net(skb->dev);
909 const struct udphdr *uh;
910 struct sock *sk;
911 struct dst_entry *dst;
912 int dif = skb->dev->ifindex;
913
914 if (!pskb_may_pull(skb, skb_transport_offset(skb) +
915 sizeof(struct udphdr)))
916 return;
917
918 uh = udp_hdr(skb);
919
920 if (skb->pkt_type == PACKET_HOST)
921 sk = __udp6_lib_demux_lookup(net, uh->dest,
922 &ipv6_hdr(skb)->daddr,
923 uh->source, &ipv6_hdr(skb)->saddr,
924 dif);
925 else
926 return;
927
41c6d650 928 if (!sk || !refcount_inc_not_zero(&sk->sk_refcnt))
5425077d 929 return;
930
931 skb->sk = sk;
932 skb->destructor = sock_efree;
933 dst = READ_ONCE(sk->sk_rx_dst);
934
935 if (dst)
936 dst = dst_check(dst, inet6_sk(sk)->rx_dst_cookie);
937 if (dst) {
d24406c8
WW
938 /* set noref for now.
939 * any place which wants to hold dst has to call
940 * dst_hold_safe()
941 */
942 skb_dst_set_noref(skb, dst);
5425077d 943 }
944}
945
e5bbef20 946static __inline__ int udpv6_rcv(struct sk_buff *skb)
ba4e58ec 947{
645ca708 948 return __udp6_lib_rcv(skb, &udp_table, IPPROTO_UDP);
ba4e58ec
GR
949}
950
1da177e4
LT
951/*
952 * Throw away all pending data and cancel the corking. Socket is locked.
953 */
954static void udp_v6_flush_pending_frames(struct sock *sk)
955{
956 struct udp_sock *up = udp_sk(sk);
957
36d926b9
DL
958 if (up->pending == AF_INET)
959 udp_flush_pending_frames(sk);
960 else if (up->pending) {
1da177e4
LT
961 up->len = 0;
962 up->pending = 0;
963 ip6_flush_pending_frames(sk);
1ab1457c 964 }
1da177e4
LT
965}
966
493c6be3 967/**
67ba4152
IM
968 * udp6_hwcsum_outgoing - handle outgoing HW checksumming
969 * @sk: socket we are sending on
970 * @skb: sk_buff containing the filled-in UDP header
971 * (checksum field must be zeroed out)
493c6be3
SS
972 */
973static void udp6_hwcsum_outgoing(struct sock *sk, struct sk_buff *skb,
974 const struct in6_addr *saddr,
975 const struct in6_addr *daddr, int len)
976{
977 unsigned int offset;
978 struct udphdr *uh = udp_hdr(skb);
d39d938c 979 struct sk_buff *frags = skb_shinfo(skb)->frag_list;
493c6be3
SS
980 __wsum csum = 0;
981
d39d938c 982 if (!frags) {
493c6be3
SS
983 /* Only one fragment on the socket. */
984 skb->csum_start = skb_transport_header(skb) - skb->head;
985 skb->csum_offset = offsetof(struct udphdr, check);
986 uh->check = ~csum_ipv6_magic(saddr, daddr, len, IPPROTO_UDP, 0);
987 } else {
988 /*
989 * HW-checksum won't work as there are two or more
990 * fragments on the socket so that all csums of sk_buffs
991 * should be together
992 */
993 offset = skb_transport_offset(skb);
994 skb->csum = skb_checksum(skb, offset, skb->len - offset, 0);
995
996 skb->ip_summed = CHECKSUM_NONE;
997
d39d938c
VY
998 do {
999 csum = csum_add(csum, frags->csum);
1000 } while ((frags = frags->next));
493c6be3
SS
1001
1002 uh->check = csum_ipv6_magic(saddr, daddr, len, IPPROTO_UDP,
1003 csum);
1004 if (uh->check == 0)
1005 uh->check = CSUM_MANGLED_0;
1006 }
1007}
1008
1da177e4
LT
1009/*
1010 * Sending
1011 */
1012
d39d938c 1013static int udp_v6_send_skb(struct sk_buff *skb, struct flowi6 *fl6)
1da177e4 1014{
d39d938c 1015 struct sock *sk = skb->sk;
1da177e4 1016 struct udphdr *uh;
1da177e4 1017 int err = 0;
b2bf1e26 1018 int is_udplite = IS_UDPLITE(sk);
868c86bc 1019 __wsum csum = 0;
d39d938c
VY
1020 int offset = skb_transport_offset(skb);
1021 int len = skb->len - offset;
1da177e4
LT
1022
1023 /*
1024 * Create a UDP header
1025 */
4bedb452 1026 uh = udp_hdr(skb);
1958b856
DM
1027 uh->source = fl6->fl6_sport;
1028 uh->dest = fl6->fl6_dport;
d39d938c 1029 uh->len = htons(len);
1da177e4
LT
1030 uh->check = 0;
1031
b2bf1e26 1032 if (is_udplite)
d39d938c
VY
1033 csum = udplite_csum(skb);
1034 else if (udp_sk(sk)->no_check6_tx) { /* UDP csum disabled */
4068579e
TH
1035 skb->ip_summed = CHECKSUM_NONE;
1036 goto send;
1037 } else if (skb->ip_summed == CHECKSUM_PARTIAL) { /* UDP hardware csum */
d39d938c 1038 udp6_hwcsum_outgoing(sk, skb, &fl6->saddr, &fl6->daddr, len);
493c6be3
SS
1039 goto send;
1040 } else
d39d938c 1041 csum = udp_csum(skb);
1da177e4 1042
ba4e58ec 1043 /* add protocol-dependent pseudo-header */
4c9483b2 1044 uh->check = csum_ipv6_magic(&fl6->saddr, &fl6->daddr,
d39d938c 1045 len, fl6->flowi6_proto, csum);
1da177e4 1046 if (uh->check == 0)
f6ab0288 1047 uh->check = CSUM_MANGLED_0;
1da177e4 1048
493c6be3 1049send:
d39d938c 1050 err = ip6_send_skb(skb);
6ce9e7b5
ED
1051 if (err) {
1052 if (err == -ENOBUFS && !inet6_sk(sk)->recverr) {
6aef70a8
ED
1053 UDP6_INC_STATS(sock_net(sk),
1054 UDP_MIB_SNDBUFERRORS, is_udplite);
6ce9e7b5
ED
1055 err = 0;
1056 }
6aef70a8
ED
1057 } else {
1058 UDP6_INC_STATS(sock_net(sk),
1059 UDP_MIB_OUTDATAGRAMS, is_udplite);
1060 }
d39d938c
VY
1061 return err;
1062}
1063
1064static int udp_v6_push_pending_frames(struct sock *sk)
1065{
1066 struct sk_buff *skb;
1067 struct udp_sock *up = udp_sk(sk);
1068 struct flowi6 fl6;
1069 int err = 0;
1070
1071 if (up->pending == AF_INET)
1072 return udp_push_pending_frames(sk);
1073
1074 /* ip6_finish_skb will release the cork, so make a copy of
1075 * fl6 here.
1076 */
1077 fl6 = inet_sk(sk)->cork.fl.u.ip6;
1078
1079 skb = ip6_finish_skb(sk);
1080 if (!skb)
1081 goto out;
1082
1083 err = udp_v6_send_skb(skb, &fl6);
1084
1da177e4
LT
1085out:
1086 up->len = 0;
1087 up->pending = 0;
1088 return err;
1089}
1090
1b784140 1091int udpv6_sendmsg(struct sock *sk, struct msghdr *msg, size_t len)
1da177e4
LT
1092{
1093 struct ipv6_txoptions opt_space;
1094 struct udp_sock *up = udp_sk(sk);
1095 struct inet_sock *inet = inet_sk(sk);
1096 struct ipv6_pinfo *np = inet6_sk(sk);
342dfc30 1097 DECLARE_SOCKADDR(struct sockaddr_in6 *, sin6, msg->msg_name);
20c59de2 1098 struct in6_addr *daddr, *final_p, final;
1da177e4 1099 struct ipv6_txoptions *opt = NULL;
45f6fad8 1100 struct ipv6_txoptions *opt_to_free = NULL;
1da177e4 1101 struct ip6_flowlabel *flowlabel = NULL;
4c9483b2 1102 struct flowi6 fl6;
1da177e4 1103 struct dst_entry *dst;
26879da5 1104 struct ipcm6_cookie ipc6;
1da177e4
LT
1105 int addr_len = msg->msg_namelen;
1106 int ulen = len;
1da177e4
LT
1107 int corkreq = up->corkflag || msg->msg_flags&MSG_MORE;
1108 int err;
987905de 1109 int connected = 0;
b2bf1e26 1110 int is_udplite = IS_UDPLITE(sk);
ba4e58ec 1111 int (*getfrag)(void *, char *, int, int, int, struct sk_buff *);
ad1e46a8 1112 struct sockcm_cookie sockc;
1da177e4 1113
26879da5
WW
1114 ipc6.hlimit = -1;
1115 ipc6.tclass = -1;
1116 ipc6.dontfrag = -1;
d515684d 1117 sockc.tsflags = sk->sk_tsflags;
26879da5 1118
1da177e4
LT
1119 /* destination address check */
1120 if (sin6) {
1121 if (addr_len < offsetof(struct sockaddr, sa_data))
1122 return -EINVAL;
1123
1124 switch (sin6->sin6_family) {
1125 case AF_INET6:
1126 if (addr_len < SIN6_LEN_RFC2133)
1127 return -EINVAL;
1128 daddr = &sin6->sin6_addr;
052d2369
JL
1129 if (ipv6_addr_any(daddr) &&
1130 ipv6_addr_v4mapped(&np->saddr))
1131 ipv6_addr_set_v4mapped(htonl(INADDR_LOOPBACK),
1132 daddr);
1da177e4
LT
1133 break;
1134 case AF_INET:
1135 goto do_udp_sendmsg;
1136 case AF_UNSPEC:
1137 msg->msg_name = sin6 = NULL;
1138 msg->msg_namelen = addr_len = 0;
1139 daddr = NULL;
1140 break;
1141 default:
1142 return -EINVAL;
1143 }
1144 } else if (!up->pending) {
1145 if (sk->sk_state != TCP_ESTABLISHED)
1146 return -EDESTADDRREQ;
efe4208f 1147 daddr = &sk->sk_v6_daddr;
1ab1457c 1148 } else
1da177e4
LT
1149 daddr = NULL;
1150
1151 if (daddr) {
e773e4fa 1152 if (ipv6_addr_v4mapped(daddr)) {
1da177e4
LT
1153 struct sockaddr_in sin;
1154 sin.sin_family = AF_INET;
c720c7e8 1155 sin.sin_port = sin6 ? sin6->sin6_port : inet->inet_dport;
1da177e4
LT
1156 sin.sin_addr.s_addr = daddr->s6_addr32[3];
1157 msg->msg_name = &sin;
1158 msg->msg_namelen = sizeof(sin);
1159do_udp_sendmsg:
1160 if (__ipv6_only_sock(sk))
1161 return -ENETUNREACH;
1b784140 1162 return udp_sendmsg(sk, msg, len);
1da177e4
LT
1163 }
1164 }
1165
1166 if (up->pending == AF_INET)
1b784140 1167 return udp_sendmsg(sk, msg, len);
1da177e4
LT
1168
1169 /* Rough check on arithmetic overflow,
b59e139b 1170 better check is made in ip6_append_data().
1da177e4
LT
1171 */
1172 if (len > INT_MAX - sizeof(struct udphdr))
1173 return -EMSGSIZE;
1ab1457c 1174
03485f2a 1175 getfrag = is_udplite ? udplite_getfrag : ip_generic_getfrag;
1da177e4
LT
1176 if (up->pending) {
1177 /*
1178 * There are pending frames.
1179 * The socket lock must be held while it's corked.
1180 */
1181 lock_sock(sk);
1182 if (likely(up->pending)) {
1183 if (unlikely(up->pending != AF_INET6)) {
1184 release_sock(sk);
1185 return -EAFNOSUPPORT;
1186 }
1187 dst = NULL;
1188 goto do_append_data;
1189 }
1190 release_sock(sk);
1191 }
1192 ulen += sizeof(struct udphdr);
1193
4c9483b2 1194 memset(&fl6, 0, sizeof(fl6));
1da177e4
LT
1195
1196 if (sin6) {
1197 if (sin6->sin6_port == 0)
1198 return -EINVAL;
1199
1958b856 1200 fl6.fl6_dport = sin6->sin6_port;
1da177e4
LT
1201 daddr = &sin6->sin6_addr;
1202
1203 if (np->sndflow) {
4c9483b2
DM
1204 fl6.flowlabel = sin6->sin6_flowinfo&IPV6_FLOWINFO_MASK;
1205 if (fl6.flowlabel&IPV6_FLOWLABEL_MASK) {
1206 flowlabel = fl6_sock_lookup(sk, fl6.flowlabel);
63159f29 1207 if (!flowlabel)
1da177e4 1208 return -EINVAL;
1da177e4
LT
1209 }
1210 }
1211
1212 /*
1213 * Otherwise it will be difficult to maintain
1214 * sk->sk_dst_cache.
1215 */
1216 if (sk->sk_state == TCP_ESTABLISHED &&
efe4208f
ED
1217 ipv6_addr_equal(daddr, &sk->sk_v6_daddr))
1218 daddr = &sk->sk_v6_daddr;
1da177e4
LT
1219
1220 if (addr_len >= sizeof(struct sockaddr_in6) &&
1221 sin6->sin6_scope_id &&
842df073 1222 __ipv6_addr_needs_scope_id(__ipv6_addr_type(daddr)))
4c9483b2 1223 fl6.flowi6_oif = sin6->sin6_scope_id;
1da177e4
LT
1224 } else {
1225 if (sk->sk_state != TCP_ESTABLISHED)
1226 return -EDESTADDRREQ;
1227
1958b856 1228 fl6.fl6_dport = inet->inet_dport;
efe4208f 1229 daddr = &sk->sk_v6_daddr;
4c9483b2 1230 fl6.flowlabel = np->flow_label;
987905de 1231 connected = 1;
1da177e4
LT
1232 }
1233
4c9483b2
DM
1234 if (!fl6.flowi6_oif)
1235 fl6.flowi6_oif = sk->sk_bound_dev_if;
1da177e4 1236
4c9483b2
DM
1237 if (!fl6.flowi6_oif)
1238 fl6.flowi6_oif = np->sticky_pktinfo.ipi6_ifindex;
9f690db7 1239
4c9483b2 1240 fl6.flowi6_mark = sk->sk_mark;
e2d118a1 1241 fl6.flowi6_uid = sk->sk_uid;
51953d5b 1242
1da177e4
LT
1243 if (msg->msg_controllen) {
1244 opt = &opt_space;
1245 memset(opt, 0, sizeof(struct ipv6_txoptions));
1246 opt->tot_len = sizeof(*opt);
26879da5 1247 ipc6.opt = opt;
1da177e4 1248
26879da5 1249 err = ip6_datagram_send_ctl(sock_net(sk), sk, msg, &fl6, &ipc6, &sockc);
1da177e4
LT
1250 if (err < 0) {
1251 fl6_sock_release(flowlabel);
1252 return err;
1253 }
4c9483b2
DM
1254 if ((fl6.flowlabel&IPV6_FLOWLABEL_MASK) && !flowlabel) {
1255 flowlabel = fl6_sock_lookup(sk, fl6.flowlabel);
63159f29 1256 if (!flowlabel)
1da177e4
LT
1257 return -EINVAL;
1258 }
1259 if (!(opt->opt_nflen|opt->opt_flen))
1260 opt = NULL;
987905de 1261 connected = 0;
1da177e4 1262 }
45f6fad8
ED
1263 if (!opt) {
1264 opt = txopt_get(np);
1265 opt_to_free = opt;
1266 }
df9890c3
YH
1267 if (flowlabel)
1268 opt = fl6_merge_options(&opt_space, flowlabel, opt);
1269 opt = ipv6_fixup_options(&opt_space, opt);
26879da5 1270 ipc6.opt = opt;
1da177e4 1271
4c9483b2 1272 fl6.flowi6_proto = sk->sk_protocol;
876c7f41 1273 if (!ipv6_addr_any(daddr))
4e3fd7a0 1274 fl6.daddr = *daddr;
876c7f41 1275 else
4c9483b2
DM
1276 fl6.daddr.s6_addr[15] = 0x1; /* :: means loopback (BSD'ism) */
1277 if (ipv6_addr_any(&fl6.saddr) && !ipv6_addr_any(&np->saddr))
4e3fd7a0 1278 fl6.saddr = np->saddr;
1958b856 1279 fl6.fl6_sport = inet->inet_sport;
1ab1457c 1280
4c9483b2 1281 final_p = fl6_update_dst(&fl6, opt, &final);
20c59de2 1282 if (final_p)
987905de 1283 connected = 0;
1da177e4 1284
4c9483b2
DM
1285 if (!fl6.flowi6_oif && ipv6_addr_is_multicast(&fl6.daddr)) {
1286 fl6.flowi6_oif = np->mcast_oif;
987905de 1287 connected = 0;
c4062dfc
EH
1288 } else if (!fl6.flowi6_oif)
1289 fl6.flowi6_oif = np->ucast_oif;
1da177e4 1290
4c9483b2 1291 security_sk_classify_flow(sk, flowi6_to_flowi(&fl6));
beb8d13b 1292
38b7097b
HFS
1293 if (ipc6.tclass < 0)
1294 ipc6.tclass = np->tclass;
1295
1296 fl6.flowlabel = ip6_make_flowinfo(ipc6.tclass, fl6.flowlabel);
1297
0e0d44ab 1298 dst = ip6_sk_dst_lookup_flow(sk, &fl6, final_p);
68d0c6d3
DM
1299 if (IS_ERR(dst)) {
1300 err = PTR_ERR(dst);
1301 dst = NULL;
1da177e4 1302 goto out;
14e50e57 1303 }
1da177e4 1304
26879da5
WW
1305 if (ipc6.hlimit < 0)
1306 ipc6.hlimit = ip6_sk_dst_hoplimit(np, &fl6, dst);
1da177e4
LT
1307
1308 if (msg->msg_flags&MSG_CONFIRM)
1309 goto do_confirm;
1310back_from_confirm:
1311
03485f2a
VY
1312 /* Lockless fast path for the non-corking case */
1313 if (!corkreq) {
1314 struct sk_buff *skb;
1315
1316 skb = ip6_make_skb(sk, getfrag, msg, ulen,
26879da5 1317 sizeof(struct udphdr), &ipc6,
03485f2a 1318 &fl6, (struct rt6_info *)dst,
26879da5 1319 msg->msg_flags, &sockc);
03485f2a
VY
1320 err = PTR_ERR(skb);
1321 if (!IS_ERR_OR_NULL(skb))
1322 err = udp_v6_send_skb(skb, &fl6);
1323 goto release_dst;
1324 }
1325
1da177e4
LT
1326 lock_sock(sk);
1327 if (unlikely(up->pending)) {
1328 /* The socket is already corked while preparing it. */
1329 /* ... which is an evident application bug. --ANK */
1330 release_sock(sk);
1331
ba7a46f1 1332 net_dbg_ratelimited("udp cork app bug 2\n");
1da177e4
LT
1333 err = -EINVAL;
1334 goto out;
1335 }
1336
1337 up->pending = AF_INET6;
1338
1339do_append_data:
26879da5
WW
1340 if (ipc6.dontfrag < 0)
1341 ipc6.dontfrag = np->dontfrag;
1da177e4 1342 up->len += ulen;
26879da5
WW
1343 err = ip6_append_data(sk, getfrag, msg, ulen, sizeof(struct udphdr),
1344 &ipc6, &fl6, (struct rt6_info *)dst,
1345 corkreq ? msg->msg_flags|MSG_MORE : msg->msg_flags, &sockc);
1da177e4
LT
1346 if (err)
1347 udp_v6_flush_pending_frames(sk);
1348 else if (!corkreq)
4c0a6cb0 1349 err = udp_v6_push_pending_frames(sk);
1e0c14f4
HX
1350 else if (unlikely(skb_queue_empty(&sk->sk_write_queue)))
1351 up->pending = 0;
1da177e4 1352
03485f2a
VY
1353 if (err > 0)
1354 err = np->recverr ? net_xmit_errno(err) : 0;
1355 release_sock(sk);
1356
1357release_dst:
a5e7c210
DM
1358 if (dst) {
1359 if (connected) {
1360 ip6_dst_store(sk, dst,
efe4208f
ED
1361 ipv6_addr_equal(&fl6.daddr, &sk->sk_v6_daddr) ?
1362 &sk->sk_v6_daddr : NULL,
8e1ef0a9 1363#ifdef CONFIG_IPV6_SUBTREES
4c9483b2 1364 ipv6_addr_equal(&fl6.saddr, &np->saddr) ?
8e1ef0a9
YH
1365 &np->saddr :
1366#endif
1367 NULL);
a5e7c210
DM
1368 } else {
1369 dst_release(dst);
1370 }
a3c96089 1371 dst = NULL;
a5e7c210
DM
1372 }
1373
1da177e4 1374out:
a3c96089 1375 dst_release(dst);
1da177e4 1376 fl6_sock_release(flowlabel);
45f6fad8 1377 txopt_put(opt_to_free);
cd562c98 1378 if (!err)
1da177e4 1379 return len;
a18135eb
DM
1380 /*
1381 * ENOBUFS = no kernel mem, SOCK_NOSPACE = no sndbuf space. Reporting
1382 * ENOBUFS might not be good (it's not tunable per se), but otherwise
1383 * we don't have a good statistic (IpOutDiscards but it can be too many
1384 * things). We could add another new stat but at least for now that
1385 * seems like overkill.
1386 */
1387 if (err == -ENOBUFS || test_bit(SOCK_NOSPACE, &sk->sk_socket->flags)) {
6aef70a8
ED
1388 UDP6_INC_STATS(sock_net(sk),
1389 UDP_MIB_SNDBUFERRORS, is_udplite);
a18135eb 1390 }
1da177e4
LT
1391 return err;
1392
1393do_confirm:
0dec879f
JA
1394 if (msg->msg_flags & MSG_PROBE)
1395 dst_confirm_neigh(dst, &fl6.daddr);
1da177e4
LT
1396 if (!(msg->msg_flags&MSG_PROBE) || len)
1397 goto back_from_confirm;
1398 err = 0;
1399 goto out;
1400}
1401
7d06b2e0 1402void udpv6_destroy_sock(struct sock *sk)
1da177e4 1403{
44046a59 1404 struct udp_sock *up = udp_sk(sk);
1da177e4
LT
1405 lock_sock(sk);
1406 udp_v6_flush_pending_frames(sk);
1407 release_sock(sk);
1408
44046a59
TP
1409 if (static_key_false(&udpv6_encap_needed) && up->encap_type) {
1410 void (*encap_destroy)(struct sock *sk);
1411 encap_destroy = ACCESS_ONCE(up->encap_destroy);
1412 if (encap_destroy)
1413 encap_destroy(sk);
1414 }
1415
1da177e4 1416 inet6_destroy_sock(sk);
1da177e4
LT
1417}
1418
1419/*
1420 * Socket option code for UDP
1421 */
ba4e58ec 1422int udpv6_setsockopt(struct sock *sk, int level, int optname,
b7058842 1423 char __user *optval, unsigned int optlen)
3fdadf7d 1424{
db8dac20 1425 if (level == SOL_UDP || level == SOL_UDPLITE)
4c0a6cb0
GR
1426 return udp_lib_setsockopt(sk, level, optname, optval, optlen,
1427 udp_v6_push_pending_frames);
ba4e58ec 1428 return ipv6_setsockopt(sk, level, optname, optval, optlen);
3fdadf7d
DM
1429}
1430
1431#ifdef CONFIG_COMPAT
ba4e58ec 1432int compat_udpv6_setsockopt(struct sock *sk, int level, int optname,
b7058842 1433 char __user *optval, unsigned int optlen)
3fdadf7d 1434{
db8dac20 1435 if (level == SOL_UDP || level == SOL_UDPLITE)
4c0a6cb0
GR
1436 return udp_lib_setsockopt(sk, level, optname, optval, optlen,
1437 udp_v6_push_pending_frames);
ba4e58ec 1438 return compat_ipv6_setsockopt(sk, level, optname, optval, optlen);
3fdadf7d
DM
1439}
1440#endif
1441
ba4e58ec
GR
1442int udpv6_getsockopt(struct sock *sk, int level, int optname,
1443 char __user *optval, int __user *optlen)
3fdadf7d 1444{
db8dac20 1445 if (level == SOL_UDP || level == SOL_UDPLITE)
4c0a6cb0 1446 return udp_lib_getsockopt(sk, level, optname, optval, optlen);
ba4e58ec 1447 return ipv6_getsockopt(sk, level, optname, optval, optlen);
3fdadf7d
DM
1448}
1449
1450#ifdef CONFIG_COMPAT
ba4e58ec
GR
1451int compat_udpv6_getsockopt(struct sock *sk, int level, int optname,
1452 char __user *optval, int __user *optlen)
3fdadf7d 1453{
db8dac20 1454 if (level == SOL_UDP || level == SOL_UDPLITE)
4c0a6cb0 1455 return udp_lib_getsockopt(sk, level, optname, optval, optlen);
ba4e58ec 1456 return compat_ipv6_getsockopt(sk, level, optname, optval, optlen);
3fdadf7d
DM
1457}
1458#endif
1459
dddb64bc 1460static struct inet6_protocol udpv6_protocol = {
5425077d 1461 .early_demux = udp_v6_early_demux,
dddb64bc 1462 .early_demux_handler = udp_v6_early_demux,
1da177e4
LT
1463 .handler = udpv6_rcv,
1464 .err_handler = udpv6_err,
1465 .flags = INET6_PROTO_NOPOLICY|INET6_PROTO_FINAL,
1466};
1467
1468/* ------------------------------------------------------------------------ */
1469#ifdef CONFIG_PROC_FS
ba4e58ec 1470int udp6_seq_show(struct seq_file *seq, void *v)
1da177e4 1471{
17ef66af
LC
1472 if (v == SEQ_START_TOKEN) {
1473 seq_puts(seq, IPV6_SEQ_DGRAM_HEADER);
1474 } else {
1475 int bucket = ((struct udp_iter_state *)seq->private)->bucket;
1476 struct inet_sock *inet = inet_sk(v);
1477 __u16 srcp = ntohs(inet->inet_sport);
1478 __u16 destp = ntohs(inet->inet_dport);
1479 ip6_dgram_sock_seq_show(seq, v, srcp, destp, bucket);
1480 }
1da177e4
LT
1481 return 0;
1482}
1483
73cb88ec
AV
1484static const struct file_operations udp6_afinfo_seq_fops = {
1485 .owner = THIS_MODULE,
1486 .open = udp_seq_open,
1487 .read = seq_read,
1488 .llseek = seq_lseek,
1489 .release = seq_release_net
1490};
1491
1da177e4 1492static struct udp_seq_afinfo udp6_seq_afinfo = {
1da177e4
LT
1493 .name = "udp6",
1494 .family = AF_INET6,
645ca708 1495 .udp_table = &udp_table,
73cb88ec 1496 .seq_fops = &udp6_afinfo_seq_fops,
dda61925
DL
1497 .seq_ops = {
1498 .show = udp6_seq_show,
1499 },
1da177e4
LT
1500};
1501
2c8c1e72 1502int __net_init udp6_proc_init(struct net *net)
1da177e4 1503{
0c96d8c5 1504 return udp_proc_register(net, &udp6_seq_afinfo);
1da177e4
LT
1505}
1506
ec120da6
IM
1507void udp6_proc_exit(struct net *net)
1508{
0c96d8c5 1509 udp_proc_unregister(net, &udp6_seq_afinfo);
1da177e4
LT
1510}
1511#endif /* CONFIG_PROC_FS */
1512
1513/* ------------------------------------------------------------------------ */
1514
1515struct proto udpv6_prot = {
543d9cfe
ACM
1516 .name = "UDPv6",
1517 .owner = THIS_MODULE,
ba4e58ec 1518 .close = udp_lib_close,
543d9cfe
ACM
1519 .connect = ip6_datagram_connect,
1520 .disconnect = udp_disconnect,
1521 .ioctl = udp_ioctl,
850cbadd 1522 .init = udp_init_sock,
543d9cfe
ACM
1523 .destroy = udpv6_destroy_sock,
1524 .setsockopt = udpv6_setsockopt,
1525 .getsockopt = udpv6_getsockopt,
1526 .sendmsg = udpv6_sendmsg,
1527 .recvmsg = udpv6_recvmsg,
e646b657 1528 .release_cb = ip6_datagram_release_cb,
ba4e58ec
GR
1529 .hash = udp_lib_hash,
1530 .unhash = udp_lib_unhash,
719f8358 1531 .rehash = udp_v6_rehash,
543d9cfe 1532 .get_port = udp_v6_get_port,
95766fff
HA
1533 .memory_allocated = &udp_memory_allocated,
1534 .sysctl_mem = sysctl_udp_mem,
1535 .sysctl_wmem = &sysctl_udp_wmem_min,
1536 .sysctl_rmem = &sysctl_udp_rmem_min,
543d9cfe 1537 .obj_size = sizeof(struct udp6_sock),
645ca708 1538 .h.udp_table = &udp_table,
3fdadf7d 1539#ifdef CONFIG_COMPAT
543d9cfe
ACM
1540 .compat_setsockopt = compat_udpv6_setsockopt,
1541 .compat_getsockopt = compat_udpv6_getsockopt,
3fdadf7d 1542#endif
5d77dca8 1543 .diag_destroy = udp_abort,
1da177e4
LT
1544};
1545
1da177e4
LT
1546static struct inet_protosw udpv6_protosw = {
1547 .type = SOCK_DGRAM,
1548 .protocol = IPPROTO_UDP,
1549 .prot = &udpv6_prot,
1550 .ops = &inet6_dgram_ops,
1da177e4
LT
1551 .flags = INET_PROTOSW_PERMANENT,
1552};
1553
7f4e4868 1554int __init udpv6_init(void)
1da177e4 1555{
7f4e4868
DL
1556 int ret;
1557
3336288a
VY
1558 ret = inet6_add_protocol(&udpv6_protocol, IPPROTO_UDP);
1559 if (ret)
c6b641a4 1560 goto out;
3336288a 1561
7f4e4868
DL
1562 ret = inet6_register_protosw(&udpv6_protosw);
1563 if (ret)
1564 goto out_udpv6_protocol;
1565out:
1566 return ret;
1567
1568out_udpv6_protocol:
1569 inet6_del_protocol(&udpv6_protocol, IPPROTO_UDP);
1570 goto out;
1571}
1572
09f7709f 1573void udpv6_exit(void)
7f4e4868
DL
1574{
1575 inet6_unregister_protosw(&udpv6_protosw);
1576 inet6_del_protocol(&udpv6_protocol, IPPROTO_UDP);
1da177e4 1577}