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