blob: 84c8d7b668203298b96d28b16307c23d501ae547 [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 Torvalds1da177e2005-04-16 15:20:36 -070038#include <asm/uaccess.h>
39
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>
Tom Herbert72289b92013-01-22 09:50:44 +000049#include <net/inet6_hashtables.h>
Eliezer Tamir076bb0c2013-07-10 17:13:17 +030050#include <net/busy_poll.h>
Craig Galleke32ea7e2016-01-04 17:41:46 -050051#include <net/sock_reuseport.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070052
53#include <linux/proc_fs.h>
54#include <linux/seq_file.h>
Eric Dumazet22911fc2012-06-27 00:23:44 +000055#include <trace/events/skb.h>
Gerrit Renkerba4e58e2006-11-27 11:10:57 -080056#include "udp_impl.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070057
Eric Dumazet6eada012015-03-18 14:05:33 -070058static u32 udp6_ehashfn(const struct net *net,
59 const struct in6_addr *laddr,
60 const u16 lport,
61 const struct in6_addr *faddr,
62 const __be16 fport)
Hannes Frederic Sowab50026b2013-10-19 21:48:52 +020063{
Hannes Frederic Sowa1bbdcee2013-10-19 21:48:57 +020064 static u32 udp6_ehash_secret __read_mostly;
65 static u32 udp_ipv6_hash_secret __read_mostly;
66
67 u32 lhash, fhash;
68
69 net_get_random_once(&udp6_ehash_secret,
70 sizeof(udp6_ehash_secret));
71 net_get_random_once(&udp_ipv6_hash_secret,
72 sizeof(udp_ipv6_hash_secret));
73
74 lhash = (__force u32)laddr->s6_addr32[3];
75 fhash = __ipv6_addr_jhash(faddr, udp_ipv6_hash_secret);
76
Hannes Frederic Sowab50026b2013-10-19 21:48:52 +020077 return __inet6_ehashfn(lhash, lport, fhash, fport,
Hannes Frederic Sowa1bbdcee2013-10-19 21:48:57 +020078 udp_ipv6_hash_secret + net_hash_mix(net));
Hannes Frederic Sowab50026b2013-10-19 21:48:52 +020079}
80
Eric Dumazet6eada012015-03-18 14:05:33 -070081static u32 udp6_portaddr_hash(const struct net *net,
82 const struct in6_addr *addr6,
83 unsigned int port)
Eric Dumazetd4cada42009-11-08 10:17:30 +000084{
85 unsigned int hash, mix = net_hash_mix(net);
86
87 if (ipv6_addr_any(addr6))
88 hash = jhash_1word(0, mix);
Brian Haley856540e2009-11-09 12:05:53 +000089 else if (ipv6_addr_v4mapped(addr6))
Eric Dumazet0eae88f2010-04-20 19:06:52 -070090 hash = jhash_1word((__force u32)addr6->s6_addr32[3], mix);
Eric Dumazetd4cada42009-11-08 10:17:30 +000091 else
Eric Dumazet0eae88f2010-04-20 19:06:52 -070092 hash = jhash2((__force u32 *)addr6->s6_addr32, 4, mix);
Eric Dumazetd4cada42009-11-08 10:17:30 +000093
94 return hash ^ port;
95}
96
Pavel Emelyanov6ba5a3c2008-03-22 16:51:21 -070097int udp_v6_get_port(struct sock *sk, unsigned short snum)
Linus Torvalds1da177e2005-04-16 15:20:36 -070098{
Eric Dumazet30fff922009-11-09 05:26:33 +000099 unsigned int hash2_nulladdr =
100 udp6_portaddr_hash(sock_net(sk), &in6addr_any, snum);
Jeffrin Jose9a52e972012-05-19 01:45:21 +0000101 unsigned int hash2_partial =
Eric Dumazetefe42082013-10-03 15:42:29 -0700102 udp6_portaddr_hash(sock_net(sk), &sk->sk_v6_rcv_saddr, 0);
Eric Dumazet30fff922009-11-09 05:26:33 +0000103
Eric Dumazetd4cada42009-11-08 10:17:30 +0000104 /* precompute partial secondary hash */
Eric Dumazet30fff922009-11-09 05:26:33 +0000105 udp_sk(sk)->udp_portaddr_hash = hash2_partial;
106 return udp_lib_get_port(sk, snum, ipv6_rcv_saddr_equal, hash2_nulladdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700107}
108
Eric Dumazet719f8352010-09-08 05:08:44 +0000109static void udp_v6_rehash(struct sock *sk)
110{
111 u16 new_hash = udp6_portaddr_hash(sock_net(sk),
Eric Dumazetefe42082013-10-03 15:42:29 -0700112 &sk->sk_v6_rcv_saddr,
Eric Dumazet719f8352010-09-08 05:08:44 +0000113 inet_sk(sk)->inet_num);
114
115 udp_lib_rehash(sk, new_hash);
116}
117
Eric Dumazet645ca702008-10-29 01:41:45 -0700118static inline int compute_score(struct sock *sk, struct net *net,
119 unsigned short hnum,
Balazs Scheidler88440ae2010-10-21 16:04:33 +0200120 const struct in6_addr *saddr, __be16 sport,
121 const struct in6_addr *daddr, __be16 dport,
Eric Dumazet645ca702008-10-29 01:41:45 -0700122 int dif)
123{
Joe Perches60c04ae2014-12-01 20:29:06 -0800124 int score;
125 struct inet_sock *inet;
Eric Dumazet645ca702008-10-29 01:41:45 -0700126
Joe Perches60c04ae2014-12-01 20:29:06 -0800127 if (!net_eq(sock_net(sk), net) ||
128 udp_sk(sk)->udp_port_hash != hnum ||
129 sk->sk_family != PF_INET6)
130 return -1;
Eric Dumazet645ca702008-10-29 01:41:45 -0700131
Joe Perches60c04ae2014-12-01 20:29:06 -0800132 score = 0;
133 inet = inet_sk(sk);
134
135 if (inet->inet_dport) {
136 if (inet->inet_dport != sport)
137 return -1;
138 score++;
Eric Dumazet645ca702008-10-29 01:41:45 -0700139 }
Joe Perches60c04ae2014-12-01 20:29:06 -0800140
141 if (!ipv6_addr_any(&sk->sk_v6_rcv_saddr)) {
142 if (!ipv6_addr_equal(&sk->sk_v6_rcv_saddr, daddr))
143 return -1;
144 score++;
145 }
146
147 if (!ipv6_addr_any(&sk->sk_v6_daddr)) {
148 if (!ipv6_addr_equal(&sk->sk_v6_daddr, saddr))
149 return -1;
150 score++;
151 }
152
153 if (sk->sk_bound_dev_if) {
154 if (sk->sk_bound_dev_if != dif)
155 return -1;
156 score++;
157 }
158
Eric Dumazet70da2682015-10-08 19:33:21 -0700159 if (sk->sk_incoming_cpu == raw_smp_processor_id())
160 score++;
161
Eric Dumazet645ca702008-10-29 01:41:45 -0700162 return score;
163}
164
Eric Dumazetfddc17d2009-11-08 10:18:30 +0000165static inline int compute_score2(struct sock *sk, struct net *net,
Joe Perches60c04ae2014-12-01 20:29:06 -0800166 const struct in6_addr *saddr, __be16 sport,
167 const struct in6_addr *daddr,
168 unsigned short hnum, int dif)
Eric Dumazetfddc17d2009-11-08 10:18:30 +0000169{
Joe Perches60c04ae2014-12-01 20:29:06 -0800170 int score;
171 struct inet_sock *inet;
Eric Dumazetfddc17d2009-11-08 10:18:30 +0000172
Joe Perches60c04ae2014-12-01 20:29:06 -0800173 if (!net_eq(sock_net(sk), net) ||
174 udp_sk(sk)->udp_port_hash != hnum ||
175 sk->sk_family != PF_INET6)
176 return -1;
Eric Dumazetfddc17d2009-11-08 10:18:30 +0000177
Joe Perches60c04ae2014-12-01 20:29:06 -0800178 if (!ipv6_addr_equal(&sk->sk_v6_rcv_saddr, daddr))
179 return -1;
180
181 score = 0;
182 inet = inet_sk(sk);
183
184 if (inet->inet_dport) {
185 if (inet->inet_dport != sport)
Eric Dumazetfddc17d2009-11-08 10:18:30 +0000186 return -1;
Joe Perches60c04ae2014-12-01 20:29:06 -0800187 score++;
Eric Dumazetfddc17d2009-11-08 10:18:30 +0000188 }
Joe Perches60c04ae2014-12-01 20:29:06 -0800189
190 if (!ipv6_addr_any(&sk->sk_v6_daddr)) {
191 if (!ipv6_addr_equal(&sk->sk_v6_daddr, saddr))
192 return -1;
193 score++;
194 }
195
196 if (sk->sk_bound_dev_if) {
197 if (sk->sk_bound_dev_if != dif)
198 return -1;
199 score++;
200 }
201
Eric Dumazet70da2682015-10-08 19:33:21 -0700202 if (sk->sk_incoming_cpu == raw_smp_processor_id())
203 score++;
204
Eric Dumazetfddc17d2009-11-08 10:18:30 +0000205 return score;
206}
207
Eric Dumazetfddc17d2009-11-08 10:18:30 +0000208/* called with read_rcu_lock() */
209static struct sock *udp6_lib_lookup2(struct net *net,
210 const struct in6_addr *saddr, __be16 sport,
211 const struct in6_addr *daddr, unsigned int hnum, int dif,
Craig Gallek11341582016-01-05 15:08:07 -0500212 struct udp_hslot *hslot2, unsigned int slot2,
213 struct sk_buff *skb)
Eric Dumazetfddc17d2009-11-08 10:18:30 +0000214{
215 struct sock *sk, *result;
Tom Herbert72289b92013-01-22 09:50:44 +0000216 int score, badness, matches = 0, reuseport = 0;
217 u32 hash = 0;
Eric Dumazetfddc17d2009-11-08 10:18:30 +0000218
Eric Dumazetfddc17d2009-11-08 10:18:30 +0000219 result = NULL;
220 badness = -1;
Eric Dumazetca065d02016-04-01 08:52:13 -0700221 udp_portaddr_for_each_entry_rcu(sk, &hslot2->head) {
Eric Dumazetfddc17d2009-11-08 10:18:30 +0000222 score = compute_score2(sk, net, saddr, sport,
223 daddr, hnum, dif);
224 if (score > badness) {
Tom Herbert72289b92013-01-22 09:50:44 +0000225 reuseport = sk->sk_reuseport;
226 if (reuseport) {
Hannes Frederic Sowab50026b2013-10-19 21:48:52 +0200227 hash = udp6_ehashfn(net, daddr, hnum,
228 saddr, sport);
Eric Dumazeted0dfff2016-01-19 08:36:43 -0800229
Eric Dumazetca065d02016-04-01 08:52:13 -0700230 result = reuseport_select_sock(sk, hash, skb,
Eric Dumazeted0dfff2016-01-19 08:36:43 -0800231 sizeof(struct udphdr));
Eric Dumazetca065d02016-04-01 08:52:13 -0700232 if (result)
233 return result;
Tom Herbert72289b92013-01-22 09:50:44 +0000234 matches = 1;
Eric Dumazet70da2682015-10-08 19:33:21 -0700235 }
Eric Dumazetca065d02016-04-01 08:52:13 -0700236 result = sk;
237 badness = score;
Tom Herbert72289b92013-01-22 09:50:44 +0000238 } else if (score == badness && reuseport) {
239 matches++;
Daniel Borkmann8fc54f62014-08-23 20:58:54 +0200240 if (reciprocal_scale(hash, matches) == 0)
Tom Herbert72289b92013-01-22 09:50:44 +0000241 result = sk;
242 hash = next_pseudo_random32(hash);
Eric Dumazetfddc17d2009-11-08 10:18:30 +0000243 }
244 }
Eric Dumazetfddc17d2009-11-08 10:18:30 +0000245 return result;
246}
247
Eric Dumazetca065d02016-04-01 08:52:13 -0700248/* rcu_read_lock() must be held */
Pavel Emelyanovfce82332011-12-09 06:23:34 +0000249struct sock *__udp6_lib_lookup(struct net *net,
Balazs Scheidler88440ae2010-10-21 16:04:33 +0200250 const struct in6_addr *saddr, __be16 sport,
251 const struct in6_addr *daddr, __be16 dport,
Craig Gallek538950a2016-01-04 17:41:47 -0500252 int dif, struct udp_table *udptable,
253 struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700254{
Eric Dumazet271b72c2008-10-29 02:11:14 -0700255 struct sock *sk, *result;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700256 unsigned short hnum = ntohs(dport);
Eric Dumazetfddc17d2009-11-08 10:18:30 +0000257 unsigned int hash2, slot2, slot = udp_hashfn(net, hnum, udptable->mask);
258 struct udp_hslot *hslot2, *hslot = &udptable->hash[slot];
Tom Herbert72289b92013-01-22 09:50:44 +0000259 int score, badness, matches = 0, reuseport = 0;
260 u32 hash = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700261
Eric Dumazetfddc17d2009-11-08 10:18:30 +0000262 if (hslot->count > 10) {
263 hash2 = udp6_portaddr_hash(net, daddr, hnum);
264 slot2 = hash2 & udptable->mask;
265 hslot2 = &udptable->hash2[slot2];
266 if (hslot->count < hslot2->count)
267 goto begin;
268
269 result = udp6_lib_lookup2(net, saddr, sport,
270 daddr, hnum, dif,
Craig Gallek11341582016-01-05 15:08:07 -0500271 hslot2, slot2, skb);
Eric Dumazetfddc17d2009-11-08 10:18:30 +0000272 if (!result) {
273 hash2 = udp6_portaddr_hash(net, &in6addr_any, hnum);
274 slot2 = hash2 & udptable->mask;
275 hslot2 = &udptable->hash2[slot2];
276 if (hslot->count < hslot2->count)
277 goto begin;
278
Jorge Boncompte [DTI2]1223c672010-04-08 04:56:48 +0000279 result = udp6_lib_lookup2(net, saddr, sport,
280 &in6addr_any, hnum, dif,
Craig Gallek11341582016-01-05 15:08:07 -0500281 hslot2, slot2, skb);
Eric Dumazetfddc17d2009-11-08 10:18:30 +0000282 }
Eric Dumazetfddc17d2009-11-08 10:18:30 +0000283 return result;
284 }
Eric Dumazet271b72c2008-10-29 02:11:14 -0700285begin:
286 result = NULL;
287 badness = -1;
Eric Dumazetca065d02016-04-01 08:52:13 -0700288 sk_for_each_rcu(sk, &hslot->head) {
Eric Dumazet645ca702008-10-29 01:41:45 -0700289 score = compute_score(sk, net, hnum, saddr, sport, daddr, dport, dif);
290 if (score > badness) {
Tom Herbert72289b92013-01-22 09:50:44 +0000291 reuseport = sk->sk_reuseport;
292 if (reuseport) {
Hannes Frederic Sowab50026b2013-10-19 21:48:52 +0200293 hash = udp6_ehashfn(net, daddr, hnum,
294 saddr, sport);
Eric Dumazetca065d02016-04-01 08:52:13 -0700295 result = reuseport_select_sock(sk, hash, skb,
Craig Gallek538950a2016-01-04 17:41:47 -0500296 sizeof(struct udphdr));
Eric Dumazetca065d02016-04-01 08:52:13 -0700297 if (result)
298 return result;
Tom Herbert72289b92013-01-22 09:50:44 +0000299 matches = 1;
300 }
Eric Dumazetca065d02016-04-01 08:52:13 -0700301 result = sk;
302 badness = score;
Tom Herbert72289b92013-01-22 09:50:44 +0000303 } else if (score == badness && reuseport) {
304 matches++;
Daniel Borkmann8fc54f62014-08-23 20:58:54 +0200305 if (reciprocal_scale(hash, matches) == 0)
Tom Herbert72289b92013-01-22 09:50:44 +0000306 result = sk;
307 hash = next_pseudo_random32(hash);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700308 }
309 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700310 return result;
311}
Pavel Emelyanovfce82332011-12-09 06:23:34 +0000312EXPORT_SYMBOL_GPL(__udp6_lib_lookup);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700313
KOVACS Krisztian607c4aa2008-10-07 12:38:32 -0700314static struct sock *__udp6_lib_lookup_skb(struct sk_buff *skb,
315 __be16 sport, __be16 dport,
Eric Dumazet645ca702008-10-29 01:41:45 -0700316 struct udp_table *udptable)
KOVACS Krisztian607c4aa2008-10-07 12:38:32 -0700317{
KOVACS Krisztian23542612008-10-07 12:41:01 -0700318 struct sock *sk;
Eric Dumazetb71d1d42011-04-22 04:53:02 +0000319 const struct ipv6hdr *iph = ipv6_hdr(skb);
KOVACS Krisztian607c4aa2008-10-07 12:38:32 -0700320
Ian Morrise5d08d72014-11-23 21:28:43 +0000321 sk = skb_steal_sock(skb);
322 if (unlikely(sk))
KOVACS Krisztian23542612008-10-07 12:41:01 -0700323 return sk;
Eric Dumazetadf30902009-06-02 05:19:30 +0000324 return __udp6_lib_lookup(dev_net(skb_dst(skb)->dev), &iph->saddr, sport,
325 &iph->daddr, dport, inet6_iif(skb),
Craig Gallek538950a2016-01-04 17:41:47 -0500326 udptable, skb);
KOVACS Krisztian607c4aa2008-10-07 12:38:32 -0700327}
328
Eric Dumazetca065d02016-04-01 08:52:13 -0700329/* Must be called under rcu_read_lock().
330 * Does increment socket refcount.
331 */
332#if IS_ENABLED(CONFIG_NETFILTER_XT_MATCH_SOCKET) || \
333 IS_ENABLED(CONFIG_NETFILTER_XT_TARGET_TPROXY)
Balazs Scheidleraa976fc2010-10-21 16:05:41 +0200334struct sock *udp6_lib_lookup(struct net *net, const struct in6_addr *saddr, __be16 sport,
335 const struct in6_addr *daddr, __be16 dport, int dif)
336{
Eric Dumazetca065d02016-04-01 08:52:13 -0700337 struct sock *sk;
338
339 sk = __udp6_lib_lookup(net, saddr, sport, daddr, dport,
340 dif, &udp_table, NULL);
341 if (sk && !atomic_inc_not_zero(&sk->sk_refcnt))
342 sk = NULL;
343 return sk;
Balazs Scheidleraa976fc2010-10-21 16:05:41 +0200344}
345EXPORT_SYMBOL_GPL(udp6_lib_lookup);
Eric Dumazetca065d02016-04-01 08:52:13 -0700346#endif
Balazs Scheidleraa976fc2010-10-21 16:05:41 +0200347
Linus Torvalds1da177e2005-04-16 15:20:36 -0700348/*
Ian Morris67ba4152014-08-24 21:53:10 +0100349 * This should be easy, if there is something there we
350 * return it, otherwise we block.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700351 */
352
Ying Xue1b784142015-03-02 15:37:48 +0800353int udpv6_recvmsg(struct sock *sk, struct msghdr *msg, size_t len,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700354 int noblock, int flags, int *addr_len)
355{
356 struct ipv6_pinfo *np = inet6_sk(sk);
357 struct inet_sock *inet = inet_sk(sk);
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900358 struct sk_buff *skb;
David S. Miller59c2cda2011-12-01 14:12:55 -0500359 unsigned int ulen, copied;
Pavel Emelyanov3f518bf2012-02-21 07:30:58 +0000360 int peeked, off = 0;
Herbert Xu759e5d02007-03-25 20:10:56 -0700361 int err;
362 int is_udplite = IS_UDPLITE(sk);
Eric Dumazet197c9492015-12-30 08:51:12 -0500363 bool checksum_valid = false;
Wei Yongjunf26ba172008-11-02 16:11:01 +0000364 int is_udp4;
Eric Dumazet8a74ad62010-05-26 19:20:18 +0000365 bool slow;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700366
Linus Torvalds1da177e2005-04-16 15:20:36 -0700367 if (flags & MSG_ERRQUEUE)
Hannes Frederic Sowa85fbaa72013-11-23 00:46:12 +0100368 return ipv6_recv_error(sk, msg, len, addr_len);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700369
Brian Haley4b340ae2010-04-23 11:26:09 +0000370 if (np->rxpmtu && np->rxopt.bits.rxpmtu)
Hannes Frederic Sowa85fbaa72013-11-23 00:46:12 +0100371 return ipv6_recv_rxpmtu(sk, msg, len, addr_len);
Brian Haley4b340ae2010-04-23 11:26:09 +0000372
Linus Torvalds1da177e2005-04-16 15:20:36 -0700373try_again:
Herbert Xua59322b2007-12-05 01:53:40 -0800374 skb = __skb_recv_datagram(sk, flags | (noblock ? MSG_DONTWAIT : 0),
Pavel Emelyanov3f518bf2012-02-21 07:30:58 +0000375 &peeked, &off, &err);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700376 if (!skb)
377 goto out;
378
samanthakumare6afc8a2016-04-05 12:41:15 -0400379 ulen = skb->len;
David S. Miller59c2cda2011-12-01 14:12:55 -0500380 copied = len;
381 if (copied > ulen)
382 copied = ulen;
383 else if (copied < ulen)
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900384 msg->msg_flags |= MSG_TRUNC;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700385
Wei Yongjunf26ba172008-11-02 16:11:01 +0000386 is_udp4 = (skb->protocol == htons(ETH_P_IP));
387
Gerrit Renkerba4e58e2006-11-27 11:10:57 -0800388 /*
Herbert Xu759e5d02007-03-25 20:10:56 -0700389 * If checksum is needed at all, try to do it while copying the
390 * data. If the data is truncated, or if we only want a partial
391 * coverage checksum (UDP-Lite), do it before the copy.
Gerrit Renkerba4e58e2006-11-27 11:10:57 -0800392 */
Gerrit Renkerba4e58e2006-11-27 11:10:57 -0800393
David S. Miller59c2cda2011-12-01 14:12:55 -0500394 if (copied < ulen || UDP_SKB_CB(skb)->partial_cov) {
Eric Dumazet197c9492015-12-30 08:51:12 -0500395 checksum_valid = !udp_lib_checksum_complete(skb);
396 if (!checksum_valid)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700397 goto csum_copy_err;
Gerrit Renkerba4e58e2006-11-27 11:10:57 -0800398 }
399
Eric Dumazet197c9492015-12-30 08:51:12 -0500400 if (checksum_valid || skb_csum_unnecessary(skb))
samanthakumare6afc8a2016-04-05 12:41:15 -0400401 err = skb_copy_datagram_msg(skb, 0, msg, copied);
Gerrit Renkerba4e58e2006-11-27 11:10:57 -0800402 else {
samanthakumare6afc8a2016-04-05 12:41:15 -0400403 err = skb_copy_and_csum_datagram_msg(skb, 0, msg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700404 if (err == -EINVAL)
405 goto csum_copy_err;
406 }
Eric Dumazet22911fc2012-06-27 00:23:44 +0000407 if (unlikely(err)) {
408 trace_kfree_skb(skb, udpv6_recvmsg);
Eric Dumazet979402b2012-09-05 23:34:44 +0000409 if (!peeked) {
410 atomic_inc(&sk->sk_drops);
411 if (is_udp4)
412 UDP_INC_STATS_USER(sock_net(sk),
413 UDP_MIB_INERRORS,
414 is_udplite);
415 else
416 UDP6_INC_STATS_USER(sock_net(sk),
417 UDP_MIB_INERRORS,
418 is_udplite);
419 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700420 goto out_free;
Eric Dumazet22911fc2012-06-27 00:23:44 +0000421 }
Wei Yongjunf26ba172008-11-02 16:11:01 +0000422 if (!peeked) {
423 if (is_udp4)
424 UDP_INC_STATS_USER(sock_net(sk),
425 UDP_MIB_INDATAGRAMS, is_udplite);
426 else
427 UDP6_INC_STATS_USER(sock_net(sk),
428 UDP_MIB_INDATAGRAMS, is_udplite);
429 }
Wang Chencb759942007-12-03 22:33:28 +1100430
Neil Horman3b885782009-10-12 13:26:31 -0700431 sock_recv_ts_and_drops(msg, sk, skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700432
433 /* Copy the address. */
434 if (msg->msg_name) {
Steffen Hurrle342dfc32014-01-17 22:53:15 +0100435 DECLARE_SOCKADDR(struct sockaddr_in6 *, sin6, msg->msg_name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700436 sin6->sin6_family = AF_INET6;
Arnaldo Carvalho de Melo4bedb452007-03-13 14:28:48 -0300437 sin6->sin6_port = udp_hdr(skb)->source;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700438 sin6->sin6_flowinfo = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700439
Hannes Frederic Sowa842df072013-03-08 02:07:19 +0000440 if (is_udp4) {
Brian Haleyb301e822009-10-07 13:58:25 -0700441 ipv6_addr_set_v4mapped(ip_hdr(skb)->saddr,
442 &sin6->sin6_addr);
Hannes Frederic Sowa842df072013-03-08 02:07:19 +0000443 sin6->sin6_scope_id = 0;
444 } else {
Alexey Dobriyan4e3fd7a2011-11-21 03:39:03 +0000445 sin6->sin6_addr = ipv6_hdr(skb)->saddr;
Hannes Frederic Sowa842df072013-03-08 02:07:19 +0000446 sin6->sin6_scope_id =
447 ipv6_iface_scope_id(&sin6->sin6_addr,
Duan Jiong43304872014-08-01 09:52:58 +0800448 inet6_iif(skb));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700449 }
Hannes Frederic Sowabceaa902013-11-18 04:20:45 +0100450 *addr_len = sizeof(*sin6);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700451 }
Hannes Frederic Sowa4b261c72014-01-20 03:43:08 +0100452
453 if (np->rxopt.all)
454 ip6_datagram_recv_common_ctl(sk, msg, skb);
455
Wei Yongjunf26ba172008-11-02 16:11:01 +0000456 if (is_udp4) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700457 if (inet->cmsg_flags)
458 ip_cmsg_recv(msg, skb);
459 } 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
468out_free:
Eric Dumazet9d410c72009-10-30 05:03:53 +0000469 skb_free_datagram_locked(sk, skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700470out:
471 return err;
472
473csum_copy_err:
Eric Dumazet8a74ad62010-05-26 19:20:18 +0000474 slow = lock_sock_fast(sk);
Wei Yongjun0856f932008-11-02 16:14:27 +0000475 if (!skb_kill_datagram(sk, skb, flags)) {
Eric Dumazet6a5dc9e2013-04-29 08:39:56 +0000476 if (is_udp4) {
477 UDP_INC_STATS_USER(sock_net(sk),
478 UDP_MIB_CSUMERRORS, is_udplite);
Wei Yongjun0856f932008-11-02 16:14:27 +0000479 UDP_INC_STATS_USER(sock_net(sk),
480 UDP_MIB_INERRORS, is_udplite);
Eric Dumazet6a5dc9e2013-04-29 08:39:56 +0000481 } else {
482 UDP6_INC_STATS_USER(sock_net(sk),
483 UDP_MIB_CSUMERRORS, is_udplite);
Wei Yongjun0856f932008-11-02 16:14:27 +0000484 UDP6_INC_STATS_USER(sock_net(sk),
485 UDP_MIB_INERRORS, is_udplite);
Eric Dumazet6a5dc9e2013-04-29 08:39:56 +0000486 }
Wei Yongjun0856f932008-11-02 16:14:27 +0000487 }
Eric Dumazet8a74ad62010-05-26 19:20:18 +0000488 unlock_sock_fast(sk, slow);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700489
Eric Dumazetbeb39db2015-05-30 09:16:53 -0700490 /* starting over for a new packet, but check if we need to yield */
491 cond_resched();
Xufeng Zhang9cfaa8d2011-06-21 10:43:40 +0000492 msg->msg_flags &= ~MSG_TRUNC;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700493 goto try_again;
494}
495
Gerrit Renkerba4e58e2006-11-27 11:10:57 -0800496void __udp6_lib_err(struct sk_buff *skb, struct inet6_skb_parm *opt,
Brian Haleyd5fdd6b2009-06-23 04:31:07 -0700497 u8 type, u8 code, int offset, __be32 info,
Eric Dumazet645ca702008-10-29 01:41:45 -0700498 struct udp_table *udptable)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700499{
500 struct ipv6_pinfo *np;
Eric Dumazetb71d1d42011-04-22 04:53:02 +0000501 const struct ipv6hdr *hdr = (const struct ipv6hdr *)skb->data;
502 const struct in6_addr *saddr = &hdr->saddr;
503 const struct in6_addr *daddr = &hdr->daddr;
Ian Morris67ba4152014-08-24 21:53:10 +0100504 struct udphdr *uh = (struct udphdr *)(skb->data+offset);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700505 struct sock *sk;
Wei Wange0d8c1b2016-02-17 13:58:22 -0800506 int harderr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700507 int err;
Duan Jiong7304fe42014-07-31 17:54:32 +0800508 struct net *net = dev_net(skb->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700509
Craig Galleke32ea7e2016-01-04 17:41:46 -0500510 sk = __udp6_lib_lookup(net, daddr, uh->dest, saddr, uh->source,
Craig Gallek538950a2016-01-04 17:41:47 -0500511 inet6_iif(skb), udptable, skb);
Ian Morris63159f22015-03-29 14:00:04 +0100512 if (!sk) {
Duan Jiong7304fe42014-07-31 17:54:32 +0800513 ICMP6_INC_STATS_BH(net, __in6_dev_get(skb->dev),
514 ICMP6_MIB_INERRORS);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700515 return;
Duan Jiong7304fe42014-07-31 17:54:32 +0800516 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700517
Wei Wange0d8c1b2016-02-17 13:58:22 -0800518 harderr = icmpv6_err_convert(type, code, &err);
519 np = inet6_sk(sk);
520
Hannes Frederic Sowa93b36cf2013-12-15 03:41:14 +0100521 if (type == ICMPV6_PKT_TOOBIG) {
522 if (!ip6_sk_accept_pmtu(sk))
523 goto out;
David S. Miller81aded22012-06-15 14:54:11 -0700524 ip6_sk_update_pmtu(skb, sk, info);
Wei Wange0d8c1b2016-02-17 13:58:22 -0800525 if (np->pmtudisc != IPV6_PMTUDISC_DONT)
526 harderr = 1;
Hannes Frederic Sowa93b36cf2013-12-15 03:41:14 +0100527 }
Duan Jiong1a462d12013-09-20 18:20:28 +0800528 if (type == NDISC_REDIRECT) {
David S. Millerec18d9a2012-07-12 00:25:15 -0700529 ip6_sk_redirect(skb, sk);
Duan Jiong1a462d12013-09-20 18:20:28 +0800530 goto out;
531 }
David S. Miller81aded22012-06-15 14:54:11 -0700532
Wei Wange0d8c1b2016-02-17 13:58:22 -0800533 if (!np->recverr) {
534 if (!harderr || sk->sk_state != TCP_ESTABLISHED)
535 goto out;
536 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700537 ipv6_icmp_error(sk, skb, err, uh->dest, ntohl(info), (u8 *)(uh+1));
Wei Wange0d8c1b2016-02-17 13:58:22 -0800538 }
Eric Dumazetb1faf562010-05-31 23:44:05 -0700539
Linus Torvalds1da177e2005-04-16 15:20:36 -0700540 sk->sk_err = err;
541 sk->sk_error_report(sk);
542out:
Eric Dumazetca065d02016-04-01 08:52:13 -0700543 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700544}
545
Benjamin LaHaisef7ad74f2012-04-27 08:23:21 +0000546static int __udpv6_queue_rcv_skb(struct sock *sk, struct sk_buff *skb)
547{
548 int rc;
549
Eric Dumazetefe42082013-10-03 15:42:29 -0700550 if (!ipv6_addr_any(&sk->sk_v6_daddr)) {
Benjamin LaHaisef7ad74f2012-04-27 08:23:21 +0000551 sock_rps_save_rxhash(sk, skb);
Shawn Bohrer005ec972013-10-07 11:01:38 -0500552 sk_mark_napi_id(sk, skb);
Eric Dumazet2c8c56e2014-11-11 05:54:28 -0800553 sk_incoming_cpu_update(sk);
Shawn Bohrer005ec972013-10-07 11:01:38 -0500554 }
Benjamin LaHaisef7ad74f2012-04-27 08:23:21 +0000555
samanthakumare6afc8a2016-04-05 12:41:15 -0400556 rc = __sock_queue_rcv_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)
562 UDP6_INC_STATS_BH(sock_net(sk),
563 UDP_MIB_RCVBUFERRORS, is_udplite);
564 UDP6_INC_STATS_BH(sock_net(sk), UDP_MIB_INERRORS, is_udplite);
565 kfree_skb(skb);
566 return -1;
567 }
568 return 0;
569}
570
Gerrit Renkerba4e58e2006-11-27 11:10:57 -0800571static __inline__ void udpv6_err(struct sk_buff *skb,
Brian Haleyd5fdd6b2009-06-23 04:31:07 -0700572 struct inet6_skb_parm *opt, u8 type,
Ian Morris67ba4152014-08-24 21:53:10 +0100573 u8 code, int offset, __be32 info)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700574{
Eric Dumazet645ca702008-10-29 01:41:45 -0700575 __udp6_lib_err(skb, opt, type, code, offset, info, &udp_table);
Gerrit Renkerba4e58e2006-11-27 11:10:57 -0800576}
577
Benjamin LaHaised7f3f622012-04-27 08:24:08 +0000578static struct static_key udpv6_encap_needed __read_mostly;
579void udpv6_encap_enable(void)
580{
581 if (!static_key_enabled(&udpv6_encap_needed))
582 static_key_slow_inc(&udpv6_encap_needed);
583}
584EXPORT_SYMBOL(udpv6_encap_enable);
585
Benjamin LaHaisef7ad74f2012-04-27 08:23:21 +0000586int 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);
David S. Millera18135e2006-08-15 00:00:09 -0700589 int rc;
Wang Chenb2bf1e22007-12-03 22:34:16 +1100590 int is_udplite = IS_UDPLITE(sk);
David S. Millera18135e2006-08-15 00:00:09 -0700591
Gerrit Renkerba4e58e2006-11-27 11:10:57 -0800592 if (!xfrm6_policy_check(sk, XFRM_POLICY_IN, skb))
593 goto drop;
594
Benjamin LaHaised7f3f622012-04-27 08:24:08 +0000595 if (static_key_false(&udpv6_encap_needed) && up->encap_type) {
596 int (*encap_rcv)(struct sock *sk, struct sk_buff *skb);
597
598 /*
599 * This is an encapsulation socket so pass the skb to
600 * the socket's udp_encap_rcv() hook. Otherwise, just
601 * fall through and pass this up the UDP socket.
602 * up->encap_rcv() returns the following value:
603 * =0 if skb was successfully passed to the encap
604 * handler or was discarded by it.
605 * >0 if skb should be passed on to UDP.
606 * <0 if skb should be resubmitted as proto -N
607 */
608
609 /* if we're overly short, let UDP handle it */
610 encap_rcv = ACCESS_ONCE(up->encap_rcv);
Ian Morris53b24b82015-03-29 14:00:05 +0100611 if (skb->len > sizeof(struct udphdr) && encap_rcv) {
Benjamin LaHaised7f3f622012-04-27 08:24:08 +0000612 int ret;
613
Tom Herbert0a809662014-05-07 16:52:39 -0700614 /* Verify checksum before giving to encap */
615 if (udp_lib_checksum_complete(skb))
616 goto csum_error;
617
Benjamin LaHaised7f3f622012-04-27 08:24:08 +0000618 ret = encap_rcv(sk, skb);
619 if (ret <= 0) {
620 UDP_INC_STATS_BH(sock_net(sk),
621 UDP_MIB_INDATAGRAMS,
622 is_udplite);
623 return -ret;
624 }
625 }
626
627 /* FALLTHROUGH -- it's a UDP Packet */
628 }
629
Gerrit Renkerba4e58e2006-11-27 11:10:57 -0800630 /*
631 * UDP-Lite specific tests, ignored on UDP sockets (see net/ipv4/udp.c).
632 */
Wang Chenb2bf1e22007-12-03 22:34:16 +1100633 if ((is_udplite & UDPLITE_RECV_CC) && UDP_SKB_CB(skb)->partial_cov) {
Gerrit Renkerba4e58e2006-11-27 11:10:57 -0800634
635 if (up->pcrlen == 0) { /* full coverage was set */
Joe Perchesba7a46f2014-11-11 10:59:17 -0800636 net_dbg_ratelimited("UDPLITE6: partial coverage %d while full coverage %d requested\n",
637 UDP_SKB_CB(skb)->cscov, skb->len);
Gerrit Renkerba4e58e2006-11-27 11:10:57 -0800638 goto drop;
639 }
640 if (UDP_SKB_CB(skb)->cscov < up->pcrlen) {
Joe Perchesba7a46f2014-11-11 10:59:17 -0800641 net_dbg_ratelimited("UDPLITE6: coverage %d too small, need min %d\n",
642 UDP_SKB_CB(skb)->cscov, up->pcrlen);
Gerrit Renkerba4e58e2006-11-27 11:10:57 -0800643 goto drop;
644 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700645 }
646
Eric Dumazet33d480c2011-08-11 19:30:52 +0000647 if (rcu_access_pointer(sk->sk_filter)) {
Herbert Xu1ab6eb62007-03-06 20:29:58 -0800648 if (udp_lib_checksum_complete(skb))
Eric Dumazet6a5dc9e2013-04-29 08:39:56 +0000649 goto csum_error;
samanthakumare6afc8a2016-04-05 12:41:15 -0400650 if (sk_filter(sk, skb))
651 goto drop;
Herbert Xu1ab6eb62007-03-06 20:29:58 -0800652 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700653
samanthakumare6afc8a2016-04-05 12:41:15 -0400654 udp_csum_pull_header(skb);
Sorin Dumitru274f4822014-07-22 21:16:51 +0300655 if (sk_rcvqueues_full(sk, sk->sk_rcvbuf)) {
James M Leddy3e215c82014-06-25 17:38:13 -0400656 UDP6_INC_STATS_BH(sock_net(sk),
657 UDP_MIB_RCVBUFERRORS, is_udplite);
Benjamin LaHaisecb80ef42012-04-27 08:23:59 +0000658 goto drop;
James M Leddy3e215c82014-06-25 17:38:13 -0400659 }
Benjamin LaHaisecb80ef42012-04-27 08:23:59 +0000660
Eric Dumazetd826eb12011-11-09 07:24:35 +0000661 skb_dst_drop(skb);
Wang Chencb759942007-12-03 22:33:28 +1100662
Benjamin LaHaisecb80ef42012-04-27 08:23:59 +0000663 bh_lock_sock(sk);
664 rc = 0;
665 if (!sock_owned_by_user(sk))
666 rc = __udpv6_queue_rcv_skb(sk, skb);
667 else if (sk_add_backlog(sk, skb, sk->sk_rcvbuf)) {
668 bh_unlock_sock(sk);
669 goto drop;
670 }
671 bh_unlock_sock(sk);
Benjamin LaHaisef7ad74f2012-04-27 08:23:21 +0000672
673 return rc;
James M Leddy3e215c82014-06-25 17:38:13 -0400674
Eric Dumazet6a5dc9e2013-04-29 08:39:56 +0000675csum_error:
676 UDP6_INC_STATS_BH(sock_net(sk), UDP_MIB_CSUMERRORS, is_udplite);
Gerrit Renkerba4e58e2006-11-27 11:10:57 -0800677drop:
Pavel Emelyanovef28d1a2008-07-05 21:19:40 -0700678 UDP6_INC_STATS_BH(sock_net(sk), UDP_MIB_INERRORS, is_udplite);
Benjamin LaHaisecb80ef42012-04-27 08:23:59 +0000679 atomic_inc(&sk->sk_drops);
Gerrit Renkerba4e58e2006-11-27 11:10:57 -0800680 kfree_skb(skb);
681 return -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700682}
683
David Held5cf3d462014-07-15 23:28:31 -0400684static bool __udp_v6_is_mcast_sock(struct net *net, struct sock *sk,
685 __be16 loc_port, const struct in6_addr *loc_addr,
686 __be16 rmt_port, const struct in6_addr *rmt_addr,
687 int dif, unsigned short hnum)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700688{
David Held5cf3d462014-07-15 23:28:31 -0400689 struct inet_sock *inet = inet_sk(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700690
David Held5cf3d462014-07-15 23:28:31 -0400691 if (!net_eq(sock_net(sk), net))
692 return false;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700693
David Held5cf3d462014-07-15 23:28:31 -0400694 if (udp_sk(sk)->udp_port_hash != hnum ||
695 sk->sk_family != PF_INET6 ||
696 (inet->inet_dport && inet->inet_dport != rmt_port) ||
697 (!ipv6_addr_any(&sk->sk_v6_daddr) &&
698 !ipv6_addr_equal(&sk->sk_v6_daddr, rmt_addr)) ||
Henning Rogge33b4b012015-05-18 21:08:49 +0200699 (sk->sk_bound_dev_if && sk->sk_bound_dev_if != dif) ||
700 (!ipv6_addr_any(&sk->sk_v6_rcv_saddr) &&
701 !ipv6_addr_equal(&sk->sk_v6_rcv_saddr, loc_addr)))
David Held5cf3d462014-07-15 23:28:31 -0400702 return false;
703 if (!inet6_mc_check(sk, loc_addr, rmt_addr))
704 return false;
705 return true;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700706}
707
Tom Herbert40685792014-05-02 16:29:58 -0700708static void udp6_csum_zero_error(struct sk_buff *skb)
709{
710 /* RFC 2460 section 8.1 says that we SHOULD log
711 * this error. Well, it is reasonable.
712 */
Joe Perchesba7a46f2014-11-11 10:59:17 -0800713 net_dbg_ratelimited("IPv6: udp checksum is 0 for [%pI6c]:%u->[%pI6c]:%u\n",
714 &ipv6_hdr(skb)->saddr, ntohs(udp_hdr(skb)->source),
715 &ipv6_hdr(skb)->daddr, ntohs(udp_hdr(skb)->dest));
Tom Herbert40685792014-05-02 16:29:58 -0700716}
717
Linus Torvalds1da177e2005-04-16 15:20:36 -0700718/*
719 * Note: called only from the BH handler context,
720 * so we don't need to lock the hashes.
721 */
Pavel Emelyanove3163492008-06-16 17:12:11 -0700722static int __udp6_lib_mcast_deliver(struct net *net, struct sk_buff *skb,
Eric Dumazetb71d1d42011-04-22 04:53:02 +0000723 const struct in6_addr *saddr, const struct in6_addr *daddr,
Rick Jones36cbb242014-11-06 10:37:54 -0800724 struct udp_table *udptable, int proto)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700725{
Eric Dumazetca065d02016-04-01 08:52:13 -0700726 struct sock *sk, *first = NULL;
Arnaldo Carvalho de Melo4bedb452007-03-13 14:28:48 -0300727 const struct udphdr *uh = udp_hdr(skb);
David Held5cf3d462014-07-15 23:28:31 -0400728 unsigned short hnum = ntohs(uh->dest);
729 struct udp_hslot *hslot = udp_hashslot(udptable, net, hnum);
Eric Dumazetca065d02016-04-01 08:52:13 -0700730 unsigned int offset = offsetof(typeof(*sk), sk_node);
David Held2dc41cf2014-07-15 23:28:32 -0400731 unsigned int hash2 = 0, hash2_any = 0, use_hash2 = (hslot->count > 10);
Eric Dumazetca065d02016-04-01 08:52:13 -0700732 int dif = inet6_iif(skb);
733 struct hlist_node *node;
734 struct sk_buff *nskb;
David Held2dc41cf2014-07-15 23:28:32 -0400735
736 if (use_hash2) {
737 hash2_any = udp6_portaddr_hash(net, &in6addr_any, hnum) &
738 udp_table.mask;
739 hash2 = udp6_portaddr_hash(net, daddr, hnum) & udp_table.mask;
740start_lookup:
741 hslot = &udp_table.hash2[hash2];
742 offset = offsetof(typeof(*sk), __sk_common.skc_portaddr_node);
743 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700744
Eric Dumazetca065d02016-04-01 08:52:13 -0700745 sk_for_each_entry_offset_rcu(sk, node, &hslot->head, offset) {
746 if (!__udp_v6_is_mcast_sock(net, sk, uh->dest, daddr,
747 uh->source, saddr, dif, hnum))
748 continue;
749 /* If zero checksum and no_check is not on for
750 * the socket then skip it.
751 */
752 if (!uh->check && !udp_sk(sk)->no_check6_rx)
753 continue;
754 if (!first) {
755 first = sk;
756 continue;
Hideo Aoki95766ff2007-12-31 00:29:24 -0800757 }
Eric Dumazetca065d02016-04-01 08:52:13 -0700758 nskb = skb_clone(skb, GFP_ATOMIC);
759 if (unlikely(!nskb)) {
760 atomic_inc(&sk->sk_drops);
761 UDP6_INC_STATS_BH(net, UDP_MIB_RCVBUFERRORS,
762 IS_UDPLITE(sk));
763 UDP6_INC_STATS_BH(net, UDP_MIB_INERRORS,
764 IS_UDPLITE(sk));
765 continue;
766 }
Eric Dumazeta1ab77f2009-11-08 10:18:52 +0000767
Eric Dumazetca065d02016-04-01 08:52:13 -0700768 if (udpv6_queue_rcv_skb(sk, nskb) > 0)
769 consume_skb(nskb);
770 }
Eric Dumazeta1ab77f2009-11-08 10:18:52 +0000771
David Held2dc41cf2014-07-15 23:28:32 -0400772 /* Also lookup *:port if we are using hash2 and haven't done so yet. */
773 if (use_hash2 && hash2 != hash2_any) {
774 hash2 = hash2_any;
775 goto start_lookup;
776 }
777
Eric Dumazetca065d02016-04-01 08:52:13 -0700778 if (first) {
779 if (udpv6_queue_rcv_skb(first, skb) > 0)
780 consume_skb(skb);
Eric Dumazeta1ab77f2009-11-08 10:18:52 +0000781 } else {
Eric Dumazetca065d02016-04-01 08:52:13 -0700782 kfree_skb(skb);
783 UDP6_INC_STATS_BH(net, UDP_MIB_IGNOREDMULTI,
784 proto == IPPROTO_UDPLITE);
Eric Dumazeta1ab77f2009-11-08 10:18:52 +0000785 }
Gerrit Renkerba4e58e2006-11-27 11:10:57 -0800786 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700787}
788
Eric Dumazet645ca702008-10-29 01:41:45 -0700789int __udp6_lib_rcv(struct sk_buff *skb, struct udp_table *udptable,
Herbert Xu759e5d02007-03-25 20:10:56 -0700790 int proto)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700791{
Eric Dumazetb71d1d42011-04-22 04:53:02 +0000792 const struct in6_addr *saddr, *daddr;
Eric Dumazetca065d02016-04-01 08:52:13 -0700793 struct net *net = dev_net(skb->dev);
794 struct udphdr *uh;
795 struct sock *sk;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700796 u32 ulen = 0;
797
798 if (!pskb_may_pull(skb, sizeof(struct udphdr)))
Bjørn Morkd6bc0142010-05-06 03:44:35 +0000799 goto discard;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700800
Arnaldo Carvalho de Melo0660e032007-04-25 17:54:47 -0700801 saddr = &ipv6_hdr(skb)->saddr;
802 daddr = &ipv6_hdr(skb)->daddr;
Arnaldo Carvalho de Melo4bedb452007-03-13 14:28:48 -0300803 uh = udp_hdr(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700804
805 ulen = ntohs(uh->len);
Gerrit Renkerba4e58e2006-11-27 11:10:57 -0800806 if (ulen > skb->len)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700807 goto short_packet;
808
Herbert Xu759e5d02007-03-25 20:10:56 -0700809 if (proto == IPPROTO_UDP) {
810 /* UDP validates ulen. */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700811
Gerrit Renkerba4e58e2006-11-27 11:10:57 -0800812 /* Check for jumbo payload */
813 if (ulen == 0)
814 ulen = skb->len;
815
816 if (ulen < sizeof(*uh))
817 goto short_packet;
818
819 if (ulen < skb->len) {
820 if (pskb_trim_rcsum(skb, ulen))
821 goto short_packet;
Arnaldo Carvalho de Melo0660e032007-04-25 17:54:47 -0700822 saddr = &ipv6_hdr(skb)->saddr;
823 daddr = &ipv6_hdr(skb)->daddr;
Arnaldo Carvalho de Melo4bedb452007-03-13 14:28:48 -0300824 uh = udp_hdr(skb);
Gerrit Renkerba4e58e2006-11-27 11:10:57 -0800825 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700826 }
827
Herbert Xu759e5d02007-03-25 20:10:56 -0700828 if (udp6_csum_init(skb, uh, proto))
Eric Dumazet6a5dc9e2013-04-29 08:39:56 +0000829 goto csum_error;
Herbert Xu759e5d02007-03-25 20:10:56 -0700830
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900831 /*
832 * Multicast receive code
Linus Torvalds1da177e2005-04-16 15:20:36 -0700833 */
Gerrit Renkerba4e58e2006-11-27 11:10:57 -0800834 if (ipv6_addr_is_multicast(daddr))
Pavel Emelyanove3163492008-06-16 17:12:11 -0700835 return __udp6_lib_mcast_deliver(net, skb,
Rick Jones36cbb242014-11-06 10:37:54 -0800836 saddr, daddr, udptable, proto);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700837
838 /* Unicast */
839
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900840 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700841 * check socket cache ... must talk to Alan about his plans
842 * for sock caches... i'll skip this for now.
843 */
KOVACS Krisztian607c4aa2008-10-07 12:38:32 -0700844 sk = __udp6_lib_lookup_skb(skb, uh->source, uh->dest, udptable);
Ian Morris53b24b82015-03-29 14:00:05 +0100845 if (sk) {
Eliezer Tamira5b50472013-06-10 11:40:00 +0300846 int ret;
847
Tom Herbert1c194482014-05-23 08:47:32 -0700848 if (!uh->check && !udp_sk(sk)->no_check6_rx) {
Tom Herbert40685792014-05-02 16:29:58 -0700849 udp6_csum_zero_error(skb);
850 goto csum_error;
851 }
852
Tom Herbert224d0192015-01-05 13:56:14 -0800853 if (inet_get_convert_csum(sk) && uh->check && !IS_UDPLITE(sk))
Tom Herbert2abb7cd2014-08-31 15:12:43 -0700854 skb_checksum_try_convert(skb, IPPROTO_UDP, uh->check,
855 ip6_compute_pseudo);
856
Eliezer Tamira5b50472013-06-10 11:40:00 +0300857 ret = udpv6_queue_rcv_skb(sk, skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700858
Bill Sommerfeld59dca1d2016-03-04 14:47:21 -0800859 /* a return value > 0 means to resubmit the input */
Benjamin LaHaisecb80ef42012-04-27 08:23:59 +0000860 if (ret > 0)
Bill Sommerfeld59dca1d2016-03-04 14:47:21 -0800861 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700862
Stephen Hemmingeradd459a2007-03-08 20:42:35 -0800863 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700864 }
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900865
Tom Herbert40685792014-05-02 16:29:58 -0700866 if (!uh->check) {
867 udp6_csum_zero_error(skb);
868 goto csum_error;
869 }
870
Benjamin LaHaisecb80ef42012-04-27 08:23:59 +0000871 if (!xfrm6_policy_check(NULL, XFRM_POLICY_IN, skb))
872 goto discard;
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900873
Benjamin LaHaisecb80ef42012-04-27 08:23:59 +0000874 if (udp_lib_checksum_complete(skb))
Eric Dumazet6a5dc9e2013-04-29 08:39:56 +0000875 goto csum_error;
Benjamin LaHaisecb80ef42012-04-27 08:23:59 +0000876
877 UDP6_INC_STATS_BH(net, UDP_MIB_NOPORTS, proto == IPPROTO_UDPLITE);
878 icmpv6_send(skb, ICMPV6_DEST_UNREACH, ICMPV6_PORT_UNREACH, 0);
879
880 kfree_skb(skb);
Stephen Hemmingeradd459a2007-03-08 20:42:35 -0800881 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700882
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900883short_packet:
Joe Perchesba7a46f2014-11-11 10:59:17 -0800884 net_dbg_ratelimited("UDP%sv6: short packet: From [%pI6c]:%u %d/%d to [%pI6c]:%u\n",
885 proto == IPPROTO_UDPLITE ? "-Lite" : "",
886 saddr, ntohs(uh->source),
887 ulen, skb->len,
888 daddr, ntohs(uh->dest));
Eric Dumazet6a5dc9e2013-04-29 08:39:56 +0000889 goto discard;
890csum_error:
891 UDP6_INC_STATS_BH(net, UDP_MIB_CSUMERRORS, proto == IPPROTO_UDPLITE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700892discard:
Pavel Emelyanovef28d1a2008-07-05 21:19:40 -0700893 UDP6_INC_STATS_BH(net, UDP_MIB_INERRORS, proto == IPPROTO_UDPLITE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700894 kfree_skb(skb);
Stephen Hemmingeradd459a2007-03-08 20:42:35 -0800895 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700896}
Gerrit Renkerba4e58e2006-11-27 11:10:57 -0800897
Herbert Xue5bbef22007-10-15 12:50:28 -0700898static __inline__ int udpv6_rcv(struct sk_buff *skb)
Gerrit Renkerba4e58e2006-11-27 11:10:57 -0800899{
Eric Dumazet645ca702008-10-29 01:41:45 -0700900 return __udp6_lib_rcv(skb, &udp_table, IPPROTO_UDP);
Gerrit Renkerba4e58e2006-11-27 11:10:57 -0800901}
902
Linus Torvalds1da177e2005-04-16 15:20:36 -0700903/*
904 * Throw away all pending data and cancel the corking. Socket is locked.
905 */
906static void udp_v6_flush_pending_frames(struct sock *sk)
907{
908 struct udp_sock *up = udp_sk(sk);
909
Denis V. Lunev36d926b2008-06-04 15:49:07 +0400910 if (up->pending == AF_INET)
911 udp_flush_pending_frames(sk);
912 else if (up->pending) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700913 up->len = 0;
914 up->pending = 0;
915 ip6_flush_pending_frames(sk);
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900916 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700917}
918
Sridhar Samudrala493c6be2009-07-09 08:09:54 +0000919/**
Ian Morris67ba4152014-08-24 21:53:10 +0100920 * udp6_hwcsum_outgoing - handle outgoing HW checksumming
921 * @sk: socket we are sending on
922 * @skb: sk_buff containing the filled-in UDP header
923 * (checksum field must be zeroed out)
Sridhar Samudrala493c6be2009-07-09 08:09:54 +0000924 */
925static void udp6_hwcsum_outgoing(struct sock *sk, struct sk_buff *skb,
926 const struct in6_addr *saddr,
927 const struct in6_addr *daddr, int len)
928{
929 unsigned int offset;
930 struct udphdr *uh = udp_hdr(skb);
Vlad Yasevichd39d9382015-01-31 10:40:16 -0500931 struct sk_buff *frags = skb_shinfo(skb)->frag_list;
Sridhar Samudrala493c6be2009-07-09 08:09:54 +0000932 __wsum csum = 0;
933
Vlad Yasevichd39d9382015-01-31 10:40:16 -0500934 if (!frags) {
Sridhar Samudrala493c6be2009-07-09 08:09:54 +0000935 /* Only one fragment on the socket. */
936 skb->csum_start = skb_transport_header(skb) - skb->head;
937 skb->csum_offset = offsetof(struct udphdr, check);
938 uh->check = ~csum_ipv6_magic(saddr, daddr, len, IPPROTO_UDP, 0);
939 } else {
940 /*
941 * HW-checksum won't work as there are two or more
942 * fragments on the socket so that all csums of sk_buffs
943 * should be together
944 */
945 offset = skb_transport_offset(skb);
946 skb->csum = skb_checksum(skb, offset, skb->len - offset, 0);
947
948 skb->ip_summed = CHECKSUM_NONE;
949
Vlad Yasevichd39d9382015-01-31 10:40:16 -0500950 do {
951 csum = csum_add(csum, frags->csum);
952 } while ((frags = frags->next));
Sridhar Samudrala493c6be2009-07-09 08:09:54 +0000953
954 uh->check = csum_ipv6_magic(saddr, daddr, len, IPPROTO_UDP,
955 csum);
956 if (uh->check == 0)
957 uh->check = CSUM_MANGLED_0;
958 }
959}
960
Linus Torvalds1da177e2005-04-16 15:20:36 -0700961/*
962 * Sending
963 */
964
Vlad Yasevichd39d9382015-01-31 10:40:16 -0500965static int udp_v6_send_skb(struct sk_buff *skb, struct flowi6 *fl6)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700966{
Vlad Yasevichd39d9382015-01-31 10:40:16 -0500967 struct sock *sk = skb->sk;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700968 struct udphdr *uh;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700969 int err = 0;
Wang Chenb2bf1e22007-12-03 22:34:16 +1100970 int is_udplite = IS_UDPLITE(sk);
Al Viro868c86b2006-11-14 21:35:48 -0800971 __wsum csum = 0;
Vlad Yasevichd39d9382015-01-31 10:40:16 -0500972 int offset = skb_transport_offset(skb);
973 int len = skb->len - offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700974
975 /*
976 * Create a UDP header
977 */
Arnaldo Carvalho de Melo4bedb452007-03-13 14:28:48 -0300978 uh = udp_hdr(skb);
David S. Miller1958b852011-03-12 16:36:19 -0500979 uh->source = fl6->fl6_sport;
980 uh->dest = fl6->fl6_dport;
Vlad Yasevichd39d9382015-01-31 10:40:16 -0500981 uh->len = htons(len);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700982 uh->check = 0;
983
Wang Chenb2bf1e22007-12-03 22:34:16 +1100984 if (is_udplite)
Vlad Yasevichd39d9382015-01-31 10:40:16 -0500985 csum = udplite_csum(skb);
986 else if (udp_sk(sk)->no_check6_tx) { /* UDP csum disabled */
Tom Herbert40685792014-05-02 16:29:58 -0700987 skb->ip_summed = CHECKSUM_NONE;
988 goto send;
989 } else if (skb->ip_summed == CHECKSUM_PARTIAL) { /* UDP hardware csum */
Vlad Yasevichd39d9382015-01-31 10:40:16 -0500990 udp6_hwcsum_outgoing(sk, skb, &fl6->saddr, &fl6->daddr, len);
Sridhar Samudrala493c6be2009-07-09 08:09:54 +0000991 goto send;
992 } else
Vlad Yasevichd39d9382015-01-31 10:40:16 -0500993 csum = udp_csum(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700994
Gerrit Renkerba4e58e2006-11-27 11:10:57 -0800995 /* add protocol-dependent pseudo-header */
David S. Miller4c9483b2011-03-12 16:22:43 -0500996 uh->check = csum_ipv6_magic(&fl6->saddr, &fl6->daddr,
Vlad Yasevichd39d9382015-01-31 10:40:16 -0500997 len, fl6->flowi6_proto, csum);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700998 if (uh->check == 0)
Al Virof6ab0282006-11-16 02:36:50 -0800999 uh->check = CSUM_MANGLED_0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001000
Sridhar Samudrala493c6be2009-07-09 08:09:54 +00001001send:
Vlad Yasevichd39d9382015-01-31 10:40:16 -05001002 err = ip6_send_skb(skb);
Eric Dumazet6ce9e7b2009-09-02 18:05:33 -07001003 if (err) {
1004 if (err == -ENOBUFS && !inet6_sk(sk)->recverr) {
1005 UDP6_INC_STATS_USER(sock_net(sk),
1006 UDP_MIB_SNDBUFERRORS, is_udplite);
1007 err = 0;
1008 }
1009 } else
1010 UDP6_INC_STATS_USER(sock_net(sk),
1011 UDP_MIB_OUTDATAGRAMS, is_udplite);
Vlad Yasevichd39d9382015-01-31 10:40:16 -05001012 return err;
1013}
1014
1015static int udp_v6_push_pending_frames(struct sock *sk)
1016{
1017 struct sk_buff *skb;
1018 struct udp_sock *up = udp_sk(sk);
1019 struct flowi6 fl6;
1020 int err = 0;
1021
1022 if (up->pending == AF_INET)
1023 return udp_push_pending_frames(sk);
1024
1025 /* ip6_finish_skb will release the cork, so make a copy of
1026 * fl6 here.
1027 */
1028 fl6 = inet_sk(sk)->cork.fl.u.ip6;
1029
1030 skb = ip6_finish_skb(sk);
1031 if (!skb)
1032 goto out;
1033
1034 err = udp_v6_send_skb(skb, &fl6);
1035
Linus Torvalds1da177e2005-04-16 15:20:36 -07001036out:
1037 up->len = 0;
1038 up->pending = 0;
1039 return err;
1040}
1041
Ying Xue1b784142015-03-02 15:37:48 +08001042int udpv6_sendmsg(struct sock *sk, struct msghdr *msg, size_t len)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001043{
1044 struct ipv6_txoptions opt_space;
1045 struct udp_sock *up = udp_sk(sk);
1046 struct inet_sock *inet = inet_sk(sk);
1047 struct ipv6_pinfo *np = inet6_sk(sk);
Steffen Hurrle342dfc32014-01-17 22:53:15 +01001048 DECLARE_SOCKADDR(struct sockaddr_in6 *, sin6, msg->msg_name);
Arnaud Ebalard20c59de2010-06-01 21:35:01 +00001049 struct in6_addr *daddr, *final_p, final;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001050 struct ipv6_txoptions *opt = NULL;
Eric Dumazet45f6fad2015-11-29 19:37:57 -08001051 struct ipv6_txoptions *opt_to_free = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001052 struct ip6_flowlabel *flowlabel = NULL;
David S. Miller4c9483b2011-03-12 16:22:43 -05001053 struct flowi6 fl6;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001054 struct dst_entry *dst;
1055 int addr_len = msg->msg_namelen;
1056 int ulen = len;
1057 int hlimit = -1;
YOSHIFUJI Hideaki41a1f8e2005-09-08 10:19:03 +09001058 int tclass = -1;
Brian Haley13b52cd2010-04-23 11:26:08 +00001059 int dontfrag = -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001060 int corkreq = up->corkflag || msg->msg_flags&MSG_MORE;
1061 int err;
Mitsuru KANDA987905d2005-09-18 00:30:08 -07001062 int connected = 0;
Wang Chenb2bf1e22007-12-03 22:34:16 +11001063 int is_udplite = IS_UDPLITE(sk);
Gerrit Renkerba4e58e2006-11-27 11:10:57 -08001064 int (*getfrag)(void *, char *, int, int, int, struct sk_buff *);
Soheil Hassas Yeganehad1e46a2016-04-02 23:08:11 -04001065 struct sockcm_cookie sockc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001066
1067 /* destination address check */
1068 if (sin6) {
1069 if (addr_len < offsetof(struct sockaddr, sa_data))
1070 return -EINVAL;
1071
1072 switch (sin6->sin6_family) {
1073 case AF_INET6:
1074 if (addr_len < SIN6_LEN_RFC2133)
1075 return -EINVAL;
1076 daddr = &sin6->sin6_addr;
1077 break;
1078 case AF_INET:
1079 goto do_udp_sendmsg;
1080 case AF_UNSPEC:
1081 msg->msg_name = sin6 = NULL;
1082 msg->msg_namelen = addr_len = 0;
1083 daddr = NULL;
1084 break;
1085 default:
1086 return -EINVAL;
1087 }
1088 } else if (!up->pending) {
1089 if (sk->sk_state != TCP_ESTABLISHED)
1090 return -EDESTADDRREQ;
Eric Dumazetefe42082013-10-03 15:42:29 -07001091 daddr = &sk->sk_v6_daddr;
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09001092 } else
Linus Torvalds1da177e2005-04-16 15:20:36 -07001093 daddr = NULL;
1094
1095 if (daddr) {
Brian Haleye773e4f2007-08-24 23:16:08 -07001096 if (ipv6_addr_v4mapped(daddr)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001097 struct sockaddr_in sin;
1098 sin.sin_family = AF_INET;
Eric Dumazetc720c7e2009-10-15 06:30:45 +00001099 sin.sin_port = sin6 ? sin6->sin6_port : inet->inet_dport;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001100 sin.sin_addr.s_addr = daddr->s6_addr32[3];
1101 msg->msg_name = &sin;
1102 msg->msg_namelen = sizeof(sin);
1103do_udp_sendmsg:
1104 if (__ipv6_only_sock(sk))
1105 return -ENETUNREACH;
Ying Xue1b784142015-03-02 15:37:48 +08001106 return udp_sendmsg(sk, msg, len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001107 }
1108 }
1109
1110 if (up->pending == AF_INET)
Ying Xue1b784142015-03-02 15:37:48 +08001111 return udp_sendmsg(sk, msg, len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001112
1113 /* Rough check on arithmetic overflow,
YOSHIFUJI Hideakib59e1392007-03-30 14:45:35 -07001114 better check is made in ip6_append_data().
Linus Torvalds1da177e2005-04-16 15:20:36 -07001115 */
1116 if (len > INT_MAX - sizeof(struct udphdr))
1117 return -EMSGSIZE;
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09001118
Vlad Yasevich03485f22015-01-31 10:40:17 -05001119 getfrag = is_udplite ? udplite_getfrag : ip_generic_getfrag;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001120 if (up->pending) {
1121 /*
1122 * There are pending frames.
1123 * The socket lock must be held while it's corked.
1124 */
1125 lock_sock(sk);
1126 if (likely(up->pending)) {
1127 if (unlikely(up->pending != AF_INET6)) {
1128 release_sock(sk);
1129 return -EAFNOSUPPORT;
1130 }
1131 dst = NULL;
1132 goto do_append_data;
1133 }
1134 release_sock(sk);
1135 }
1136 ulen += sizeof(struct udphdr);
1137
David S. Miller4c9483b2011-03-12 16:22:43 -05001138 memset(&fl6, 0, sizeof(fl6));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001139
1140 if (sin6) {
1141 if (sin6->sin6_port == 0)
1142 return -EINVAL;
1143
David S. Miller1958b852011-03-12 16:36:19 -05001144 fl6.fl6_dport = sin6->sin6_port;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001145 daddr = &sin6->sin6_addr;
1146
1147 if (np->sndflow) {
David S. Miller4c9483b2011-03-12 16:22:43 -05001148 fl6.flowlabel = sin6->sin6_flowinfo&IPV6_FLOWINFO_MASK;
1149 if (fl6.flowlabel&IPV6_FLOWLABEL_MASK) {
1150 flowlabel = fl6_sock_lookup(sk, fl6.flowlabel);
Ian Morris63159f22015-03-29 14:00:04 +01001151 if (!flowlabel)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001152 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001153 }
1154 }
1155
1156 /*
1157 * Otherwise it will be difficult to maintain
1158 * sk->sk_dst_cache.
1159 */
1160 if (sk->sk_state == TCP_ESTABLISHED &&
Eric Dumazetefe42082013-10-03 15:42:29 -07001161 ipv6_addr_equal(daddr, &sk->sk_v6_daddr))
1162 daddr = &sk->sk_v6_daddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001163
1164 if (addr_len >= sizeof(struct sockaddr_in6) &&
1165 sin6->sin6_scope_id &&
Hannes Frederic Sowa842df072013-03-08 02:07:19 +00001166 __ipv6_addr_needs_scope_id(__ipv6_addr_type(daddr)))
David S. Miller4c9483b2011-03-12 16:22:43 -05001167 fl6.flowi6_oif = sin6->sin6_scope_id;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001168 } else {
1169 if (sk->sk_state != TCP_ESTABLISHED)
1170 return -EDESTADDRREQ;
1171
David S. Miller1958b852011-03-12 16:36:19 -05001172 fl6.fl6_dport = inet->inet_dport;
Eric Dumazetefe42082013-10-03 15:42:29 -07001173 daddr = &sk->sk_v6_daddr;
David S. Miller4c9483b2011-03-12 16:22:43 -05001174 fl6.flowlabel = np->flow_label;
Mitsuru KANDA987905d2005-09-18 00:30:08 -07001175 connected = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001176 }
1177
David S. Miller4c9483b2011-03-12 16:22:43 -05001178 if (!fl6.flowi6_oif)
1179 fl6.flowi6_oif = sk->sk_bound_dev_if;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001180
David S. Miller4c9483b2011-03-12 16:22:43 -05001181 if (!fl6.flowi6_oif)
1182 fl6.flowi6_oif = np->sticky_pktinfo.ipi6_ifindex;
Yang Hongyang9f690db2008-12-16 02:08:29 -08001183
David S. Miller4c9483b2011-03-12 16:22:43 -05001184 fl6.flowi6_mark = sk->sk_mark;
Soheil Hassas Yeganehc14ac942016-04-02 23:08:12 -04001185 sockc.tsflags = sk->sk_tsflags;
Brian Haley51953d52009-10-05 08:24:16 +00001186
Linus Torvalds1da177e2005-04-16 15:20:36 -07001187 if (msg->msg_controllen) {
1188 opt = &opt_space;
1189 memset(opt, 0, sizeof(struct ipv6_txoptions));
1190 opt->tot_len = sizeof(*opt);
1191
Tom Parkin73df66f2013-01-31 01:02:24 +00001192 err = ip6_datagram_send_ctl(sock_net(sk), sk, msg, &fl6, opt,
Soheil Hassas Yeganehad1e46a2016-04-02 23:08:11 -04001193 &hlimit, &tclass, &dontfrag,
1194 &sockc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001195 if (err < 0) {
1196 fl6_sock_release(flowlabel);
1197 return err;
1198 }
David S. Miller4c9483b2011-03-12 16:22:43 -05001199 if ((fl6.flowlabel&IPV6_FLOWLABEL_MASK) && !flowlabel) {
1200 flowlabel = fl6_sock_lookup(sk, fl6.flowlabel);
Ian Morris63159f22015-03-29 14:00:04 +01001201 if (!flowlabel)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001202 return -EINVAL;
1203 }
1204 if (!(opt->opt_nflen|opt->opt_flen))
1205 opt = NULL;
Mitsuru KANDA987905d2005-09-18 00:30:08 -07001206 connected = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001207 }
Eric Dumazet45f6fad2015-11-29 19:37:57 -08001208 if (!opt) {
1209 opt = txopt_get(np);
1210 opt_to_free = opt;
1211 }
YOSHIFUJI Hideakidf9890c2005-11-20 12:23:18 +09001212 if (flowlabel)
1213 opt = fl6_merge_options(&opt_space, flowlabel, opt);
1214 opt = ipv6_fixup_options(&opt_space, opt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001215
David S. Miller4c9483b2011-03-12 16:22:43 -05001216 fl6.flowi6_proto = sk->sk_protocol;
Brian Haley876c7f42008-04-11 00:38:24 -04001217 if (!ipv6_addr_any(daddr))
Alexey Dobriyan4e3fd7a2011-11-21 03:39:03 +00001218 fl6.daddr = *daddr;
Brian Haley876c7f42008-04-11 00:38:24 -04001219 else
David S. Miller4c9483b2011-03-12 16:22:43 -05001220 fl6.daddr.s6_addr[15] = 0x1; /* :: means loopback (BSD'ism) */
1221 if (ipv6_addr_any(&fl6.saddr) && !ipv6_addr_any(&np->saddr))
Alexey Dobriyan4e3fd7a2011-11-21 03:39:03 +00001222 fl6.saddr = np->saddr;
David S. Miller1958b852011-03-12 16:36:19 -05001223 fl6.fl6_sport = inet->inet_sport;
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09001224
David S. Miller4c9483b2011-03-12 16:22:43 -05001225 final_p = fl6_update_dst(&fl6, opt, &final);
Arnaud Ebalard20c59de2010-06-01 21:35:01 +00001226 if (final_p)
Mitsuru KANDA987905d2005-09-18 00:30:08 -07001227 connected = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001228
David S. Miller4c9483b2011-03-12 16:22:43 -05001229 if (!fl6.flowi6_oif && ipv6_addr_is_multicast(&fl6.daddr)) {
1230 fl6.flowi6_oif = np->mcast_oif;
Mitsuru KANDA987905d2005-09-18 00:30:08 -07001231 connected = 0;
Erich E. Hooverc4062df2012-02-08 09:11:08 +00001232 } else if (!fl6.flowi6_oif)
1233 fl6.flowi6_oif = np->ucast_oif;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001234
David S. Miller4c9483b2011-03-12 16:22:43 -05001235 security_sk_classify_flow(sk, flowi6_to_flowi(&fl6));
Venkat Yekkiralabeb8d132006-08-04 23:12:42 -07001236
Steffen Klassert0e0d44a2013-08-28 08:04:14 +02001237 dst = ip6_sk_dst_lookup_flow(sk, &fl6, final_p);
David S. Miller68d0c6d2011-03-01 13:19:07 -08001238 if (IS_ERR(dst)) {
1239 err = PTR_ERR(dst);
1240 dst = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001241 goto out;
David S. Miller14e50e52007-05-24 18:17:54 -07001242 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001243
Lorenzo Colitti5c986312014-04-29 11:57:34 +09001244 if (hlimit < 0)
1245 hlimit = ip6_sk_dst_hoplimit(np, &fl6, dst);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001246
Gerrit Renkere651f032009-08-09 08:12:48 +00001247 if (tclass < 0)
YOSHIFUJI Hideaki41a1f8e2005-09-08 10:19:03 +09001248 tclass = np->tclass;
YOSHIFUJI Hideaki41a1f8e2005-09-08 10:19:03 +09001249
Linus Torvalds1da177e2005-04-16 15:20:36 -07001250 if (msg->msg_flags&MSG_CONFIRM)
1251 goto do_confirm;
1252back_from_confirm:
1253
Vlad Yasevich03485f22015-01-31 10:40:17 -05001254 /* Lockless fast path for the non-corking case */
1255 if (!corkreq) {
1256 struct sk_buff *skb;
1257
1258 skb = ip6_make_skb(sk, getfrag, msg, ulen,
1259 sizeof(struct udphdr), hlimit, tclass, opt,
1260 &fl6, (struct rt6_info *)dst,
Soheil Hassas Yeganehc14ac942016-04-02 23:08:12 -04001261 msg->msg_flags, dontfrag, &sockc);
Vlad Yasevich03485f22015-01-31 10:40:17 -05001262 err = PTR_ERR(skb);
1263 if (!IS_ERR_OR_NULL(skb))
1264 err = udp_v6_send_skb(skb, &fl6);
1265 goto release_dst;
1266 }
1267
Linus Torvalds1da177e2005-04-16 15:20:36 -07001268 lock_sock(sk);
1269 if (unlikely(up->pending)) {
1270 /* The socket is already corked while preparing it. */
1271 /* ... which is an evident application bug. --ANK */
1272 release_sock(sk);
1273
Joe Perchesba7a46f2014-11-11 10:59:17 -08001274 net_dbg_ratelimited("udp cork app bug 2\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001275 err = -EINVAL;
1276 goto out;
1277 }
1278
1279 up->pending = AF_INET6;
1280
1281do_append_data:
Jiri Pirkoe36d3ff2013-10-19 12:29:15 +02001282 if (dontfrag < 0)
1283 dontfrag = np->dontfrag;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001284 up->len += ulen;
Al Virof69e6d12014-11-24 13:23:40 -05001285 err = ip6_append_data(sk, getfrag, msg, ulen,
David S. Miller4c9483b2011-03-12 16:22:43 -05001286 sizeof(struct udphdr), hlimit, tclass, opt, &fl6,
Ian Morris67ba4152014-08-24 21:53:10 +01001287 (struct rt6_info *)dst,
Soheil Hassas Yeganehc14ac942016-04-02 23:08:12 -04001288 corkreq ? msg->msg_flags|MSG_MORE : msg->msg_flags, dontfrag,
1289 &sockc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001290 if (err)
1291 udp_v6_flush_pending_frames(sk);
1292 else if (!corkreq)
Gerrit Renker4c0a6cb2006-11-27 09:29:59 -08001293 err = udp_v6_push_pending_frames(sk);
Herbert Xu1e0c14f2006-10-03 14:35:49 -07001294 else if (unlikely(skb_queue_empty(&sk->sk_write_queue)))
1295 up->pending = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001296
Vlad Yasevich03485f22015-01-31 10:40:17 -05001297 if (err > 0)
1298 err = np->recverr ? net_xmit_errno(err) : 0;
1299 release_sock(sk);
1300
1301release_dst:
David S. Millera5e7c212005-10-03 14:21:58 -07001302 if (dst) {
1303 if (connected) {
1304 ip6_dst_store(sk, dst,
Eric Dumazetefe42082013-10-03 15:42:29 -07001305 ipv6_addr_equal(&fl6.daddr, &sk->sk_v6_daddr) ?
1306 &sk->sk_v6_daddr : NULL,
YOSHIFUJI Hideaki8e1ef0a2006-08-29 17:15:09 -07001307#ifdef CONFIG_IPV6_SUBTREES
David S. Miller4c9483b2011-03-12 16:22:43 -05001308 ipv6_addr_equal(&fl6.saddr, &np->saddr) ?
YOSHIFUJI Hideaki8e1ef0a2006-08-29 17:15:09 -07001309 &np->saddr :
1310#endif
1311 NULL);
David S. Millera5e7c212005-10-03 14:21:58 -07001312 } else {
1313 dst_release(dst);
1314 }
YOSHIFUJI Hideakia3c96082008-06-04 01:30:25 +09001315 dst = NULL;
David S. Millera5e7c212005-10-03 14:21:58 -07001316 }
1317
Linus Torvalds1da177e2005-04-16 15:20:36 -07001318out:
YOSHIFUJI Hideakia3c96082008-06-04 01:30:25 +09001319 dst_release(dst);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001320 fl6_sock_release(flowlabel);
Eric Dumazet45f6fad2015-11-29 19:37:57 -08001321 txopt_put(opt_to_free);
YOSHIFUJI Hideakicd562c92007-09-14 17:15:01 -07001322 if (!err)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001323 return len;
David S. Millera18135e2006-08-15 00:00:09 -07001324 /*
1325 * ENOBUFS = no kernel mem, SOCK_NOSPACE = no sndbuf space. Reporting
1326 * ENOBUFS might not be good (it's not tunable per se), but otherwise
1327 * we don't have a good statistic (IpOutDiscards but it can be too many
1328 * things). We could add another new stat but at least for now that
1329 * seems like overkill.
1330 */
1331 if (err == -ENOBUFS || test_bit(SOCK_NOSPACE, &sk->sk_socket->flags)) {
Pavel Emelyanov235b9f72008-07-05 21:19:20 -07001332 UDP6_INC_STATS_USER(sock_net(sk),
1333 UDP_MIB_SNDBUFERRORS, is_udplite);
David S. Millera18135e2006-08-15 00:00:09 -07001334 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001335 return err;
1336
1337do_confirm:
1338 dst_confirm(dst);
1339 if (!(msg->msg_flags&MSG_PROBE) || len)
1340 goto back_from_confirm;
1341 err = 0;
1342 goto out;
1343}
1344
Brian Haley7d06b2e2008-06-14 17:04:49 -07001345void udpv6_destroy_sock(struct sock *sk)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001346{
Tom Parkin44046a52013-03-19 06:11:12 +00001347 struct udp_sock *up = udp_sk(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001348 lock_sock(sk);
1349 udp_v6_flush_pending_frames(sk);
1350 release_sock(sk);
1351
Tom Parkin44046a52013-03-19 06:11:12 +00001352 if (static_key_false(&udpv6_encap_needed) && up->encap_type) {
1353 void (*encap_destroy)(struct sock *sk);
1354 encap_destroy = ACCESS_ONCE(up->encap_destroy);
1355 if (encap_destroy)
1356 encap_destroy(sk);
1357 }
1358
Linus Torvalds1da177e2005-04-16 15:20:36 -07001359 inet6_destroy_sock(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001360}
1361
1362/*
1363 * Socket option code for UDP
1364 */
Gerrit Renkerba4e58e2006-11-27 11:10:57 -08001365int udpv6_setsockopt(struct sock *sk, int level, int optname,
David S. Millerb7058842009-09-30 16:12:20 -07001366 char __user *optval, unsigned int optlen)
Dmitry Mishin3fdadf72006-03-20 22:45:21 -08001367{
David S. Millerdb8dac22008-03-06 16:22:02 -08001368 if (level == SOL_UDP || level == SOL_UDPLITE)
Gerrit Renker4c0a6cb2006-11-27 09:29:59 -08001369 return udp_lib_setsockopt(sk, level, optname, optval, optlen,
1370 udp_v6_push_pending_frames);
Gerrit Renkerba4e58e2006-11-27 11:10:57 -08001371 return ipv6_setsockopt(sk, level, optname, optval, optlen);
Dmitry Mishin3fdadf72006-03-20 22:45:21 -08001372}
1373
1374#ifdef CONFIG_COMPAT
Gerrit Renkerba4e58e2006-11-27 11:10:57 -08001375int compat_udpv6_setsockopt(struct sock *sk, int level, int optname,
David S. Millerb7058842009-09-30 16:12:20 -07001376 char __user *optval, unsigned int optlen)
Dmitry Mishin3fdadf72006-03-20 22:45:21 -08001377{
David S. Millerdb8dac22008-03-06 16:22:02 -08001378 if (level == SOL_UDP || level == SOL_UDPLITE)
Gerrit Renker4c0a6cb2006-11-27 09:29:59 -08001379 return udp_lib_setsockopt(sk, level, optname, optval, optlen,
1380 udp_v6_push_pending_frames);
Gerrit Renkerba4e58e2006-11-27 11:10:57 -08001381 return compat_ipv6_setsockopt(sk, level, optname, optval, optlen);
Dmitry Mishin3fdadf72006-03-20 22:45:21 -08001382}
1383#endif
1384
Gerrit Renkerba4e58e2006-11-27 11:10:57 -08001385int udpv6_getsockopt(struct sock *sk, int level, int optname,
1386 char __user *optval, int __user *optlen)
Dmitry Mishin3fdadf72006-03-20 22:45:21 -08001387{
David S. Millerdb8dac22008-03-06 16:22:02 -08001388 if (level == SOL_UDP || level == SOL_UDPLITE)
Gerrit Renker4c0a6cb2006-11-27 09:29:59 -08001389 return udp_lib_getsockopt(sk, level, optname, optval, optlen);
Gerrit Renkerba4e58e2006-11-27 11:10:57 -08001390 return ipv6_getsockopt(sk, level, optname, optval, optlen);
Dmitry Mishin3fdadf72006-03-20 22:45:21 -08001391}
1392
1393#ifdef CONFIG_COMPAT
Gerrit Renkerba4e58e2006-11-27 11:10:57 -08001394int compat_udpv6_getsockopt(struct sock *sk, int level, int optname,
1395 char __user *optval, int __user *optlen)
Dmitry Mishin3fdadf72006-03-20 22:45:21 -08001396{
David S. Millerdb8dac22008-03-06 16:22:02 -08001397 if (level == SOL_UDP || level == SOL_UDPLITE)
Gerrit Renker4c0a6cb2006-11-27 09:29:59 -08001398 return udp_lib_getsockopt(sk, level, optname, optval, optlen);
Gerrit Renkerba4e58e2006-11-27 11:10:57 -08001399 return compat_ipv6_getsockopt(sk, level, optname, optval, optlen);
Dmitry Mishin3fdadf72006-03-20 22:45:21 -08001400}
1401#endif
1402
Alexey Dobriyan41135cc2009-09-14 12:22:28 +00001403static const struct inet6_protocol udpv6_protocol = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001404 .handler = udpv6_rcv,
1405 .err_handler = udpv6_err,
1406 .flags = INET6_PROTO_NOPOLICY|INET6_PROTO_FINAL,
1407};
1408
1409/* ------------------------------------------------------------------------ */
1410#ifdef CONFIG_PROC_FS
Gerrit Renkerba4e58e2006-11-27 11:10:57 -08001411int udp6_seq_show(struct seq_file *seq, void *v)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001412{
Lorenzo Colitti17ef66af2013-05-31 15:05:48 +00001413 if (v == SEQ_START_TOKEN) {
1414 seq_puts(seq, IPV6_SEQ_DGRAM_HEADER);
1415 } else {
1416 int bucket = ((struct udp_iter_state *)seq->private)->bucket;
1417 struct inet_sock *inet = inet_sk(v);
1418 __u16 srcp = ntohs(inet->inet_sport);
1419 __u16 destp = ntohs(inet->inet_dport);
1420 ip6_dgram_sock_seq_show(seq, v, srcp, destp, bucket);
1421 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001422 return 0;
1423}
1424
Arjan van de Ven73cb88e2011-10-30 06:46:30 +00001425static const struct file_operations udp6_afinfo_seq_fops = {
1426 .owner = THIS_MODULE,
1427 .open = udp_seq_open,
1428 .read = seq_read,
1429 .llseek = seq_lseek,
1430 .release = seq_release_net
1431};
1432
Linus Torvalds1da177e2005-04-16 15:20:36 -07001433static struct udp_seq_afinfo udp6_seq_afinfo = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001434 .name = "udp6",
1435 .family = AF_INET6,
Eric Dumazet645ca702008-10-29 01:41:45 -07001436 .udp_table = &udp_table,
Arjan van de Ven73cb88e2011-10-30 06:46:30 +00001437 .seq_fops = &udp6_afinfo_seq_fops,
Denis V. Lunevdda61922008-03-28 18:24:26 -07001438 .seq_ops = {
1439 .show = udp6_seq_show,
1440 },
Linus Torvalds1da177e2005-04-16 15:20:36 -07001441};
1442
Alexey Dobriyan2c8c1e72010-01-17 03:35:32 +00001443int __net_init udp6_proc_init(struct net *net)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001444{
Daniel Lezcano0c96d8c2008-03-21 04:14:17 -07001445 return udp_proc_register(net, &udp6_seq_afinfo);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001446}
1447
Ian Morrisec120da2015-08-14 22:43:38 +01001448void udp6_proc_exit(struct net *net)
1449{
Daniel Lezcano0c96d8c2008-03-21 04:14:17 -07001450 udp_proc_unregister(net, &udp6_seq_afinfo);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001451}
1452#endif /* CONFIG_PROC_FS */
1453
Eric Dumazetf77d6022013-05-09 10:28:16 +00001454void udp_v6_clear_sk(struct sock *sk, int size)
1455{
1456 struct inet_sock *inet = inet_sk(sk);
1457
1458 /* we do not want to clear pinet6 field, because of RCU lookups */
1459 sk_prot_clear_portaddr_nulls(sk, offsetof(struct inet_sock, pinet6));
1460
1461 size -= offsetof(struct inet_sock, pinet6) + sizeof(inet->pinet6);
1462 memset(&inet->pinet6 + 1, 0, size);
1463}
1464
Linus Torvalds1da177e2005-04-16 15:20:36 -07001465/* ------------------------------------------------------------------------ */
1466
1467struct proto udpv6_prot = {
Arnaldo Carvalho de Melo543d9cf2006-03-20 22:48:35 -08001468 .name = "UDPv6",
1469 .owner = THIS_MODULE,
Gerrit Renkerba4e58e2006-11-27 11:10:57 -08001470 .close = udp_lib_close,
Arnaldo Carvalho de Melo543d9cf2006-03-20 22:48:35 -08001471 .connect = ip6_datagram_connect,
1472 .disconnect = udp_disconnect,
1473 .ioctl = udp_ioctl,
1474 .destroy = udpv6_destroy_sock,
1475 .setsockopt = udpv6_setsockopt,
1476 .getsockopt = udpv6_getsockopt,
1477 .sendmsg = udpv6_sendmsg,
1478 .recvmsg = udpv6_recvmsg,
Benjamin LaHaisef7ad74f2012-04-27 08:23:21 +00001479 .backlog_rcv = __udpv6_queue_rcv_skb,
Gerrit Renkerba4e58e2006-11-27 11:10:57 -08001480 .hash = udp_lib_hash,
1481 .unhash = udp_lib_unhash,
Eric Dumazet719f8352010-09-08 05:08:44 +00001482 .rehash = udp_v6_rehash,
Arnaldo Carvalho de Melo543d9cf2006-03-20 22:48:35 -08001483 .get_port = udp_v6_get_port,
Hideo Aoki95766ff2007-12-31 00:29:24 -08001484 .memory_allocated = &udp_memory_allocated,
1485 .sysctl_mem = sysctl_udp_mem,
1486 .sysctl_wmem = &sysctl_udp_wmem_min,
1487 .sysctl_rmem = &sysctl_udp_rmem_min,
Arnaldo Carvalho de Melo543d9cf2006-03-20 22:48:35 -08001488 .obj_size = sizeof(struct udp6_sock),
Eric Dumazet271b72c2008-10-29 02:11:14 -07001489 .slab_flags = SLAB_DESTROY_BY_RCU,
Eric Dumazet645ca702008-10-29 01:41:45 -07001490 .h.udp_table = &udp_table,
Dmitry Mishin3fdadf72006-03-20 22:45:21 -08001491#ifdef CONFIG_COMPAT
Arnaldo Carvalho de Melo543d9cf2006-03-20 22:48:35 -08001492 .compat_setsockopt = compat_udpv6_setsockopt,
1493 .compat_getsockopt = compat_udpv6_getsockopt,
Dmitry Mishin3fdadf72006-03-20 22:45:21 -08001494#endif
Eric Dumazetf77d6022013-05-09 10:28:16 +00001495 .clear_sk = udp_v6_clear_sk,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001496};
1497
Linus Torvalds1da177e2005-04-16 15:20:36 -07001498static struct inet_protosw udpv6_protosw = {
1499 .type = SOCK_DGRAM,
1500 .protocol = IPPROTO_UDP,
1501 .prot = &udpv6_prot,
1502 .ops = &inet6_dgram_ops,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001503 .flags = INET_PROTOSW_PERMANENT,
1504};
1505
Daniel Lezcano7f4e4862007-12-11 02:25:35 -08001506int __init udpv6_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001507{
Daniel Lezcano7f4e4862007-12-11 02:25:35 -08001508 int ret;
1509
Vlad Yasevich33362882012-11-15 08:49:15 +00001510 ret = inet6_add_protocol(&udpv6_protocol, IPPROTO_UDP);
1511 if (ret)
Vlad Yasevichc6b641a2012-11-15 08:49:22 +00001512 goto out;
Vlad Yasevich33362882012-11-15 08:49:15 +00001513
Daniel Lezcano7f4e4862007-12-11 02:25:35 -08001514 ret = inet6_register_protosw(&udpv6_protosw);
1515 if (ret)
1516 goto out_udpv6_protocol;
1517out:
1518 return ret;
1519
1520out_udpv6_protocol:
1521 inet6_del_protocol(&udpv6_protocol, IPPROTO_UDP);
1522 goto out;
1523}
1524
Daniel Lezcano09f77092007-12-13 05:34:58 -08001525void udpv6_exit(void)
Daniel Lezcano7f4e4862007-12-11 02:25:35 -08001526{
1527 inet6_unregister_protosw(&udpv6_protosw);
1528 inet6_del_protocol(&udpv6_protocol, IPPROTO_UDP);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001529}