blob: 40d7234c27b991e54f5cfbacb5d7081e8277ae56 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * UDP over IPv6
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09003 * Linux INET6 implementation
Linus Torvalds1da177e2005-04-16 15:20:36 -07004 *
5 * Authors:
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09006 * Pedro Roque <roque@di.fc.ul.pt>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007 *
8 * Based on linux/ipv4/udp.c
9 *
Linus Torvalds1da177e2005-04-16 15:20:36 -070010 * 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
Linus Torvalds1da177e2005-04-16 15:20:36 -070024#include <linux/errno.h>
25#include <linux/types.h>
26#include <linux/socket.h>
27#include <linux/sockios.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070028#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>
Herbert Xu1781f7f2007-12-11 11:30:32 -080035#include <linux/module.h>
Herbert Xu3305b802005-12-13 23:16:37 -080036#include <linux/skbuff.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090037#include <linux/slab.h>
Linus Torvalds7c0f6ba2016-12-24 11:46:01 -080038#include <linux/uaccess.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070039
Craig Gallek496611d2016-02-10 11:50:36 -050040#include <net/addrconf.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070041#include <net/ndisc.h>
42#include <net/protocol.h>
43#include <net/transp_v6.h>
44#include <net/ip6_route.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070045#include <net/raw.h>
Arnaldo Carvalho de Meloc752f072005-08-09 20:08:28 -070046#include <net/tcp_states.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070047#include <net/ip6_checksum.h>
48#include <net/xfrm.h>
subashab@codeaurora.org0bd84062017-04-18 11:39:41 -060049#include <net/inet_hashtables.h>
Tom Herbert72289b92013-01-22 09:50:44 +000050#include <net/inet6_hashtables.h>
Eliezer Tamir076bb0c2013-07-10 17:13:17 +030051#include <net/busy_poll.h>
Craig Galleke32ea7e2016-01-04 17:41:46 -050052#include <net/sock_reuseport.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070053
54#include <linux/proc_fs.h>
55#include <linux/seq_file.h>
Eric Dumazet22911fc2012-06-27 00:23:44 +000056#include <trace/events/skb.h>
Gerrit Renkerba4e58e2006-11-27 11:10:57 -080057#include "udp_impl.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070058
Robert Shearman63a6fff2017-01-26 18:02:24 +000059static 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
Eric Dumazet6eada012015-03-18 14:05:33 -070069static 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)
Hannes Frederic Sowab50026b2013-10-19 21:48:52 +020074{
Hannes Frederic Sowa1bbdcee2013-10-19 21:48:57 +020075 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
Hannes Frederic Sowab50026b2013-10-19 21:48:52 +020088 return __inet6_ehashfn(lhash, lport, fhash, fport,
Hannes Frederic Sowa1bbdcee2013-10-19 21:48:57 +020089 udp_ipv6_hash_secret + net_hash_mix(net));
Hannes Frederic Sowab50026b2013-10-19 21:48:52 +020090}
91
Eric Dumazet6eada012015-03-18 14:05:33 -070092static u32 udp6_portaddr_hash(const struct net *net,
93 const struct in6_addr *addr6,
94 unsigned int port)
Eric Dumazetd4cada42009-11-08 10:17:30 +000095{
96 unsigned int hash, mix = net_hash_mix(net);
97
98 if (ipv6_addr_any(addr6))
99 hash = jhash_1word(0, mix);
Brian Haley856540e2009-11-09 12:05:53 +0000100 else if (ipv6_addr_v4mapped(addr6))
Eric Dumazet0eae88f2010-04-20 19:06:52 -0700101 hash = jhash_1word((__force u32)addr6->s6_addr32[3], mix);
Eric Dumazetd4cada42009-11-08 10:17:30 +0000102 else
Eric Dumazet0eae88f2010-04-20 19:06:52 -0700103 hash = jhash2((__force u32 *)addr6->s6_addr32, 4, mix);
Eric Dumazetd4cada42009-11-08 10:17:30 +0000104
105 return hash ^ port;
106}
107
Pavel Emelyanov6ba5a3c2008-03-22 16:51:21 -0700108int udp_v6_get_port(struct sock *sk, unsigned short snum)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700109{
Eric Dumazet30fff922009-11-09 05:26:33 +0000110 unsigned int hash2_nulladdr =
111 udp6_portaddr_hash(sock_net(sk), &in6addr_any, snum);
Jeffrin Jose9a52e972012-05-19 01:45:21 +0000112 unsigned int hash2_partial =
Eric Dumazetefe42082013-10-03 15:42:29 -0700113 udp6_portaddr_hash(sock_net(sk), &sk->sk_v6_rcv_saddr, 0);
Eric Dumazet30fff922009-11-09 05:26:33 +0000114
Eric Dumazetd4cada42009-11-08 10:17:30 +0000115 /* precompute partial secondary hash */
Eric Dumazet30fff922009-11-09 05:26:33 +0000116 udp_sk(sk)->udp_portaddr_hash = hash2_partial;
Josef Bacikfe38d2a2017-01-17 07:51:01 -0800117 return udp_lib_get_port(sk, snum, hash2_nulladdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700118}
119
Eric Dumazet719f8352010-09-08 05:08:44 +0000120static void udp_v6_rehash(struct sock *sk)
121{
122 u16 new_hash = udp6_portaddr_hash(sock_net(sk),
Eric Dumazetefe42082013-10-03 15:42:29 -0700123 &sk->sk_v6_rcv_saddr,
Eric Dumazet719f8352010-09-08 05:08:44 +0000124 inet_sk(sk)->inet_num);
125
126 udp_lib_rehash(sk, new_hash);
127}
128
Su, Xuemind1e37282016-06-13 11:02:50 +0800129static 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,
David Ahern1801b572017-08-07 08:44:20 -0700132 int dif, int sdif, bool exact_dif)
Eric Dumazet645ca702008-10-29 01:41:45 -0700133{
Joe Perches60c04ae2014-12-01 20:29:06 -0800134 int score;
135 struct inet_sock *inet;
Eric Dumazet645ca702008-10-29 01:41:45 -0700136
Joe Perches60c04ae2014-12-01 20:29:06 -0800137 if (!net_eq(sock_net(sk), net) ||
138 udp_sk(sk)->udp_port_hash != hnum ||
139 sk->sk_family != PF_INET6)
140 return -1;
Eric Dumazet645ca702008-10-29 01:41:45 -0700141
Joe Perches60c04ae2014-12-01 20:29:06 -0800142 score = 0;
143 inet = inet_sk(sk);
144
145 if (inet->inet_dport) {
146 if (inet->inet_dport != sport)
147 return -1;
148 score++;
Eric Dumazet645ca702008-10-29 01:41:45 -0700149 }
Joe Perches60c04ae2014-12-01 20:29:06 -0800150
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
Robert Shearman63a6fff2017-01-26 18:02:24 +0000163 if (sk->sk_bound_dev_if || exact_dif) {
David Ahern1801b572017-08-07 08:44:20 -0700164 bool dev_match = (sk->sk_bound_dev_if == dif ||
165 sk->sk_bound_dev_if == sdif);
166
167 if (exact_dif && !dev_match)
Joe Perches60c04ae2014-12-01 20:29:06 -0800168 return -1;
David Ahern1801b572017-08-07 08:44:20 -0700169 if (sk->sk_bound_dev_if && dev_match)
170 score++;
Joe Perches60c04ae2014-12-01 20:29:06 -0800171 }
172
Eric Dumazet70da2682015-10-08 19:33:21 -0700173 if (sk->sk_incoming_cpu == raw_smp_processor_id())
174 score++;
175
Eric Dumazet645ca702008-10-29 01:41:45 -0700176 return score;
177}
178
Su, Xuemind1e37282016-06-13 11:02:50 +0800179/* called with rcu_read_lock() */
Eric Dumazetfddc17d2009-11-08 10:18:30 +0000180static struct sock *udp6_lib_lookup2(struct net *net,
181 const struct in6_addr *saddr, __be16 sport,
David Ahern1801b572017-08-07 08:44:20 -0700182 const struct in6_addr *daddr, unsigned int hnum,
183 int dif, int sdif, bool exact_dif,
184 struct udp_hslot *hslot2, struct sk_buff *skb)
Eric Dumazetfddc17d2009-11-08 10:18:30 +0000185{
186 struct sock *sk, *result;
Tom Herbert72289b92013-01-22 09:50:44 +0000187 int score, badness, matches = 0, reuseport = 0;
188 u32 hash = 0;
Eric Dumazetfddc17d2009-11-08 10:18:30 +0000189
Eric Dumazetfddc17d2009-11-08 10:18:30 +0000190 result = NULL;
191 badness = -1;
Eric Dumazetca065d02016-04-01 08:52:13 -0700192 udp_portaddr_for_each_entry_rcu(sk, &hslot2->head) {
Su, Xuemind1e37282016-06-13 11:02:50 +0800193 score = compute_score(sk, net, saddr, sport,
David Ahern1801b572017-08-07 08:44:20 -0700194 daddr, hnum, dif, sdif, exact_dif);
Eric Dumazetfddc17d2009-11-08 10:18:30 +0000195 if (score > badness) {
Tom Herbert72289b92013-01-22 09:50:44 +0000196 reuseport = sk->sk_reuseport;
197 if (reuseport) {
Hannes Frederic Sowab50026b2013-10-19 21:48:52 +0200198 hash = udp6_ehashfn(net, daddr, hnum,
199 saddr, sport);
Eric Dumazeted0dfff2016-01-19 08:36:43 -0800200
Eric Dumazetca065d02016-04-01 08:52:13 -0700201 result = reuseport_select_sock(sk, hash, skb,
Eric Dumazeted0dfff2016-01-19 08:36:43 -0800202 sizeof(struct udphdr));
Eric Dumazetca065d02016-04-01 08:52:13 -0700203 if (result)
204 return result;
Tom Herbert72289b92013-01-22 09:50:44 +0000205 matches = 1;
Eric Dumazet70da2682015-10-08 19:33:21 -0700206 }
Eric Dumazetca065d02016-04-01 08:52:13 -0700207 result = sk;
208 badness = score;
Tom Herbert72289b92013-01-22 09:50:44 +0000209 } else if (score == badness && reuseport) {
210 matches++;
Daniel Borkmann8fc54f62014-08-23 20:58:54 +0200211 if (reciprocal_scale(hash, matches) == 0)
Tom Herbert72289b92013-01-22 09:50:44 +0000212 result = sk;
213 hash = next_pseudo_random32(hash);
Eric Dumazetfddc17d2009-11-08 10:18:30 +0000214 }
215 }
Eric Dumazetfddc17d2009-11-08 10:18:30 +0000216 return result;
217}
218
Eric Dumazetca065d02016-04-01 08:52:13 -0700219/* rcu_read_lock() must be held */
Pavel Emelyanovfce82332011-12-09 06:23:34 +0000220struct sock *__udp6_lib_lookup(struct net *net,
David Ahern1801b572017-08-07 08:44:20 -0700221 const struct in6_addr *saddr, __be16 sport,
222 const struct in6_addr *daddr, __be16 dport,
223 int dif, int sdif, struct udp_table *udptable,
224 struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700225{
Eric Dumazet271b72c2008-10-29 02:11:14 -0700226 struct sock *sk, *result;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700227 unsigned short hnum = ntohs(dport);
Eric Dumazetfddc17d2009-11-08 10:18:30 +0000228 unsigned int hash2, slot2, slot = udp_hashfn(net, hnum, udptable->mask);
229 struct udp_hslot *hslot2, *hslot = &udptable->hash[slot];
Robert Shearman63a6fff2017-01-26 18:02:24 +0000230 bool exact_dif = udp6_lib_exact_dif_match(net, skb);
Tom Herbert72289b92013-01-22 09:50:44 +0000231 int score, badness, matches = 0, reuseport = 0;
232 u32 hash = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700233
Eric Dumazetfddc17d2009-11-08 10:18:30 +0000234 if (hslot->count > 10) {
235 hash2 = udp6_portaddr_hash(net, daddr, hnum);
236 slot2 = hash2 & udptable->mask;
237 hslot2 = &udptable->hash2[slot2];
238 if (hslot->count < hslot2->count)
239 goto begin;
240
241 result = udp6_lib_lookup2(net, saddr, sport,
David Ahern1801b572017-08-07 08:44:20 -0700242 daddr, hnum, dif, sdif, exact_dif,
Su, Xuemind1e37282016-06-13 11:02:50 +0800243 hslot2, skb);
Eric Dumazetfddc17d2009-11-08 10:18:30 +0000244 if (!result) {
Su, Xuemind1e37282016-06-13 11:02:50 +0800245 unsigned int old_slot2 = slot2;
Eric Dumazetfddc17d2009-11-08 10:18:30 +0000246 hash2 = udp6_portaddr_hash(net, &in6addr_any, hnum);
247 slot2 = hash2 & udptable->mask;
Su, Xuemind1e37282016-06-13 11:02:50 +0800248 /* avoid searching the same slot again. */
249 if (unlikely(slot2 == old_slot2))
250 return result;
251
Eric Dumazetfddc17d2009-11-08 10:18:30 +0000252 hslot2 = &udptable->hash2[slot2];
253 if (hslot->count < hslot2->count)
254 goto begin;
255
Jorge Boncompte [DTI2]1223c672010-04-08 04:56:48 +0000256 result = udp6_lib_lookup2(net, saddr, sport,
David Ahern1801b572017-08-07 08:44:20 -0700257 daddr, hnum, dif, sdif,
Robert Shearman63a6fff2017-01-26 18:02:24 +0000258 exact_dif, hslot2,
259 skb);
Eric Dumazetfddc17d2009-11-08 10:18:30 +0000260 }
Eric Dumazetfddc17d2009-11-08 10:18:30 +0000261 return result;
262 }
Eric Dumazet271b72c2008-10-29 02:11:14 -0700263begin:
264 result = NULL;
265 badness = -1;
Eric Dumazetca065d02016-04-01 08:52:13 -0700266 sk_for_each_rcu(sk, &hslot->head) {
Robert Shearman63a6fff2017-01-26 18:02:24 +0000267 score = compute_score(sk, net, saddr, sport, daddr, hnum, dif,
David Ahern1801b572017-08-07 08:44:20 -0700268 sdif, exact_dif);
Eric Dumazet645ca702008-10-29 01:41:45 -0700269 if (score > badness) {
Tom Herbert72289b92013-01-22 09:50:44 +0000270 reuseport = sk->sk_reuseport;
271 if (reuseport) {
Hannes Frederic Sowab50026b2013-10-19 21:48:52 +0200272 hash = udp6_ehashfn(net, daddr, hnum,
273 saddr, sport);
Eric Dumazetca065d02016-04-01 08:52:13 -0700274 result = reuseport_select_sock(sk, hash, skb,
Craig Gallek538950a2016-01-04 17:41:47 -0500275 sizeof(struct udphdr));
Eric Dumazetca065d02016-04-01 08:52:13 -0700276 if (result)
277 return result;
Tom Herbert72289b92013-01-22 09:50:44 +0000278 matches = 1;
279 }
Eric Dumazetca065d02016-04-01 08:52:13 -0700280 result = sk;
281 badness = score;
Tom Herbert72289b92013-01-22 09:50:44 +0000282 } else if (score == badness && reuseport) {
283 matches++;
Daniel Borkmann8fc54f62014-08-23 20:58:54 +0200284 if (reciprocal_scale(hash, matches) == 0)
Tom Herbert72289b92013-01-22 09:50:44 +0000285 result = sk;
286 hash = next_pseudo_random32(hash);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700287 }
288 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700289 return result;
290}
Pavel Emelyanovfce82332011-12-09 06:23:34 +0000291EXPORT_SYMBOL_GPL(__udp6_lib_lookup);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700292
KOVACS Krisztian607c4aa2008-10-07 12:38:32 -0700293static struct sock *__udp6_lib_lookup_skb(struct sk_buff *skb,
294 __be16 sport, __be16 dport,
Eric Dumazet645ca702008-10-29 01:41:45 -0700295 struct udp_table *udptable)
KOVACS Krisztian607c4aa2008-10-07 12:38:32 -0700296{
Eric Dumazetb71d1d42011-04-22 04:53:02 +0000297 const struct ipv6hdr *iph = ipv6_hdr(skb);
KOVACS Krisztian607c4aa2008-10-07 12:38:32 -0700298
Alexander Duycked7cbbc2016-05-12 16:23:44 -0700299 return __udp6_lib_lookup(dev_net(skb->dev), &iph->saddr, sport,
Eric Dumazetadf30902009-06-02 05:19:30 +0000300 &iph->daddr, dport, inet6_iif(skb),
David Ahern1801b572017-08-07 08:44:20 -0700301 inet6_sdif(skb), udptable, skb);
KOVACS Krisztian607c4aa2008-10-07 12:38:32 -0700302}
303
Tom Herbert63058302016-04-05 08:22:50 -0700304struct sock *udp6_lib_lookup_skb(struct sk_buff *skb,
305 __be16 sport, __be16 dport)
306{
307 const struct ipv6hdr *iph = ipv6_hdr(skb);
Tom Herbert63058302016-04-05 08:22:50 -0700308
Alexander Duycked7cbbc2016-05-12 16:23:44 -0700309 return __udp6_lib_lookup(dev_net(skb->dev), &iph->saddr, sport,
Tom Herbert63058302016-04-05 08:22:50 -0700310 &iph->daddr, dport, inet6_iif(skb),
David Ahern1801b572017-08-07 08:44:20 -0700311 inet6_sdif(skb), &udp_table, skb);
Tom Herbert63058302016-04-05 08:22:50 -0700312}
313EXPORT_SYMBOL_GPL(udp6_lib_lookup_skb);
314
Eric Dumazetca065d02016-04-01 08:52:13 -0700315/* Must be called under rcu_read_lock().
316 * Does increment socket refcount.
317 */
318#if IS_ENABLED(CONFIG_NETFILTER_XT_MATCH_SOCKET) || \
Arnd Bergmann30f58152016-11-08 14:28:18 +0100319 IS_ENABLED(CONFIG_NETFILTER_XT_TARGET_TPROXY) || \
320 IS_ENABLED(CONFIG_NF_SOCKET_IPV6)
Balazs Scheidleraa976fc2010-10-21 16:05:41 +0200321struct sock *udp6_lib_lookup(struct net *net, const struct in6_addr *saddr, __be16 sport,
322 const struct in6_addr *daddr, __be16 dport, int dif)
323{
Eric Dumazetca065d02016-04-01 08:52:13 -0700324 struct sock *sk;
325
326 sk = __udp6_lib_lookup(net, saddr, sport, daddr, dport,
David Ahern1801b572017-08-07 08:44:20 -0700327 dif, 0, &udp_table, NULL);
Reshetova, Elena41c6d652017-06-30 13:08:01 +0300328 if (sk && !refcount_inc_not_zero(&sk->sk_refcnt))
Eric Dumazetca065d02016-04-01 08:52:13 -0700329 sk = NULL;
330 return sk;
Balazs Scheidleraa976fc2010-10-21 16:05:41 +0200331}
332EXPORT_SYMBOL_GPL(udp6_lib_lookup);
Eric Dumazetca065d02016-04-01 08:52:13 -0700333#endif
Balazs Scheidleraa976fc2010-10-21 16:05:41 +0200334
Paolo Abenicb891fa2017-07-31 16:52:36 +0200335/* do not use the scratch area len for jumbogram: their length execeeds the
336 * scratch area space; note that the IP6CB flags is still in the first
337 * cacheline, so checking for jumbograms is cheap
338 */
339static int udp6_skb_len(struct sk_buff *skb)
340{
341 return unlikely(inet6_is_jumbogram(skb)) ? skb->len : udp_skb_len(skb);
342}
343
Linus Torvalds1da177e2005-04-16 15:20:36 -0700344/*
Ian Morris67ba4152014-08-24 21:53:10 +0100345 * This should be easy, if there is something there we
346 * return it, otherwise we block.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700347 */
348
Ying Xue1b784142015-03-02 15:37:48 +0800349int udpv6_recvmsg(struct sock *sk, struct msghdr *msg, size_t len,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700350 int noblock, int flags, int *addr_len)
351{
352 struct ipv6_pinfo *np = inet6_sk(sk);
353 struct inet_sock *inet = inet_sk(sk);
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900354 struct sk_buff *skb;
David S. Miller59c2cda2011-12-01 14:12:55 -0500355 unsigned int ulen, copied;
samanthakumar627d2d62016-04-05 12:41:16 -0400356 int peeked, peeking, off;
Herbert Xu759e5d02007-03-25 20:10:56 -0700357 int err;
358 int is_udplite = IS_UDPLITE(sk);
Eric Dumazet197c9492015-12-30 08:51:12 -0500359 bool checksum_valid = false;
Wei Yongjunf26ba172008-11-02 16:11:01 +0000360 int is_udp4;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700361
Linus Torvalds1da177e2005-04-16 15:20:36 -0700362 if (flags & MSG_ERRQUEUE)
Hannes Frederic Sowa85fbaa72013-11-23 00:46:12 +0100363 return ipv6_recv_error(sk, msg, len, addr_len);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700364
Brian Haley4b340ae2010-04-23 11:26:09 +0000365 if (np->rxpmtu && np->rxopt.bits.rxpmtu)
Hannes Frederic Sowa85fbaa72013-11-23 00:46:12 +0100366 return ipv6_recv_rxpmtu(sk, msg, len, addr_len);
Brian Haley4b340ae2010-04-23 11:26:09 +0000367
Linus Torvalds1da177e2005-04-16 15:20:36 -0700368try_again:
Matthew Dawsona0917e02017-08-18 15:04:54 -0400369 peeking = flags & MSG_PEEK;
370 off = sk_peek_offset(sk, flags);
Paolo Abeni7c13f972016-11-04 11:28:59 +0100371 skb = __skb_recv_udp(sk, flags, noblock, &peeked, &off, &err);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700372 if (!skb)
samanthakumar627d2d62016-04-05 12:41:16 -0400373 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700374
Paolo Abenicb891fa2017-07-31 16:52:36 +0200375 ulen = udp6_skb_len(skb);
David S. Miller59c2cda2011-12-01 14:12:55 -0500376 copied = len;
samanthakumar627d2d62016-04-05 12:41:16 -0400377 if (copied > ulen - off)
378 copied = ulen - off;
David S. Miller59c2cda2011-12-01 14:12:55 -0500379 else if (copied < ulen)
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900380 msg->msg_flags |= MSG_TRUNC;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700381
Wei Yongjunf26ba172008-11-02 16:11:01 +0000382 is_udp4 = (skb->protocol == htons(ETH_P_IP));
383
Gerrit Renkerba4e58e2006-11-27 11:10:57 -0800384 /*
Herbert Xu759e5d02007-03-25 20:10:56 -0700385 * If checksum is needed at all, try to do it while copying the
386 * data. If the data is truncated, or if we only want a partial
387 * coverage checksum (UDP-Lite), do it before the copy.
Gerrit Renkerba4e58e2006-11-27 11:10:57 -0800388 */
Gerrit Renkerba4e58e2006-11-27 11:10:57 -0800389
Eric Dumazetd21dbdf2016-11-18 17:18:03 -0800390 if (copied < ulen || peeking ||
391 (is_udplite && UDP_SKB_CB(skb)->partial_cov)) {
Paolo Abeni67a51782017-06-26 19:01:51 +0200392 checksum_valid = udp_skb_csum_unnecessary(skb) ||
393 !__udp_lib_checksum_complete(skb);
Eric Dumazet197c9492015-12-30 08:51:12 -0500394 if (!checksum_valid)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700395 goto csum_copy_err;
Gerrit Renkerba4e58e2006-11-27 11:10:57 -0800396 }
397
Paolo Abeni67a51782017-06-26 19:01:51 +0200398 if (checksum_valid || udp_skb_csum_unnecessary(skb)) {
399 if (udp_skb_is_linear(skb))
400 err = copy_linear_skb(skb, copied, off, &msg->msg_iter);
401 else
402 err = skb_copy_datagram_msg(skb, off, msg, copied);
403 } else {
samanthakumar627d2d62016-04-05 12:41:16 -0400404 err = skb_copy_and_csum_datagram_msg(skb, off, msg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700405 if (err == -EINVAL)
406 goto csum_copy_err;
407 }
Eric Dumazet22911fc2012-06-27 00:23:44 +0000408 if (unlikely(err)) {
Eric Dumazet979402b2012-09-05 23:34:44 +0000409 if (!peeked) {
410 atomic_inc(&sk->sk_drops);
411 if (is_udp4)
Eric Dumazet6aef70a2016-04-27 16:44:27 -0700412 UDP_INC_STATS(sock_net(sk), UDP_MIB_INERRORS,
413 is_udplite);
Eric Dumazet979402b2012-09-05 23:34:44 +0000414 else
Eric Dumazet6aef70a2016-04-27 16:44:27 -0700415 UDP6_INC_STATS(sock_net(sk), UDP_MIB_INERRORS,
416 is_udplite);
Eric Dumazet979402b2012-09-05 23:34:44 +0000417 }
Paolo Abeni850cbad2016-10-21 13:55:47 +0200418 kfree_skb(skb);
samanthakumar627d2d62016-04-05 12:41:16 -0400419 return err;
Eric Dumazet22911fc2012-06-27 00:23:44 +0000420 }
Wei Yongjunf26ba172008-11-02 16:11:01 +0000421 if (!peeked) {
422 if (is_udp4)
Eric Dumazet6aef70a2016-04-27 16:44:27 -0700423 UDP_INC_STATS(sock_net(sk), UDP_MIB_INDATAGRAMS,
424 is_udplite);
Wei Yongjunf26ba172008-11-02 16:11:01 +0000425 else
Eric Dumazet6aef70a2016-04-27 16:44:27 -0700426 UDP6_INC_STATS(sock_net(sk), UDP_MIB_INDATAGRAMS,
427 is_udplite);
Wei Yongjunf26ba172008-11-02 16:11:01 +0000428 }
Wang Chencb759942007-12-03 22:33:28 +1100429
Neil Horman3b885782009-10-12 13:26:31 -0700430 sock_recv_ts_and_drops(msg, sk, skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700431
432 /* Copy the address. */
433 if (msg->msg_name) {
Steffen Hurrle342dfc32014-01-17 22:53:15 +0100434 DECLARE_SOCKADDR(struct sockaddr_in6 *, sin6, msg->msg_name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700435 sin6->sin6_family = AF_INET6;
Arnaldo Carvalho de Melo4bedb452007-03-13 14:28:48 -0300436 sin6->sin6_port = udp_hdr(skb)->source;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700437 sin6->sin6_flowinfo = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700438
Hannes Frederic Sowa842df072013-03-08 02:07:19 +0000439 if (is_udp4) {
Brian Haleyb301e822009-10-07 13:58:25 -0700440 ipv6_addr_set_v4mapped(ip_hdr(skb)->saddr,
441 &sin6->sin6_addr);
Hannes Frederic Sowa842df072013-03-08 02:07:19 +0000442 sin6->sin6_scope_id = 0;
443 } else {
Alexey Dobriyan4e3fd7a2011-11-21 03:39:03 +0000444 sin6->sin6_addr = ipv6_hdr(skb)->saddr;
Hannes Frederic Sowa842df072013-03-08 02:07:19 +0000445 sin6->sin6_scope_id =
446 ipv6_iface_scope_id(&sin6->sin6_addr,
Duan Jiong43304872014-08-01 09:52:58 +0800447 inet6_iif(skb));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700448 }
Hannes Frederic Sowabceaa902013-11-18 04:20:45 +0100449 *addr_len = sizeof(*sin6);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700450 }
Hannes Frederic Sowa4b261c72014-01-20 03:43:08 +0100451
452 if (np->rxopt.all)
453 ip6_datagram_recv_common_ctl(sk, msg, skb);
454
Wei Yongjunf26ba172008-11-02 16:11:01 +0000455 if (is_udp4) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700456 if (inet->cmsg_flags)
Paolo Abeniad959032016-11-04 11:28:58 +0100457 ip_cmsg_recv_offset(msg, sk, skb,
Eric Dumazet10df8e62016-10-23 18:03:06 -0700458 sizeof(struct udphdr), off);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700459 } else {
460 if (np->rxopt.all)
Hannes Frederic Sowa4b261c72014-01-20 03:43:08 +0100461 ip6_datagram_recv_specific_ctl(sk, msg, skb);
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900462 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700463
David S. Miller59c2cda2011-12-01 14:12:55 -0500464 err = copied;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700465 if (flags & MSG_TRUNC)
Herbert Xu759e5d02007-03-25 20:10:56 -0700466 err = ulen;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700467
Paolo Abeni850cbad2016-10-21 13:55:47 +0200468 skb_consume_udp(sk, skb, peeking ? -err : err);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700469 return err;
470
471csum_copy_err:
Paolo Abeni2276f582017-05-16 11:20:14 +0200472 if (!__sk_queue_drop_skb(sk, &udp_sk(sk)->reader_queue, skb, flags,
473 udp_skb_destructor)) {
Eric Dumazet6a5dc9e2013-04-29 08:39:56 +0000474 if (is_udp4) {
Eric Dumazet6aef70a2016-04-27 16:44:27 -0700475 UDP_INC_STATS(sock_net(sk),
476 UDP_MIB_CSUMERRORS, is_udplite);
477 UDP_INC_STATS(sock_net(sk),
478 UDP_MIB_INERRORS, is_udplite);
Eric Dumazet6a5dc9e2013-04-29 08:39:56 +0000479 } else {
Eric Dumazet6aef70a2016-04-27 16:44:27 -0700480 UDP6_INC_STATS(sock_net(sk),
481 UDP_MIB_CSUMERRORS, is_udplite);
482 UDP6_INC_STATS(sock_net(sk),
483 UDP_MIB_INERRORS, is_udplite);
Eric Dumazet6a5dc9e2013-04-29 08:39:56 +0000484 }
Wei Yongjun0856f932008-11-02 16:14:27 +0000485 }
Paolo Abeni850cbad2016-10-21 13:55:47 +0200486 kfree_skb(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700487
Eric Dumazetbeb39db2015-05-30 09:16:53 -0700488 /* starting over for a new packet, but check if we need to yield */
489 cond_resched();
Xufeng Zhang9cfaa8d2011-06-21 10:43:40 +0000490 msg->msg_flags &= ~MSG_TRUNC;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700491 goto try_again;
492}
493
Gerrit Renkerba4e58e2006-11-27 11:10:57 -0800494void __udp6_lib_err(struct sk_buff *skb, struct inet6_skb_parm *opt,
Brian Haleyd5fdd6b2009-06-23 04:31:07 -0700495 u8 type, u8 code, int offset, __be32 info,
Eric Dumazet645ca702008-10-29 01:41:45 -0700496 struct udp_table *udptable)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700497{
498 struct ipv6_pinfo *np;
Eric Dumazetb71d1d42011-04-22 04:53:02 +0000499 const struct ipv6hdr *hdr = (const struct ipv6hdr *)skb->data;
500 const struct in6_addr *saddr = &hdr->saddr;
501 const struct in6_addr *daddr = &hdr->daddr;
Ian Morris67ba4152014-08-24 21:53:10 +0100502 struct udphdr *uh = (struct udphdr *)(skb->data+offset);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700503 struct sock *sk;
Wei Wange0d8c1b2016-02-17 13:58:22 -0800504 int harderr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700505 int err;
Duan Jiong7304fe42014-07-31 17:54:32 +0800506 struct net *net = dev_net(skb->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700507
Craig Galleke32ea7e2016-01-04 17:41:46 -0500508 sk = __udp6_lib_lookup(net, daddr, uh->dest, saddr, uh->source,
David Ahern1801b572017-08-07 08:44:20 -0700509 inet6_iif(skb), 0, udptable, skb);
Ian Morris63159f22015-03-29 14:00:04 +0100510 if (!sk) {
Eric Dumazeta16292a2016-04-27 16:44:36 -0700511 __ICMP6_INC_STATS(net, __in6_dev_get(skb->dev),
512 ICMP6_MIB_INERRORS);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700513 return;
Duan Jiong7304fe42014-07-31 17:54:32 +0800514 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700515
Wei Wange0d8c1b2016-02-17 13:58:22 -0800516 harderr = icmpv6_err_convert(type, code, &err);
517 np = inet6_sk(sk);
518
Hannes Frederic Sowa93b36cf2013-12-15 03:41:14 +0100519 if (type == ICMPV6_PKT_TOOBIG) {
520 if (!ip6_sk_accept_pmtu(sk))
521 goto out;
David S. Miller81aded22012-06-15 14:54:11 -0700522 ip6_sk_update_pmtu(skb, sk, info);
Wei Wange0d8c1b2016-02-17 13:58:22 -0800523 if (np->pmtudisc != IPV6_PMTUDISC_DONT)
524 harderr = 1;
Hannes Frederic Sowa93b36cf2013-12-15 03:41:14 +0100525 }
Duan Jiong1a462d12013-09-20 18:20:28 +0800526 if (type == NDISC_REDIRECT) {
David S. Millerec18d9a2012-07-12 00:25:15 -0700527 ip6_sk_redirect(skb, sk);
Duan Jiong1a462d12013-09-20 18:20:28 +0800528 goto out;
529 }
David S. Miller81aded22012-06-15 14:54:11 -0700530
Wei Wange0d8c1b2016-02-17 13:58:22 -0800531 if (!np->recverr) {
532 if (!harderr || sk->sk_state != TCP_ESTABLISHED)
533 goto out;
534 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700535 ipv6_icmp_error(sk, skb, err, uh->dest, ntohl(info), (u8 *)(uh+1));
Wei Wange0d8c1b2016-02-17 13:58:22 -0800536 }
Eric Dumazetb1faf562010-05-31 23:44:05 -0700537
Linus Torvalds1da177e2005-04-16 15:20:36 -0700538 sk->sk_err = err;
539 sk->sk_error_report(sk);
540out:
Eric Dumazetca065d02016-04-01 08:52:13 -0700541 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700542}
543
Paolo Abenia3f96c42017-05-17 14:52:16 +0200544static int __udpv6_queue_rcv_skb(struct sock *sk, struct sk_buff *skb)
Benjamin LaHaisef7ad74f2012-04-27 08:23:21 +0000545{
546 int rc;
547
Eric Dumazetefe42082013-10-03 15:42:29 -0700548 if (!ipv6_addr_any(&sk->sk_v6_daddr)) {
Benjamin LaHaisef7ad74f2012-04-27 08:23:21 +0000549 sock_rps_save_rxhash(sk, skb);
Shawn Bohrer005ec972013-10-07 11:01:38 -0500550 sk_mark_napi_id(sk, skb);
Eric Dumazet2c8c56e2014-11-11 05:54:28 -0800551 sk_incoming_cpu_update(sk);
Eric Dumazete68b6e52016-11-16 09:10:42 -0800552 } else {
553 sk_mark_napi_id_once(sk, skb);
Shawn Bohrer005ec972013-10-07 11:01:38 -0500554 }
Benjamin LaHaisef7ad74f2012-04-27 08:23:21 +0000555
Paolo Abeni850cbad2016-10-21 13:55:47 +0200556 rc = __udp_enqueue_schedule_skb(sk, skb);
Benjamin LaHaisef7ad74f2012-04-27 08:23:21 +0000557 if (rc < 0) {
558 int is_udplite = IS_UDPLITE(sk);
559
560 /* Note that an ENOMEM error is charged twice */
561 if (rc == -ENOMEM)
Eric Dumazete61da9e2016-04-29 14:16:50 -0700562 UDP6_INC_STATS(sock_net(sk),
Eric Dumazet02c22342016-04-27 16:44:30 -0700563 UDP_MIB_RCVBUFERRORS, is_udplite);
Eric Dumazete61da9e2016-04-29 14:16:50 -0700564 UDP6_INC_STATS(sock_net(sk), UDP_MIB_INERRORS, is_udplite);
Benjamin LaHaisef7ad74f2012-04-27 08:23:21 +0000565 kfree_skb(skb);
566 return -1;
567 }
Paolo Abeni850cbad2016-10-21 13:55:47 +0200568
Benjamin LaHaisef7ad74f2012-04-27 08:23:21 +0000569 return 0;
570}
571
Gerrit Renkerba4e58e2006-11-27 11:10:57 -0800572static __inline__ void udpv6_err(struct sk_buff *skb,
Brian Haleyd5fdd6b2009-06-23 04:31:07 -0700573 struct inet6_skb_parm *opt, u8 type,
Ian Morris67ba4152014-08-24 21:53:10 +0100574 u8 code, int offset, __be32 info)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700575{
Eric Dumazet645ca702008-10-29 01:41:45 -0700576 __udp6_lib_err(skb, opt, type, code, offset, info, &udp_table);
Gerrit Renkerba4e58e2006-11-27 11:10:57 -0800577}
578
Benjamin LaHaised7f3f622012-04-27 08:24:08 +0000579static struct static_key udpv6_encap_needed __read_mostly;
580void udpv6_encap_enable(void)
581{
Paolo Bonzini7a34bcb2017-08-01 17:24:05 +0200582 static_key_enable(&udpv6_encap_needed);
Benjamin LaHaised7f3f622012-04-27 08:24:08 +0000583}
584EXPORT_SYMBOL(udpv6_encap_enable);
585
Paolo Abenia3f96c42017-05-17 14:52:16 +0200586static int udpv6_queue_rcv_skb(struct sock *sk, struct sk_buff *skb)
Gerrit Renkerba4e58e2006-11-27 11:10:57 -0800587{
588 struct udp_sock *up = udp_sk(sk);
Wang Chenb2bf1e22007-12-03 22:34:16 +1100589 int is_udplite = IS_UDPLITE(sk);
David S. Millera18135e2006-08-15 00:00:09 -0700590
Gerrit Renkerba4e58e2006-11-27 11:10:57 -0800591 if (!xfrm6_policy_check(sk, XFRM_POLICY_IN, skb))
592 goto drop;
593
Benjamin LaHaised7f3f622012-04-27 08:24:08 +0000594 if (static_key_false(&udpv6_encap_needed) && up->encap_type) {
595 int (*encap_rcv)(struct sock *sk, struct sk_buff *skb);
596
597 /*
598 * This is an encapsulation socket so pass the skb to
599 * the socket's udp_encap_rcv() hook. Otherwise, just
600 * fall through and pass this up the UDP socket.
601 * up->encap_rcv() returns the following value:
602 * =0 if skb was successfully passed to the encap
603 * handler or was discarded by it.
604 * >0 if skb should be passed on to UDP.
605 * <0 if skb should be resubmitted as proto -N
606 */
607
608 /* if we're overly short, let UDP handle it */
609 encap_rcv = ACCESS_ONCE(up->encap_rcv);
Hannes Frederic Sowae5aed002016-05-19 15:58:33 +0200610 if (encap_rcv) {
Benjamin LaHaised7f3f622012-04-27 08:24:08 +0000611 int ret;
612
Tom Herbert0a809662014-05-07 16:52:39 -0700613 /* Verify checksum before giving to encap */
614 if (udp_lib_checksum_complete(skb))
615 goto csum_error;
616
Benjamin LaHaised7f3f622012-04-27 08:24:08 +0000617 ret = encap_rcv(sk, skb);
618 if (ret <= 0) {
Eric Dumazet02c22342016-04-27 16:44:30 -0700619 __UDP_INC_STATS(sock_net(sk),
620 UDP_MIB_INDATAGRAMS,
621 is_udplite);
Benjamin LaHaised7f3f622012-04-27 08:24:08 +0000622 return -ret;
623 }
624 }
625
626 /* FALLTHROUGH -- it's a UDP Packet */
627 }
628
Gerrit Renkerba4e58e2006-11-27 11:10:57 -0800629 /*
630 * UDP-Lite specific tests, ignored on UDP sockets (see net/ipv4/udp.c).
631 */
Wang Chenb2bf1e22007-12-03 22:34:16 +1100632 if ((is_udplite & UDPLITE_RECV_CC) && UDP_SKB_CB(skb)->partial_cov) {
Gerrit Renkerba4e58e2006-11-27 11:10:57 -0800633
634 if (up->pcrlen == 0) { /* full coverage was set */
Joe Perchesba7a46f2014-11-11 10:59:17 -0800635 net_dbg_ratelimited("UDPLITE6: partial coverage %d while full coverage %d requested\n",
636 UDP_SKB_CB(skb)->cscov, skb->len);
Gerrit Renkerba4e58e2006-11-27 11:10:57 -0800637 goto drop;
638 }
639 if (UDP_SKB_CB(skb)->cscov < up->pcrlen) {
Joe Perchesba7a46f2014-11-11 10:59:17 -0800640 net_dbg_ratelimited("UDPLITE6: coverage %d too small, need min %d\n",
641 UDP_SKB_CB(skb)->cscov, up->pcrlen);
Gerrit Renkerba4e58e2006-11-27 11:10:57 -0800642 goto drop;
643 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700644 }
645
Paolo Abeni4b943fa2017-06-22 15:01:22 +0200646 prefetch(&sk->sk_rmem_alloc);
Eric Dumazetce25d662016-06-02 14:52:43 -0700647 if (rcu_access_pointer(sk->sk_filter) &&
648 udp_lib_checksum_complete(skb))
649 goto csum_error;
650
Daniel Borkmannba66bbe2016-07-25 18:06:12 +0200651 if (sk_filter_trim_cap(sk, skb, sizeof(struct udphdr)))
Michal Kubečeka6127692016-07-08 17:52:33 +0200652 goto drop;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700653
samanthakumare6afc8a2016-04-05 12:41:15 -0400654 udp_csum_pull_header(skb);
Benjamin LaHaisecb80ef42012-04-27 08:23:59 +0000655
Eric Dumazetd826eb12011-11-09 07:24:35 +0000656 skb_dst_drop(skb);
Wang Chencb759942007-12-03 22:33:28 +1100657
Paolo Abeni850cbad2016-10-21 13:55:47 +0200658 return __udpv6_queue_rcv_skb(sk, skb);
James M Leddy3e215c82014-06-25 17:38:13 -0400659
Eric Dumazet6a5dc9e2013-04-29 08:39:56 +0000660csum_error:
Eric Dumazet02c22342016-04-27 16:44:30 -0700661 __UDP6_INC_STATS(sock_net(sk), UDP_MIB_CSUMERRORS, is_udplite);
Gerrit Renkerba4e58e2006-11-27 11:10:57 -0800662drop:
Eric Dumazet02c22342016-04-27 16:44:30 -0700663 __UDP6_INC_STATS(sock_net(sk), UDP_MIB_INERRORS, is_udplite);
Benjamin LaHaisecb80ef42012-04-27 08:23:59 +0000664 atomic_inc(&sk->sk_drops);
Gerrit Renkerba4e58e2006-11-27 11:10:57 -0800665 kfree_skb(skb);
666 return -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700667}
668
David Held5cf3d462014-07-15 23:28:31 -0400669static bool __udp_v6_is_mcast_sock(struct net *net, struct sock *sk,
670 __be16 loc_port, const struct in6_addr *loc_addr,
671 __be16 rmt_port, const struct in6_addr *rmt_addr,
672 int dif, unsigned short hnum)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700673{
David Held5cf3d462014-07-15 23:28:31 -0400674 struct inet_sock *inet = inet_sk(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700675
David Held5cf3d462014-07-15 23:28:31 -0400676 if (!net_eq(sock_net(sk), net))
677 return false;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700678
David Held5cf3d462014-07-15 23:28:31 -0400679 if (udp_sk(sk)->udp_port_hash != hnum ||
680 sk->sk_family != PF_INET6 ||
681 (inet->inet_dport && inet->inet_dport != rmt_port) ||
682 (!ipv6_addr_any(&sk->sk_v6_daddr) &&
683 !ipv6_addr_equal(&sk->sk_v6_daddr, rmt_addr)) ||
Henning Rogge33b4b012015-05-18 21:08:49 +0200684 (sk->sk_bound_dev_if && sk->sk_bound_dev_if != dif) ||
685 (!ipv6_addr_any(&sk->sk_v6_rcv_saddr) &&
686 !ipv6_addr_equal(&sk->sk_v6_rcv_saddr, loc_addr)))
David Held5cf3d462014-07-15 23:28:31 -0400687 return false;
688 if (!inet6_mc_check(sk, loc_addr, rmt_addr))
689 return false;
690 return true;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700691}
692
Tom Herbert40685792014-05-02 16:29:58 -0700693static void udp6_csum_zero_error(struct sk_buff *skb)
694{
695 /* RFC 2460 section 8.1 says that we SHOULD log
696 * this error. Well, it is reasonable.
697 */
Joe Perchesba7a46f2014-11-11 10:59:17 -0800698 net_dbg_ratelimited("IPv6: udp checksum is 0 for [%pI6c]:%u->[%pI6c]:%u\n",
699 &ipv6_hdr(skb)->saddr, ntohs(udp_hdr(skb)->source),
700 &ipv6_hdr(skb)->daddr, ntohs(udp_hdr(skb)->dest));
Tom Herbert40685792014-05-02 16:29:58 -0700701}
702
Linus Torvalds1da177e2005-04-16 15:20:36 -0700703/*
704 * Note: called only from the BH handler context,
705 * so we don't need to lock the hashes.
706 */
Pavel Emelyanove3163492008-06-16 17:12:11 -0700707static int __udp6_lib_mcast_deliver(struct net *net, struct sk_buff *skb,
Eric Dumazetb71d1d42011-04-22 04:53:02 +0000708 const struct in6_addr *saddr, const struct in6_addr *daddr,
Rick Jones36cbb242014-11-06 10:37:54 -0800709 struct udp_table *udptable, int proto)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700710{
Eric Dumazetca065d02016-04-01 08:52:13 -0700711 struct sock *sk, *first = NULL;
Arnaldo Carvalho de Melo4bedb452007-03-13 14:28:48 -0300712 const struct udphdr *uh = udp_hdr(skb);
David Held5cf3d462014-07-15 23:28:31 -0400713 unsigned short hnum = ntohs(uh->dest);
714 struct udp_hslot *hslot = udp_hashslot(udptable, net, hnum);
Eric Dumazetca065d02016-04-01 08:52:13 -0700715 unsigned int offset = offsetof(typeof(*sk), sk_node);
David Held2dc41cf2014-07-15 23:28:32 -0400716 unsigned int hash2 = 0, hash2_any = 0, use_hash2 = (hslot->count > 10);
Eric Dumazetca065d02016-04-01 08:52:13 -0700717 int dif = inet6_iif(skb);
718 struct hlist_node *node;
719 struct sk_buff *nskb;
David Held2dc41cf2014-07-15 23:28:32 -0400720
721 if (use_hash2) {
722 hash2_any = udp6_portaddr_hash(net, &in6addr_any, hnum) &
Pablo Neira73e2d5e2016-11-14 23:40:30 +0100723 udptable->mask;
724 hash2 = udp6_portaddr_hash(net, daddr, hnum) & udptable->mask;
David Held2dc41cf2014-07-15 23:28:32 -0400725start_lookup:
Pablo Neira73e2d5e2016-11-14 23:40:30 +0100726 hslot = &udptable->hash2[hash2];
David Held2dc41cf2014-07-15 23:28:32 -0400727 offset = offsetof(typeof(*sk), __sk_common.skc_portaddr_node);
728 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700729
Eric Dumazetca065d02016-04-01 08:52:13 -0700730 sk_for_each_entry_offset_rcu(sk, node, &hslot->head, offset) {
731 if (!__udp_v6_is_mcast_sock(net, sk, uh->dest, daddr,
732 uh->source, saddr, dif, hnum))
733 continue;
734 /* If zero checksum and no_check is not on for
735 * the socket then skip it.
736 */
737 if (!uh->check && !udp_sk(sk)->no_check6_rx)
738 continue;
739 if (!first) {
740 first = sk;
741 continue;
Hideo Aoki95766ff2007-12-31 00:29:24 -0800742 }
Eric Dumazetca065d02016-04-01 08:52:13 -0700743 nskb = skb_clone(skb, GFP_ATOMIC);
744 if (unlikely(!nskb)) {
745 atomic_inc(&sk->sk_drops);
Eric Dumazet02c22342016-04-27 16:44:30 -0700746 __UDP6_INC_STATS(net, UDP_MIB_RCVBUFERRORS,
747 IS_UDPLITE(sk));
748 __UDP6_INC_STATS(net, UDP_MIB_INERRORS,
749 IS_UDPLITE(sk));
Eric Dumazetca065d02016-04-01 08:52:13 -0700750 continue;
751 }
Eric Dumazeta1ab77f2009-11-08 10:18:52 +0000752
Eric Dumazetca065d02016-04-01 08:52:13 -0700753 if (udpv6_queue_rcv_skb(sk, nskb) > 0)
754 consume_skb(nskb);
755 }
Eric Dumazeta1ab77f2009-11-08 10:18:52 +0000756
David Held2dc41cf2014-07-15 23:28:32 -0400757 /* Also lookup *:port if we are using hash2 and haven't done so yet. */
758 if (use_hash2 && hash2 != hash2_any) {
759 hash2 = hash2_any;
760 goto start_lookup;
761 }
762
Eric Dumazetca065d02016-04-01 08:52:13 -0700763 if (first) {
764 if (udpv6_queue_rcv_skb(first, skb) > 0)
765 consume_skb(skb);
Eric Dumazeta1ab77f2009-11-08 10:18:52 +0000766 } else {
Eric Dumazetca065d02016-04-01 08:52:13 -0700767 kfree_skb(skb);
Eric Dumazet02c22342016-04-27 16:44:30 -0700768 __UDP6_INC_STATS(net, UDP_MIB_IGNOREDMULTI,
769 proto == IPPROTO_UDPLITE);
Eric Dumazeta1ab77f2009-11-08 10:18:52 +0000770 }
Gerrit Renkerba4e58e2006-11-27 11:10:57 -0800771 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700772}
773
Paolo Abeni64f0f5d2017-08-25 14:31:01 +0200774static void udp6_sk_rx_dst_set(struct sock *sk, struct dst_entry *dst)
775{
776 if (udp_sk_rx_dst_set(sk, dst)) {
777 const struct rt6_info *rt = (const struct rt6_info *)dst;
778
779 inet6_sk(sk)->rx_dst_cookie = rt6_get_cookie(rt);
780 }
781}
782
Eric Dumazet645ca702008-10-29 01:41:45 -0700783int __udp6_lib_rcv(struct sk_buff *skb, struct udp_table *udptable,
Herbert Xu759e5d02007-03-25 20:10:56 -0700784 int proto)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700785{
Eric Dumazetb71d1d42011-04-22 04:53:02 +0000786 const struct in6_addr *saddr, *daddr;
Eric Dumazetca065d02016-04-01 08:52:13 -0700787 struct net *net = dev_net(skb->dev);
788 struct udphdr *uh;
789 struct sock *sk;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700790 u32 ulen = 0;
791
792 if (!pskb_may_pull(skb, sizeof(struct udphdr)))
Bjørn Morkd6bc0142010-05-06 03:44:35 +0000793 goto discard;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700794
Arnaldo Carvalho de Melo0660e032007-04-25 17:54:47 -0700795 saddr = &ipv6_hdr(skb)->saddr;
796 daddr = &ipv6_hdr(skb)->daddr;
Arnaldo Carvalho de Melo4bedb452007-03-13 14:28:48 -0300797 uh = udp_hdr(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700798
799 ulen = ntohs(uh->len);
Gerrit Renkerba4e58e2006-11-27 11:10:57 -0800800 if (ulen > skb->len)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700801 goto short_packet;
802
Herbert Xu759e5d02007-03-25 20:10:56 -0700803 if (proto == IPPROTO_UDP) {
804 /* UDP validates ulen. */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700805
Gerrit Renkerba4e58e2006-11-27 11:10:57 -0800806 /* Check for jumbo payload */
807 if (ulen == 0)
808 ulen = skb->len;
809
810 if (ulen < sizeof(*uh))
811 goto short_packet;
812
813 if (ulen < skb->len) {
814 if (pskb_trim_rcsum(skb, ulen))
815 goto short_packet;
Arnaldo Carvalho de Melo0660e032007-04-25 17:54:47 -0700816 saddr = &ipv6_hdr(skb)->saddr;
817 daddr = &ipv6_hdr(skb)->daddr;
Arnaldo Carvalho de Melo4bedb452007-03-13 14:28:48 -0300818 uh = udp_hdr(skb);
Gerrit Renkerba4e58e2006-11-27 11:10:57 -0800819 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700820 }
821
Herbert Xu759e5d02007-03-25 20:10:56 -0700822 if (udp6_csum_init(skb, uh, proto))
Eric Dumazet6a5dc9e2013-04-29 08:39:56 +0000823 goto csum_error;
Herbert Xu759e5d02007-03-25 20:10:56 -0700824
Paolo Abenic9f2c1a2017-07-27 14:45:09 +0200825 /* Check if the socket is already available, e.g. due to early demux */
826 sk = skb_steal_sock(skb);
827 if (sk) {
828 struct dst_entry *dst = skb_dst(skb);
829 int ret;
830
831 if (unlikely(sk->sk_rx_dst != dst))
Paolo Abeni64f0f5d2017-08-25 14:31:01 +0200832 udp6_sk_rx_dst_set(sk, dst);
Paolo Abenic9f2c1a2017-07-27 14:45:09 +0200833
834 ret = udpv6_queue_rcv_skb(sk, skb);
835 sock_put(sk);
836
837 /* a return value > 0 means to resubmit the input */
838 if (ret > 0)
839 return ret;
840 return 0;
841 }
842
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900843 /*
844 * Multicast receive code
Linus Torvalds1da177e2005-04-16 15:20:36 -0700845 */
Gerrit Renkerba4e58e2006-11-27 11:10:57 -0800846 if (ipv6_addr_is_multicast(daddr))
Pavel Emelyanove3163492008-06-16 17:12:11 -0700847 return __udp6_lib_mcast_deliver(net, skb,
Rick Jones36cbb242014-11-06 10:37:54 -0800848 saddr, daddr, udptable, proto);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700849
850 /* Unicast */
KOVACS Krisztian607c4aa2008-10-07 12:38:32 -0700851 sk = __udp6_lib_lookup_skb(skb, uh->source, uh->dest, udptable);
Ian Morris53b24b82015-03-29 14:00:05 +0100852 if (sk) {
Eliezer Tamira5b50472013-06-10 11:40:00 +0300853 int ret;
854
Tom Herbert1c194482014-05-23 08:47:32 -0700855 if (!uh->check && !udp_sk(sk)->no_check6_rx) {
Tom Herbert40685792014-05-02 16:29:58 -0700856 udp6_csum_zero_error(skb);
857 goto csum_error;
858 }
859
Tom Herbert224d0192015-01-05 13:56:14 -0800860 if (inet_get_convert_csum(sk) && uh->check && !IS_UDPLITE(sk))
Tom Herbert2abb7cd2014-08-31 15:12:43 -0700861 skb_checksum_try_convert(skb, IPPROTO_UDP, uh->check,
862 ip6_compute_pseudo);
863
Eliezer Tamira5b50472013-06-10 11:40:00 +0300864 ret = udpv6_queue_rcv_skb(sk, skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700865
Bill Sommerfeld59dca1d2016-03-04 14:47:21 -0800866 /* a return value > 0 means to resubmit the input */
Benjamin LaHaisecb80ef42012-04-27 08:23:59 +0000867 if (ret > 0)
Bill Sommerfeld59dca1d2016-03-04 14:47:21 -0800868 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700869
Stephen Hemmingeradd459a2007-03-08 20:42:35 -0800870 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700871 }
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900872
Tom Herbert40685792014-05-02 16:29:58 -0700873 if (!uh->check) {
874 udp6_csum_zero_error(skb);
875 goto csum_error;
876 }
877
Benjamin LaHaisecb80ef42012-04-27 08:23:59 +0000878 if (!xfrm6_policy_check(NULL, XFRM_POLICY_IN, skb))
879 goto discard;
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900880
Benjamin LaHaisecb80ef42012-04-27 08:23:59 +0000881 if (udp_lib_checksum_complete(skb))
Eric Dumazet6a5dc9e2013-04-29 08:39:56 +0000882 goto csum_error;
Benjamin LaHaisecb80ef42012-04-27 08:23:59 +0000883
Eric Dumazet02c22342016-04-27 16:44:30 -0700884 __UDP6_INC_STATS(net, UDP_MIB_NOPORTS, proto == IPPROTO_UDPLITE);
Benjamin LaHaisecb80ef42012-04-27 08:23:59 +0000885 icmpv6_send(skb, ICMPV6_DEST_UNREACH, ICMPV6_PORT_UNREACH, 0);
886
887 kfree_skb(skb);
Stephen Hemmingeradd459a2007-03-08 20:42:35 -0800888 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700889
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900890short_packet:
Joe Perchesba7a46f2014-11-11 10:59:17 -0800891 net_dbg_ratelimited("UDP%sv6: short packet: From [%pI6c]:%u %d/%d to [%pI6c]:%u\n",
892 proto == IPPROTO_UDPLITE ? "-Lite" : "",
893 saddr, ntohs(uh->source),
894 ulen, skb->len,
895 daddr, ntohs(uh->dest));
Eric Dumazet6a5dc9e2013-04-29 08:39:56 +0000896 goto discard;
897csum_error:
Eric Dumazet02c22342016-04-27 16:44:30 -0700898 __UDP6_INC_STATS(net, UDP_MIB_CSUMERRORS, proto == IPPROTO_UDPLITE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700899discard:
Eric Dumazet02c22342016-04-27 16:44:30 -0700900 __UDP6_INC_STATS(net, UDP_MIB_INERRORS, proto == IPPROTO_UDPLITE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700901 kfree_skb(skb);
Stephen Hemmingeradd459a2007-03-08 20:42:35 -0800902 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700903}
Gerrit Renkerba4e58e2006-11-27 11:10:57 -0800904
subashab@codeaurora.org0bd84062017-04-18 11:39:41 -0600905
subashab@codeaurora.org54250772017-03-08 16:36:49 -0700906static struct sock *__udp6_lib_demux_lookup(struct net *net,
907 __be16 loc_port, const struct in6_addr *loc_addr,
908 __be16 rmt_port, const struct in6_addr *rmt_addr,
David Ahern4297a0e2017-08-07 08:44:21 -0700909 int dif, int sdif)
subashab@codeaurora.org54250772017-03-08 16:36:49 -0700910{
subashab@codeaurora.org0bd84062017-04-18 11:39:41 -0600911 unsigned short hnum = ntohs(loc_port);
912 unsigned int hash2 = udp6_portaddr_hash(net, loc_addr, hnum);
913 unsigned int slot2 = hash2 & udp_table.mask;
914 struct udp_hslot *hslot2 = &udp_table.hash2[slot2];
915 const __portpair ports = INET_COMBINED_PORTS(rmt_port, hnum);
subashab@codeaurora.org54250772017-03-08 16:36:49 -0700916 struct sock *sk;
917
subashab@codeaurora.org0bd84062017-04-18 11:39:41 -0600918 udp_portaddr_for_each_entry_rcu(sk, &hslot2->head) {
Wei Wang85cb73f2017-06-23 15:25:37 -0700919 if (sk->sk_state == TCP_ESTABLISHED &&
David Ahern4297a0e2017-08-07 08:44:21 -0700920 INET6_MATCH(sk, net, rmt_addr, loc_addr, ports, dif, sdif))
subashab@codeaurora.org0bd84062017-04-18 11:39:41 -0600921 return sk;
922 /* Only check first socket in chain */
923 break;
924 }
925 return NULL;
subashab@codeaurora.org54250772017-03-08 16:36:49 -0700926}
927
928static void udp_v6_early_demux(struct sk_buff *skb)
929{
930 struct net *net = dev_net(skb->dev);
931 const struct udphdr *uh;
932 struct sock *sk;
933 struct dst_entry *dst;
934 int dif = skb->dev->ifindex;
David Ahern4297a0e2017-08-07 08:44:21 -0700935 int sdif = inet6_sdif(skb);
subashab@codeaurora.org54250772017-03-08 16:36:49 -0700936
937 if (!pskb_may_pull(skb, skb_transport_offset(skb) +
938 sizeof(struct udphdr)))
939 return;
940
941 uh = udp_hdr(skb);
942
943 if (skb->pkt_type == PACKET_HOST)
944 sk = __udp6_lib_demux_lookup(net, uh->dest,
945 &ipv6_hdr(skb)->daddr,
946 uh->source, &ipv6_hdr(skb)->saddr,
David Ahern4297a0e2017-08-07 08:44:21 -0700947 dif, sdif);
subashab@codeaurora.org54250772017-03-08 16:36:49 -0700948 else
949 return;
950
Reshetova, Elena41c6d652017-06-30 13:08:01 +0300951 if (!sk || !refcount_inc_not_zero(&sk->sk_refcnt))
subashab@codeaurora.org54250772017-03-08 16:36:49 -0700952 return;
953
954 skb->sk = sk;
955 skb->destructor = sock_efree;
956 dst = READ_ONCE(sk->sk_rx_dst);
957
958 if (dst)
959 dst = dst_check(dst, inet6_sk(sk)->rx_dst_cookie);
960 if (dst) {
Wei Wangd24406c2017-06-17 10:42:25 -0700961 /* set noref for now.
962 * any place which wants to hold dst has to call
963 * dst_hold_safe()
964 */
965 skb_dst_set_noref(skb, dst);
subashab@codeaurora.org54250772017-03-08 16:36:49 -0700966 }
967}
968
Herbert Xue5bbef22007-10-15 12:50:28 -0700969static __inline__ int udpv6_rcv(struct sk_buff *skb)
Gerrit Renkerba4e58e2006-11-27 11:10:57 -0800970{
Eric Dumazet645ca702008-10-29 01:41:45 -0700971 return __udp6_lib_rcv(skb, &udp_table, IPPROTO_UDP);
Gerrit Renkerba4e58e2006-11-27 11:10:57 -0800972}
973
Linus Torvalds1da177e2005-04-16 15:20:36 -0700974/*
975 * Throw away all pending data and cancel the corking. Socket is locked.
976 */
977static void udp_v6_flush_pending_frames(struct sock *sk)
978{
979 struct udp_sock *up = udp_sk(sk);
980
Denis V. Lunev36d926b2008-06-04 15:49:07 +0400981 if (up->pending == AF_INET)
982 udp_flush_pending_frames(sk);
983 else if (up->pending) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700984 up->len = 0;
985 up->pending = 0;
986 ip6_flush_pending_frames(sk);
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900987 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700988}
989
Sridhar Samudrala493c6be2009-07-09 08:09:54 +0000990/**
Ian Morris67ba4152014-08-24 21:53:10 +0100991 * udp6_hwcsum_outgoing - handle outgoing HW checksumming
992 * @sk: socket we are sending on
993 * @skb: sk_buff containing the filled-in UDP header
994 * (checksum field must be zeroed out)
Sridhar Samudrala493c6be2009-07-09 08:09:54 +0000995 */
996static void udp6_hwcsum_outgoing(struct sock *sk, struct sk_buff *skb,
997 const struct in6_addr *saddr,
998 const struct in6_addr *daddr, int len)
999{
1000 unsigned int offset;
1001 struct udphdr *uh = udp_hdr(skb);
Vlad Yasevichd39d9382015-01-31 10:40:16 -05001002 struct sk_buff *frags = skb_shinfo(skb)->frag_list;
Sridhar Samudrala493c6be2009-07-09 08:09:54 +00001003 __wsum csum = 0;
1004
Vlad Yasevichd39d9382015-01-31 10:40:16 -05001005 if (!frags) {
Sridhar Samudrala493c6be2009-07-09 08:09:54 +00001006 /* Only one fragment on the socket. */
1007 skb->csum_start = skb_transport_header(skb) - skb->head;
1008 skb->csum_offset = offsetof(struct udphdr, check);
1009 uh->check = ~csum_ipv6_magic(saddr, daddr, len, IPPROTO_UDP, 0);
1010 } else {
1011 /*
1012 * HW-checksum won't work as there are two or more
1013 * fragments on the socket so that all csums of sk_buffs
1014 * should be together
1015 */
1016 offset = skb_transport_offset(skb);
1017 skb->csum = skb_checksum(skb, offset, skb->len - offset, 0);
Subash Abhinov Kasiviswanathan63ecc3d2017-09-13 19:30:51 -06001018 csum = skb->csum;
Sridhar Samudrala493c6be2009-07-09 08:09:54 +00001019
1020 skb->ip_summed = CHECKSUM_NONE;
1021
Vlad Yasevichd39d9382015-01-31 10:40:16 -05001022 do {
1023 csum = csum_add(csum, frags->csum);
1024 } while ((frags = frags->next));
Sridhar Samudrala493c6be2009-07-09 08:09:54 +00001025
1026 uh->check = csum_ipv6_magic(saddr, daddr, len, IPPROTO_UDP,
1027 csum);
1028 if (uh->check == 0)
1029 uh->check = CSUM_MANGLED_0;
1030 }
1031}
1032
Linus Torvalds1da177e2005-04-16 15:20:36 -07001033/*
1034 * Sending
1035 */
1036
Vlad Yasevichd39d9382015-01-31 10:40:16 -05001037static int udp_v6_send_skb(struct sk_buff *skb, struct flowi6 *fl6)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001038{
Vlad Yasevichd39d9382015-01-31 10:40:16 -05001039 struct sock *sk = skb->sk;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001040 struct udphdr *uh;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001041 int err = 0;
Wang Chenb2bf1e22007-12-03 22:34:16 +11001042 int is_udplite = IS_UDPLITE(sk);
Al Viro868c86b2006-11-14 21:35:48 -08001043 __wsum csum = 0;
Vlad Yasevichd39d9382015-01-31 10:40:16 -05001044 int offset = skb_transport_offset(skb);
1045 int len = skb->len - offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001046
1047 /*
1048 * Create a UDP header
1049 */
Arnaldo Carvalho de Melo4bedb452007-03-13 14:28:48 -03001050 uh = udp_hdr(skb);
David S. Miller1958b852011-03-12 16:36:19 -05001051 uh->source = fl6->fl6_sport;
1052 uh->dest = fl6->fl6_dport;
Vlad Yasevichd39d9382015-01-31 10:40:16 -05001053 uh->len = htons(len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001054 uh->check = 0;
1055
Wang Chenb2bf1e22007-12-03 22:34:16 +11001056 if (is_udplite)
Vlad Yasevichd39d9382015-01-31 10:40:16 -05001057 csum = udplite_csum(skb);
1058 else if (udp_sk(sk)->no_check6_tx) { /* UDP csum disabled */
Tom Herbert40685792014-05-02 16:29:58 -07001059 skb->ip_summed = CHECKSUM_NONE;
1060 goto send;
1061 } else if (skb->ip_summed == CHECKSUM_PARTIAL) { /* UDP hardware csum */
Vlad Yasevichd39d9382015-01-31 10:40:16 -05001062 udp6_hwcsum_outgoing(sk, skb, &fl6->saddr, &fl6->daddr, len);
Sridhar Samudrala493c6be2009-07-09 08:09:54 +00001063 goto send;
1064 } else
Vlad Yasevichd39d9382015-01-31 10:40:16 -05001065 csum = udp_csum(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001066
Gerrit Renkerba4e58e2006-11-27 11:10:57 -08001067 /* add protocol-dependent pseudo-header */
David S. Miller4c9483b2011-03-12 16:22:43 -05001068 uh->check = csum_ipv6_magic(&fl6->saddr, &fl6->daddr,
Vlad Yasevichd39d9382015-01-31 10:40:16 -05001069 len, fl6->flowi6_proto, csum);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001070 if (uh->check == 0)
Al Virof6ab0282006-11-16 02:36:50 -08001071 uh->check = CSUM_MANGLED_0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001072
Sridhar Samudrala493c6be2009-07-09 08:09:54 +00001073send:
Vlad Yasevichd39d9382015-01-31 10:40:16 -05001074 err = ip6_send_skb(skb);
Eric Dumazet6ce9e7b2009-09-02 18:05:33 -07001075 if (err) {
1076 if (err == -ENOBUFS && !inet6_sk(sk)->recverr) {
Eric Dumazet6aef70a2016-04-27 16:44:27 -07001077 UDP6_INC_STATS(sock_net(sk),
1078 UDP_MIB_SNDBUFERRORS, is_udplite);
Eric Dumazet6ce9e7b2009-09-02 18:05:33 -07001079 err = 0;
1080 }
Eric Dumazet6aef70a2016-04-27 16:44:27 -07001081 } else {
1082 UDP6_INC_STATS(sock_net(sk),
1083 UDP_MIB_OUTDATAGRAMS, is_udplite);
1084 }
Vlad Yasevichd39d9382015-01-31 10:40:16 -05001085 return err;
1086}
1087
1088static int udp_v6_push_pending_frames(struct sock *sk)
1089{
1090 struct sk_buff *skb;
1091 struct udp_sock *up = udp_sk(sk);
1092 struct flowi6 fl6;
1093 int err = 0;
1094
1095 if (up->pending == AF_INET)
1096 return udp_push_pending_frames(sk);
1097
1098 /* ip6_finish_skb will release the cork, so make a copy of
1099 * fl6 here.
1100 */
1101 fl6 = inet_sk(sk)->cork.fl.u.ip6;
1102
1103 skb = ip6_finish_skb(sk);
1104 if (!skb)
1105 goto out;
1106
1107 err = udp_v6_send_skb(skb, &fl6);
1108
Linus Torvalds1da177e2005-04-16 15:20:36 -07001109out:
1110 up->len = 0;
1111 up->pending = 0;
1112 return err;
1113}
1114
Ying Xue1b784142015-03-02 15:37:48 +08001115int udpv6_sendmsg(struct sock *sk, struct msghdr *msg, size_t len)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001116{
1117 struct ipv6_txoptions opt_space;
1118 struct udp_sock *up = udp_sk(sk);
1119 struct inet_sock *inet = inet_sk(sk);
1120 struct ipv6_pinfo *np = inet6_sk(sk);
Steffen Hurrle342dfc32014-01-17 22:53:15 +01001121 DECLARE_SOCKADDR(struct sockaddr_in6 *, sin6, msg->msg_name);
Arnaud Ebalard20c59de2010-06-01 21:35:01 +00001122 struct in6_addr *daddr, *final_p, final;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001123 struct ipv6_txoptions *opt = NULL;
Eric Dumazet45f6fad2015-11-29 19:37:57 -08001124 struct ipv6_txoptions *opt_to_free = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001125 struct ip6_flowlabel *flowlabel = NULL;
David S. Miller4c9483b2011-03-12 16:22:43 -05001126 struct flowi6 fl6;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001127 struct dst_entry *dst;
Wei Wang26879da2016-05-02 21:40:07 -07001128 struct ipcm6_cookie ipc6;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001129 int addr_len = msg->msg_namelen;
1130 int ulen = len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001131 int corkreq = up->corkflag || msg->msg_flags&MSG_MORE;
1132 int err;
Mitsuru KANDA987905d2005-09-18 00:30:08 -07001133 int connected = 0;
Wang Chenb2bf1e22007-12-03 22:34:16 +11001134 int is_udplite = IS_UDPLITE(sk);
Gerrit Renkerba4e58e2006-11-27 11:10:57 -08001135 int (*getfrag)(void *, char *, int, int, int, struct sk_buff *);
Soheil Hassas Yeganehad1e46a2016-04-02 23:08:11 -04001136 struct sockcm_cookie sockc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001137
Wei Wang26879da2016-05-02 21:40:07 -07001138 ipc6.hlimit = -1;
1139 ipc6.tclass = -1;
1140 ipc6.dontfrag = -1;
Alexander Potapenkod5156842017-03-21 17:14:27 +01001141 sockc.tsflags = sk->sk_tsflags;
Wei Wang26879da2016-05-02 21:40:07 -07001142
Linus Torvalds1da177e2005-04-16 15:20:36 -07001143 /* destination address check */
1144 if (sin6) {
1145 if (addr_len < offsetof(struct sockaddr, sa_data))
1146 return -EINVAL;
1147
1148 switch (sin6->sin6_family) {
1149 case AF_INET6:
1150 if (addr_len < SIN6_LEN_RFC2133)
1151 return -EINVAL;
1152 daddr = &sin6->sin6_addr;
Jonathan T. Leighton052d2362017-02-12 17:26:07 -05001153 if (ipv6_addr_any(daddr) &&
1154 ipv6_addr_v4mapped(&np->saddr))
1155 ipv6_addr_set_v4mapped(htonl(INADDR_LOOPBACK),
1156 daddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001157 break;
1158 case AF_INET:
1159 goto do_udp_sendmsg;
1160 case AF_UNSPEC:
1161 msg->msg_name = sin6 = NULL;
1162 msg->msg_namelen = addr_len = 0;
1163 daddr = NULL;
1164 break;
1165 default:
1166 return -EINVAL;
1167 }
1168 } else if (!up->pending) {
1169 if (sk->sk_state != TCP_ESTABLISHED)
1170 return -EDESTADDRREQ;
Eric Dumazetefe42082013-10-03 15:42:29 -07001171 daddr = &sk->sk_v6_daddr;
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09001172 } else
Linus Torvalds1da177e2005-04-16 15:20:36 -07001173 daddr = NULL;
1174
1175 if (daddr) {
Brian Haleye773e4f2007-08-24 23:16:08 -07001176 if (ipv6_addr_v4mapped(daddr)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001177 struct sockaddr_in sin;
1178 sin.sin_family = AF_INET;
Eric Dumazetc720c7e2009-10-15 06:30:45 +00001179 sin.sin_port = sin6 ? sin6->sin6_port : inet->inet_dport;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001180 sin.sin_addr.s_addr = daddr->s6_addr32[3];
1181 msg->msg_name = &sin;
1182 msg->msg_namelen = sizeof(sin);
1183do_udp_sendmsg:
1184 if (__ipv6_only_sock(sk))
1185 return -ENETUNREACH;
Ying Xue1b784142015-03-02 15:37:48 +08001186 return udp_sendmsg(sk, msg, len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001187 }
1188 }
1189
1190 if (up->pending == AF_INET)
Ying Xue1b784142015-03-02 15:37:48 +08001191 return udp_sendmsg(sk, msg, len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001192
1193 /* Rough check on arithmetic overflow,
YOSHIFUJI Hideakib59e1392007-03-30 14:45:35 -07001194 better check is made in ip6_append_data().
Linus Torvalds1da177e2005-04-16 15:20:36 -07001195 */
1196 if (len > INT_MAX - sizeof(struct udphdr))
1197 return -EMSGSIZE;
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09001198
Vlad Yasevich03485f22015-01-31 10:40:17 -05001199 getfrag = is_udplite ? udplite_getfrag : ip_generic_getfrag;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001200 if (up->pending) {
1201 /*
1202 * There are pending frames.
1203 * The socket lock must be held while it's corked.
1204 */
1205 lock_sock(sk);
1206 if (likely(up->pending)) {
1207 if (unlikely(up->pending != AF_INET6)) {
1208 release_sock(sk);
1209 return -EAFNOSUPPORT;
1210 }
1211 dst = NULL;
1212 goto do_append_data;
1213 }
1214 release_sock(sk);
1215 }
1216 ulen += sizeof(struct udphdr);
1217
David S. Miller4c9483b2011-03-12 16:22:43 -05001218 memset(&fl6, 0, sizeof(fl6));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001219
1220 if (sin6) {
1221 if (sin6->sin6_port == 0)
1222 return -EINVAL;
1223
David S. Miller1958b852011-03-12 16:36:19 -05001224 fl6.fl6_dport = sin6->sin6_port;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001225 daddr = &sin6->sin6_addr;
1226
1227 if (np->sndflow) {
David S. Miller4c9483b2011-03-12 16:22:43 -05001228 fl6.flowlabel = sin6->sin6_flowinfo&IPV6_FLOWINFO_MASK;
1229 if (fl6.flowlabel&IPV6_FLOWLABEL_MASK) {
1230 flowlabel = fl6_sock_lookup(sk, fl6.flowlabel);
Ian Morris63159f22015-03-29 14:00:04 +01001231 if (!flowlabel)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001232 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001233 }
1234 }
1235
1236 /*
1237 * Otherwise it will be difficult to maintain
1238 * sk->sk_dst_cache.
1239 */
1240 if (sk->sk_state == TCP_ESTABLISHED &&
Eric Dumazetefe42082013-10-03 15:42:29 -07001241 ipv6_addr_equal(daddr, &sk->sk_v6_daddr))
1242 daddr = &sk->sk_v6_daddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001243
1244 if (addr_len >= sizeof(struct sockaddr_in6) &&
1245 sin6->sin6_scope_id &&
Hannes Frederic Sowa842df072013-03-08 02:07:19 +00001246 __ipv6_addr_needs_scope_id(__ipv6_addr_type(daddr)))
David S. Miller4c9483b2011-03-12 16:22:43 -05001247 fl6.flowi6_oif = sin6->sin6_scope_id;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001248 } else {
1249 if (sk->sk_state != TCP_ESTABLISHED)
1250 return -EDESTADDRREQ;
1251
David S. Miller1958b852011-03-12 16:36:19 -05001252 fl6.fl6_dport = inet->inet_dport;
Eric Dumazetefe42082013-10-03 15:42:29 -07001253 daddr = &sk->sk_v6_daddr;
David S. Miller4c9483b2011-03-12 16:22:43 -05001254 fl6.flowlabel = np->flow_label;
Mitsuru KANDA987905d2005-09-18 00:30:08 -07001255 connected = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001256 }
1257
David S. Miller4c9483b2011-03-12 16:22:43 -05001258 if (!fl6.flowi6_oif)
1259 fl6.flowi6_oif = sk->sk_bound_dev_if;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001260
David S. Miller4c9483b2011-03-12 16:22:43 -05001261 if (!fl6.flowi6_oif)
1262 fl6.flowi6_oif = np->sticky_pktinfo.ipi6_ifindex;
Yang Hongyang9f690db2008-12-16 02:08:29 -08001263
David S. Miller4c9483b2011-03-12 16:22:43 -05001264 fl6.flowi6_mark = sk->sk_mark;
Lorenzo Colittie2d118a2016-11-04 02:23:43 +09001265 fl6.flowi6_uid = sk->sk_uid;
Brian Haley51953d52009-10-05 08:24:16 +00001266
Linus Torvalds1da177e2005-04-16 15:20:36 -07001267 if (msg->msg_controllen) {
1268 opt = &opt_space;
1269 memset(opt, 0, sizeof(struct ipv6_txoptions));
1270 opt->tot_len = sizeof(*opt);
Wei Wang26879da2016-05-02 21:40:07 -07001271 ipc6.opt = opt;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001272
Wei Wang26879da2016-05-02 21:40:07 -07001273 err = ip6_datagram_send_ctl(sock_net(sk), sk, msg, &fl6, &ipc6, &sockc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001274 if (err < 0) {
1275 fl6_sock_release(flowlabel);
1276 return err;
1277 }
David S. Miller4c9483b2011-03-12 16:22:43 -05001278 if ((fl6.flowlabel&IPV6_FLOWLABEL_MASK) && !flowlabel) {
1279 flowlabel = fl6_sock_lookup(sk, fl6.flowlabel);
Ian Morris63159f22015-03-29 14:00:04 +01001280 if (!flowlabel)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001281 return -EINVAL;
1282 }
1283 if (!(opt->opt_nflen|opt->opt_flen))
1284 opt = NULL;
Mitsuru KANDA987905d2005-09-18 00:30:08 -07001285 connected = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001286 }
Eric Dumazet45f6fad2015-11-29 19:37:57 -08001287 if (!opt) {
1288 opt = txopt_get(np);
1289 opt_to_free = opt;
1290 }
YOSHIFUJI Hideakidf9890c2005-11-20 12:23:18 +09001291 if (flowlabel)
1292 opt = fl6_merge_options(&opt_space, flowlabel, opt);
1293 opt = ipv6_fixup_options(&opt_space, opt);
Wei Wang26879da2016-05-02 21:40:07 -07001294 ipc6.opt = opt;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001295
David S. Miller4c9483b2011-03-12 16:22:43 -05001296 fl6.flowi6_proto = sk->sk_protocol;
Brian Haley876c7f42008-04-11 00:38:24 -04001297 if (!ipv6_addr_any(daddr))
Alexey Dobriyan4e3fd7a2011-11-21 03:39:03 +00001298 fl6.daddr = *daddr;
Brian Haley876c7f42008-04-11 00:38:24 -04001299 else
David S. Miller4c9483b2011-03-12 16:22:43 -05001300 fl6.daddr.s6_addr[15] = 0x1; /* :: means loopback (BSD'ism) */
1301 if (ipv6_addr_any(&fl6.saddr) && !ipv6_addr_any(&np->saddr))
Alexey Dobriyan4e3fd7a2011-11-21 03:39:03 +00001302 fl6.saddr = np->saddr;
David S. Miller1958b852011-03-12 16:36:19 -05001303 fl6.fl6_sport = inet->inet_sport;
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09001304
David S. Miller4c9483b2011-03-12 16:22:43 -05001305 final_p = fl6_update_dst(&fl6, opt, &final);
Arnaud Ebalard20c59de2010-06-01 21:35:01 +00001306 if (final_p)
Mitsuru KANDA987905d2005-09-18 00:30:08 -07001307 connected = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001308
David S. Miller4c9483b2011-03-12 16:22:43 -05001309 if (!fl6.flowi6_oif && ipv6_addr_is_multicast(&fl6.daddr)) {
1310 fl6.flowi6_oif = np->mcast_oif;
Mitsuru KANDA987905d2005-09-18 00:30:08 -07001311 connected = 0;
Erich E. Hooverc4062df2012-02-08 09:11:08 +00001312 } else if (!fl6.flowi6_oif)
1313 fl6.flowi6_oif = np->ucast_oif;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001314
David S. Miller4c9483b2011-03-12 16:22:43 -05001315 security_sk_classify_flow(sk, flowi6_to_flowi(&fl6));
Venkat Yekkiralabeb8d132006-08-04 23:12:42 -07001316
Hannes Frederic Sowa38b70972016-06-11 20:08:19 +02001317 if (ipc6.tclass < 0)
1318 ipc6.tclass = np->tclass;
1319
1320 fl6.flowlabel = ip6_make_flowinfo(ipc6.tclass, fl6.flowlabel);
1321
Steffen Klassert0e0d44a2013-08-28 08:04:14 +02001322 dst = ip6_sk_dst_lookup_flow(sk, &fl6, final_p);
David S. Miller68d0c6d2011-03-01 13:19:07 -08001323 if (IS_ERR(dst)) {
1324 err = PTR_ERR(dst);
1325 dst = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001326 goto out;
David S. Miller14e50e52007-05-24 18:17:54 -07001327 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001328
Wei Wang26879da2016-05-02 21:40:07 -07001329 if (ipc6.hlimit < 0)
1330 ipc6.hlimit = ip6_sk_dst_hoplimit(np, &fl6, dst);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001331
1332 if (msg->msg_flags&MSG_CONFIRM)
1333 goto do_confirm;
1334back_from_confirm:
1335
Vlad Yasevich03485f22015-01-31 10:40:17 -05001336 /* Lockless fast path for the non-corking case */
1337 if (!corkreq) {
1338 struct sk_buff *skb;
1339
1340 skb = ip6_make_skb(sk, getfrag, msg, ulen,
Wei Wang26879da2016-05-02 21:40:07 -07001341 sizeof(struct udphdr), &ipc6,
Vlad Yasevich03485f22015-01-31 10:40:17 -05001342 &fl6, (struct rt6_info *)dst,
Wei Wang26879da2016-05-02 21:40:07 -07001343 msg->msg_flags, &sockc);
Vlad Yasevich03485f22015-01-31 10:40:17 -05001344 err = PTR_ERR(skb);
1345 if (!IS_ERR_OR_NULL(skb))
1346 err = udp_v6_send_skb(skb, &fl6);
1347 goto release_dst;
1348 }
1349
Linus Torvalds1da177e2005-04-16 15:20:36 -07001350 lock_sock(sk);
1351 if (unlikely(up->pending)) {
1352 /* The socket is already corked while preparing it. */
1353 /* ... which is an evident application bug. --ANK */
1354 release_sock(sk);
1355
Joe Perchesba7a46f2014-11-11 10:59:17 -08001356 net_dbg_ratelimited("udp cork app bug 2\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001357 err = -EINVAL;
1358 goto out;
1359 }
1360
1361 up->pending = AF_INET6;
1362
1363do_append_data:
Wei Wang26879da2016-05-02 21:40:07 -07001364 if (ipc6.dontfrag < 0)
1365 ipc6.dontfrag = np->dontfrag;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001366 up->len += ulen;
Wei Wang26879da2016-05-02 21:40:07 -07001367 err = ip6_append_data(sk, getfrag, msg, ulen, sizeof(struct udphdr),
1368 &ipc6, &fl6, (struct rt6_info *)dst,
1369 corkreq ? msg->msg_flags|MSG_MORE : msg->msg_flags, &sockc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001370 if (err)
1371 udp_v6_flush_pending_frames(sk);
1372 else if (!corkreq)
Gerrit Renker4c0a6cb2006-11-27 09:29:59 -08001373 err = udp_v6_push_pending_frames(sk);
Herbert Xu1e0c14f2006-10-03 14:35:49 -07001374 else if (unlikely(skb_queue_empty(&sk->sk_write_queue)))
1375 up->pending = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001376
Vlad Yasevich03485f22015-01-31 10:40:17 -05001377 if (err > 0)
1378 err = np->recverr ? net_xmit_errno(err) : 0;
1379 release_sock(sk);
1380
1381release_dst:
David S. Millera5e7c212005-10-03 14:21:58 -07001382 if (dst) {
1383 if (connected) {
1384 ip6_dst_store(sk, dst,
Eric Dumazetefe42082013-10-03 15:42:29 -07001385 ipv6_addr_equal(&fl6.daddr, &sk->sk_v6_daddr) ?
1386 &sk->sk_v6_daddr : NULL,
YOSHIFUJI Hideaki8e1ef0a2006-08-29 17:15:09 -07001387#ifdef CONFIG_IPV6_SUBTREES
David S. Miller4c9483b2011-03-12 16:22:43 -05001388 ipv6_addr_equal(&fl6.saddr, &np->saddr) ?
YOSHIFUJI Hideaki8e1ef0a2006-08-29 17:15:09 -07001389 &np->saddr :
1390#endif
1391 NULL);
David S. Millera5e7c212005-10-03 14:21:58 -07001392 } else {
1393 dst_release(dst);
1394 }
YOSHIFUJI Hideakia3c96082008-06-04 01:30:25 +09001395 dst = NULL;
David S. Millera5e7c212005-10-03 14:21:58 -07001396 }
1397
Linus Torvalds1da177e2005-04-16 15:20:36 -07001398out:
YOSHIFUJI Hideakia3c96082008-06-04 01:30:25 +09001399 dst_release(dst);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001400 fl6_sock_release(flowlabel);
Eric Dumazet45f6fad2015-11-29 19:37:57 -08001401 txopt_put(opt_to_free);
YOSHIFUJI Hideakicd562c92007-09-14 17:15:01 -07001402 if (!err)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001403 return len;
David S. Millera18135e2006-08-15 00:00:09 -07001404 /*
1405 * ENOBUFS = no kernel mem, SOCK_NOSPACE = no sndbuf space. Reporting
1406 * ENOBUFS might not be good (it's not tunable per se), but otherwise
1407 * we don't have a good statistic (IpOutDiscards but it can be too many
1408 * things). We could add another new stat but at least for now that
1409 * seems like overkill.
1410 */
1411 if (err == -ENOBUFS || test_bit(SOCK_NOSPACE, &sk->sk_socket->flags)) {
Eric Dumazet6aef70a2016-04-27 16:44:27 -07001412 UDP6_INC_STATS(sock_net(sk),
1413 UDP_MIB_SNDBUFERRORS, is_udplite);
David S. Millera18135e2006-08-15 00:00:09 -07001414 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001415 return err;
1416
1417do_confirm:
Julian Anastasov0dec8792017-02-06 23:14:16 +02001418 if (msg->msg_flags & MSG_PROBE)
1419 dst_confirm_neigh(dst, &fl6.daddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001420 if (!(msg->msg_flags&MSG_PROBE) || len)
1421 goto back_from_confirm;
1422 err = 0;
1423 goto out;
1424}
1425
Brian Haley7d06b2e2008-06-14 17:04:49 -07001426void udpv6_destroy_sock(struct sock *sk)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001427{
Tom Parkin44046a52013-03-19 06:11:12 +00001428 struct udp_sock *up = udp_sk(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001429 lock_sock(sk);
1430 udp_v6_flush_pending_frames(sk);
1431 release_sock(sk);
1432
Tom Parkin44046a52013-03-19 06:11:12 +00001433 if (static_key_false(&udpv6_encap_needed) && up->encap_type) {
1434 void (*encap_destroy)(struct sock *sk);
1435 encap_destroy = ACCESS_ONCE(up->encap_destroy);
1436 if (encap_destroy)
1437 encap_destroy(sk);
1438 }
1439
Linus Torvalds1da177e2005-04-16 15:20:36 -07001440 inet6_destroy_sock(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001441}
1442
1443/*
1444 * Socket option code for UDP
1445 */
Gerrit Renkerba4e58e2006-11-27 11:10:57 -08001446int udpv6_setsockopt(struct sock *sk, int level, int optname,
David S. Millerb7058842009-09-30 16:12:20 -07001447 char __user *optval, unsigned int optlen)
Dmitry Mishin3fdadf72006-03-20 22:45:21 -08001448{
David S. Millerdb8dac22008-03-06 16:22:02 -08001449 if (level == SOL_UDP || level == SOL_UDPLITE)
Gerrit Renker4c0a6cb2006-11-27 09:29:59 -08001450 return udp_lib_setsockopt(sk, level, optname, optval, optlen,
1451 udp_v6_push_pending_frames);
Gerrit Renkerba4e58e2006-11-27 11:10:57 -08001452 return ipv6_setsockopt(sk, level, optname, optval, optlen);
Dmitry Mishin3fdadf72006-03-20 22:45:21 -08001453}
1454
1455#ifdef CONFIG_COMPAT
Gerrit Renkerba4e58e2006-11-27 11:10:57 -08001456int compat_udpv6_setsockopt(struct sock *sk, int level, int optname,
David S. Millerb7058842009-09-30 16:12:20 -07001457 char __user *optval, unsigned int optlen)
Dmitry Mishin3fdadf72006-03-20 22:45:21 -08001458{
David S. Millerdb8dac22008-03-06 16:22:02 -08001459 if (level == SOL_UDP || level == SOL_UDPLITE)
Gerrit Renker4c0a6cb2006-11-27 09:29:59 -08001460 return udp_lib_setsockopt(sk, level, optname, optval, optlen,
1461 udp_v6_push_pending_frames);
Gerrit Renkerba4e58e2006-11-27 11:10:57 -08001462 return compat_ipv6_setsockopt(sk, level, optname, optval, optlen);
Dmitry Mishin3fdadf72006-03-20 22:45:21 -08001463}
1464#endif
1465
Gerrit Renkerba4e58e2006-11-27 11:10:57 -08001466int udpv6_getsockopt(struct sock *sk, int level, int optname,
1467 char __user *optval, int __user *optlen)
Dmitry Mishin3fdadf72006-03-20 22:45:21 -08001468{
David S. Millerdb8dac22008-03-06 16:22:02 -08001469 if (level == SOL_UDP || level == SOL_UDPLITE)
Gerrit Renker4c0a6cb2006-11-27 09:29:59 -08001470 return udp_lib_getsockopt(sk, level, optname, optval, optlen);
Gerrit Renkerba4e58e2006-11-27 11:10:57 -08001471 return ipv6_getsockopt(sk, level, optname, optval, optlen);
Dmitry Mishin3fdadf72006-03-20 22:45:21 -08001472}
1473
1474#ifdef CONFIG_COMPAT
Gerrit Renkerba4e58e2006-11-27 11:10:57 -08001475int compat_udpv6_getsockopt(struct sock *sk, int level, int optname,
1476 char __user *optval, int __user *optlen)
Dmitry Mishin3fdadf72006-03-20 22:45:21 -08001477{
David S. Millerdb8dac22008-03-06 16:22:02 -08001478 if (level == SOL_UDP || level == SOL_UDPLITE)
Gerrit Renker4c0a6cb2006-11-27 09:29:59 -08001479 return udp_lib_getsockopt(sk, level, optname, optval, optlen);
Gerrit Renkerba4e58e2006-11-27 11:10:57 -08001480 return compat_ipv6_getsockopt(sk, level, optname, optval, optlen);
Dmitry Mishin3fdadf72006-03-20 22:45:21 -08001481}
1482#endif
1483
David Aherna8e3bb32017-08-28 15:14:20 -07001484/* thinking of making this const? Don't.
1485 * early_demux can change based on sysctl.
1486 */
subashab@codeaurora.orgdddb64b2017-03-23 13:34:16 -06001487static struct inet6_protocol udpv6_protocol = {
subashab@codeaurora.org54250772017-03-08 16:36:49 -07001488 .early_demux = udp_v6_early_demux,
subashab@codeaurora.orgdddb64b2017-03-23 13:34:16 -06001489 .early_demux_handler = udp_v6_early_demux,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001490 .handler = udpv6_rcv,
1491 .err_handler = udpv6_err,
1492 .flags = INET6_PROTO_NOPOLICY|INET6_PROTO_FINAL,
1493};
1494
1495/* ------------------------------------------------------------------------ */
1496#ifdef CONFIG_PROC_FS
Gerrit Renkerba4e58e2006-11-27 11:10:57 -08001497int udp6_seq_show(struct seq_file *seq, void *v)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001498{
Lorenzo Colitti17ef66af2013-05-31 15:05:48 +00001499 if (v == SEQ_START_TOKEN) {
1500 seq_puts(seq, IPV6_SEQ_DGRAM_HEADER);
1501 } else {
1502 int bucket = ((struct udp_iter_state *)seq->private)->bucket;
1503 struct inet_sock *inet = inet_sk(v);
1504 __u16 srcp = ntohs(inet->inet_sport);
1505 __u16 destp = ntohs(inet->inet_dport);
1506 ip6_dgram_sock_seq_show(seq, v, srcp, destp, bucket);
1507 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001508 return 0;
1509}
1510
Arjan van de Ven73cb88e2011-10-30 06:46:30 +00001511static const struct file_operations udp6_afinfo_seq_fops = {
1512 .owner = THIS_MODULE,
1513 .open = udp_seq_open,
1514 .read = seq_read,
1515 .llseek = seq_lseek,
1516 .release = seq_release_net
1517};
1518
Linus Torvalds1da177e2005-04-16 15:20:36 -07001519static struct udp_seq_afinfo udp6_seq_afinfo = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001520 .name = "udp6",
1521 .family = AF_INET6,
Eric Dumazet645ca702008-10-29 01:41:45 -07001522 .udp_table = &udp_table,
Arjan van de Ven73cb88e2011-10-30 06:46:30 +00001523 .seq_fops = &udp6_afinfo_seq_fops,
Denis V. Lunevdda61922008-03-28 18:24:26 -07001524 .seq_ops = {
1525 .show = udp6_seq_show,
1526 },
Linus Torvalds1da177e2005-04-16 15:20:36 -07001527};
1528
Alexey Dobriyan2c8c1e72010-01-17 03:35:32 +00001529int __net_init udp6_proc_init(struct net *net)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001530{
Daniel Lezcano0c96d8c2008-03-21 04:14:17 -07001531 return udp_proc_register(net, &udp6_seq_afinfo);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001532}
1533
Ian Morrisec120da2015-08-14 22:43:38 +01001534void udp6_proc_exit(struct net *net)
1535{
Daniel Lezcano0c96d8c2008-03-21 04:14:17 -07001536 udp_proc_unregister(net, &udp6_seq_afinfo);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001537}
1538#endif /* CONFIG_PROC_FS */
1539
1540/* ------------------------------------------------------------------------ */
1541
1542struct proto udpv6_prot = {
Arnaldo Carvalho de Melo543d9cf2006-03-20 22:48:35 -08001543 .name = "UDPv6",
1544 .owner = THIS_MODULE,
Gerrit Renkerba4e58e2006-11-27 11:10:57 -08001545 .close = udp_lib_close,
Arnaldo Carvalho de Melo543d9cf2006-03-20 22:48:35 -08001546 .connect = ip6_datagram_connect,
1547 .disconnect = udp_disconnect,
1548 .ioctl = udp_ioctl,
Paolo Abeni850cbad2016-10-21 13:55:47 +02001549 .init = udp_init_sock,
Arnaldo Carvalho de Melo543d9cf2006-03-20 22:48:35 -08001550 .destroy = udpv6_destroy_sock,
1551 .setsockopt = udpv6_setsockopt,
1552 .getsockopt = udpv6_getsockopt,
1553 .sendmsg = udpv6_sendmsg,
1554 .recvmsg = udpv6_recvmsg,
Martin KaFai Laue646b652016-04-11 15:29:37 -07001555 .release_cb = ip6_datagram_release_cb,
Gerrit Renkerba4e58e2006-11-27 11:10:57 -08001556 .hash = udp_lib_hash,
1557 .unhash = udp_lib_unhash,
Eric Dumazet719f8352010-09-08 05:08:44 +00001558 .rehash = udp_v6_rehash,
Arnaldo Carvalho de Melo543d9cf2006-03-20 22:48:35 -08001559 .get_port = udp_v6_get_port,
Hideo Aoki95766ff2007-12-31 00:29:24 -08001560 .memory_allocated = &udp_memory_allocated,
1561 .sysctl_mem = sysctl_udp_mem,
1562 .sysctl_wmem = &sysctl_udp_wmem_min,
1563 .sysctl_rmem = &sysctl_udp_rmem_min,
Arnaldo Carvalho de Melo543d9cf2006-03-20 22:48:35 -08001564 .obj_size = sizeof(struct udp6_sock),
Eric Dumazet645ca702008-10-29 01:41:45 -07001565 .h.udp_table = &udp_table,
Dmitry Mishin3fdadf72006-03-20 22:45:21 -08001566#ifdef CONFIG_COMPAT
Arnaldo Carvalho de Melo543d9cf2006-03-20 22:48:35 -08001567 .compat_setsockopt = compat_udpv6_setsockopt,
1568 .compat_getsockopt = compat_udpv6_getsockopt,
Dmitry Mishin3fdadf72006-03-20 22:45:21 -08001569#endif
David Ahern5d77dca2016-08-23 21:06:33 -07001570 .diag_destroy = udp_abort,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001571};
1572
Linus Torvalds1da177e2005-04-16 15:20:36 -07001573static struct inet_protosw udpv6_protosw = {
1574 .type = SOCK_DGRAM,
1575 .protocol = IPPROTO_UDP,
1576 .prot = &udpv6_prot,
1577 .ops = &inet6_dgram_ops,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001578 .flags = INET_PROTOSW_PERMANENT,
1579};
1580
Daniel Lezcano7f4e4862007-12-11 02:25:35 -08001581int __init udpv6_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001582{
Daniel Lezcano7f4e4862007-12-11 02:25:35 -08001583 int ret;
1584
Vlad Yasevich33362882012-11-15 08:49:15 +00001585 ret = inet6_add_protocol(&udpv6_protocol, IPPROTO_UDP);
1586 if (ret)
Vlad Yasevichc6b641a2012-11-15 08:49:22 +00001587 goto out;
Vlad Yasevich33362882012-11-15 08:49:15 +00001588
Daniel Lezcano7f4e4862007-12-11 02:25:35 -08001589 ret = inet6_register_protosw(&udpv6_protosw);
1590 if (ret)
1591 goto out_udpv6_protocol;
1592out:
1593 return ret;
1594
1595out_udpv6_protocol:
1596 inet6_del_protocol(&udpv6_protocol, IPPROTO_UDP);
1597 goto out;
1598}
1599
Daniel Lezcano09f77092007-12-13 05:34:58 -08001600void udpv6_exit(void)
Daniel Lezcano7f4e4862007-12-11 02:25:35 -08001601{
1602 inet6_unregister_protosw(&udpv6_protosw);
1603 inet6_del_protocol(&udpv6_protocol, IPPROTO_UDP);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001604}