blob: 04862abfe4ec27d978adadd27735a9d19e3c4365 [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,
Robert Shearman63a6fff2017-01-26 18:02:24 +0000132 int dif, 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) {
Joe Perches60c04ae2014-12-01 20:29:06 -0800164 if (sk->sk_bound_dev_if != dif)
165 return -1;
166 score++;
167 }
168
Eric Dumazet70da2682015-10-08 19:33:21 -0700169 if (sk->sk_incoming_cpu == raw_smp_processor_id())
170 score++;
171
Eric Dumazet645ca702008-10-29 01:41:45 -0700172 return score;
173}
174
Su, Xuemind1e37282016-06-13 11:02:50 +0800175/* called with rcu_read_lock() */
Eric Dumazetfddc17d2009-11-08 10:18:30 +0000176static 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,
Robert Shearman63a6fff2017-01-26 18:02:24 +0000179 bool exact_dif, struct udp_hslot *hslot2,
Craig Gallek11341582016-01-05 15:08:07 -0500180 struct sk_buff *skb)
Eric Dumazetfddc17d2009-11-08 10:18:30 +0000181{
182 struct sock *sk, *result;
Tom Herbert72289b92013-01-22 09:50:44 +0000183 int score, badness, matches = 0, reuseport = 0;
184 u32 hash = 0;
Eric Dumazetfddc17d2009-11-08 10:18:30 +0000185
Eric Dumazetfddc17d2009-11-08 10:18:30 +0000186 result = NULL;
187 badness = -1;
Eric Dumazetca065d02016-04-01 08:52:13 -0700188 udp_portaddr_for_each_entry_rcu(sk, &hslot2->head) {
Su, Xuemind1e37282016-06-13 11:02:50 +0800189 score = compute_score(sk, net, saddr, sport,
Robert Shearman63a6fff2017-01-26 18:02:24 +0000190 daddr, hnum, dif, exact_dif);
Eric Dumazetfddc17d2009-11-08 10:18:30 +0000191 if (score > badness) {
Tom Herbert72289b92013-01-22 09:50:44 +0000192 reuseport = sk->sk_reuseport;
193 if (reuseport) {
Hannes Frederic Sowab50026b2013-10-19 21:48:52 +0200194 hash = udp6_ehashfn(net, daddr, hnum,
195 saddr, sport);
Eric Dumazeted0dfff2016-01-19 08:36:43 -0800196
Eric Dumazetca065d02016-04-01 08:52:13 -0700197 result = reuseport_select_sock(sk, hash, skb,
Eric Dumazeted0dfff2016-01-19 08:36:43 -0800198 sizeof(struct udphdr));
Eric Dumazetca065d02016-04-01 08:52:13 -0700199 if (result)
200 return result;
Tom Herbert72289b92013-01-22 09:50:44 +0000201 matches = 1;
Eric Dumazet70da2682015-10-08 19:33:21 -0700202 }
Eric Dumazetca065d02016-04-01 08:52:13 -0700203 result = sk;
204 badness = score;
Tom Herbert72289b92013-01-22 09:50:44 +0000205 } else if (score == badness && reuseport) {
206 matches++;
Daniel Borkmann8fc54f62014-08-23 20:58:54 +0200207 if (reciprocal_scale(hash, matches) == 0)
Tom Herbert72289b92013-01-22 09:50:44 +0000208 result = sk;
209 hash = next_pseudo_random32(hash);
Eric Dumazetfddc17d2009-11-08 10:18:30 +0000210 }
211 }
Eric Dumazetfddc17d2009-11-08 10:18:30 +0000212 return result;
213}
214
Eric Dumazetca065d02016-04-01 08:52:13 -0700215/* rcu_read_lock() must be held */
Pavel Emelyanovfce82332011-12-09 06:23:34 +0000216struct sock *__udp6_lib_lookup(struct net *net,
Balazs Scheidler88440ae2010-10-21 16:04:33 +0200217 const struct in6_addr *saddr, __be16 sport,
218 const struct in6_addr *daddr, __be16 dport,
Craig Gallek538950a2016-01-04 17:41:47 -0500219 int dif, struct udp_table *udptable,
220 struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700221{
Eric Dumazet271b72c2008-10-29 02:11:14 -0700222 struct sock *sk, *result;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700223 unsigned short hnum = ntohs(dport);
Eric Dumazetfddc17d2009-11-08 10:18:30 +0000224 unsigned int hash2, slot2, slot = udp_hashfn(net, hnum, udptable->mask);
225 struct udp_hslot *hslot2, *hslot = &udptable->hash[slot];
Robert Shearman63a6fff2017-01-26 18:02:24 +0000226 bool exact_dif = udp6_lib_exact_dif_match(net, skb);
Tom Herbert72289b92013-01-22 09:50:44 +0000227 int score, badness, matches = 0, reuseport = 0;
228 u32 hash = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700229
Eric Dumazetfddc17d2009-11-08 10:18:30 +0000230 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,
Robert Shearman63a6fff2017-01-26 18:02:24 +0000238 daddr, hnum, dif, exact_dif,
Su, Xuemind1e37282016-06-13 11:02:50 +0800239 hslot2, skb);
Eric Dumazetfddc17d2009-11-08 10:18:30 +0000240 if (!result) {
Su, Xuemind1e37282016-06-13 11:02:50 +0800241 unsigned int old_slot2 = slot2;
Eric Dumazetfddc17d2009-11-08 10:18:30 +0000242 hash2 = udp6_portaddr_hash(net, &in6addr_any, hnum);
243 slot2 = hash2 & udptable->mask;
Su, Xuemind1e37282016-06-13 11:02:50 +0800244 /* avoid searching the same slot again. */
245 if (unlikely(slot2 == old_slot2))
246 return result;
247
Eric Dumazetfddc17d2009-11-08 10:18:30 +0000248 hslot2 = &udptable->hash2[slot2];
249 if (hslot->count < hslot2->count)
250 goto begin;
251
Jorge Boncompte [DTI2]1223c672010-04-08 04:56:48 +0000252 result = udp6_lib_lookup2(net, saddr, sport,
Su, Xuemind1e37282016-06-13 11:02:50 +0800253 daddr, hnum, dif,
Robert Shearman63a6fff2017-01-26 18:02:24 +0000254 exact_dif, hslot2,
255 skb);
Eric Dumazetfddc17d2009-11-08 10:18:30 +0000256 }
Eric Dumazetfddc17d2009-11-08 10:18:30 +0000257 return result;
258 }
Eric Dumazet271b72c2008-10-29 02:11:14 -0700259begin:
260 result = NULL;
261 badness = -1;
Eric Dumazetca065d02016-04-01 08:52:13 -0700262 sk_for_each_rcu(sk, &hslot->head) {
Robert Shearman63a6fff2017-01-26 18:02:24 +0000263 score = compute_score(sk, net, saddr, sport, daddr, hnum, dif,
264 exact_dif);
Eric Dumazet645ca702008-10-29 01:41:45 -0700265 if (score > badness) {
Tom Herbert72289b92013-01-22 09:50:44 +0000266 reuseport = sk->sk_reuseport;
267 if (reuseport) {
Hannes Frederic Sowab50026b2013-10-19 21:48:52 +0200268 hash = udp6_ehashfn(net, daddr, hnum,
269 saddr, sport);
Eric Dumazetca065d02016-04-01 08:52:13 -0700270 result = reuseport_select_sock(sk, hash, skb,
Craig Gallek538950a2016-01-04 17:41:47 -0500271 sizeof(struct udphdr));
Eric Dumazetca065d02016-04-01 08:52:13 -0700272 if (result)
273 return result;
Tom Herbert72289b92013-01-22 09:50:44 +0000274 matches = 1;
275 }
Eric Dumazetca065d02016-04-01 08:52:13 -0700276 result = sk;
277 badness = score;
Tom Herbert72289b92013-01-22 09:50:44 +0000278 } else if (score == badness && reuseport) {
279 matches++;
Daniel Borkmann8fc54f62014-08-23 20:58:54 +0200280 if (reciprocal_scale(hash, matches) == 0)
Tom Herbert72289b92013-01-22 09:50:44 +0000281 result = sk;
282 hash = next_pseudo_random32(hash);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700283 }
284 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700285 return result;
286}
Pavel Emelyanovfce82332011-12-09 06:23:34 +0000287EXPORT_SYMBOL_GPL(__udp6_lib_lookup);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700288
KOVACS Krisztian607c4aa2008-10-07 12:38:32 -0700289static struct sock *__udp6_lib_lookup_skb(struct sk_buff *skb,
290 __be16 sport, __be16 dport,
Eric Dumazet645ca702008-10-29 01:41:45 -0700291 struct udp_table *udptable)
KOVACS Krisztian607c4aa2008-10-07 12:38:32 -0700292{
Eric Dumazetb71d1d42011-04-22 04:53:02 +0000293 const struct ipv6hdr *iph = ipv6_hdr(skb);
Alexander Duycked7cbbc2016-05-12 16:23:44 -0700294 struct sock *sk;
KOVACS Krisztian607c4aa2008-10-07 12:38:32 -0700295
Ian Morrise5d08d72014-11-23 21:28:43 +0000296 sk = skb_steal_sock(skb);
297 if (unlikely(sk))
KOVACS Krisztian23542612008-10-07 12:41:01 -0700298 return sk;
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),
Craig Gallek538950a2016-01-04 17:41:47 -0500301 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),
311 &udp_table, skb);
312}
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,
327 dif, &udp_table, NULL);
328 if (sk && !atomic_inc_not_zero(&sk->sk_refcnt))
329 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
Linus Torvalds1da177e2005-04-16 15:20:36 -0700335/*
Ian Morris67ba4152014-08-24 21:53:10 +0100336 * This should be easy, if there is something there we
337 * return it, otherwise we block.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700338 */
339
Ying Xue1b784142015-03-02 15:37:48 +0800340int udpv6_recvmsg(struct sock *sk, struct msghdr *msg, size_t len,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700341 int noblock, int flags, int *addr_len)
342{
343 struct ipv6_pinfo *np = inet6_sk(sk);
344 struct inet_sock *inet = inet_sk(sk);
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900345 struct sk_buff *skb;
David S. Miller59c2cda2011-12-01 14:12:55 -0500346 unsigned int ulen, copied;
samanthakumar627d2d62016-04-05 12:41:16 -0400347 int peeked, peeking, off;
Herbert Xu759e5d02007-03-25 20:10:56 -0700348 int err;
349 int is_udplite = IS_UDPLITE(sk);
Eric Dumazet197c9492015-12-30 08:51:12 -0500350 bool checksum_valid = false;
Wei Yongjunf26ba172008-11-02 16:11:01 +0000351 int is_udp4;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700352
Linus Torvalds1da177e2005-04-16 15:20:36 -0700353 if (flags & MSG_ERRQUEUE)
Hannes Frederic Sowa85fbaa72013-11-23 00:46:12 +0100354 return ipv6_recv_error(sk, msg, len, addr_len);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700355
Brian Haley4b340ae2010-04-23 11:26:09 +0000356 if (np->rxpmtu && np->rxopt.bits.rxpmtu)
Hannes Frederic Sowa85fbaa72013-11-23 00:46:12 +0100357 return ipv6_recv_rxpmtu(sk, msg, len, addr_len);
Brian Haley4b340ae2010-04-23 11:26:09 +0000358
Linus Torvalds1da177e2005-04-16 15:20:36 -0700359try_again:
samanthakumar627d2d62016-04-05 12:41:16 -0400360 peeking = off = sk_peek_offset(sk, flags);
Paolo Abeni7c13f972016-11-04 11:28:59 +0100361 skb = __skb_recv_udp(sk, flags, noblock, &peeked, &off, &err);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700362 if (!skb)
samanthakumar627d2d62016-04-05 12:41:16 -0400363 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700364
samanthakumare6afc8a2016-04-05 12:41:15 -0400365 ulen = skb->len;
David S. Miller59c2cda2011-12-01 14:12:55 -0500366 copied = len;
samanthakumar627d2d62016-04-05 12:41:16 -0400367 if (copied > ulen - off)
368 copied = ulen - off;
David S. Miller59c2cda2011-12-01 14:12:55 -0500369 else if (copied < ulen)
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900370 msg->msg_flags |= MSG_TRUNC;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700371
Wei Yongjunf26ba172008-11-02 16:11:01 +0000372 is_udp4 = (skb->protocol == htons(ETH_P_IP));
373
Gerrit Renkerba4e58e2006-11-27 11:10:57 -0800374 /*
Herbert Xu759e5d02007-03-25 20:10:56 -0700375 * If checksum is needed at all, try to do it while copying the
376 * data. If the data is truncated, or if we only want a partial
377 * coverage checksum (UDP-Lite), do it before the copy.
Gerrit Renkerba4e58e2006-11-27 11:10:57 -0800378 */
Gerrit Renkerba4e58e2006-11-27 11:10:57 -0800379
Eric Dumazetd21dbdf2016-11-18 17:18:03 -0800380 if (copied < ulen || peeking ||
381 (is_udplite && UDP_SKB_CB(skb)->partial_cov)) {
Eric Dumazet197c9492015-12-30 08:51:12 -0500382 checksum_valid = !udp_lib_checksum_complete(skb);
383 if (!checksum_valid)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700384 goto csum_copy_err;
Gerrit Renkerba4e58e2006-11-27 11:10:57 -0800385 }
386
Eric Dumazet197c9492015-12-30 08:51:12 -0500387 if (checksum_valid || skb_csum_unnecessary(skb))
samanthakumar627d2d62016-04-05 12:41:16 -0400388 err = skb_copy_datagram_msg(skb, off, msg, copied);
Gerrit Renkerba4e58e2006-11-27 11:10:57 -0800389 else {
samanthakumar627d2d62016-04-05 12:41:16 -0400390 err = skb_copy_and_csum_datagram_msg(skb, off, msg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700391 if (err == -EINVAL)
392 goto csum_copy_err;
393 }
Eric Dumazet22911fc2012-06-27 00:23:44 +0000394 if (unlikely(err)) {
Eric Dumazet979402b2012-09-05 23:34:44 +0000395 if (!peeked) {
396 atomic_inc(&sk->sk_drops);
397 if (is_udp4)
Eric Dumazet6aef70a2016-04-27 16:44:27 -0700398 UDP_INC_STATS(sock_net(sk), UDP_MIB_INERRORS,
399 is_udplite);
Eric Dumazet979402b2012-09-05 23:34:44 +0000400 else
Eric Dumazet6aef70a2016-04-27 16:44:27 -0700401 UDP6_INC_STATS(sock_net(sk), UDP_MIB_INERRORS,
402 is_udplite);
Eric Dumazet979402b2012-09-05 23:34:44 +0000403 }
Paolo Abeni850cbad2016-10-21 13:55:47 +0200404 kfree_skb(skb);
samanthakumar627d2d62016-04-05 12:41:16 -0400405 return err;
Eric Dumazet22911fc2012-06-27 00:23:44 +0000406 }
Wei Yongjunf26ba172008-11-02 16:11:01 +0000407 if (!peeked) {
408 if (is_udp4)
Eric Dumazet6aef70a2016-04-27 16:44:27 -0700409 UDP_INC_STATS(sock_net(sk), UDP_MIB_INDATAGRAMS,
410 is_udplite);
Wei Yongjunf26ba172008-11-02 16:11:01 +0000411 else
Eric Dumazet6aef70a2016-04-27 16:44:27 -0700412 UDP6_INC_STATS(sock_net(sk), UDP_MIB_INDATAGRAMS,
413 is_udplite);
Wei Yongjunf26ba172008-11-02 16:11:01 +0000414 }
Wang Chencb759942007-12-03 22:33:28 +1100415
Neil Horman3b885782009-10-12 13:26:31 -0700416 sock_recv_ts_and_drops(msg, sk, skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700417
418 /* Copy the address. */
419 if (msg->msg_name) {
Steffen Hurrle342dfc32014-01-17 22:53:15 +0100420 DECLARE_SOCKADDR(struct sockaddr_in6 *, sin6, msg->msg_name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700421 sin6->sin6_family = AF_INET6;
Arnaldo Carvalho de Melo4bedb452007-03-13 14:28:48 -0300422 sin6->sin6_port = udp_hdr(skb)->source;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700423 sin6->sin6_flowinfo = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700424
Hannes Frederic Sowa842df072013-03-08 02:07:19 +0000425 if (is_udp4) {
Brian Haleyb301e822009-10-07 13:58:25 -0700426 ipv6_addr_set_v4mapped(ip_hdr(skb)->saddr,
427 &sin6->sin6_addr);
Hannes Frederic Sowa842df072013-03-08 02:07:19 +0000428 sin6->sin6_scope_id = 0;
429 } else {
Alexey Dobriyan4e3fd7a2011-11-21 03:39:03 +0000430 sin6->sin6_addr = ipv6_hdr(skb)->saddr;
Hannes Frederic Sowa842df072013-03-08 02:07:19 +0000431 sin6->sin6_scope_id =
432 ipv6_iface_scope_id(&sin6->sin6_addr,
Duan Jiong43304872014-08-01 09:52:58 +0800433 inet6_iif(skb));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700434 }
Hannes Frederic Sowabceaa902013-11-18 04:20:45 +0100435 *addr_len = sizeof(*sin6);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700436 }
Hannes Frederic Sowa4b261c752014-01-20 03:43:08 +0100437
438 if (np->rxopt.all)
439 ip6_datagram_recv_common_ctl(sk, msg, skb);
440
Wei Yongjunf26ba172008-11-02 16:11:01 +0000441 if (is_udp4) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700442 if (inet->cmsg_flags)
Paolo Abeniad959032016-11-04 11:28:58 +0100443 ip_cmsg_recv_offset(msg, sk, skb,
Eric Dumazet10df8e62016-10-23 18:03:06 -0700444 sizeof(struct udphdr), off);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700445 } else {
446 if (np->rxopt.all)
Hannes Frederic Sowa4b261c752014-01-20 03:43:08 +0100447 ip6_datagram_recv_specific_ctl(sk, msg, skb);
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900448 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700449
David S. Miller59c2cda2011-12-01 14:12:55 -0500450 err = copied;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700451 if (flags & MSG_TRUNC)
Herbert Xu759e5d02007-03-25 20:10:56 -0700452 err = ulen;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700453
Paolo Abeni850cbad2016-10-21 13:55:47 +0200454 skb_consume_udp(sk, skb, peeking ? -err : err);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700455 return err;
456
457csum_copy_err:
Eric Dumazet69629462017-02-05 09:25:24 -0800458 if (!__sk_queue_drop_skb(sk, skb, flags, udp_skb_destructor)) {
Eric Dumazet6a5dc9e2013-04-29 08:39:56 +0000459 if (is_udp4) {
Eric Dumazet6aef70a2016-04-27 16:44:27 -0700460 UDP_INC_STATS(sock_net(sk),
461 UDP_MIB_CSUMERRORS, is_udplite);
462 UDP_INC_STATS(sock_net(sk),
463 UDP_MIB_INERRORS, is_udplite);
Eric Dumazet6a5dc9e2013-04-29 08:39:56 +0000464 } else {
Eric Dumazet6aef70a2016-04-27 16:44:27 -0700465 UDP6_INC_STATS(sock_net(sk),
466 UDP_MIB_CSUMERRORS, is_udplite);
467 UDP6_INC_STATS(sock_net(sk),
468 UDP_MIB_INERRORS, is_udplite);
Eric Dumazet6a5dc9e2013-04-29 08:39:56 +0000469 }
Wei Yongjun0856f932008-11-02 16:14:27 +0000470 }
Paolo Abeni850cbad2016-10-21 13:55:47 +0200471 kfree_skb(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700472
Eric Dumazetbeb39db2015-05-30 09:16:53 -0700473 /* starting over for a new packet, but check if we need to yield */
474 cond_resched();
Xufeng Zhang9cfaa8d2011-06-21 10:43:40 +0000475 msg->msg_flags &= ~MSG_TRUNC;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700476 goto try_again;
477}
478
Gerrit Renkerba4e58e2006-11-27 11:10:57 -0800479void __udp6_lib_err(struct sk_buff *skb, struct inet6_skb_parm *opt,
Brian Haleyd5fdd6b2009-06-23 04:31:07 -0700480 u8 type, u8 code, int offset, __be32 info,
Eric Dumazet645ca702008-10-29 01:41:45 -0700481 struct udp_table *udptable)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700482{
483 struct ipv6_pinfo *np;
Eric Dumazetb71d1d42011-04-22 04:53:02 +0000484 const struct ipv6hdr *hdr = (const struct ipv6hdr *)skb->data;
485 const struct in6_addr *saddr = &hdr->saddr;
486 const struct in6_addr *daddr = &hdr->daddr;
Ian Morris67ba4152014-08-24 21:53:10 +0100487 struct udphdr *uh = (struct udphdr *)(skb->data+offset);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700488 struct sock *sk;
Wei Wange0d8c1b2016-02-17 13:58:22 -0800489 int harderr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700490 int err;
Duan Jiong7304fe42014-07-31 17:54:32 +0800491 struct net *net = dev_net(skb->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700492
Craig Galleke32ea7e2016-01-04 17:41:46 -0500493 sk = __udp6_lib_lookup(net, daddr, uh->dest, saddr, uh->source,
Craig Gallek538950a2016-01-04 17:41:47 -0500494 inet6_iif(skb), udptable, skb);
Ian Morris63159f22015-03-29 14:00:04 +0100495 if (!sk) {
Eric Dumazeta16292a2016-04-27 16:44:36 -0700496 __ICMP6_INC_STATS(net, __in6_dev_get(skb->dev),
497 ICMP6_MIB_INERRORS);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700498 return;
Duan Jiong7304fe42014-07-31 17:54:32 +0800499 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700500
Wei Wange0d8c1b2016-02-17 13:58:22 -0800501 harderr = icmpv6_err_convert(type, code, &err);
502 np = inet6_sk(sk);
503
Hannes Frederic Sowa93b36cf2013-12-15 03:41:14 +0100504 if (type == ICMPV6_PKT_TOOBIG) {
505 if (!ip6_sk_accept_pmtu(sk))
506 goto out;
David S. Miller81aded22012-06-15 14:54:11 -0700507 ip6_sk_update_pmtu(skb, sk, info);
Wei Wange0d8c1b2016-02-17 13:58:22 -0800508 if (np->pmtudisc != IPV6_PMTUDISC_DONT)
509 harderr = 1;
Hannes Frederic Sowa93b36cf2013-12-15 03:41:14 +0100510 }
Duan Jiong1a462d12013-09-20 18:20:28 +0800511 if (type == NDISC_REDIRECT) {
David S. Millerec18d9a2012-07-12 00:25:15 -0700512 ip6_sk_redirect(skb, sk);
Duan Jiong1a462d12013-09-20 18:20:28 +0800513 goto out;
514 }
David S. Miller81aded22012-06-15 14:54:11 -0700515
Wei Wange0d8c1b2016-02-17 13:58:22 -0800516 if (!np->recverr) {
517 if (!harderr || sk->sk_state != TCP_ESTABLISHED)
518 goto out;
519 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700520 ipv6_icmp_error(sk, skb, err, uh->dest, ntohl(info), (u8 *)(uh+1));
Wei Wange0d8c1b2016-02-17 13:58:22 -0800521 }
Eric Dumazetb1faf562010-05-31 23:44:05 -0700522
Linus Torvalds1da177e2005-04-16 15:20:36 -0700523 sk->sk_err = err;
524 sk->sk_error_report(sk);
525out:
Eric Dumazetca065d02016-04-01 08:52:13 -0700526 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700527}
528
Eric Dumazet30c7be22016-11-22 09:06:45 -0800529int __udpv6_queue_rcv_skb(struct sock *sk, struct sk_buff *skb)
Benjamin LaHaisef7ad74f2012-04-27 08:23:21 +0000530{
531 int rc;
532
Eric Dumazetefe42082013-10-03 15:42:29 -0700533 if (!ipv6_addr_any(&sk->sk_v6_daddr)) {
Benjamin LaHaisef7ad74f2012-04-27 08:23:21 +0000534 sock_rps_save_rxhash(sk, skb);
Shawn Bohrer005ec972013-10-07 11:01:38 -0500535 sk_mark_napi_id(sk, skb);
Eric Dumazet2c8c56e2014-11-11 05:54:28 -0800536 sk_incoming_cpu_update(sk);
Eric Dumazete68b6e52016-11-16 09:10:42 -0800537 } else {
538 sk_mark_napi_id_once(sk, skb);
Shawn Bohrer005ec972013-10-07 11:01:38 -0500539 }
Benjamin LaHaisef7ad74f2012-04-27 08:23:21 +0000540
Paolo Abeni850cbad2016-10-21 13:55:47 +0200541 rc = __udp_enqueue_schedule_skb(sk, skb);
Benjamin LaHaisef7ad74f2012-04-27 08:23:21 +0000542 if (rc < 0) {
543 int is_udplite = IS_UDPLITE(sk);
544
545 /* Note that an ENOMEM error is charged twice */
546 if (rc == -ENOMEM)
Eric Dumazete61da9e2016-04-29 14:16:50 -0700547 UDP6_INC_STATS(sock_net(sk),
Eric Dumazet02c22342016-04-27 16:44:30 -0700548 UDP_MIB_RCVBUFERRORS, is_udplite);
Eric Dumazete61da9e2016-04-29 14:16:50 -0700549 UDP6_INC_STATS(sock_net(sk), UDP_MIB_INERRORS, is_udplite);
Benjamin LaHaisef7ad74f2012-04-27 08:23:21 +0000550 kfree_skb(skb);
551 return -1;
552 }
Paolo Abeni850cbad2016-10-21 13:55:47 +0200553
Benjamin LaHaisef7ad74f2012-04-27 08:23:21 +0000554 return 0;
555}
556
Gerrit Renkerba4e58e2006-11-27 11:10:57 -0800557static __inline__ void udpv6_err(struct sk_buff *skb,
Brian Haleyd5fdd6b2009-06-23 04:31:07 -0700558 struct inet6_skb_parm *opt, u8 type,
Ian Morris67ba4152014-08-24 21:53:10 +0100559 u8 code, int offset, __be32 info)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700560{
Eric Dumazet645ca702008-10-29 01:41:45 -0700561 __udp6_lib_err(skb, opt, type, code, offset, info, &udp_table);
Gerrit Renkerba4e58e2006-11-27 11:10:57 -0800562}
563
Benjamin LaHaised7f3f622012-04-27 08:24:08 +0000564static struct static_key udpv6_encap_needed __read_mostly;
565void udpv6_encap_enable(void)
566{
567 if (!static_key_enabled(&udpv6_encap_needed))
568 static_key_slow_inc(&udpv6_encap_needed);
569}
570EXPORT_SYMBOL(udpv6_encap_enable);
571
Benjamin LaHaisef7ad74f2012-04-27 08:23:21 +0000572int udpv6_queue_rcv_skb(struct sock *sk, struct sk_buff *skb)
Gerrit Renkerba4e58e2006-11-27 11:10:57 -0800573{
574 struct udp_sock *up = udp_sk(sk);
Wang Chenb2bf1e22007-12-03 22:34:16 +1100575 int is_udplite = IS_UDPLITE(sk);
David S. Millera18135e2006-08-15 00:00:09 -0700576
Gerrit Renkerba4e58e2006-11-27 11:10:57 -0800577 if (!xfrm6_policy_check(sk, XFRM_POLICY_IN, skb))
578 goto drop;
579
Benjamin LaHaised7f3f622012-04-27 08:24:08 +0000580 if (static_key_false(&udpv6_encap_needed) && up->encap_type) {
581 int (*encap_rcv)(struct sock *sk, struct sk_buff *skb);
582
583 /*
584 * This is an encapsulation socket so pass the skb to
585 * the socket's udp_encap_rcv() hook. Otherwise, just
586 * fall through and pass this up the UDP socket.
587 * up->encap_rcv() returns the following value:
588 * =0 if skb was successfully passed to the encap
589 * handler or was discarded by it.
590 * >0 if skb should be passed on to UDP.
591 * <0 if skb should be resubmitted as proto -N
592 */
593
594 /* if we're overly short, let UDP handle it */
595 encap_rcv = ACCESS_ONCE(up->encap_rcv);
Hannes Frederic Sowae5aed002016-05-19 15:58:33 +0200596 if (encap_rcv) {
Benjamin LaHaised7f3f622012-04-27 08:24:08 +0000597 int ret;
598
Tom Herbert0a809662014-05-07 16:52:39 -0700599 /* Verify checksum before giving to encap */
600 if (udp_lib_checksum_complete(skb))
601 goto csum_error;
602
Benjamin LaHaised7f3f622012-04-27 08:24:08 +0000603 ret = encap_rcv(sk, skb);
604 if (ret <= 0) {
Eric Dumazet02c22342016-04-27 16:44:30 -0700605 __UDP_INC_STATS(sock_net(sk),
606 UDP_MIB_INDATAGRAMS,
607 is_udplite);
Benjamin LaHaised7f3f622012-04-27 08:24:08 +0000608 return -ret;
609 }
610 }
611
612 /* FALLTHROUGH -- it's a UDP Packet */
613 }
614
Gerrit Renkerba4e58e2006-11-27 11:10:57 -0800615 /*
616 * UDP-Lite specific tests, ignored on UDP sockets (see net/ipv4/udp.c).
617 */
Wang Chenb2bf1e22007-12-03 22:34:16 +1100618 if ((is_udplite & UDPLITE_RECV_CC) && UDP_SKB_CB(skb)->partial_cov) {
Gerrit Renkerba4e58e2006-11-27 11:10:57 -0800619
620 if (up->pcrlen == 0) { /* full coverage was set */
Joe Perchesba7a46f2014-11-11 10:59:17 -0800621 net_dbg_ratelimited("UDPLITE6: partial coverage %d while full coverage %d requested\n",
622 UDP_SKB_CB(skb)->cscov, skb->len);
Gerrit Renkerba4e58e2006-11-27 11:10:57 -0800623 goto drop;
624 }
625 if (UDP_SKB_CB(skb)->cscov < up->pcrlen) {
Joe Perchesba7a46f2014-11-11 10:59:17 -0800626 net_dbg_ratelimited("UDPLITE6: coverage %d too small, need min %d\n",
627 UDP_SKB_CB(skb)->cscov, up->pcrlen);
Gerrit Renkerba4e58e2006-11-27 11:10:57 -0800628 goto drop;
629 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700630 }
631
Eric Dumazetce25d662016-06-02 14:52:43 -0700632 if (rcu_access_pointer(sk->sk_filter) &&
633 udp_lib_checksum_complete(skb))
634 goto csum_error;
635
Daniel Borkmannba66bbe2016-07-25 18:06:12 +0200636 if (sk_filter_trim_cap(sk, skb, sizeof(struct udphdr)))
Michal Kubečeka6127692016-07-08 17:52:33 +0200637 goto drop;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700638
samanthakumare6afc8a2016-04-05 12:41:15 -0400639 udp_csum_pull_header(skb);
Benjamin LaHaisecb80ef42012-04-27 08:23:59 +0000640
Eric Dumazetd826eb12011-11-09 07:24:35 +0000641 skb_dst_drop(skb);
Wang Chencb759942007-12-03 22:33:28 +1100642
Paolo Abeni850cbad2016-10-21 13:55:47 +0200643 return __udpv6_queue_rcv_skb(sk, skb);
James M Leddy3e215c82014-06-25 17:38:13 -0400644
Eric Dumazet6a5dc9e2013-04-29 08:39:56 +0000645csum_error:
Eric Dumazet02c22342016-04-27 16:44:30 -0700646 __UDP6_INC_STATS(sock_net(sk), UDP_MIB_CSUMERRORS, is_udplite);
Gerrit Renkerba4e58e2006-11-27 11:10:57 -0800647drop:
Eric Dumazet02c22342016-04-27 16:44:30 -0700648 __UDP6_INC_STATS(sock_net(sk), UDP_MIB_INERRORS, is_udplite);
Benjamin LaHaisecb80ef42012-04-27 08:23:59 +0000649 atomic_inc(&sk->sk_drops);
Gerrit Renkerba4e58e2006-11-27 11:10:57 -0800650 kfree_skb(skb);
651 return -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700652}
653
David Held5cf3d462014-07-15 23:28:31 -0400654static bool __udp_v6_is_mcast_sock(struct net *net, struct sock *sk,
655 __be16 loc_port, const struct in6_addr *loc_addr,
656 __be16 rmt_port, const struct in6_addr *rmt_addr,
657 int dif, unsigned short hnum)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700658{
David Held5cf3d462014-07-15 23:28:31 -0400659 struct inet_sock *inet = inet_sk(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700660
David Held5cf3d462014-07-15 23:28:31 -0400661 if (!net_eq(sock_net(sk), net))
662 return false;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700663
David Held5cf3d462014-07-15 23:28:31 -0400664 if (udp_sk(sk)->udp_port_hash != hnum ||
665 sk->sk_family != PF_INET6 ||
666 (inet->inet_dport && inet->inet_dport != rmt_port) ||
667 (!ipv6_addr_any(&sk->sk_v6_daddr) &&
668 !ipv6_addr_equal(&sk->sk_v6_daddr, rmt_addr)) ||
Henning Rogge33b4b012015-05-18 21:08:49 +0200669 (sk->sk_bound_dev_if && sk->sk_bound_dev_if != dif) ||
670 (!ipv6_addr_any(&sk->sk_v6_rcv_saddr) &&
671 !ipv6_addr_equal(&sk->sk_v6_rcv_saddr, loc_addr)))
David Held5cf3d462014-07-15 23:28:31 -0400672 return false;
673 if (!inet6_mc_check(sk, loc_addr, rmt_addr))
674 return false;
675 return true;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700676}
677
Tom Herbert40685792014-05-02 16:29:58 -0700678static void udp6_csum_zero_error(struct sk_buff *skb)
679{
680 /* RFC 2460 section 8.1 says that we SHOULD log
681 * this error. Well, it is reasonable.
682 */
Joe Perchesba7a46f2014-11-11 10:59:17 -0800683 net_dbg_ratelimited("IPv6: udp checksum is 0 for [%pI6c]:%u->[%pI6c]:%u\n",
684 &ipv6_hdr(skb)->saddr, ntohs(udp_hdr(skb)->source),
685 &ipv6_hdr(skb)->daddr, ntohs(udp_hdr(skb)->dest));
Tom Herbert40685792014-05-02 16:29:58 -0700686}
687
Linus Torvalds1da177e2005-04-16 15:20:36 -0700688/*
689 * Note: called only from the BH handler context,
690 * so we don't need to lock the hashes.
691 */
Pavel Emelyanove3163492008-06-16 17:12:11 -0700692static int __udp6_lib_mcast_deliver(struct net *net, struct sk_buff *skb,
Eric Dumazetb71d1d42011-04-22 04:53:02 +0000693 const struct in6_addr *saddr, const struct in6_addr *daddr,
Rick Jones36cbb242014-11-06 10:37:54 -0800694 struct udp_table *udptable, int proto)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700695{
Eric Dumazetca065d02016-04-01 08:52:13 -0700696 struct sock *sk, *first = NULL;
Arnaldo Carvalho de Melo4bedb452007-03-13 14:28:48 -0300697 const struct udphdr *uh = udp_hdr(skb);
David Held5cf3d462014-07-15 23:28:31 -0400698 unsigned short hnum = ntohs(uh->dest);
699 struct udp_hslot *hslot = udp_hashslot(udptable, net, hnum);
Eric Dumazetca065d02016-04-01 08:52:13 -0700700 unsigned int offset = offsetof(typeof(*sk), sk_node);
David Held2dc41cf2014-07-15 23:28:32 -0400701 unsigned int hash2 = 0, hash2_any = 0, use_hash2 = (hslot->count > 10);
Eric Dumazetca065d02016-04-01 08:52:13 -0700702 int dif = inet6_iif(skb);
703 struct hlist_node *node;
704 struct sk_buff *nskb;
David Held2dc41cf2014-07-15 23:28:32 -0400705
706 if (use_hash2) {
707 hash2_any = udp6_portaddr_hash(net, &in6addr_any, hnum) &
Pablo Neira73e2d5e2016-11-14 23:40:30 +0100708 udptable->mask;
709 hash2 = udp6_portaddr_hash(net, daddr, hnum) & udptable->mask;
David Held2dc41cf2014-07-15 23:28:32 -0400710start_lookup:
Pablo Neira73e2d5e2016-11-14 23:40:30 +0100711 hslot = &udptable->hash2[hash2];
David Held2dc41cf2014-07-15 23:28:32 -0400712 offset = offsetof(typeof(*sk), __sk_common.skc_portaddr_node);
713 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700714
Eric Dumazetca065d02016-04-01 08:52:13 -0700715 sk_for_each_entry_offset_rcu(sk, node, &hslot->head, offset) {
716 if (!__udp_v6_is_mcast_sock(net, sk, uh->dest, daddr,
717 uh->source, saddr, dif, hnum))
718 continue;
719 /* If zero checksum and no_check is not on for
720 * the socket then skip it.
721 */
722 if (!uh->check && !udp_sk(sk)->no_check6_rx)
723 continue;
724 if (!first) {
725 first = sk;
726 continue;
Hideo Aoki95766ff2007-12-31 00:29:24 -0800727 }
Eric Dumazetca065d02016-04-01 08:52:13 -0700728 nskb = skb_clone(skb, GFP_ATOMIC);
729 if (unlikely(!nskb)) {
730 atomic_inc(&sk->sk_drops);
Eric Dumazet02c22342016-04-27 16:44:30 -0700731 __UDP6_INC_STATS(net, UDP_MIB_RCVBUFERRORS,
732 IS_UDPLITE(sk));
733 __UDP6_INC_STATS(net, UDP_MIB_INERRORS,
734 IS_UDPLITE(sk));
Eric Dumazetca065d02016-04-01 08:52:13 -0700735 continue;
736 }
Eric Dumazeta1ab77f2009-11-08 10:18:52 +0000737
Eric Dumazetca065d02016-04-01 08:52:13 -0700738 if (udpv6_queue_rcv_skb(sk, nskb) > 0)
739 consume_skb(nskb);
740 }
Eric Dumazeta1ab77f2009-11-08 10:18:52 +0000741
David Held2dc41cf2014-07-15 23:28:32 -0400742 /* Also lookup *:port if we are using hash2 and haven't done so yet. */
743 if (use_hash2 && hash2 != hash2_any) {
744 hash2 = hash2_any;
745 goto start_lookup;
746 }
747
Eric Dumazetca065d02016-04-01 08:52:13 -0700748 if (first) {
749 if (udpv6_queue_rcv_skb(first, skb) > 0)
750 consume_skb(skb);
Eric Dumazeta1ab77f2009-11-08 10:18:52 +0000751 } else {
Eric Dumazetca065d02016-04-01 08:52:13 -0700752 kfree_skb(skb);
Eric Dumazet02c22342016-04-27 16:44:30 -0700753 __UDP6_INC_STATS(net, UDP_MIB_IGNOREDMULTI,
754 proto == IPPROTO_UDPLITE);
Eric Dumazeta1ab77f2009-11-08 10:18:52 +0000755 }
Gerrit Renkerba4e58e2006-11-27 11:10:57 -0800756 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700757}
758
Eric Dumazet645ca702008-10-29 01:41:45 -0700759int __udp6_lib_rcv(struct sk_buff *skb, struct udp_table *udptable,
Herbert Xu759e5d02007-03-25 20:10:56 -0700760 int proto)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700761{
Eric Dumazetb71d1d42011-04-22 04:53:02 +0000762 const struct in6_addr *saddr, *daddr;
Eric Dumazetca065d02016-04-01 08:52:13 -0700763 struct net *net = dev_net(skb->dev);
764 struct udphdr *uh;
765 struct sock *sk;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700766 u32 ulen = 0;
767
768 if (!pskb_may_pull(skb, sizeof(struct udphdr)))
Bjørn Morkd6bc0142010-05-06 03:44:35 +0000769 goto discard;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700770
Arnaldo Carvalho de Melo0660e032007-04-25 17:54:47 -0700771 saddr = &ipv6_hdr(skb)->saddr;
772 daddr = &ipv6_hdr(skb)->daddr;
Arnaldo Carvalho de Melo4bedb452007-03-13 14:28:48 -0300773 uh = udp_hdr(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700774
775 ulen = ntohs(uh->len);
Gerrit Renkerba4e58e2006-11-27 11:10:57 -0800776 if (ulen > skb->len)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700777 goto short_packet;
778
Herbert Xu759e5d02007-03-25 20:10:56 -0700779 if (proto == IPPROTO_UDP) {
780 /* UDP validates ulen. */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700781
Gerrit Renkerba4e58e2006-11-27 11:10:57 -0800782 /* Check for jumbo payload */
783 if (ulen == 0)
784 ulen = skb->len;
785
786 if (ulen < sizeof(*uh))
787 goto short_packet;
788
789 if (ulen < skb->len) {
790 if (pskb_trim_rcsum(skb, ulen))
791 goto short_packet;
Arnaldo Carvalho de Melo0660e032007-04-25 17:54:47 -0700792 saddr = &ipv6_hdr(skb)->saddr;
793 daddr = &ipv6_hdr(skb)->daddr;
Arnaldo Carvalho de Melo4bedb452007-03-13 14:28:48 -0300794 uh = udp_hdr(skb);
Gerrit Renkerba4e58e2006-11-27 11:10:57 -0800795 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700796 }
797
Herbert Xu759e5d02007-03-25 20:10:56 -0700798 if (udp6_csum_init(skb, uh, proto))
Eric Dumazet6a5dc9e2013-04-29 08:39:56 +0000799 goto csum_error;
Herbert Xu759e5d02007-03-25 20:10:56 -0700800
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900801 /*
802 * Multicast receive code
Linus Torvalds1da177e2005-04-16 15:20:36 -0700803 */
Gerrit Renkerba4e58e2006-11-27 11:10:57 -0800804 if (ipv6_addr_is_multicast(daddr))
Pavel Emelyanove3163492008-06-16 17:12:11 -0700805 return __udp6_lib_mcast_deliver(net, skb,
Rick Jones36cbb242014-11-06 10:37:54 -0800806 saddr, daddr, udptable, proto);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700807
808 /* Unicast */
809
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900810 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700811 * check socket cache ... must talk to Alan about his plans
812 * for sock caches... i'll skip this for now.
813 */
KOVACS Krisztian607c4aa2008-10-07 12:38:32 -0700814 sk = __udp6_lib_lookup_skb(skb, uh->source, uh->dest, udptable);
Ian Morris53b24b82015-03-29 14:00:05 +0100815 if (sk) {
Eliezer Tamira5b50472013-06-10 11:40:00 +0300816 int ret;
817
Tom Herbert1c194482014-05-23 08:47:32 -0700818 if (!uh->check && !udp_sk(sk)->no_check6_rx) {
Tom Herbert40685792014-05-02 16:29:58 -0700819 udp6_csum_zero_error(skb);
820 goto csum_error;
821 }
822
Tom Herbert224d0192015-01-05 13:56:14 -0800823 if (inet_get_convert_csum(sk) && uh->check && !IS_UDPLITE(sk))
Tom Herbert2abb7cd2014-08-31 15:12:43 -0700824 skb_checksum_try_convert(skb, IPPROTO_UDP, uh->check,
825 ip6_compute_pseudo);
826
Eliezer Tamira5b50472013-06-10 11:40:00 +0300827 ret = udpv6_queue_rcv_skb(sk, skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700828
Bill Sommerfeld59dca1d2016-03-04 14:47:21 -0800829 /* a return value > 0 means to resubmit the input */
Benjamin LaHaisecb80ef42012-04-27 08:23:59 +0000830 if (ret > 0)
Bill Sommerfeld59dca1d2016-03-04 14:47:21 -0800831 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700832
Stephen Hemmingeradd459a2007-03-08 20:42:35 -0800833 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700834 }
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900835
Tom Herbert40685792014-05-02 16:29:58 -0700836 if (!uh->check) {
837 udp6_csum_zero_error(skb);
838 goto csum_error;
839 }
840
Benjamin LaHaisecb80ef42012-04-27 08:23:59 +0000841 if (!xfrm6_policy_check(NULL, XFRM_POLICY_IN, skb))
842 goto discard;
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900843
Benjamin LaHaisecb80ef42012-04-27 08:23:59 +0000844 if (udp_lib_checksum_complete(skb))
Eric Dumazet6a5dc9e2013-04-29 08:39:56 +0000845 goto csum_error;
Benjamin LaHaisecb80ef42012-04-27 08:23:59 +0000846
Eric Dumazet02c22342016-04-27 16:44:30 -0700847 __UDP6_INC_STATS(net, UDP_MIB_NOPORTS, proto == IPPROTO_UDPLITE);
Benjamin LaHaisecb80ef42012-04-27 08:23:59 +0000848 icmpv6_send(skb, ICMPV6_DEST_UNREACH, ICMPV6_PORT_UNREACH, 0);
849
850 kfree_skb(skb);
Stephen Hemmingeradd459a2007-03-08 20:42:35 -0800851 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700852
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900853short_packet:
Joe Perchesba7a46f2014-11-11 10:59:17 -0800854 net_dbg_ratelimited("UDP%sv6: short packet: From [%pI6c]:%u %d/%d to [%pI6c]:%u\n",
855 proto == IPPROTO_UDPLITE ? "-Lite" : "",
856 saddr, ntohs(uh->source),
857 ulen, skb->len,
858 daddr, ntohs(uh->dest));
Eric Dumazet6a5dc9e2013-04-29 08:39:56 +0000859 goto discard;
860csum_error:
Eric Dumazet02c22342016-04-27 16:44:30 -0700861 __UDP6_INC_STATS(net, UDP_MIB_CSUMERRORS, proto == IPPROTO_UDPLITE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700862discard:
Eric Dumazet02c22342016-04-27 16:44:30 -0700863 __UDP6_INC_STATS(net, UDP_MIB_INERRORS, proto == IPPROTO_UDPLITE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700864 kfree_skb(skb);
Stephen Hemmingeradd459a2007-03-08 20:42:35 -0800865 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700866}
Gerrit Renkerba4e58e2006-11-27 11:10:57 -0800867
subashab@codeaurora.org0bd84062017-04-18 11:39:41 -0600868
subashab@codeaurora.org54250772017-03-08 16:36:49 -0700869static struct sock *__udp6_lib_demux_lookup(struct net *net,
870 __be16 loc_port, const struct in6_addr *loc_addr,
871 __be16 rmt_port, const struct in6_addr *rmt_addr,
872 int dif)
873{
subashab@codeaurora.org0bd84062017-04-18 11:39:41 -0600874 unsigned short hnum = ntohs(loc_port);
875 unsigned int hash2 = udp6_portaddr_hash(net, loc_addr, hnum);
876 unsigned int slot2 = hash2 & udp_table.mask;
877 struct udp_hslot *hslot2 = &udp_table.hash2[slot2];
878 const __portpair ports = INET_COMBINED_PORTS(rmt_port, hnum);
subashab@codeaurora.org54250772017-03-08 16:36:49 -0700879 struct sock *sk;
880
subashab@codeaurora.org0bd84062017-04-18 11:39:41 -0600881 udp_portaddr_for_each_entry_rcu(sk, &hslot2->head) {
882 if (INET6_MATCH(sk, net, rmt_addr, loc_addr, ports, dif))
883 return sk;
884 /* Only check first socket in chain */
885 break;
886 }
887 return NULL;
subashab@codeaurora.org54250772017-03-08 16:36:49 -0700888}
889
890static void udp_v6_early_demux(struct sk_buff *skb)
891{
892 struct net *net = dev_net(skb->dev);
893 const struct udphdr *uh;
894 struct sock *sk;
895 struct dst_entry *dst;
896 int dif = skb->dev->ifindex;
897
898 if (!pskb_may_pull(skb, skb_transport_offset(skb) +
899 sizeof(struct udphdr)))
900 return;
901
902 uh = udp_hdr(skb);
903
904 if (skb->pkt_type == PACKET_HOST)
905 sk = __udp6_lib_demux_lookup(net, uh->dest,
906 &ipv6_hdr(skb)->daddr,
907 uh->source, &ipv6_hdr(skb)->saddr,
908 dif);
909 else
910 return;
911
subashab@codeaurora.org0bd84062017-04-18 11:39:41 -0600912 if (!sk || !atomic_inc_not_zero_hint(&sk->sk_refcnt, 2))
subashab@codeaurora.org54250772017-03-08 16:36:49 -0700913 return;
914
915 skb->sk = sk;
916 skb->destructor = sock_efree;
917 dst = READ_ONCE(sk->sk_rx_dst);
918
919 if (dst)
920 dst = dst_check(dst, inet6_sk(sk)->rx_dst_cookie);
921 if (dst) {
922 if (dst->flags & DST_NOCACHE) {
923 if (likely(atomic_inc_not_zero(&dst->__refcnt)))
924 skb_dst_set(skb, dst);
925 } else {
926 skb_dst_set_noref(skb, dst);
927 }
928 }
929}
930
Herbert Xue5bbef22007-10-15 12:50:28 -0700931static __inline__ int udpv6_rcv(struct sk_buff *skb)
Gerrit Renkerba4e58e2006-11-27 11:10:57 -0800932{
Eric Dumazet645ca702008-10-29 01:41:45 -0700933 return __udp6_lib_rcv(skb, &udp_table, IPPROTO_UDP);
Gerrit Renkerba4e58e2006-11-27 11:10:57 -0800934}
935
Linus Torvalds1da177e2005-04-16 15:20:36 -0700936/*
937 * Throw away all pending data and cancel the corking. Socket is locked.
938 */
939static void udp_v6_flush_pending_frames(struct sock *sk)
940{
941 struct udp_sock *up = udp_sk(sk);
942
Denis V. Lunev36d926b2008-06-04 15:49:07 +0400943 if (up->pending == AF_INET)
944 udp_flush_pending_frames(sk);
945 else if (up->pending) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700946 up->len = 0;
947 up->pending = 0;
948 ip6_flush_pending_frames(sk);
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900949 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700950}
951
Sridhar Samudrala493c6be2009-07-09 08:09:54 +0000952/**
Ian Morris67ba4152014-08-24 21:53:10 +0100953 * udp6_hwcsum_outgoing - handle outgoing HW checksumming
954 * @sk: socket we are sending on
955 * @skb: sk_buff containing the filled-in UDP header
956 * (checksum field must be zeroed out)
Sridhar Samudrala493c6be2009-07-09 08:09:54 +0000957 */
958static void udp6_hwcsum_outgoing(struct sock *sk, struct sk_buff *skb,
959 const struct in6_addr *saddr,
960 const struct in6_addr *daddr, int len)
961{
962 unsigned int offset;
963 struct udphdr *uh = udp_hdr(skb);
Vlad Yasevichd39d9382015-01-31 10:40:16 -0500964 struct sk_buff *frags = skb_shinfo(skb)->frag_list;
Sridhar Samudrala493c6be2009-07-09 08:09:54 +0000965 __wsum csum = 0;
966
Vlad Yasevichd39d9382015-01-31 10:40:16 -0500967 if (!frags) {
Sridhar Samudrala493c6be2009-07-09 08:09:54 +0000968 /* Only one fragment on the socket. */
969 skb->csum_start = skb_transport_header(skb) - skb->head;
970 skb->csum_offset = offsetof(struct udphdr, check);
971 uh->check = ~csum_ipv6_magic(saddr, daddr, len, IPPROTO_UDP, 0);
972 } else {
973 /*
974 * HW-checksum won't work as there are two or more
975 * fragments on the socket so that all csums of sk_buffs
976 * should be together
977 */
978 offset = skb_transport_offset(skb);
979 skb->csum = skb_checksum(skb, offset, skb->len - offset, 0);
980
981 skb->ip_summed = CHECKSUM_NONE;
982
Vlad Yasevichd39d9382015-01-31 10:40:16 -0500983 do {
984 csum = csum_add(csum, frags->csum);
985 } while ((frags = frags->next));
Sridhar Samudrala493c6be2009-07-09 08:09:54 +0000986
987 uh->check = csum_ipv6_magic(saddr, daddr, len, IPPROTO_UDP,
988 csum);
989 if (uh->check == 0)
990 uh->check = CSUM_MANGLED_0;
991 }
992}
993
Linus Torvalds1da177e2005-04-16 15:20:36 -0700994/*
995 * Sending
996 */
997
Vlad Yasevichd39d9382015-01-31 10:40:16 -0500998static int udp_v6_send_skb(struct sk_buff *skb, struct flowi6 *fl6)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700999{
Vlad Yasevichd39d9382015-01-31 10:40:16 -05001000 struct sock *sk = skb->sk;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001001 struct udphdr *uh;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001002 int err = 0;
Wang Chenb2bf1e22007-12-03 22:34:16 +11001003 int is_udplite = IS_UDPLITE(sk);
Al Viro868c86b2006-11-14 21:35:48 -08001004 __wsum csum = 0;
Vlad Yasevichd39d9382015-01-31 10:40:16 -05001005 int offset = skb_transport_offset(skb);
1006 int len = skb->len - offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001007
1008 /*
1009 * Create a UDP header
1010 */
Arnaldo Carvalho de Melo4bedb452007-03-13 14:28:48 -03001011 uh = udp_hdr(skb);
David S. Miller1958b852011-03-12 16:36:19 -05001012 uh->source = fl6->fl6_sport;
1013 uh->dest = fl6->fl6_dport;
Vlad Yasevichd39d9382015-01-31 10:40:16 -05001014 uh->len = htons(len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001015 uh->check = 0;
1016
Wang Chenb2bf1e22007-12-03 22:34:16 +11001017 if (is_udplite)
Vlad Yasevichd39d9382015-01-31 10:40:16 -05001018 csum = udplite_csum(skb);
1019 else if (udp_sk(sk)->no_check6_tx) { /* UDP csum disabled */
Tom Herbert40685792014-05-02 16:29:58 -07001020 skb->ip_summed = CHECKSUM_NONE;
1021 goto send;
1022 } else if (skb->ip_summed == CHECKSUM_PARTIAL) { /* UDP hardware csum */
Vlad Yasevichd39d9382015-01-31 10:40:16 -05001023 udp6_hwcsum_outgoing(sk, skb, &fl6->saddr, &fl6->daddr, len);
Sridhar Samudrala493c6be2009-07-09 08:09:54 +00001024 goto send;
1025 } else
Vlad Yasevichd39d9382015-01-31 10:40:16 -05001026 csum = udp_csum(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001027
Gerrit Renkerba4e58e2006-11-27 11:10:57 -08001028 /* add protocol-dependent pseudo-header */
David S. Miller4c9483b2011-03-12 16:22:43 -05001029 uh->check = csum_ipv6_magic(&fl6->saddr, &fl6->daddr,
Vlad Yasevichd39d9382015-01-31 10:40:16 -05001030 len, fl6->flowi6_proto, csum);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001031 if (uh->check == 0)
Al Virof6ab0282006-11-16 02:36:50 -08001032 uh->check = CSUM_MANGLED_0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001033
Sridhar Samudrala493c6be2009-07-09 08:09:54 +00001034send:
Vlad Yasevichd39d9382015-01-31 10:40:16 -05001035 err = ip6_send_skb(skb);
Eric Dumazet6ce9e7b2009-09-02 18:05:33 -07001036 if (err) {
1037 if (err == -ENOBUFS && !inet6_sk(sk)->recverr) {
Eric Dumazet6aef70a2016-04-27 16:44:27 -07001038 UDP6_INC_STATS(sock_net(sk),
1039 UDP_MIB_SNDBUFERRORS, is_udplite);
Eric Dumazet6ce9e7b2009-09-02 18:05:33 -07001040 err = 0;
1041 }
Eric Dumazet6aef70a2016-04-27 16:44:27 -07001042 } else {
1043 UDP6_INC_STATS(sock_net(sk),
1044 UDP_MIB_OUTDATAGRAMS, is_udplite);
1045 }
Vlad Yasevichd39d9382015-01-31 10:40:16 -05001046 return err;
1047}
1048
1049static int udp_v6_push_pending_frames(struct sock *sk)
1050{
1051 struct sk_buff *skb;
1052 struct udp_sock *up = udp_sk(sk);
1053 struct flowi6 fl6;
1054 int err = 0;
1055
1056 if (up->pending == AF_INET)
1057 return udp_push_pending_frames(sk);
1058
1059 /* ip6_finish_skb will release the cork, so make a copy of
1060 * fl6 here.
1061 */
1062 fl6 = inet_sk(sk)->cork.fl.u.ip6;
1063
1064 skb = ip6_finish_skb(sk);
1065 if (!skb)
1066 goto out;
1067
1068 err = udp_v6_send_skb(skb, &fl6);
1069
Linus Torvalds1da177e2005-04-16 15:20:36 -07001070out:
1071 up->len = 0;
1072 up->pending = 0;
1073 return err;
1074}
1075
Ying Xue1b784142015-03-02 15:37:48 +08001076int udpv6_sendmsg(struct sock *sk, struct msghdr *msg, size_t len)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001077{
1078 struct ipv6_txoptions opt_space;
1079 struct udp_sock *up = udp_sk(sk);
1080 struct inet_sock *inet = inet_sk(sk);
1081 struct ipv6_pinfo *np = inet6_sk(sk);
Steffen Hurrle342dfc32014-01-17 22:53:15 +01001082 DECLARE_SOCKADDR(struct sockaddr_in6 *, sin6, msg->msg_name);
Arnaud Ebalard20c59de2010-06-01 21:35:01 +00001083 struct in6_addr *daddr, *final_p, final;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001084 struct ipv6_txoptions *opt = NULL;
Eric Dumazet45f6fad2015-11-29 19:37:57 -08001085 struct ipv6_txoptions *opt_to_free = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001086 struct ip6_flowlabel *flowlabel = NULL;
David S. Miller4c9483b2011-03-12 16:22:43 -05001087 struct flowi6 fl6;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001088 struct dst_entry *dst;
Wei Wang26879da2016-05-02 21:40:07 -07001089 struct ipcm6_cookie ipc6;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001090 int addr_len = msg->msg_namelen;
1091 int ulen = len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001092 int corkreq = up->corkflag || msg->msg_flags&MSG_MORE;
1093 int err;
Mitsuru KANDA987905d2005-09-18 00:30:08 -07001094 int connected = 0;
Wang Chenb2bf1e22007-12-03 22:34:16 +11001095 int is_udplite = IS_UDPLITE(sk);
Gerrit Renkerba4e58e2006-11-27 11:10:57 -08001096 int (*getfrag)(void *, char *, int, int, int, struct sk_buff *);
Soheil Hassas Yeganehad1e46a2016-04-02 23:08:11 -04001097 struct sockcm_cookie sockc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001098
Wei Wang26879da2016-05-02 21:40:07 -07001099 ipc6.hlimit = -1;
1100 ipc6.tclass = -1;
1101 ipc6.dontfrag = -1;
Alexander Potapenkod5156842017-03-21 17:14:27 +01001102 sockc.tsflags = sk->sk_tsflags;
Wei Wang26879da2016-05-02 21:40:07 -07001103
Linus Torvalds1da177e2005-04-16 15:20:36 -07001104 /* destination address check */
1105 if (sin6) {
1106 if (addr_len < offsetof(struct sockaddr, sa_data))
1107 return -EINVAL;
1108
1109 switch (sin6->sin6_family) {
1110 case AF_INET6:
1111 if (addr_len < SIN6_LEN_RFC2133)
1112 return -EINVAL;
1113 daddr = &sin6->sin6_addr;
Jonathan T. Leighton052d2362017-02-12 17:26:07 -05001114 if (ipv6_addr_any(daddr) &&
1115 ipv6_addr_v4mapped(&np->saddr))
1116 ipv6_addr_set_v4mapped(htonl(INADDR_LOOPBACK),
1117 daddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001118 break;
1119 case AF_INET:
1120 goto do_udp_sendmsg;
1121 case AF_UNSPEC:
1122 msg->msg_name = sin6 = NULL;
1123 msg->msg_namelen = addr_len = 0;
1124 daddr = NULL;
1125 break;
1126 default:
1127 return -EINVAL;
1128 }
1129 } else if (!up->pending) {
1130 if (sk->sk_state != TCP_ESTABLISHED)
1131 return -EDESTADDRREQ;
Eric Dumazetefe42082013-10-03 15:42:29 -07001132 daddr = &sk->sk_v6_daddr;
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09001133 } else
Linus Torvalds1da177e2005-04-16 15:20:36 -07001134 daddr = NULL;
1135
1136 if (daddr) {
Brian Haleye773e4f2007-08-24 23:16:08 -07001137 if (ipv6_addr_v4mapped(daddr)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001138 struct sockaddr_in sin;
1139 sin.sin_family = AF_INET;
Eric Dumazetc720c7e82009-10-15 06:30:45 +00001140 sin.sin_port = sin6 ? sin6->sin6_port : inet->inet_dport;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001141 sin.sin_addr.s_addr = daddr->s6_addr32[3];
1142 msg->msg_name = &sin;
1143 msg->msg_namelen = sizeof(sin);
1144do_udp_sendmsg:
1145 if (__ipv6_only_sock(sk))
1146 return -ENETUNREACH;
Ying Xue1b784142015-03-02 15:37:48 +08001147 return udp_sendmsg(sk, msg, len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001148 }
1149 }
1150
1151 if (up->pending == AF_INET)
Ying Xue1b784142015-03-02 15:37:48 +08001152 return udp_sendmsg(sk, msg, len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001153
1154 /* Rough check on arithmetic overflow,
YOSHIFUJI Hideakib59e1392007-03-30 14:45:35 -07001155 better check is made in ip6_append_data().
Linus Torvalds1da177e2005-04-16 15:20:36 -07001156 */
1157 if (len > INT_MAX - sizeof(struct udphdr))
1158 return -EMSGSIZE;
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09001159
Vlad Yasevich03485f22015-01-31 10:40:17 -05001160 getfrag = is_udplite ? udplite_getfrag : ip_generic_getfrag;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001161 if (up->pending) {
1162 /*
1163 * There are pending frames.
1164 * The socket lock must be held while it's corked.
1165 */
1166 lock_sock(sk);
1167 if (likely(up->pending)) {
1168 if (unlikely(up->pending != AF_INET6)) {
1169 release_sock(sk);
1170 return -EAFNOSUPPORT;
1171 }
1172 dst = NULL;
1173 goto do_append_data;
1174 }
1175 release_sock(sk);
1176 }
1177 ulen += sizeof(struct udphdr);
1178
David S. Miller4c9483b2011-03-12 16:22:43 -05001179 memset(&fl6, 0, sizeof(fl6));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001180
1181 if (sin6) {
1182 if (sin6->sin6_port == 0)
1183 return -EINVAL;
1184
David S. Miller1958b852011-03-12 16:36:19 -05001185 fl6.fl6_dport = sin6->sin6_port;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001186 daddr = &sin6->sin6_addr;
1187
1188 if (np->sndflow) {
David S. Miller4c9483b2011-03-12 16:22:43 -05001189 fl6.flowlabel = sin6->sin6_flowinfo&IPV6_FLOWINFO_MASK;
1190 if (fl6.flowlabel&IPV6_FLOWLABEL_MASK) {
1191 flowlabel = fl6_sock_lookup(sk, fl6.flowlabel);
Ian Morris63159f22015-03-29 14:00:04 +01001192 if (!flowlabel)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001193 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001194 }
1195 }
1196
1197 /*
1198 * Otherwise it will be difficult to maintain
1199 * sk->sk_dst_cache.
1200 */
1201 if (sk->sk_state == TCP_ESTABLISHED &&
Eric Dumazetefe42082013-10-03 15:42:29 -07001202 ipv6_addr_equal(daddr, &sk->sk_v6_daddr))
1203 daddr = &sk->sk_v6_daddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001204
1205 if (addr_len >= sizeof(struct sockaddr_in6) &&
1206 sin6->sin6_scope_id &&
Hannes Frederic Sowa842df072013-03-08 02:07:19 +00001207 __ipv6_addr_needs_scope_id(__ipv6_addr_type(daddr)))
David S. Miller4c9483b2011-03-12 16:22:43 -05001208 fl6.flowi6_oif = sin6->sin6_scope_id;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001209 } else {
1210 if (sk->sk_state != TCP_ESTABLISHED)
1211 return -EDESTADDRREQ;
1212
David S. Miller1958b852011-03-12 16:36:19 -05001213 fl6.fl6_dport = inet->inet_dport;
Eric Dumazetefe42082013-10-03 15:42:29 -07001214 daddr = &sk->sk_v6_daddr;
David S. Miller4c9483b2011-03-12 16:22:43 -05001215 fl6.flowlabel = np->flow_label;
Mitsuru KANDA987905d2005-09-18 00:30:08 -07001216 connected = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001217 }
1218
David S. Miller4c9483b2011-03-12 16:22:43 -05001219 if (!fl6.flowi6_oif)
1220 fl6.flowi6_oif = sk->sk_bound_dev_if;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001221
David S. Miller4c9483b2011-03-12 16:22:43 -05001222 if (!fl6.flowi6_oif)
1223 fl6.flowi6_oif = np->sticky_pktinfo.ipi6_ifindex;
Yang Hongyang9f690db2008-12-16 02:08:29 -08001224
David S. Miller4c9483b2011-03-12 16:22:43 -05001225 fl6.flowi6_mark = sk->sk_mark;
Lorenzo Colittie2d118a2016-11-04 02:23:43 +09001226 fl6.flowi6_uid = sk->sk_uid;
Brian Haley51953d52009-10-05 08:24:16 +00001227
Linus Torvalds1da177e2005-04-16 15:20:36 -07001228 if (msg->msg_controllen) {
1229 opt = &opt_space;
1230 memset(opt, 0, sizeof(struct ipv6_txoptions));
1231 opt->tot_len = sizeof(*opt);
Wei Wang26879da2016-05-02 21:40:07 -07001232 ipc6.opt = opt;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001233
Wei Wang26879da2016-05-02 21:40:07 -07001234 err = ip6_datagram_send_ctl(sock_net(sk), sk, msg, &fl6, &ipc6, &sockc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001235 if (err < 0) {
1236 fl6_sock_release(flowlabel);
1237 return err;
1238 }
David S. Miller4c9483b2011-03-12 16:22:43 -05001239 if ((fl6.flowlabel&IPV6_FLOWLABEL_MASK) && !flowlabel) {
1240 flowlabel = fl6_sock_lookup(sk, fl6.flowlabel);
Ian Morris63159f22015-03-29 14:00:04 +01001241 if (!flowlabel)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001242 return -EINVAL;
1243 }
1244 if (!(opt->opt_nflen|opt->opt_flen))
1245 opt = NULL;
Mitsuru KANDA987905d2005-09-18 00:30:08 -07001246 connected = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001247 }
Eric Dumazet45f6fad2015-11-29 19:37:57 -08001248 if (!opt) {
1249 opt = txopt_get(np);
1250 opt_to_free = opt;
1251 }
YOSHIFUJI Hideakidf9890c2005-11-20 12:23:18 +09001252 if (flowlabel)
1253 opt = fl6_merge_options(&opt_space, flowlabel, opt);
1254 opt = ipv6_fixup_options(&opt_space, opt);
Wei Wang26879da2016-05-02 21:40:07 -07001255 ipc6.opt = opt;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001256
David S. Miller4c9483b2011-03-12 16:22:43 -05001257 fl6.flowi6_proto = sk->sk_protocol;
Brian Haley876c7f42008-04-11 00:38:24 -04001258 if (!ipv6_addr_any(daddr))
Alexey Dobriyan4e3fd7a2011-11-21 03:39:03 +00001259 fl6.daddr = *daddr;
Brian Haley876c7f42008-04-11 00:38:24 -04001260 else
David S. Miller4c9483b2011-03-12 16:22:43 -05001261 fl6.daddr.s6_addr[15] = 0x1; /* :: means loopback (BSD'ism) */
1262 if (ipv6_addr_any(&fl6.saddr) && !ipv6_addr_any(&np->saddr))
Alexey Dobriyan4e3fd7a2011-11-21 03:39:03 +00001263 fl6.saddr = np->saddr;
David S. Miller1958b852011-03-12 16:36:19 -05001264 fl6.fl6_sport = inet->inet_sport;
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09001265
David S. Miller4c9483b2011-03-12 16:22:43 -05001266 final_p = fl6_update_dst(&fl6, opt, &final);
Arnaud Ebalard20c59de2010-06-01 21:35:01 +00001267 if (final_p)
Mitsuru KANDA987905d2005-09-18 00:30:08 -07001268 connected = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001269
David S. Miller4c9483b2011-03-12 16:22:43 -05001270 if (!fl6.flowi6_oif && ipv6_addr_is_multicast(&fl6.daddr)) {
1271 fl6.flowi6_oif = np->mcast_oif;
Mitsuru KANDA987905d2005-09-18 00:30:08 -07001272 connected = 0;
Erich E. Hooverc4062df2012-02-08 09:11:08 +00001273 } else if (!fl6.flowi6_oif)
1274 fl6.flowi6_oif = np->ucast_oif;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001275
David S. Miller4c9483b2011-03-12 16:22:43 -05001276 security_sk_classify_flow(sk, flowi6_to_flowi(&fl6));
Venkat Yekkiralabeb8d132006-08-04 23:12:42 -07001277
Hannes Frederic Sowa38b70972016-06-11 20:08:19 +02001278 if (ipc6.tclass < 0)
1279 ipc6.tclass = np->tclass;
1280
1281 fl6.flowlabel = ip6_make_flowinfo(ipc6.tclass, fl6.flowlabel);
1282
Steffen Klassert0e0d44a2013-08-28 08:04:14 +02001283 dst = ip6_sk_dst_lookup_flow(sk, &fl6, final_p);
David S. Miller68d0c6d2011-03-01 13:19:07 -08001284 if (IS_ERR(dst)) {
1285 err = PTR_ERR(dst);
1286 dst = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001287 goto out;
David S. Miller14e50e52007-05-24 18:17:54 -07001288 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001289
Wei Wang26879da2016-05-02 21:40:07 -07001290 if (ipc6.hlimit < 0)
1291 ipc6.hlimit = ip6_sk_dst_hoplimit(np, &fl6, dst);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001292
1293 if (msg->msg_flags&MSG_CONFIRM)
1294 goto do_confirm;
1295back_from_confirm:
1296
Vlad Yasevich03485f22015-01-31 10:40:17 -05001297 /* Lockless fast path for the non-corking case */
1298 if (!corkreq) {
1299 struct sk_buff *skb;
1300
1301 skb = ip6_make_skb(sk, getfrag, msg, ulen,
Wei Wang26879da2016-05-02 21:40:07 -07001302 sizeof(struct udphdr), &ipc6,
Vlad Yasevich03485f22015-01-31 10:40:17 -05001303 &fl6, (struct rt6_info *)dst,
Wei Wang26879da2016-05-02 21:40:07 -07001304 msg->msg_flags, &sockc);
Vlad Yasevich03485f22015-01-31 10:40:17 -05001305 err = PTR_ERR(skb);
1306 if (!IS_ERR_OR_NULL(skb))
1307 err = udp_v6_send_skb(skb, &fl6);
1308 goto release_dst;
1309 }
1310
Linus Torvalds1da177e2005-04-16 15:20:36 -07001311 lock_sock(sk);
1312 if (unlikely(up->pending)) {
1313 /* The socket is already corked while preparing it. */
1314 /* ... which is an evident application bug. --ANK */
1315 release_sock(sk);
1316
Joe Perchesba7a46f2014-11-11 10:59:17 -08001317 net_dbg_ratelimited("udp cork app bug 2\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001318 err = -EINVAL;
1319 goto out;
1320 }
1321
1322 up->pending = AF_INET6;
1323
1324do_append_data:
Wei Wang26879da2016-05-02 21:40:07 -07001325 if (ipc6.dontfrag < 0)
1326 ipc6.dontfrag = np->dontfrag;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001327 up->len += ulen;
Wei Wang26879da2016-05-02 21:40:07 -07001328 err = ip6_append_data(sk, getfrag, msg, ulen, sizeof(struct udphdr),
1329 &ipc6, &fl6, (struct rt6_info *)dst,
1330 corkreq ? msg->msg_flags|MSG_MORE : msg->msg_flags, &sockc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001331 if (err)
1332 udp_v6_flush_pending_frames(sk);
1333 else if (!corkreq)
Gerrit Renker4c0a6cb2006-11-27 09:29:59 -08001334 err = udp_v6_push_pending_frames(sk);
Herbert Xu1e0c14f2006-10-03 14:35:49 -07001335 else if (unlikely(skb_queue_empty(&sk->sk_write_queue)))
1336 up->pending = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001337
Vlad Yasevich03485f22015-01-31 10:40:17 -05001338 if (err > 0)
1339 err = np->recverr ? net_xmit_errno(err) : 0;
1340 release_sock(sk);
1341
1342release_dst:
David S. Millera5e7c212005-10-03 14:21:58 -07001343 if (dst) {
1344 if (connected) {
1345 ip6_dst_store(sk, dst,
Eric Dumazetefe42082013-10-03 15:42:29 -07001346 ipv6_addr_equal(&fl6.daddr, &sk->sk_v6_daddr) ?
1347 &sk->sk_v6_daddr : NULL,
YOSHIFUJI Hideaki8e1ef0a2006-08-29 17:15:09 -07001348#ifdef CONFIG_IPV6_SUBTREES
David S. Miller4c9483b2011-03-12 16:22:43 -05001349 ipv6_addr_equal(&fl6.saddr, &np->saddr) ?
YOSHIFUJI Hideaki8e1ef0a2006-08-29 17:15:09 -07001350 &np->saddr :
1351#endif
1352 NULL);
David S. Millera5e7c212005-10-03 14:21:58 -07001353 } else {
1354 dst_release(dst);
1355 }
YOSHIFUJI Hideakia3c96082008-06-04 01:30:25 +09001356 dst = NULL;
David S. Millera5e7c212005-10-03 14:21:58 -07001357 }
1358
Linus Torvalds1da177e2005-04-16 15:20:36 -07001359out:
YOSHIFUJI Hideakia3c96082008-06-04 01:30:25 +09001360 dst_release(dst);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001361 fl6_sock_release(flowlabel);
Eric Dumazet45f6fad2015-11-29 19:37:57 -08001362 txopt_put(opt_to_free);
YOSHIFUJI Hideakicd562c92007-09-14 17:15:01 -07001363 if (!err)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001364 return len;
David S. Millera18135e2006-08-15 00:00:09 -07001365 /*
1366 * ENOBUFS = no kernel mem, SOCK_NOSPACE = no sndbuf space. Reporting
1367 * ENOBUFS might not be good (it's not tunable per se), but otherwise
1368 * we don't have a good statistic (IpOutDiscards but it can be too many
1369 * things). We could add another new stat but at least for now that
1370 * seems like overkill.
1371 */
1372 if (err == -ENOBUFS || test_bit(SOCK_NOSPACE, &sk->sk_socket->flags)) {
Eric Dumazet6aef70a2016-04-27 16:44:27 -07001373 UDP6_INC_STATS(sock_net(sk),
1374 UDP_MIB_SNDBUFERRORS, is_udplite);
David S. Millera18135e2006-08-15 00:00:09 -07001375 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001376 return err;
1377
1378do_confirm:
Julian Anastasov0dec8792017-02-06 23:14:16 +02001379 if (msg->msg_flags & MSG_PROBE)
1380 dst_confirm_neigh(dst, &fl6.daddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001381 if (!(msg->msg_flags&MSG_PROBE) || len)
1382 goto back_from_confirm;
1383 err = 0;
1384 goto out;
1385}
1386
Brian Haley7d06b2e2008-06-14 17:04:49 -07001387void udpv6_destroy_sock(struct sock *sk)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001388{
Tom Parkin44046a52013-03-19 06:11:12 +00001389 struct udp_sock *up = udp_sk(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001390 lock_sock(sk);
1391 udp_v6_flush_pending_frames(sk);
1392 release_sock(sk);
1393
Tom Parkin44046a52013-03-19 06:11:12 +00001394 if (static_key_false(&udpv6_encap_needed) && up->encap_type) {
1395 void (*encap_destroy)(struct sock *sk);
1396 encap_destroy = ACCESS_ONCE(up->encap_destroy);
1397 if (encap_destroy)
1398 encap_destroy(sk);
1399 }
1400
Linus Torvalds1da177e2005-04-16 15:20:36 -07001401 inet6_destroy_sock(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001402}
1403
1404/*
1405 * Socket option code for UDP
1406 */
Gerrit Renkerba4e58e2006-11-27 11:10:57 -08001407int udpv6_setsockopt(struct sock *sk, int level, int optname,
David S. Millerb7058842009-09-30 16:12:20 -07001408 char __user *optval, unsigned int optlen)
Dmitry Mishin3fdadf72006-03-20 22:45:21 -08001409{
David S. Millerdb8dac22008-03-06 16:22:02 -08001410 if (level == SOL_UDP || level == SOL_UDPLITE)
Gerrit Renker4c0a6cb2006-11-27 09:29:59 -08001411 return udp_lib_setsockopt(sk, level, optname, optval, optlen,
1412 udp_v6_push_pending_frames);
Gerrit Renkerba4e58e2006-11-27 11:10:57 -08001413 return ipv6_setsockopt(sk, level, optname, optval, optlen);
Dmitry Mishin3fdadf72006-03-20 22:45:21 -08001414}
1415
1416#ifdef CONFIG_COMPAT
Gerrit Renkerba4e58e2006-11-27 11:10:57 -08001417int compat_udpv6_setsockopt(struct sock *sk, int level, int optname,
David S. Millerb7058842009-09-30 16:12:20 -07001418 char __user *optval, unsigned int optlen)
Dmitry Mishin3fdadf72006-03-20 22:45:21 -08001419{
David S. Millerdb8dac22008-03-06 16:22:02 -08001420 if (level == SOL_UDP || level == SOL_UDPLITE)
Gerrit Renker4c0a6cb2006-11-27 09:29:59 -08001421 return udp_lib_setsockopt(sk, level, optname, optval, optlen,
1422 udp_v6_push_pending_frames);
Gerrit Renkerba4e58e2006-11-27 11:10:57 -08001423 return compat_ipv6_setsockopt(sk, level, optname, optval, optlen);
Dmitry Mishin3fdadf72006-03-20 22:45:21 -08001424}
1425#endif
1426
Gerrit Renkerba4e58e2006-11-27 11:10:57 -08001427int udpv6_getsockopt(struct sock *sk, int level, int optname,
1428 char __user *optval, int __user *optlen)
Dmitry Mishin3fdadf72006-03-20 22:45:21 -08001429{
David S. Millerdb8dac22008-03-06 16:22:02 -08001430 if (level == SOL_UDP || level == SOL_UDPLITE)
Gerrit Renker4c0a6cb2006-11-27 09:29:59 -08001431 return udp_lib_getsockopt(sk, level, optname, optval, optlen);
Gerrit Renkerba4e58e2006-11-27 11:10:57 -08001432 return ipv6_getsockopt(sk, level, optname, optval, optlen);
Dmitry Mishin3fdadf72006-03-20 22:45:21 -08001433}
1434
1435#ifdef CONFIG_COMPAT
Gerrit Renkerba4e58e2006-11-27 11:10:57 -08001436int compat_udpv6_getsockopt(struct sock *sk, int level, int optname,
1437 char __user *optval, int __user *optlen)
Dmitry Mishin3fdadf72006-03-20 22:45:21 -08001438{
David S. Millerdb8dac22008-03-06 16:22:02 -08001439 if (level == SOL_UDP || level == SOL_UDPLITE)
Gerrit Renker4c0a6cb2006-11-27 09:29:59 -08001440 return udp_lib_getsockopt(sk, level, optname, optval, optlen);
Gerrit Renkerba4e58e2006-11-27 11:10:57 -08001441 return compat_ipv6_getsockopt(sk, level, optname, optval, optlen);
Dmitry Mishin3fdadf72006-03-20 22:45:21 -08001442}
1443#endif
1444
subashab@codeaurora.orgdddb64b2017-03-23 13:34:16 -06001445static struct inet6_protocol udpv6_protocol = {
subashab@codeaurora.org54250772017-03-08 16:36:49 -07001446 .early_demux = udp_v6_early_demux,
subashab@codeaurora.orgdddb64b2017-03-23 13:34:16 -06001447 .early_demux_handler = udp_v6_early_demux,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001448 .handler = udpv6_rcv,
1449 .err_handler = udpv6_err,
1450 .flags = INET6_PROTO_NOPOLICY|INET6_PROTO_FINAL,
1451};
1452
1453/* ------------------------------------------------------------------------ */
1454#ifdef CONFIG_PROC_FS
Gerrit Renkerba4e58e2006-11-27 11:10:57 -08001455int udp6_seq_show(struct seq_file *seq, void *v)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001456{
Lorenzo Colitti17ef66af2013-05-31 15:05:48 +00001457 if (v == SEQ_START_TOKEN) {
1458 seq_puts(seq, IPV6_SEQ_DGRAM_HEADER);
1459 } else {
1460 int bucket = ((struct udp_iter_state *)seq->private)->bucket;
1461 struct inet_sock *inet = inet_sk(v);
1462 __u16 srcp = ntohs(inet->inet_sport);
1463 __u16 destp = ntohs(inet->inet_dport);
1464 ip6_dgram_sock_seq_show(seq, v, srcp, destp, bucket);
1465 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001466 return 0;
1467}
1468
Arjan van de Ven73cb88e2011-10-30 06:46:30 +00001469static const struct file_operations udp6_afinfo_seq_fops = {
1470 .owner = THIS_MODULE,
1471 .open = udp_seq_open,
1472 .read = seq_read,
1473 .llseek = seq_lseek,
1474 .release = seq_release_net
1475};
1476
Linus Torvalds1da177e2005-04-16 15:20:36 -07001477static struct udp_seq_afinfo udp6_seq_afinfo = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001478 .name = "udp6",
1479 .family = AF_INET6,
Eric Dumazet645ca702008-10-29 01:41:45 -07001480 .udp_table = &udp_table,
Arjan van de Ven73cb88e2011-10-30 06:46:30 +00001481 .seq_fops = &udp6_afinfo_seq_fops,
Denis V. Lunevdda61922008-03-28 18:24:26 -07001482 .seq_ops = {
1483 .show = udp6_seq_show,
1484 },
Linus Torvalds1da177e2005-04-16 15:20:36 -07001485};
1486
Alexey Dobriyan2c8c1e72010-01-17 03:35:32 +00001487int __net_init udp6_proc_init(struct net *net)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001488{
Daniel Lezcano0c96d8c2008-03-21 04:14:17 -07001489 return udp_proc_register(net, &udp6_seq_afinfo);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001490}
1491
Ian Morrisec120da2015-08-14 22:43:38 +01001492void udp6_proc_exit(struct net *net)
1493{
Daniel Lezcano0c96d8c2008-03-21 04:14:17 -07001494 udp_proc_unregister(net, &udp6_seq_afinfo);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001495}
1496#endif /* CONFIG_PROC_FS */
1497
1498/* ------------------------------------------------------------------------ */
1499
1500struct proto udpv6_prot = {
Arnaldo Carvalho de Melo543d9cf2006-03-20 22:48:35 -08001501 .name = "UDPv6",
1502 .owner = THIS_MODULE,
Gerrit Renkerba4e58e2006-11-27 11:10:57 -08001503 .close = udp_lib_close,
Arnaldo Carvalho de Melo543d9cf2006-03-20 22:48:35 -08001504 .connect = ip6_datagram_connect,
1505 .disconnect = udp_disconnect,
1506 .ioctl = udp_ioctl,
Paolo Abeni850cbad2016-10-21 13:55:47 +02001507 .init = udp_init_sock,
Arnaldo Carvalho de Melo543d9cf2006-03-20 22:48:35 -08001508 .destroy = udpv6_destroy_sock,
1509 .setsockopt = udpv6_setsockopt,
1510 .getsockopt = udpv6_getsockopt,
1511 .sendmsg = udpv6_sendmsg,
1512 .recvmsg = udpv6_recvmsg,
Martin KaFai Laue646b652016-04-11 15:29:37 -07001513 .release_cb = ip6_datagram_release_cb,
Gerrit Renkerba4e58e2006-11-27 11:10:57 -08001514 .hash = udp_lib_hash,
1515 .unhash = udp_lib_unhash,
Eric Dumazet719f8352010-09-08 05:08:44 +00001516 .rehash = udp_v6_rehash,
Arnaldo Carvalho de Melo543d9cf2006-03-20 22:48:35 -08001517 .get_port = udp_v6_get_port,
Hideo Aoki95766ff2007-12-31 00:29:24 -08001518 .memory_allocated = &udp_memory_allocated,
1519 .sysctl_mem = sysctl_udp_mem,
1520 .sysctl_wmem = &sysctl_udp_wmem_min,
1521 .sysctl_rmem = &sysctl_udp_rmem_min,
Arnaldo Carvalho de Melo543d9cf2006-03-20 22:48:35 -08001522 .obj_size = sizeof(struct udp6_sock),
Eric Dumazet645ca702008-10-29 01:41:45 -07001523 .h.udp_table = &udp_table,
Dmitry Mishin3fdadf72006-03-20 22:45:21 -08001524#ifdef CONFIG_COMPAT
Arnaldo Carvalho de Melo543d9cf2006-03-20 22:48:35 -08001525 .compat_setsockopt = compat_udpv6_setsockopt,
1526 .compat_getsockopt = compat_udpv6_getsockopt,
Dmitry Mishin3fdadf72006-03-20 22:45:21 -08001527#endif
David Ahern5d77dca2016-08-23 21:06:33 -07001528 .diag_destroy = udp_abort,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001529};
1530
Linus Torvalds1da177e2005-04-16 15:20:36 -07001531static struct inet_protosw udpv6_protosw = {
1532 .type = SOCK_DGRAM,
1533 .protocol = IPPROTO_UDP,
1534 .prot = &udpv6_prot,
1535 .ops = &inet6_dgram_ops,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001536 .flags = INET_PROTOSW_PERMANENT,
1537};
1538
Daniel Lezcano7f4e4862007-12-11 02:25:35 -08001539int __init udpv6_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001540{
Daniel Lezcano7f4e4862007-12-11 02:25:35 -08001541 int ret;
1542
Vlad Yasevich33362882012-11-15 08:49:15 +00001543 ret = inet6_add_protocol(&udpv6_protocol, IPPROTO_UDP);
1544 if (ret)
Vlad Yasevichc6b641a2012-11-15 08:49:22 +00001545 goto out;
Vlad Yasevich33362882012-11-15 08:49:15 +00001546
Daniel Lezcano7f4e4862007-12-11 02:25:35 -08001547 ret = inet6_register_protosw(&udpv6_protosw);
1548 if (ret)
1549 goto out_udpv6_protocol;
1550out:
1551 return ret;
1552
1553out_udpv6_protocol:
1554 inet6_del_protocol(&udpv6_protocol, IPPROTO_UDP);
1555 goto out;
1556}
1557
Daniel Lezcano09f77092007-12-13 05:34:58 -08001558void udpv6_exit(void)
Daniel Lezcano7f4e4862007-12-11 02:25:35 -08001559{
1560 inet6_unregister_protosw(&udpv6_protosw);
1561 inet6_del_protocol(&udpv6_protocol, IPPROTO_UDP);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001562}