blob: 6bc5c664fa46c048709db40d1a2a7cc5d4df63da [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;
216 struct hlist_nulls_node *node;
Tom Herbert72289b92013-01-22 09:50:44 +0000217 int score, badness, matches = 0, reuseport = 0;
Eric Dumazeted0dfff2016-01-19 08:36:43 -0800218 bool select_ok = true;
Tom Herbert72289b92013-01-22 09:50:44 +0000219 u32 hash = 0;
Eric Dumazetfddc17d2009-11-08 10:18:30 +0000220
221begin:
222 result = NULL;
223 badness = -1;
224 udp_portaddr_for_each_entry_rcu(sk, node, &hslot2->head) {
225 score = compute_score2(sk, net, saddr, sport,
226 daddr, hnum, dif);
227 if (score > badness) {
228 result = sk;
229 badness = score;
Tom Herbert72289b92013-01-22 09:50:44 +0000230 reuseport = sk->sk_reuseport;
231 if (reuseport) {
Hannes Frederic Sowab50026b2013-10-19 21:48:52 +0200232 hash = udp6_ehashfn(net, daddr, hnum,
233 saddr, sport);
Eric Dumazeted0dfff2016-01-19 08:36:43 -0800234 if (select_ok) {
235 struct sock *sk2;
236
237 sk2 = reuseport_select_sock(sk, hash, skb,
238 sizeof(struct udphdr));
239 if (sk2) {
240 result = sk2;
241 select_ok = false;
242 goto found;
243 }
Craig Galleke32ea7e2016-01-04 17:41:46 -0500244 }
Tom Herbert72289b92013-01-22 09:50:44 +0000245 matches = 1;
Eric Dumazet70da2682015-10-08 19:33:21 -0700246 }
Tom Herbert72289b92013-01-22 09:50:44 +0000247 } else if (score == badness && reuseport) {
248 matches++;
Daniel Borkmann8fc54f62014-08-23 20:58:54 +0200249 if (reciprocal_scale(hash, matches) == 0)
Tom Herbert72289b92013-01-22 09:50:44 +0000250 result = sk;
251 hash = next_pseudo_random32(hash);
Eric Dumazetfddc17d2009-11-08 10:18:30 +0000252 }
253 }
254 /*
255 * if the nulls value we got at the end of this lookup is
256 * not the expected one, we must restart lookup.
257 * We probably met an item that was moved to another chain.
258 */
259 if (get_nulls_value(node) != slot2)
260 goto begin;
261
262 if (result) {
Craig Galleke32ea7e2016-01-04 17:41:46 -0500263found:
Eric Dumazetc31504d2010-11-15 19:58:26 +0000264 if (unlikely(!atomic_inc_not_zero_hint(&result->sk_refcnt, 2)))
Eric Dumazetfddc17d2009-11-08 10:18:30 +0000265 result = NULL;
266 else if (unlikely(compute_score2(result, net, saddr, sport,
267 daddr, hnum, dif) < badness)) {
268 sock_put(result);
269 goto begin;
270 }
271 }
272 return result;
273}
274
Pavel Emelyanovfce82332011-12-09 06:23:34 +0000275struct sock *__udp6_lib_lookup(struct net *net,
Balazs Scheidler88440ae2010-10-21 16:04:33 +0200276 const struct in6_addr *saddr, __be16 sport,
277 const struct in6_addr *daddr, __be16 dport,
Craig Gallek538950a2016-01-04 17:41:47 -0500278 int dif, struct udp_table *udptable,
279 struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700280{
Eric Dumazet271b72c2008-10-29 02:11:14 -0700281 struct sock *sk, *result;
Eric Dumazet88ab1932008-11-16 19:39:21 -0800282 struct hlist_nulls_node *node;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700283 unsigned short hnum = ntohs(dport);
Eric Dumazetfddc17d2009-11-08 10:18:30 +0000284 unsigned int hash2, slot2, slot = udp_hashfn(net, hnum, udptable->mask);
285 struct udp_hslot *hslot2, *hslot = &udptable->hash[slot];
Tom Herbert72289b92013-01-22 09:50:44 +0000286 int score, badness, matches = 0, reuseport = 0;
Eric Dumazeted0dfff2016-01-19 08:36:43 -0800287 bool select_ok = true;
Tom Herbert72289b92013-01-22 09:50:44 +0000288 u32 hash = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700289
Eric Dumazet271b72c2008-10-29 02:11:14 -0700290 rcu_read_lock();
Eric Dumazetfddc17d2009-11-08 10:18:30 +0000291 if (hslot->count > 10) {
292 hash2 = udp6_portaddr_hash(net, daddr, hnum);
293 slot2 = hash2 & udptable->mask;
294 hslot2 = &udptable->hash2[slot2];
295 if (hslot->count < hslot2->count)
296 goto begin;
297
298 result = udp6_lib_lookup2(net, saddr, sport,
299 daddr, hnum, dif,
Craig Gallek11341582016-01-05 15:08:07 -0500300 hslot2, slot2, skb);
Eric Dumazetfddc17d2009-11-08 10:18:30 +0000301 if (!result) {
302 hash2 = udp6_portaddr_hash(net, &in6addr_any, hnum);
303 slot2 = hash2 & udptable->mask;
304 hslot2 = &udptable->hash2[slot2];
305 if (hslot->count < hslot2->count)
306 goto begin;
307
Jorge Boncompte [DTI2]1223c672010-04-08 04:56:48 +0000308 result = udp6_lib_lookup2(net, saddr, sport,
309 &in6addr_any, hnum, dif,
Craig Gallek11341582016-01-05 15:08:07 -0500310 hslot2, slot2, skb);
Eric Dumazetfddc17d2009-11-08 10:18:30 +0000311 }
312 rcu_read_unlock();
313 return result;
314 }
Eric Dumazet271b72c2008-10-29 02:11:14 -0700315begin:
316 result = NULL;
317 badness = -1;
Eric Dumazet88ab1932008-11-16 19:39:21 -0800318 sk_nulls_for_each_rcu(sk, node, &hslot->head) {
Eric Dumazet645ca702008-10-29 01:41:45 -0700319 score = compute_score(sk, net, hnum, saddr, sport, daddr, dport, dif);
320 if (score > badness) {
321 result = sk;
322 badness = score;
Tom Herbert72289b92013-01-22 09:50:44 +0000323 reuseport = sk->sk_reuseport;
324 if (reuseport) {
Hannes Frederic Sowab50026b2013-10-19 21:48:52 +0200325 hash = udp6_ehashfn(net, daddr, hnum,
326 saddr, sport);
Eric Dumazeted0dfff2016-01-19 08:36:43 -0800327 if (select_ok) {
328 struct sock *sk2;
329
330 sk2 = reuseport_select_sock(sk, hash, skb,
Craig Gallek538950a2016-01-04 17:41:47 -0500331 sizeof(struct udphdr));
Eric Dumazeted0dfff2016-01-19 08:36:43 -0800332 if (sk2) {
333 result = sk2;
334 select_ok = false;
335 goto found;
336 }
Craig Galleke32ea7e2016-01-04 17:41:46 -0500337 }
Tom Herbert72289b92013-01-22 09:50:44 +0000338 matches = 1;
339 }
340 } else if (score == badness && reuseport) {
341 matches++;
Daniel Borkmann8fc54f62014-08-23 20:58:54 +0200342 if (reciprocal_scale(hash, matches) == 0)
Tom Herbert72289b92013-01-22 09:50:44 +0000343 result = sk;
344 hash = next_pseudo_random32(hash);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700345 }
346 }
Eric Dumazet88ab1932008-11-16 19:39:21 -0800347 /*
348 * if the nulls value we got at the end of this lookup is
349 * not the expected one, we must restart lookup.
350 * We probably met an item that was moved to another chain.
351 */
Eric Dumazetfddc17d2009-11-08 10:18:30 +0000352 if (get_nulls_value(node) != slot)
Eric Dumazet88ab1932008-11-16 19:39:21 -0800353 goto begin;
354
Eric Dumazet271b72c2008-10-29 02:11:14 -0700355 if (result) {
Craig Galleke32ea7e2016-01-04 17:41:46 -0500356found:
Eric Dumazetc31504d2010-11-15 19:58:26 +0000357 if (unlikely(!atomic_inc_not_zero_hint(&result->sk_refcnt, 2)))
Eric Dumazet271b72c2008-10-29 02:11:14 -0700358 result = NULL;
359 else if (unlikely(compute_score(result, net, hnum, saddr, sport,
360 daddr, dport, dif) < badness)) {
361 sock_put(result);
362 goto begin;
363 }
364 }
365 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700366 return result;
367}
Pavel Emelyanovfce82332011-12-09 06:23:34 +0000368EXPORT_SYMBOL_GPL(__udp6_lib_lookup);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700369
KOVACS Krisztian607c4aa2008-10-07 12:38:32 -0700370static struct sock *__udp6_lib_lookup_skb(struct sk_buff *skb,
371 __be16 sport, __be16 dport,
Eric Dumazet645ca702008-10-29 01:41:45 -0700372 struct udp_table *udptable)
KOVACS Krisztian607c4aa2008-10-07 12:38:32 -0700373{
KOVACS Krisztian23542612008-10-07 12:41:01 -0700374 struct sock *sk;
Eric Dumazetb71d1d42011-04-22 04:53:02 +0000375 const struct ipv6hdr *iph = ipv6_hdr(skb);
KOVACS Krisztian607c4aa2008-10-07 12:38:32 -0700376
Ian Morrise5d08d72014-11-23 21:28:43 +0000377 sk = skb_steal_sock(skb);
378 if (unlikely(sk))
KOVACS Krisztian23542612008-10-07 12:41:01 -0700379 return sk;
Eric Dumazetadf30902009-06-02 05:19:30 +0000380 return __udp6_lib_lookup(dev_net(skb_dst(skb)->dev), &iph->saddr, sport,
381 &iph->daddr, dport, inet6_iif(skb),
Craig Gallek538950a2016-01-04 17:41:47 -0500382 udptable, skb);
KOVACS Krisztian607c4aa2008-10-07 12:38:32 -0700383}
384
Balazs Scheidleraa976fc2010-10-21 16:05:41 +0200385struct sock *udp6_lib_lookup(struct net *net, const struct in6_addr *saddr, __be16 sport,
386 const struct in6_addr *daddr, __be16 dport, int dif)
387{
Craig Gallek538950a2016-01-04 17:41:47 -0500388 return __udp6_lib_lookup(net, saddr, sport, daddr, dport, dif, &udp_table, NULL);
Balazs Scheidleraa976fc2010-10-21 16:05:41 +0200389}
390EXPORT_SYMBOL_GPL(udp6_lib_lookup);
391
Linus Torvalds1da177e2005-04-16 15:20:36 -0700392/*
Ian Morris67ba4152014-08-24 21:53:10 +0100393 * This should be easy, if there is something there we
394 * return it, otherwise we block.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700395 */
396
Ying Xue1b784142015-03-02 15:37:48 +0800397int udpv6_recvmsg(struct sock *sk, struct msghdr *msg, size_t len,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700398 int noblock, int flags, int *addr_len)
399{
400 struct ipv6_pinfo *np = inet6_sk(sk);
401 struct inet_sock *inet = inet_sk(sk);
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900402 struct sk_buff *skb;
David S. Miller59c2cda2011-12-01 14:12:55 -0500403 unsigned int ulen, copied;
Pavel Emelyanov3f518bf2012-02-21 07:30:58 +0000404 int peeked, off = 0;
Herbert Xu759e5d02007-03-25 20:10:56 -0700405 int err;
406 int is_udplite = IS_UDPLITE(sk);
Eric Dumazet197c9492015-12-30 08:51:12 -0500407 bool checksum_valid = false;
Wei Yongjunf26ba172008-11-02 16:11:01 +0000408 int is_udp4;
Eric Dumazet8a74ad62010-05-26 19:20:18 +0000409 bool slow;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700410
Linus Torvalds1da177e2005-04-16 15:20:36 -0700411 if (flags & MSG_ERRQUEUE)
Hannes Frederic Sowa85fbaa72013-11-23 00:46:12 +0100412 return ipv6_recv_error(sk, msg, len, addr_len);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700413
Brian Haley4b340ae2010-04-23 11:26:09 +0000414 if (np->rxpmtu && np->rxopt.bits.rxpmtu)
Hannes Frederic Sowa85fbaa72013-11-23 00:46:12 +0100415 return ipv6_recv_rxpmtu(sk, msg, len, addr_len);
Brian Haley4b340ae2010-04-23 11:26:09 +0000416
Linus Torvalds1da177e2005-04-16 15:20:36 -0700417try_again:
Herbert Xua59322b2007-12-05 01:53:40 -0800418 skb = __skb_recv_datagram(sk, flags | (noblock ? MSG_DONTWAIT : 0),
Pavel Emelyanov3f518bf2012-02-21 07:30:58 +0000419 &peeked, &off, &err);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700420 if (!skb)
421 goto out;
422
Herbert Xu759e5d02007-03-25 20:10:56 -0700423 ulen = skb->len - sizeof(struct udphdr);
David S. Miller59c2cda2011-12-01 14:12:55 -0500424 copied = len;
425 if (copied > ulen)
426 copied = ulen;
427 else if (copied < ulen)
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900428 msg->msg_flags |= MSG_TRUNC;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700429
Wei Yongjunf26ba172008-11-02 16:11:01 +0000430 is_udp4 = (skb->protocol == htons(ETH_P_IP));
431
Gerrit Renkerba4e58e2006-11-27 11:10:57 -0800432 /*
Herbert Xu759e5d02007-03-25 20:10:56 -0700433 * If checksum is needed at all, try to do it while copying the
434 * data. If the data is truncated, or if we only want a partial
435 * coverage checksum (UDP-Lite), do it before the copy.
Gerrit Renkerba4e58e2006-11-27 11:10:57 -0800436 */
Gerrit Renkerba4e58e2006-11-27 11:10:57 -0800437
David S. Miller59c2cda2011-12-01 14:12:55 -0500438 if (copied < ulen || UDP_SKB_CB(skb)->partial_cov) {
Eric Dumazet197c9492015-12-30 08:51:12 -0500439 checksum_valid = !udp_lib_checksum_complete(skb);
440 if (!checksum_valid)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700441 goto csum_copy_err;
Gerrit Renkerba4e58e2006-11-27 11:10:57 -0800442 }
443
Eric Dumazet197c9492015-12-30 08:51:12 -0500444 if (checksum_valid || skb_csum_unnecessary(skb))
David S. Miller51f3d022014-11-05 16:46:40 -0500445 err = skb_copy_datagram_msg(skb, sizeof(struct udphdr),
446 msg, copied);
Gerrit Renkerba4e58e2006-11-27 11:10:57 -0800447 else {
Al Viro227158d2014-04-06 18:47:38 -0400448 err = skb_copy_and_csum_datagram_msg(skb, sizeof(struct udphdr), msg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700449 if (err == -EINVAL)
450 goto csum_copy_err;
451 }
Eric Dumazet22911fc2012-06-27 00:23:44 +0000452 if (unlikely(err)) {
453 trace_kfree_skb(skb, udpv6_recvmsg);
Eric Dumazet979402b2012-09-05 23:34:44 +0000454 if (!peeked) {
455 atomic_inc(&sk->sk_drops);
456 if (is_udp4)
457 UDP_INC_STATS_USER(sock_net(sk),
458 UDP_MIB_INERRORS,
459 is_udplite);
460 else
461 UDP6_INC_STATS_USER(sock_net(sk),
462 UDP_MIB_INERRORS,
463 is_udplite);
464 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700465 goto out_free;
Eric Dumazet22911fc2012-06-27 00:23:44 +0000466 }
Wei Yongjunf26ba172008-11-02 16:11:01 +0000467 if (!peeked) {
468 if (is_udp4)
469 UDP_INC_STATS_USER(sock_net(sk),
470 UDP_MIB_INDATAGRAMS, is_udplite);
471 else
472 UDP6_INC_STATS_USER(sock_net(sk),
473 UDP_MIB_INDATAGRAMS, is_udplite);
474 }
Wang Chencb759942007-12-03 22:33:28 +1100475
Neil Horman3b885782009-10-12 13:26:31 -0700476 sock_recv_ts_and_drops(msg, sk, skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700477
478 /* Copy the address. */
479 if (msg->msg_name) {
Steffen Hurrle342dfc32014-01-17 22:53:15 +0100480 DECLARE_SOCKADDR(struct sockaddr_in6 *, sin6, msg->msg_name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700481 sin6->sin6_family = AF_INET6;
Arnaldo Carvalho de Melo4bedb452007-03-13 14:28:48 -0300482 sin6->sin6_port = udp_hdr(skb)->source;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700483 sin6->sin6_flowinfo = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700484
Hannes Frederic Sowa842df072013-03-08 02:07:19 +0000485 if (is_udp4) {
Brian Haleyb301e822009-10-07 13:58:25 -0700486 ipv6_addr_set_v4mapped(ip_hdr(skb)->saddr,
487 &sin6->sin6_addr);
Hannes Frederic Sowa842df072013-03-08 02:07:19 +0000488 sin6->sin6_scope_id = 0;
489 } else {
Alexey Dobriyan4e3fd7a2011-11-21 03:39:03 +0000490 sin6->sin6_addr = ipv6_hdr(skb)->saddr;
Hannes Frederic Sowa842df072013-03-08 02:07:19 +0000491 sin6->sin6_scope_id =
492 ipv6_iface_scope_id(&sin6->sin6_addr,
Duan Jiong43304872014-08-01 09:52:58 +0800493 inet6_iif(skb));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700494 }
Hannes Frederic Sowabceaa902013-11-18 04:20:45 +0100495 *addr_len = sizeof(*sin6);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700496 }
Hannes Frederic Sowa4b261c72014-01-20 03:43:08 +0100497
498 if (np->rxopt.all)
499 ip6_datagram_recv_common_ctl(sk, msg, skb);
500
Wei Yongjunf26ba172008-11-02 16:11:01 +0000501 if (is_udp4) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700502 if (inet->cmsg_flags)
503 ip_cmsg_recv(msg, skb);
504 } else {
505 if (np->rxopt.all)
Hannes Frederic Sowa4b261c72014-01-20 03:43:08 +0100506 ip6_datagram_recv_specific_ctl(sk, msg, skb);
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900507 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700508
David S. Miller59c2cda2011-12-01 14:12:55 -0500509 err = copied;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700510 if (flags & MSG_TRUNC)
Herbert Xu759e5d02007-03-25 20:10:56 -0700511 err = ulen;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700512
513out_free:
Eric Dumazet9d410c72009-10-30 05:03:53 +0000514 skb_free_datagram_locked(sk, skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700515out:
516 return err;
517
518csum_copy_err:
Eric Dumazet8a74ad62010-05-26 19:20:18 +0000519 slow = lock_sock_fast(sk);
Wei Yongjun0856f932008-11-02 16:14:27 +0000520 if (!skb_kill_datagram(sk, skb, flags)) {
Eric Dumazet6a5dc9e2013-04-29 08:39:56 +0000521 if (is_udp4) {
522 UDP_INC_STATS_USER(sock_net(sk),
523 UDP_MIB_CSUMERRORS, is_udplite);
Wei Yongjun0856f932008-11-02 16:14:27 +0000524 UDP_INC_STATS_USER(sock_net(sk),
525 UDP_MIB_INERRORS, is_udplite);
Eric Dumazet6a5dc9e2013-04-29 08:39:56 +0000526 } else {
527 UDP6_INC_STATS_USER(sock_net(sk),
528 UDP_MIB_CSUMERRORS, is_udplite);
Wei Yongjun0856f932008-11-02 16:14:27 +0000529 UDP6_INC_STATS_USER(sock_net(sk),
530 UDP_MIB_INERRORS, is_udplite);
Eric Dumazet6a5dc9e2013-04-29 08:39:56 +0000531 }
Wei Yongjun0856f932008-11-02 16:14:27 +0000532 }
Eric Dumazet8a74ad62010-05-26 19:20:18 +0000533 unlock_sock_fast(sk, slow);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700534
Eric Dumazetbeb39db2015-05-30 09:16:53 -0700535 /* starting over for a new packet, but check if we need to yield */
536 cond_resched();
Xufeng Zhang9cfaa8d2011-06-21 10:43:40 +0000537 msg->msg_flags &= ~MSG_TRUNC;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700538 goto try_again;
539}
540
Gerrit Renkerba4e58e2006-11-27 11:10:57 -0800541void __udp6_lib_err(struct sk_buff *skb, struct inet6_skb_parm *opt,
Brian Haleyd5fdd6b2009-06-23 04:31:07 -0700542 u8 type, u8 code, int offset, __be32 info,
Eric Dumazet645ca702008-10-29 01:41:45 -0700543 struct udp_table *udptable)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700544{
545 struct ipv6_pinfo *np;
Eric Dumazetb71d1d42011-04-22 04:53:02 +0000546 const struct ipv6hdr *hdr = (const struct ipv6hdr *)skb->data;
547 const struct in6_addr *saddr = &hdr->saddr;
548 const struct in6_addr *daddr = &hdr->daddr;
Ian Morris67ba4152014-08-24 21:53:10 +0100549 struct udphdr *uh = (struct udphdr *)(skb->data+offset);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700550 struct sock *sk;
Wei Wange0d8c1b2016-02-17 13:58:22 -0800551 int harderr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700552 int err;
Duan Jiong7304fe42014-07-31 17:54:32 +0800553 struct net *net = dev_net(skb->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700554
Craig Galleke32ea7e2016-01-04 17:41:46 -0500555 sk = __udp6_lib_lookup(net, daddr, uh->dest, saddr, uh->source,
Craig Gallek538950a2016-01-04 17:41:47 -0500556 inet6_iif(skb), udptable, skb);
Ian Morris63159f22015-03-29 14:00:04 +0100557 if (!sk) {
Duan Jiong7304fe42014-07-31 17:54:32 +0800558 ICMP6_INC_STATS_BH(net, __in6_dev_get(skb->dev),
559 ICMP6_MIB_INERRORS);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700560 return;
Duan Jiong7304fe42014-07-31 17:54:32 +0800561 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700562
Wei Wange0d8c1b2016-02-17 13:58:22 -0800563 harderr = icmpv6_err_convert(type, code, &err);
564 np = inet6_sk(sk);
565
Hannes Frederic Sowa93b36cf2013-12-15 03:41:14 +0100566 if (type == ICMPV6_PKT_TOOBIG) {
567 if (!ip6_sk_accept_pmtu(sk))
568 goto out;
David S. Miller81aded22012-06-15 14:54:11 -0700569 ip6_sk_update_pmtu(skb, sk, info);
Wei Wange0d8c1b2016-02-17 13:58:22 -0800570 if (np->pmtudisc != IPV6_PMTUDISC_DONT)
571 harderr = 1;
Hannes Frederic Sowa93b36cf2013-12-15 03:41:14 +0100572 }
Duan Jiong1a462d12013-09-20 18:20:28 +0800573 if (type == NDISC_REDIRECT) {
David S. Millerec18d9a2012-07-12 00:25:15 -0700574 ip6_sk_redirect(skb, sk);
Duan Jiong1a462d12013-09-20 18:20:28 +0800575 goto out;
576 }
David S. Miller81aded22012-06-15 14:54:11 -0700577
Wei Wange0d8c1b2016-02-17 13:58:22 -0800578 if (!np->recverr) {
579 if (!harderr || sk->sk_state != TCP_ESTABLISHED)
580 goto out;
581 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700582 ipv6_icmp_error(sk, skb, err, uh->dest, ntohl(info), (u8 *)(uh+1));
Wei Wange0d8c1b2016-02-17 13:58:22 -0800583 }
Eric Dumazetb1faf562010-05-31 23:44:05 -0700584
Linus Torvalds1da177e2005-04-16 15:20:36 -0700585 sk->sk_err = err;
586 sk->sk_error_report(sk);
587out:
588 sock_put(sk);
589}
590
Benjamin LaHaisef7ad74f2012-04-27 08:23:21 +0000591static int __udpv6_queue_rcv_skb(struct sock *sk, struct sk_buff *skb)
592{
593 int rc;
594
Eric Dumazetefe42082013-10-03 15:42:29 -0700595 if (!ipv6_addr_any(&sk->sk_v6_daddr)) {
Benjamin LaHaisef7ad74f2012-04-27 08:23:21 +0000596 sock_rps_save_rxhash(sk, skb);
Shawn Bohrer005ec972013-10-07 11:01:38 -0500597 sk_mark_napi_id(sk, skb);
Eric Dumazet2c8c56e2014-11-11 05:54:28 -0800598 sk_incoming_cpu_update(sk);
Shawn Bohrer005ec972013-10-07 11:01:38 -0500599 }
Benjamin LaHaisef7ad74f2012-04-27 08:23:21 +0000600
601 rc = sock_queue_rcv_skb(sk, skb);
602 if (rc < 0) {
603 int is_udplite = IS_UDPLITE(sk);
604
605 /* Note that an ENOMEM error is charged twice */
606 if (rc == -ENOMEM)
607 UDP6_INC_STATS_BH(sock_net(sk),
608 UDP_MIB_RCVBUFERRORS, is_udplite);
609 UDP6_INC_STATS_BH(sock_net(sk), UDP_MIB_INERRORS, is_udplite);
610 kfree_skb(skb);
611 return -1;
612 }
613 return 0;
614}
615
Gerrit Renkerba4e58e2006-11-27 11:10:57 -0800616static __inline__ void udpv6_err(struct sk_buff *skb,
Brian Haleyd5fdd6b2009-06-23 04:31:07 -0700617 struct inet6_skb_parm *opt, u8 type,
Ian Morris67ba4152014-08-24 21:53:10 +0100618 u8 code, int offset, __be32 info)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700619{
Eric Dumazet645ca702008-10-29 01:41:45 -0700620 __udp6_lib_err(skb, opt, type, code, offset, info, &udp_table);
Gerrit Renkerba4e58e2006-11-27 11:10:57 -0800621}
622
Benjamin LaHaised7f3f622012-04-27 08:24:08 +0000623static struct static_key udpv6_encap_needed __read_mostly;
624void udpv6_encap_enable(void)
625{
626 if (!static_key_enabled(&udpv6_encap_needed))
627 static_key_slow_inc(&udpv6_encap_needed);
628}
629EXPORT_SYMBOL(udpv6_encap_enable);
630
Benjamin LaHaisef7ad74f2012-04-27 08:23:21 +0000631int udpv6_queue_rcv_skb(struct sock *sk, struct sk_buff *skb)
Gerrit Renkerba4e58e2006-11-27 11:10:57 -0800632{
633 struct udp_sock *up = udp_sk(sk);
David S. Millera18135e2006-08-15 00:00:09 -0700634 int rc;
Wang Chenb2bf1e22007-12-03 22:34:16 +1100635 int is_udplite = IS_UDPLITE(sk);
David S. Millera18135e2006-08-15 00:00:09 -0700636
Gerrit Renkerba4e58e2006-11-27 11:10:57 -0800637 if (!xfrm6_policy_check(sk, XFRM_POLICY_IN, skb))
638 goto drop;
639
Benjamin LaHaised7f3f622012-04-27 08:24:08 +0000640 if (static_key_false(&udpv6_encap_needed) && up->encap_type) {
641 int (*encap_rcv)(struct sock *sk, struct sk_buff *skb);
642
643 /*
644 * This is an encapsulation socket so pass the skb to
645 * the socket's udp_encap_rcv() hook. Otherwise, just
646 * fall through and pass this up the UDP socket.
647 * up->encap_rcv() returns the following value:
648 * =0 if skb was successfully passed to the encap
649 * handler or was discarded by it.
650 * >0 if skb should be passed on to UDP.
651 * <0 if skb should be resubmitted as proto -N
652 */
653
654 /* if we're overly short, let UDP handle it */
655 encap_rcv = ACCESS_ONCE(up->encap_rcv);
Ian Morris53b24b82015-03-29 14:00:05 +0100656 if (skb->len > sizeof(struct udphdr) && encap_rcv) {
Benjamin LaHaised7f3f622012-04-27 08:24:08 +0000657 int ret;
658
Tom Herbert0a809662014-05-07 16:52:39 -0700659 /* Verify checksum before giving to encap */
660 if (udp_lib_checksum_complete(skb))
661 goto csum_error;
662
Benjamin LaHaised7f3f622012-04-27 08:24:08 +0000663 ret = encap_rcv(sk, skb);
664 if (ret <= 0) {
665 UDP_INC_STATS_BH(sock_net(sk),
666 UDP_MIB_INDATAGRAMS,
667 is_udplite);
668 return -ret;
669 }
670 }
671
672 /* FALLTHROUGH -- it's a UDP Packet */
673 }
674
Gerrit Renkerba4e58e2006-11-27 11:10:57 -0800675 /*
676 * UDP-Lite specific tests, ignored on UDP sockets (see net/ipv4/udp.c).
677 */
Wang Chenb2bf1e22007-12-03 22:34:16 +1100678 if ((is_udplite & UDPLITE_RECV_CC) && UDP_SKB_CB(skb)->partial_cov) {
Gerrit Renkerba4e58e2006-11-27 11:10:57 -0800679
680 if (up->pcrlen == 0) { /* full coverage was set */
Joe Perchesba7a46f2014-11-11 10:59:17 -0800681 net_dbg_ratelimited("UDPLITE6: partial coverage %d while full coverage %d requested\n",
682 UDP_SKB_CB(skb)->cscov, skb->len);
Gerrit Renkerba4e58e2006-11-27 11:10:57 -0800683 goto drop;
684 }
685 if (UDP_SKB_CB(skb)->cscov < up->pcrlen) {
Joe Perchesba7a46f2014-11-11 10:59:17 -0800686 net_dbg_ratelimited("UDPLITE6: coverage %d too small, need min %d\n",
687 UDP_SKB_CB(skb)->cscov, up->pcrlen);
Gerrit Renkerba4e58e2006-11-27 11:10:57 -0800688 goto drop;
689 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700690 }
691
Eric Dumazet33d480c2011-08-11 19:30:52 +0000692 if (rcu_access_pointer(sk->sk_filter)) {
Herbert Xu1ab6eb62007-03-06 20:29:58 -0800693 if (udp_lib_checksum_complete(skb))
Eric Dumazet6a5dc9e2013-04-29 08:39:56 +0000694 goto csum_error;
Herbert Xu1ab6eb62007-03-06 20:29:58 -0800695 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700696
Sorin Dumitru274f4822014-07-22 21:16:51 +0300697 if (sk_rcvqueues_full(sk, sk->sk_rcvbuf)) {
James M Leddy3e215c82014-06-25 17:38:13 -0400698 UDP6_INC_STATS_BH(sock_net(sk),
699 UDP_MIB_RCVBUFERRORS, is_udplite);
Benjamin LaHaisecb80ef42012-04-27 08:23:59 +0000700 goto drop;
James M Leddy3e215c82014-06-25 17:38:13 -0400701 }
Benjamin LaHaisecb80ef42012-04-27 08:23:59 +0000702
Eric Dumazetd826eb12011-11-09 07:24:35 +0000703 skb_dst_drop(skb);
Wang Chencb759942007-12-03 22:33:28 +1100704
Benjamin LaHaisecb80ef42012-04-27 08:23:59 +0000705 bh_lock_sock(sk);
706 rc = 0;
707 if (!sock_owned_by_user(sk))
708 rc = __udpv6_queue_rcv_skb(sk, skb);
709 else if (sk_add_backlog(sk, skb, sk->sk_rcvbuf)) {
710 bh_unlock_sock(sk);
711 goto drop;
712 }
713 bh_unlock_sock(sk);
Benjamin LaHaisef7ad74f2012-04-27 08:23:21 +0000714
715 return rc;
James M Leddy3e215c82014-06-25 17:38:13 -0400716
Eric Dumazet6a5dc9e2013-04-29 08:39:56 +0000717csum_error:
718 UDP6_INC_STATS_BH(sock_net(sk), UDP_MIB_CSUMERRORS, is_udplite);
Gerrit Renkerba4e58e2006-11-27 11:10:57 -0800719drop:
Pavel Emelyanovef28d1a2008-07-05 21:19:40 -0700720 UDP6_INC_STATS_BH(sock_net(sk), UDP_MIB_INERRORS, is_udplite);
Benjamin LaHaisecb80ef42012-04-27 08:23:59 +0000721 atomic_inc(&sk->sk_drops);
Gerrit Renkerba4e58e2006-11-27 11:10:57 -0800722 kfree_skb(skb);
723 return -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700724}
725
David Held5cf3d462014-07-15 23:28:31 -0400726static bool __udp_v6_is_mcast_sock(struct net *net, struct sock *sk,
727 __be16 loc_port, const struct in6_addr *loc_addr,
728 __be16 rmt_port, const struct in6_addr *rmt_addr,
729 int dif, unsigned short hnum)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700730{
David Held5cf3d462014-07-15 23:28:31 -0400731 struct inet_sock *inet = inet_sk(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700732
David Held5cf3d462014-07-15 23:28:31 -0400733 if (!net_eq(sock_net(sk), net))
734 return false;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700735
David Held5cf3d462014-07-15 23:28:31 -0400736 if (udp_sk(sk)->udp_port_hash != hnum ||
737 sk->sk_family != PF_INET6 ||
738 (inet->inet_dport && inet->inet_dport != rmt_port) ||
739 (!ipv6_addr_any(&sk->sk_v6_daddr) &&
740 !ipv6_addr_equal(&sk->sk_v6_daddr, rmt_addr)) ||
Henning Rogge33b4b012015-05-18 21:08:49 +0200741 (sk->sk_bound_dev_if && sk->sk_bound_dev_if != dif) ||
742 (!ipv6_addr_any(&sk->sk_v6_rcv_saddr) &&
743 !ipv6_addr_equal(&sk->sk_v6_rcv_saddr, loc_addr)))
David Held5cf3d462014-07-15 23:28:31 -0400744 return false;
745 if (!inet6_mc_check(sk, loc_addr, rmt_addr))
746 return false;
747 return true;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700748}
749
Eric Dumazeta1ab77f2009-11-08 10:18:52 +0000750static void flush_stack(struct sock **stack, unsigned int count,
751 struct sk_buff *skb, unsigned int final)
752{
Benjamin LaHaisecb80ef42012-04-27 08:23:59 +0000753 struct sk_buff *skb1 = NULL;
Eric Dumazeta1ab77f2009-11-08 10:18:52 +0000754 struct sock *sk;
Benjamin LaHaisecb80ef42012-04-27 08:23:59 +0000755 unsigned int i;
Eric Dumazeta1ab77f2009-11-08 10:18:52 +0000756
757 for (i = 0; i < count; i++) {
Eric Dumazetf6b8f322009-11-08 10:20:19 +0000758 sk = stack[i];
Ian Morris63159f22015-03-29 14:00:04 +0100759 if (likely(!skb1))
Benjamin LaHaisecb80ef42012-04-27 08:23:59 +0000760 skb1 = (i == final) ? skb : skb_clone(skb, GFP_ATOMIC);
761 if (!skb1) {
762 atomic_inc(&sk->sk_drops);
763 UDP6_INC_STATS_BH(sock_net(sk), UDP_MIB_RCVBUFERRORS,
764 IS_UDPLITE(sk));
765 UDP6_INC_STATS_BH(sock_net(sk), UDP_MIB_INERRORS,
766 IS_UDPLITE(sk));
Eric Dumazeta1ab77f2009-11-08 10:18:52 +0000767 }
Benjamin LaHaisecb80ef42012-04-27 08:23:59 +0000768
769 if (skb1 && udpv6_queue_rcv_skb(sk, skb1) <= 0)
770 skb1 = NULL;
David Held2dc41cf2014-07-15 23:28:32 -0400771 sock_put(sk);
Eric Dumazeta1ab77f2009-11-08 10:18:52 +0000772 }
Benjamin LaHaisecb80ef42012-04-27 08:23:59 +0000773 if (unlikely(skb1))
774 kfree_skb(skb1);
Eric Dumazeta1ab77f2009-11-08 10:18:52 +0000775}
Tom Herbert40685792014-05-02 16:29:58 -0700776
777static void udp6_csum_zero_error(struct sk_buff *skb)
778{
779 /* RFC 2460 section 8.1 says that we SHOULD log
780 * this error. Well, it is reasonable.
781 */
Joe Perchesba7a46f2014-11-11 10:59:17 -0800782 net_dbg_ratelimited("IPv6: udp checksum is 0 for [%pI6c]:%u->[%pI6c]:%u\n",
783 &ipv6_hdr(skb)->saddr, ntohs(udp_hdr(skb)->source),
784 &ipv6_hdr(skb)->daddr, ntohs(udp_hdr(skb)->dest));
Tom Herbert40685792014-05-02 16:29:58 -0700785}
786
Linus Torvalds1da177e2005-04-16 15:20:36 -0700787/*
788 * Note: called only from the BH handler context,
789 * so we don't need to lock the hashes.
790 */
Pavel Emelyanove3163492008-06-16 17:12:11 -0700791static int __udp6_lib_mcast_deliver(struct net *net, struct sk_buff *skb,
Eric Dumazetb71d1d42011-04-22 04:53:02 +0000792 const struct in6_addr *saddr, const struct in6_addr *daddr,
Rick Jones36cbb242014-11-06 10:37:54 -0800793 struct udp_table *udptable, int proto)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700794{
Eric Dumazeta1ab77f2009-11-08 10:18:52 +0000795 struct sock *sk, *stack[256 / sizeof(struct sock *)];
Arnaldo Carvalho de Melo4bedb452007-03-13 14:28:48 -0300796 const struct udphdr *uh = udp_hdr(skb);
David Held5cf3d462014-07-15 23:28:31 -0400797 struct hlist_nulls_node *node;
798 unsigned short hnum = ntohs(uh->dest);
799 struct udp_hslot *hslot = udp_hashslot(udptable, net, hnum);
800 int dif = inet6_iif(skb);
David Held2dc41cf2014-07-15 23:28:32 -0400801 unsigned int count = 0, offset = offsetof(typeof(*sk), sk_nulls_node);
802 unsigned int hash2 = 0, hash2_any = 0, use_hash2 = (hslot->count > 10);
Rick Jones36cbb242014-11-06 10:37:54 -0800803 bool inner_flushed = false;
David Held2dc41cf2014-07-15 23:28:32 -0400804
805 if (use_hash2) {
806 hash2_any = udp6_portaddr_hash(net, &in6addr_any, hnum) &
807 udp_table.mask;
808 hash2 = udp6_portaddr_hash(net, daddr, hnum) & udp_table.mask;
809start_lookup:
810 hslot = &udp_table.hash2[hash2];
811 offset = offsetof(typeof(*sk), __sk_common.skc_portaddr_node);
812 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700813
Eric Dumazet645ca702008-10-29 01:41:45 -0700814 spin_lock(&hslot->lock);
David Held2dc41cf2014-07-15 23:28:32 -0400815 sk_nulls_for_each_entry_offset(sk, node, &hslot->head, offset) {
David Held5cf3d462014-07-15 23:28:31 -0400816 if (__udp_v6_is_mcast_sock(net, sk,
817 uh->dest, daddr,
818 uh->source, saddr,
819 dif, hnum) &&
820 /* If zero checksum and no_check is not on for
821 * the socket then skip it.
822 */
823 (uh->check || udp_sk(sk)->no_check6_rx)) {
824 if (unlikely(count == ARRAY_SIZE(stack))) {
825 flush_stack(stack, count, skb, ~0);
Rick Jones36cbb242014-11-06 10:37:54 -0800826 inner_flushed = true;
David Held5cf3d462014-07-15 23:28:31 -0400827 count = 0;
828 }
Tom Herbert40685792014-05-02 16:29:58 -0700829 stack[count++] = sk;
David Held2dc41cf2014-07-15 23:28:32 -0400830 sock_hold(sk);
Hideo Aoki95766ff2007-12-31 00:29:24 -0800831 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700832 }
Eric Dumazeta1ab77f2009-11-08 10:18:52 +0000833
Eric Dumazet645ca702008-10-29 01:41:45 -0700834 spin_unlock(&hslot->lock);
Eric Dumazeta1ab77f2009-11-08 10:18:52 +0000835
David Held2dc41cf2014-07-15 23:28:32 -0400836 /* Also lookup *:port if we are using hash2 and haven't done so yet. */
837 if (use_hash2 && hash2 != hash2_any) {
838 hash2 = hash2_any;
839 goto start_lookup;
840 }
841
Eric Dumazeta1ab77f2009-11-08 10:18:52 +0000842 if (count) {
843 flush_stack(stack, count, skb, count - 1);
Eric Dumazeta1ab77f2009-11-08 10:18:52 +0000844 } else {
Rick Jones36cbb242014-11-06 10:37:54 -0800845 if (!inner_flushed)
Eric Dumazet2d421222016-03-29 08:43:41 -0700846 UDP6_INC_STATS_BH(net, UDP_MIB_IGNOREDMULTI,
847 proto == IPPROTO_UDPLITE);
Rick Jones36cbb242014-11-06 10:37:54 -0800848 consume_skb(skb);
Eric Dumazeta1ab77f2009-11-08 10:18:52 +0000849 }
Gerrit Renkerba4e58e2006-11-27 11:10:57 -0800850 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700851}
852
Eric Dumazet645ca702008-10-29 01:41:45 -0700853int __udp6_lib_rcv(struct sk_buff *skb, struct udp_table *udptable,
Herbert Xu759e5d02007-03-25 20:10:56 -0700854 int proto)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700855{
Alexey Dobriyan3ffe5332010-02-18 08:25:24 +0000856 struct net *net = dev_net(skb->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700857 struct sock *sk;
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900858 struct udphdr *uh;
Eric Dumazetb71d1d42011-04-22 04:53:02 +0000859 const struct in6_addr *saddr, *daddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700860 u32 ulen = 0;
861
862 if (!pskb_may_pull(skb, sizeof(struct udphdr)))
Bjørn Morkd6bc0142010-05-06 03:44:35 +0000863 goto discard;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700864
Arnaldo Carvalho de Melo0660e032007-04-25 17:54:47 -0700865 saddr = &ipv6_hdr(skb)->saddr;
866 daddr = &ipv6_hdr(skb)->daddr;
Arnaldo Carvalho de Melo4bedb452007-03-13 14:28:48 -0300867 uh = udp_hdr(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700868
869 ulen = ntohs(uh->len);
Gerrit Renkerba4e58e2006-11-27 11:10:57 -0800870 if (ulen > skb->len)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700871 goto short_packet;
872
Herbert Xu759e5d02007-03-25 20:10:56 -0700873 if (proto == IPPROTO_UDP) {
874 /* UDP validates ulen. */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700875
Gerrit Renkerba4e58e2006-11-27 11:10:57 -0800876 /* Check for jumbo payload */
877 if (ulen == 0)
878 ulen = skb->len;
879
880 if (ulen < sizeof(*uh))
881 goto short_packet;
882
883 if (ulen < skb->len) {
884 if (pskb_trim_rcsum(skb, ulen))
885 goto short_packet;
Arnaldo Carvalho de Melo0660e032007-04-25 17:54:47 -0700886 saddr = &ipv6_hdr(skb)->saddr;
887 daddr = &ipv6_hdr(skb)->daddr;
Arnaldo Carvalho de Melo4bedb452007-03-13 14:28:48 -0300888 uh = udp_hdr(skb);
Gerrit Renkerba4e58e2006-11-27 11:10:57 -0800889 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700890 }
891
Herbert Xu759e5d02007-03-25 20:10:56 -0700892 if (udp6_csum_init(skb, uh, proto))
Eric Dumazet6a5dc9e2013-04-29 08:39:56 +0000893 goto csum_error;
Herbert Xu759e5d02007-03-25 20:10:56 -0700894
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900895 /*
896 * Multicast receive code
Linus Torvalds1da177e2005-04-16 15:20:36 -0700897 */
Gerrit Renkerba4e58e2006-11-27 11:10:57 -0800898 if (ipv6_addr_is_multicast(daddr))
Pavel Emelyanove3163492008-06-16 17:12:11 -0700899 return __udp6_lib_mcast_deliver(net, skb,
Rick Jones36cbb242014-11-06 10:37:54 -0800900 saddr, daddr, udptable, proto);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700901
902 /* Unicast */
903
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900904 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700905 * check socket cache ... must talk to Alan about his plans
906 * for sock caches... i'll skip this for now.
907 */
KOVACS Krisztian607c4aa2008-10-07 12:38:32 -0700908 sk = __udp6_lib_lookup_skb(skb, uh->source, uh->dest, udptable);
Ian Morris53b24b82015-03-29 14:00:05 +0100909 if (sk) {
Eliezer Tamira5b50472013-06-10 11:40:00 +0300910 int ret;
911
Tom Herbert1c194482014-05-23 08:47:32 -0700912 if (!uh->check && !udp_sk(sk)->no_check6_rx) {
Tom Herbert79e0f1c2014-05-05 16:43:58 -0700913 sock_put(sk);
Tom Herbert40685792014-05-02 16:29:58 -0700914 udp6_csum_zero_error(skb);
915 goto csum_error;
916 }
917
Tom Herbert224d0192015-01-05 13:56:14 -0800918 if (inet_get_convert_csum(sk) && uh->check && !IS_UDPLITE(sk))
Tom Herbert2abb7cd2014-08-31 15:12:43 -0700919 skb_checksum_try_convert(skb, IPPROTO_UDP, uh->check,
920 ip6_compute_pseudo);
921
Eliezer Tamira5b50472013-06-10 11:40:00 +0300922 ret = udpv6_queue_rcv_skb(sk, skb);
Benjamin LaHaisecb80ef42012-04-27 08:23:59 +0000923 sock_put(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700924
Bill Sommerfeld59dca1d2016-03-04 14:47:21 -0800925 /* a return value > 0 means to resubmit the input */
Benjamin LaHaisecb80ef42012-04-27 08:23:59 +0000926 if (ret > 0)
Bill Sommerfeld59dca1d2016-03-04 14:47:21 -0800927 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700928
Stephen Hemmingeradd459a2007-03-08 20:42:35 -0800929 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700930 }
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900931
Tom Herbert40685792014-05-02 16:29:58 -0700932 if (!uh->check) {
933 udp6_csum_zero_error(skb);
934 goto csum_error;
935 }
936
Benjamin LaHaisecb80ef42012-04-27 08:23:59 +0000937 if (!xfrm6_policy_check(NULL, XFRM_POLICY_IN, skb))
938 goto discard;
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900939
Benjamin LaHaisecb80ef42012-04-27 08:23:59 +0000940 if (udp_lib_checksum_complete(skb))
Eric Dumazet6a5dc9e2013-04-29 08:39:56 +0000941 goto csum_error;
Benjamin LaHaisecb80ef42012-04-27 08:23:59 +0000942
943 UDP6_INC_STATS_BH(net, UDP_MIB_NOPORTS, proto == IPPROTO_UDPLITE);
944 icmpv6_send(skb, ICMPV6_DEST_UNREACH, ICMPV6_PORT_UNREACH, 0);
945
946 kfree_skb(skb);
Stephen Hemmingeradd459a2007-03-08 20:42:35 -0800947 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700948
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900949short_packet:
Joe Perchesba7a46f2014-11-11 10:59:17 -0800950 net_dbg_ratelimited("UDP%sv6: short packet: From [%pI6c]:%u %d/%d to [%pI6c]:%u\n",
951 proto == IPPROTO_UDPLITE ? "-Lite" : "",
952 saddr, ntohs(uh->source),
953 ulen, skb->len,
954 daddr, ntohs(uh->dest));
Eric Dumazet6a5dc9e2013-04-29 08:39:56 +0000955 goto discard;
956csum_error:
957 UDP6_INC_STATS_BH(net, UDP_MIB_CSUMERRORS, proto == IPPROTO_UDPLITE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700958discard:
Pavel Emelyanovef28d1a2008-07-05 21:19:40 -0700959 UDP6_INC_STATS_BH(net, UDP_MIB_INERRORS, proto == IPPROTO_UDPLITE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700960 kfree_skb(skb);
Stephen Hemmingeradd459a2007-03-08 20:42:35 -0800961 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700962}
Gerrit Renkerba4e58e2006-11-27 11:10:57 -0800963
Herbert Xue5bbef22007-10-15 12:50:28 -0700964static __inline__ int udpv6_rcv(struct sk_buff *skb)
Gerrit Renkerba4e58e2006-11-27 11:10:57 -0800965{
Eric Dumazet645ca702008-10-29 01:41:45 -0700966 return __udp6_lib_rcv(skb, &udp_table, IPPROTO_UDP);
Gerrit Renkerba4e58e2006-11-27 11:10:57 -0800967}
968
Linus Torvalds1da177e2005-04-16 15:20:36 -0700969/*
970 * Throw away all pending data and cancel the corking. Socket is locked.
971 */
972static void udp_v6_flush_pending_frames(struct sock *sk)
973{
974 struct udp_sock *up = udp_sk(sk);
975
Denis V. Lunev36d926b2008-06-04 15:49:07 +0400976 if (up->pending == AF_INET)
977 udp_flush_pending_frames(sk);
978 else if (up->pending) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700979 up->len = 0;
980 up->pending = 0;
981 ip6_flush_pending_frames(sk);
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900982 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700983}
984
Sridhar Samudrala493c6be2009-07-09 08:09:54 +0000985/**
Ian Morris67ba4152014-08-24 21:53:10 +0100986 * udp6_hwcsum_outgoing - handle outgoing HW checksumming
987 * @sk: socket we are sending on
988 * @skb: sk_buff containing the filled-in UDP header
989 * (checksum field must be zeroed out)
Sridhar Samudrala493c6be2009-07-09 08:09:54 +0000990 */
991static void udp6_hwcsum_outgoing(struct sock *sk, struct sk_buff *skb,
992 const struct in6_addr *saddr,
993 const struct in6_addr *daddr, int len)
994{
995 unsigned int offset;
996 struct udphdr *uh = udp_hdr(skb);
Vlad Yasevichd39d9382015-01-31 10:40:16 -0500997 struct sk_buff *frags = skb_shinfo(skb)->frag_list;
Sridhar Samudrala493c6be2009-07-09 08:09:54 +0000998 __wsum csum = 0;
999
Vlad Yasevichd39d9382015-01-31 10:40:16 -05001000 if (!frags) {
Sridhar Samudrala493c6be2009-07-09 08:09:54 +00001001 /* Only one fragment on the socket. */
1002 skb->csum_start = skb_transport_header(skb) - skb->head;
1003 skb->csum_offset = offsetof(struct udphdr, check);
1004 uh->check = ~csum_ipv6_magic(saddr, daddr, len, IPPROTO_UDP, 0);
1005 } else {
1006 /*
1007 * HW-checksum won't work as there are two or more
1008 * fragments on the socket so that all csums of sk_buffs
1009 * should be together
1010 */
1011 offset = skb_transport_offset(skb);
1012 skb->csum = skb_checksum(skb, offset, skb->len - offset, 0);
1013
1014 skb->ip_summed = CHECKSUM_NONE;
1015
Vlad Yasevichd39d9382015-01-31 10:40:16 -05001016 do {
1017 csum = csum_add(csum, frags->csum);
1018 } while ((frags = frags->next));
Sridhar Samudrala493c6be2009-07-09 08:09:54 +00001019
1020 uh->check = csum_ipv6_magic(saddr, daddr, len, IPPROTO_UDP,
1021 csum);
1022 if (uh->check == 0)
1023 uh->check = CSUM_MANGLED_0;
1024 }
1025}
1026
Linus Torvalds1da177e2005-04-16 15:20:36 -07001027/*
1028 * Sending
1029 */
1030
Vlad Yasevichd39d9382015-01-31 10:40:16 -05001031static int udp_v6_send_skb(struct sk_buff *skb, struct flowi6 *fl6)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001032{
Vlad Yasevichd39d9382015-01-31 10:40:16 -05001033 struct sock *sk = skb->sk;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001034 struct udphdr *uh;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001035 int err = 0;
Wang Chenb2bf1e22007-12-03 22:34:16 +11001036 int is_udplite = IS_UDPLITE(sk);
Al Viro868c86b2006-11-14 21:35:48 -08001037 __wsum csum = 0;
Vlad Yasevichd39d9382015-01-31 10:40:16 -05001038 int offset = skb_transport_offset(skb);
1039 int len = skb->len - offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001040
1041 /*
1042 * Create a UDP header
1043 */
Arnaldo Carvalho de Melo4bedb452007-03-13 14:28:48 -03001044 uh = udp_hdr(skb);
David S. Miller1958b852011-03-12 16:36:19 -05001045 uh->source = fl6->fl6_sport;
1046 uh->dest = fl6->fl6_dport;
Vlad Yasevichd39d9382015-01-31 10:40:16 -05001047 uh->len = htons(len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001048 uh->check = 0;
1049
Wang Chenb2bf1e22007-12-03 22:34:16 +11001050 if (is_udplite)
Vlad Yasevichd39d9382015-01-31 10:40:16 -05001051 csum = udplite_csum(skb);
1052 else if (udp_sk(sk)->no_check6_tx) { /* UDP csum disabled */
Tom Herbert40685792014-05-02 16:29:58 -07001053 skb->ip_summed = CHECKSUM_NONE;
1054 goto send;
1055 } else if (skb->ip_summed == CHECKSUM_PARTIAL) { /* UDP hardware csum */
Vlad Yasevichd39d9382015-01-31 10:40:16 -05001056 udp6_hwcsum_outgoing(sk, skb, &fl6->saddr, &fl6->daddr, len);
Sridhar Samudrala493c6be2009-07-09 08:09:54 +00001057 goto send;
1058 } else
Vlad Yasevichd39d9382015-01-31 10:40:16 -05001059 csum = udp_csum(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001060
Gerrit Renkerba4e58e2006-11-27 11:10:57 -08001061 /* add protocol-dependent pseudo-header */
David S. Miller4c9483b2011-03-12 16:22:43 -05001062 uh->check = csum_ipv6_magic(&fl6->saddr, &fl6->daddr,
Vlad Yasevichd39d9382015-01-31 10:40:16 -05001063 len, fl6->flowi6_proto, csum);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001064 if (uh->check == 0)
Al Virof6ab0282006-11-16 02:36:50 -08001065 uh->check = CSUM_MANGLED_0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001066
Sridhar Samudrala493c6be2009-07-09 08:09:54 +00001067send:
Vlad Yasevichd39d9382015-01-31 10:40:16 -05001068 err = ip6_send_skb(skb);
Eric Dumazet6ce9e7b2009-09-02 18:05:33 -07001069 if (err) {
1070 if (err == -ENOBUFS && !inet6_sk(sk)->recverr) {
1071 UDP6_INC_STATS_USER(sock_net(sk),
1072 UDP_MIB_SNDBUFERRORS, is_udplite);
1073 err = 0;
1074 }
1075 } else
1076 UDP6_INC_STATS_USER(sock_net(sk),
1077 UDP_MIB_OUTDATAGRAMS, is_udplite);
Vlad Yasevichd39d9382015-01-31 10:40:16 -05001078 return err;
1079}
1080
1081static int udp_v6_push_pending_frames(struct sock *sk)
1082{
1083 struct sk_buff *skb;
1084 struct udp_sock *up = udp_sk(sk);
1085 struct flowi6 fl6;
1086 int err = 0;
1087
1088 if (up->pending == AF_INET)
1089 return udp_push_pending_frames(sk);
1090
1091 /* ip6_finish_skb will release the cork, so make a copy of
1092 * fl6 here.
1093 */
1094 fl6 = inet_sk(sk)->cork.fl.u.ip6;
1095
1096 skb = ip6_finish_skb(sk);
1097 if (!skb)
1098 goto out;
1099
1100 err = udp_v6_send_skb(skb, &fl6);
1101
Linus Torvalds1da177e2005-04-16 15:20:36 -07001102out:
1103 up->len = 0;
1104 up->pending = 0;
1105 return err;
1106}
1107
Ying Xue1b784142015-03-02 15:37:48 +08001108int udpv6_sendmsg(struct sock *sk, struct msghdr *msg, size_t len)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001109{
1110 struct ipv6_txoptions opt_space;
1111 struct udp_sock *up = udp_sk(sk);
1112 struct inet_sock *inet = inet_sk(sk);
1113 struct ipv6_pinfo *np = inet6_sk(sk);
Steffen Hurrle342dfc32014-01-17 22:53:15 +01001114 DECLARE_SOCKADDR(struct sockaddr_in6 *, sin6, msg->msg_name);
Arnaud Ebalard20c59de2010-06-01 21:35:01 +00001115 struct in6_addr *daddr, *final_p, final;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001116 struct ipv6_txoptions *opt = NULL;
Eric Dumazet45f6fad2015-11-29 19:37:57 -08001117 struct ipv6_txoptions *opt_to_free = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001118 struct ip6_flowlabel *flowlabel = NULL;
David S. Miller4c9483b2011-03-12 16:22:43 -05001119 struct flowi6 fl6;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001120 struct dst_entry *dst;
1121 int addr_len = msg->msg_namelen;
1122 int ulen = len;
1123 int hlimit = -1;
YOSHIFUJI Hideaki41a1f8e2005-09-08 10:19:03 +09001124 int tclass = -1;
Brian Haley13b52cd2010-04-23 11:26:08 +00001125 int dontfrag = -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001126 int corkreq = up->corkflag || msg->msg_flags&MSG_MORE;
1127 int err;
Mitsuru KANDA987905d2005-09-18 00:30:08 -07001128 int connected = 0;
Wang Chenb2bf1e22007-12-03 22:34:16 +11001129 int is_udplite = IS_UDPLITE(sk);
Gerrit Renkerba4e58e2006-11-27 11:10:57 -08001130 int (*getfrag)(void *, char *, int, int, int, struct sk_buff *);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001131
1132 /* destination address check */
1133 if (sin6) {
1134 if (addr_len < offsetof(struct sockaddr, sa_data))
1135 return -EINVAL;
1136
1137 switch (sin6->sin6_family) {
1138 case AF_INET6:
1139 if (addr_len < SIN6_LEN_RFC2133)
1140 return -EINVAL;
1141 daddr = &sin6->sin6_addr;
1142 break;
1143 case AF_INET:
1144 goto do_udp_sendmsg;
1145 case AF_UNSPEC:
1146 msg->msg_name = sin6 = NULL;
1147 msg->msg_namelen = addr_len = 0;
1148 daddr = NULL;
1149 break;
1150 default:
1151 return -EINVAL;
1152 }
1153 } else if (!up->pending) {
1154 if (sk->sk_state != TCP_ESTABLISHED)
1155 return -EDESTADDRREQ;
Eric Dumazetefe42082013-10-03 15:42:29 -07001156 daddr = &sk->sk_v6_daddr;
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09001157 } else
Linus Torvalds1da177e2005-04-16 15:20:36 -07001158 daddr = NULL;
1159
1160 if (daddr) {
Brian Haleye773e4f2007-08-24 23:16:08 -07001161 if (ipv6_addr_v4mapped(daddr)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001162 struct sockaddr_in sin;
1163 sin.sin_family = AF_INET;
Eric Dumazetc720c7e2009-10-15 06:30:45 +00001164 sin.sin_port = sin6 ? sin6->sin6_port : inet->inet_dport;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001165 sin.sin_addr.s_addr = daddr->s6_addr32[3];
1166 msg->msg_name = &sin;
1167 msg->msg_namelen = sizeof(sin);
1168do_udp_sendmsg:
1169 if (__ipv6_only_sock(sk))
1170 return -ENETUNREACH;
Ying Xue1b784142015-03-02 15:37:48 +08001171 return udp_sendmsg(sk, msg, len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001172 }
1173 }
1174
1175 if (up->pending == AF_INET)
Ying Xue1b784142015-03-02 15:37:48 +08001176 return udp_sendmsg(sk, msg, len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001177
1178 /* Rough check on arithmetic overflow,
YOSHIFUJI Hideakib59e1392007-03-30 14:45:35 -07001179 better check is made in ip6_append_data().
Linus Torvalds1da177e2005-04-16 15:20:36 -07001180 */
1181 if (len > INT_MAX - sizeof(struct udphdr))
1182 return -EMSGSIZE;
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09001183
Vlad Yasevich03485f22015-01-31 10:40:17 -05001184 getfrag = is_udplite ? udplite_getfrag : ip_generic_getfrag;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001185 if (up->pending) {
1186 /*
1187 * There are pending frames.
1188 * The socket lock must be held while it's corked.
1189 */
1190 lock_sock(sk);
1191 if (likely(up->pending)) {
1192 if (unlikely(up->pending != AF_INET6)) {
1193 release_sock(sk);
1194 return -EAFNOSUPPORT;
1195 }
1196 dst = NULL;
1197 goto do_append_data;
1198 }
1199 release_sock(sk);
1200 }
1201 ulen += sizeof(struct udphdr);
1202
David S. Miller4c9483b2011-03-12 16:22:43 -05001203 memset(&fl6, 0, sizeof(fl6));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001204
1205 if (sin6) {
1206 if (sin6->sin6_port == 0)
1207 return -EINVAL;
1208
David S. Miller1958b852011-03-12 16:36:19 -05001209 fl6.fl6_dport = sin6->sin6_port;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001210 daddr = &sin6->sin6_addr;
1211
1212 if (np->sndflow) {
David S. Miller4c9483b2011-03-12 16:22:43 -05001213 fl6.flowlabel = sin6->sin6_flowinfo&IPV6_FLOWINFO_MASK;
1214 if (fl6.flowlabel&IPV6_FLOWLABEL_MASK) {
1215 flowlabel = fl6_sock_lookup(sk, fl6.flowlabel);
Ian Morris63159f22015-03-29 14:00:04 +01001216 if (!flowlabel)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001217 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001218 }
1219 }
1220
1221 /*
1222 * Otherwise it will be difficult to maintain
1223 * sk->sk_dst_cache.
1224 */
1225 if (sk->sk_state == TCP_ESTABLISHED &&
Eric Dumazetefe42082013-10-03 15:42:29 -07001226 ipv6_addr_equal(daddr, &sk->sk_v6_daddr))
1227 daddr = &sk->sk_v6_daddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001228
1229 if (addr_len >= sizeof(struct sockaddr_in6) &&
1230 sin6->sin6_scope_id &&
Hannes Frederic Sowa842df072013-03-08 02:07:19 +00001231 __ipv6_addr_needs_scope_id(__ipv6_addr_type(daddr)))
David S. Miller4c9483b2011-03-12 16:22:43 -05001232 fl6.flowi6_oif = sin6->sin6_scope_id;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001233 } else {
1234 if (sk->sk_state != TCP_ESTABLISHED)
1235 return -EDESTADDRREQ;
1236
David S. Miller1958b852011-03-12 16:36:19 -05001237 fl6.fl6_dport = inet->inet_dport;
Eric Dumazetefe42082013-10-03 15:42:29 -07001238 daddr = &sk->sk_v6_daddr;
David S. Miller4c9483b2011-03-12 16:22:43 -05001239 fl6.flowlabel = np->flow_label;
Mitsuru KANDA987905d2005-09-18 00:30:08 -07001240 connected = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001241 }
1242
David S. Miller4c9483b2011-03-12 16:22:43 -05001243 if (!fl6.flowi6_oif)
1244 fl6.flowi6_oif = sk->sk_bound_dev_if;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001245
David S. Miller4c9483b2011-03-12 16:22:43 -05001246 if (!fl6.flowi6_oif)
1247 fl6.flowi6_oif = np->sticky_pktinfo.ipi6_ifindex;
Yang Hongyang9f690db2008-12-16 02:08:29 -08001248
David S. Miller4c9483b2011-03-12 16:22:43 -05001249 fl6.flowi6_mark = sk->sk_mark;
Brian Haley51953d52009-10-05 08:24:16 +00001250
Linus Torvalds1da177e2005-04-16 15:20:36 -07001251 if (msg->msg_controllen) {
1252 opt = &opt_space;
1253 memset(opt, 0, sizeof(struct ipv6_txoptions));
1254 opt->tot_len = sizeof(*opt);
1255
Tom Parkin73df66f2013-01-31 01:02:24 +00001256 err = ip6_datagram_send_ctl(sock_net(sk), sk, msg, &fl6, opt,
1257 &hlimit, &tclass, &dontfrag);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001258 if (err < 0) {
1259 fl6_sock_release(flowlabel);
1260 return err;
1261 }
David S. Miller4c9483b2011-03-12 16:22:43 -05001262 if ((fl6.flowlabel&IPV6_FLOWLABEL_MASK) && !flowlabel) {
1263 flowlabel = fl6_sock_lookup(sk, fl6.flowlabel);
Ian Morris63159f22015-03-29 14:00:04 +01001264 if (!flowlabel)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001265 return -EINVAL;
1266 }
1267 if (!(opt->opt_nflen|opt->opt_flen))
1268 opt = NULL;
Mitsuru KANDA987905d2005-09-18 00:30:08 -07001269 connected = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001270 }
Eric Dumazet45f6fad2015-11-29 19:37:57 -08001271 if (!opt) {
1272 opt = txopt_get(np);
1273 opt_to_free = opt;
1274 }
YOSHIFUJI Hideakidf9890c2005-11-20 12:23:18 +09001275 if (flowlabel)
1276 opt = fl6_merge_options(&opt_space, flowlabel, opt);
1277 opt = ipv6_fixup_options(&opt_space, opt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001278
David S. Miller4c9483b2011-03-12 16:22:43 -05001279 fl6.flowi6_proto = sk->sk_protocol;
Brian Haley876c7f42008-04-11 00:38:24 -04001280 if (!ipv6_addr_any(daddr))
Alexey Dobriyan4e3fd7a2011-11-21 03:39:03 +00001281 fl6.daddr = *daddr;
Brian Haley876c7f42008-04-11 00:38:24 -04001282 else
David S. Miller4c9483b2011-03-12 16:22:43 -05001283 fl6.daddr.s6_addr[15] = 0x1; /* :: means loopback (BSD'ism) */
1284 if (ipv6_addr_any(&fl6.saddr) && !ipv6_addr_any(&np->saddr))
Alexey Dobriyan4e3fd7a2011-11-21 03:39:03 +00001285 fl6.saddr = np->saddr;
David S. Miller1958b852011-03-12 16:36:19 -05001286 fl6.fl6_sport = inet->inet_sport;
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09001287
David S. Miller4c9483b2011-03-12 16:22:43 -05001288 final_p = fl6_update_dst(&fl6, opt, &final);
Arnaud Ebalard20c59de2010-06-01 21:35:01 +00001289 if (final_p)
Mitsuru KANDA987905d2005-09-18 00:30:08 -07001290 connected = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001291
David S. Miller4c9483b2011-03-12 16:22:43 -05001292 if (!fl6.flowi6_oif && ipv6_addr_is_multicast(&fl6.daddr)) {
1293 fl6.flowi6_oif = np->mcast_oif;
Mitsuru KANDA987905d2005-09-18 00:30:08 -07001294 connected = 0;
Erich E. Hooverc4062df2012-02-08 09:11:08 +00001295 } else if (!fl6.flowi6_oif)
1296 fl6.flowi6_oif = np->ucast_oif;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001297
David S. Miller4c9483b2011-03-12 16:22:43 -05001298 security_sk_classify_flow(sk, flowi6_to_flowi(&fl6));
Venkat Yekkiralabeb8d132006-08-04 23:12:42 -07001299
Steffen Klassert0e0d44a2013-08-28 08:04:14 +02001300 dst = ip6_sk_dst_lookup_flow(sk, &fl6, final_p);
David S. Miller68d0c6d2011-03-01 13:19:07 -08001301 if (IS_ERR(dst)) {
1302 err = PTR_ERR(dst);
1303 dst = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001304 goto out;
David S. Miller14e50e52007-05-24 18:17:54 -07001305 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001306
Lorenzo Colitti5c986312014-04-29 11:57:34 +09001307 if (hlimit < 0)
1308 hlimit = ip6_sk_dst_hoplimit(np, &fl6, dst);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001309
Gerrit Renkere651f032009-08-09 08:12:48 +00001310 if (tclass < 0)
YOSHIFUJI Hideaki41a1f8e2005-09-08 10:19:03 +09001311 tclass = np->tclass;
YOSHIFUJI Hideaki41a1f8e2005-09-08 10:19:03 +09001312
Linus Torvalds1da177e2005-04-16 15:20:36 -07001313 if (msg->msg_flags&MSG_CONFIRM)
1314 goto do_confirm;
1315back_from_confirm:
1316
Vlad Yasevich03485f22015-01-31 10:40:17 -05001317 /* Lockless fast path for the non-corking case */
1318 if (!corkreq) {
1319 struct sk_buff *skb;
1320
1321 skb = ip6_make_skb(sk, getfrag, msg, ulen,
1322 sizeof(struct udphdr), hlimit, tclass, opt,
1323 &fl6, (struct rt6_info *)dst,
1324 msg->msg_flags, dontfrag);
1325 err = PTR_ERR(skb);
1326 if (!IS_ERR_OR_NULL(skb))
1327 err = udp_v6_send_skb(skb, &fl6);
1328 goto release_dst;
1329 }
1330
Linus Torvalds1da177e2005-04-16 15:20:36 -07001331 lock_sock(sk);
1332 if (unlikely(up->pending)) {
1333 /* The socket is already corked while preparing it. */
1334 /* ... which is an evident application bug. --ANK */
1335 release_sock(sk);
1336
Joe Perchesba7a46f2014-11-11 10:59:17 -08001337 net_dbg_ratelimited("udp cork app bug 2\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001338 err = -EINVAL;
1339 goto out;
1340 }
1341
1342 up->pending = AF_INET6;
1343
1344do_append_data:
Jiri Pirkoe36d3ff2013-10-19 12:29:15 +02001345 if (dontfrag < 0)
1346 dontfrag = np->dontfrag;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001347 up->len += ulen;
Al Virof69e6d12014-11-24 13:23:40 -05001348 err = ip6_append_data(sk, getfrag, msg, ulen,
David S. Miller4c9483b2011-03-12 16:22:43 -05001349 sizeof(struct udphdr), hlimit, tclass, opt, &fl6,
Ian Morris67ba4152014-08-24 21:53:10 +01001350 (struct rt6_info *)dst,
Brian Haley13b52cd2010-04-23 11:26:08 +00001351 corkreq ? msg->msg_flags|MSG_MORE : msg->msg_flags, dontfrag);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001352 if (err)
1353 udp_v6_flush_pending_frames(sk);
1354 else if (!corkreq)
Gerrit Renker4c0a6cb2006-11-27 09:29:59 -08001355 err = udp_v6_push_pending_frames(sk);
Herbert Xu1e0c14f2006-10-03 14:35:49 -07001356 else if (unlikely(skb_queue_empty(&sk->sk_write_queue)))
1357 up->pending = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001358
Vlad Yasevich03485f22015-01-31 10:40:17 -05001359 if (err > 0)
1360 err = np->recverr ? net_xmit_errno(err) : 0;
1361 release_sock(sk);
1362
1363release_dst:
David S. Millera5e7c212005-10-03 14:21:58 -07001364 if (dst) {
1365 if (connected) {
1366 ip6_dst_store(sk, dst,
Eric Dumazetefe42082013-10-03 15:42:29 -07001367 ipv6_addr_equal(&fl6.daddr, &sk->sk_v6_daddr) ?
1368 &sk->sk_v6_daddr : NULL,
YOSHIFUJI Hideaki8e1ef0a2006-08-29 17:15:09 -07001369#ifdef CONFIG_IPV6_SUBTREES
David S. Miller4c9483b2011-03-12 16:22:43 -05001370 ipv6_addr_equal(&fl6.saddr, &np->saddr) ?
YOSHIFUJI Hideaki8e1ef0a2006-08-29 17:15:09 -07001371 &np->saddr :
1372#endif
1373 NULL);
David S. Millera5e7c212005-10-03 14:21:58 -07001374 } else {
1375 dst_release(dst);
1376 }
YOSHIFUJI Hideakia3c96082008-06-04 01:30:25 +09001377 dst = NULL;
David S. Millera5e7c212005-10-03 14:21:58 -07001378 }
1379
Linus Torvalds1da177e2005-04-16 15:20:36 -07001380out:
YOSHIFUJI Hideakia3c96082008-06-04 01:30:25 +09001381 dst_release(dst);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001382 fl6_sock_release(flowlabel);
Eric Dumazet45f6fad2015-11-29 19:37:57 -08001383 txopt_put(opt_to_free);
YOSHIFUJI Hideakicd562c92007-09-14 17:15:01 -07001384 if (!err)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001385 return len;
David S. Millera18135e2006-08-15 00:00:09 -07001386 /*
1387 * ENOBUFS = no kernel mem, SOCK_NOSPACE = no sndbuf space. Reporting
1388 * ENOBUFS might not be good (it's not tunable per se), but otherwise
1389 * we don't have a good statistic (IpOutDiscards but it can be too many
1390 * things). We could add another new stat but at least for now that
1391 * seems like overkill.
1392 */
1393 if (err == -ENOBUFS || test_bit(SOCK_NOSPACE, &sk->sk_socket->flags)) {
Pavel Emelyanov235b9f72008-07-05 21:19:20 -07001394 UDP6_INC_STATS_USER(sock_net(sk),
1395 UDP_MIB_SNDBUFERRORS, is_udplite);
David S. Millera18135e2006-08-15 00:00:09 -07001396 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001397 return err;
1398
1399do_confirm:
1400 dst_confirm(dst);
1401 if (!(msg->msg_flags&MSG_PROBE) || len)
1402 goto back_from_confirm;
1403 err = 0;
1404 goto out;
1405}
1406
Brian Haley7d06b2e2008-06-14 17:04:49 -07001407void udpv6_destroy_sock(struct sock *sk)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001408{
Tom Parkin44046a52013-03-19 06:11:12 +00001409 struct udp_sock *up = udp_sk(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001410 lock_sock(sk);
1411 udp_v6_flush_pending_frames(sk);
1412 release_sock(sk);
1413
Tom Parkin44046a52013-03-19 06:11:12 +00001414 if (static_key_false(&udpv6_encap_needed) && up->encap_type) {
1415 void (*encap_destroy)(struct sock *sk);
1416 encap_destroy = ACCESS_ONCE(up->encap_destroy);
1417 if (encap_destroy)
1418 encap_destroy(sk);
1419 }
1420
Linus Torvalds1da177e2005-04-16 15:20:36 -07001421 inet6_destroy_sock(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001422}
1423
1424/*
1425 * Socket option code for UDP
1426 */
Gerrit Renkerba4e58e2006-11-27 11:10:57 -08001427int udpv6_setsockopt(struct sock *sk, int level, int optname,
David S. Millerb7058842009-09-30 16:12:20 -07001428 char __user *optval, unsigned int 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_setsockopt(sk, level, optname, optval, optlen,
1432 udp_v6_push_pending_frames);
Gerrit Renkerba4e58e2006-11-27 11:10:57 -08001433 return ipv6_setsockopt(sk, level, optname, optval, optlen);
Dmitry Mishin3fdadf72006-03-20 22:45:21 -08001434}
1435
1436#ifdef CONFIG_COMPAT
Gerrit Renkerba4e58e2006-11-27 11:10:57 -08001437int compat_udpv6_setsockopt(struct sock *sk, int level, int optname,
David S. Millerb7058842009-09-30 16:12:20 -07001438 char __user *optval, unsigned int optlen)
Dmitry Mishin3fdadf72006-03-20 22:45:21 -08001439{
David S. Millerdb8dac22008-03-06 16:22:02 -08001440 if (level == SOL_UDP || level == SOL_UDPLITE)
Gerrit Renker4c0a6cb2006-11-27 09:29:59 -08001441 return udp_lib_setsockopt(sk, level, optname, optval, optlen,
1442 udp_v6_push_pending_frames);
Gerrit Renkerba4e58e2006-11-27 11:10:57 -08001443 return compat_ipv6_setsockopt(sk, level, optname, optval, optlen);
Dmitry Mishin3fdadf72006-03-20 22:45:21 -08001444}
1445#endif
1446
Gerrit Renkerba4e58e2006-11-27 11:10:57 -08001447int udpv6_getsockopt(struct sock *sk, int level, int optname,
1448 char __user *optval, int __user *optlen)
Dmitry Mishin3fdadf72006-03-20 22:45:21 -08001449{
David S. Millerdb8dac22008-03-06 16:22:02 -08001450 if (level == SOL_UDP || level == SOL_UDPLITE)
Gerrit Renker4c0a6cb2006-11-27 09:29:59 -08001451 return udp_lib_getsockopt(sk, level, optname, optval, optlen);
Gerrit Renkerba4e58e2006-11-27 11:10:57 -08001452 return ipv6_getsockopt(sk, level, optname, optval, optlen);
Dmitry Mishin3fdadf72006-03-20 22:45:21 -08001453}
1454
1455#ifdef CONFIG_COMPAT
Gerrit Renkerba4e58e2006-11-27 11:10:57 -08001456int compat_udpv6_getsockopt(struct sock *sk, int level, int optname,
1457 char __user *optval, int __user *optlen)
Dmitry Mishin3fdadf72006-03-20 22:45:21 -08001458{
David S. Millerdb8dac22008-03-06 16:22:02 -08001459 if (level == SOL_UDP || level == SOL_UDPLITE)
Gerrit Renker4c0a6cb2006-11-27 09:29:59 -08001460 return udp_lib_getsockopt(sk, level, optname, optval, optlen);
Gerrit Renkerba4e58e2006-11-27 11:10:57 -08001461 return compat_ipv6_getsockopt(sk, level, optname, optval, optlen);
Dmitry Mishin3fdadf72006-03-20 22:45:21 -08001462}
1463#endif
1464
Alexey Dobriyan41135cc2009-09-14 12:22:28 +00001465static const struct inet6_protocol udpv6_protocol = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001466 .handler = udpv6_rcv,
1467 .err_handler = udpv6_err,
1468 .flags = INET6_PROTO_NOPOLICY|INET6_PROTO_FINAL,
1469};
1470
1471/* ------------------------------------------------------------------------ */
1472#ifdef CONFIG_PROC_FS
Gerrit Renkerba4e58e2006-11-27 11:10:57 -08001473int udp6_seq_show(struct seq_file *seq, void *v)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001474{
Lorenzo Colitti17ef66af2013-05-31 15:05:48 +00001475 if (v == SEQ_START_TOKEN) {
1476 seq_puts(seq, IPV6_SEQ_DGRAM_HEADER);
1477 } else {
1478 int bucket = ((struct udp_iter_state *)seq->private)->bucket;
1479 struct inet_sock *inet = inet_sk(v);
1480 __u16 srcp = ntohs(inet->inet_sport);
1481 __u16 destp = ntohs(inet->inet_dport);
1482 ip6_dgram_sock_seq_show(seq, v, srcp, destp, bucket);
1483 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001484 return 0;
1485}
1486
Arjan van de Ven73cb88e2011-10-30 06:46:30 +00001487static const struct file_operations udp6_afinfo_seq_fops = {
1488 .owner = THIS_MODULE,
1489 .open = udp_seq_open,
1490 .read = seq_read,
1491 .llseek = seq_lseek,
1492 .release = seq_release_net
1493};
1494
Linus Torvalds1da177e2005-04-16 15:20:36 -07001495static struct udp_seq_afinfo udp6_seq_afinfo = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001496 .name = "udp6",
1497 .family = AF_INET6,
Eric Dumazet645ca702008-10-29 01:41:45 -07001498 .udp_table = &udp_table,
Arjan van de Ven73cb88e2011-10-30 06:46:30 +00001499 .seq_fops = &udp6_afinfo_seq_fops,
Denis V. Lunevdda61922008-03-28 18:24:26 -07001500 .seq_ops = {
1501 .show = udp6_seq_show,
1502 },
Linus Torvalds1da177e2005-04-16 15:20:36 -07001503};
1504
Alexey Dobriyan2c8c1e72010-01-17 03:35:32 +00001505int __net_init udp6_proc_init(struct net *net)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001506{
Daniel Lezcano0c96d8c2008-03-21 04:14:17 -07001507 return udp_proc_register(net, &udp6_seq_afinfo);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001508}
1509
Ian Morrisec120da2015-08-14 22:43:38 +01001510void udp6_proc_exit(struct net *net)
1511{
Daniel Lezcano0c96d8c2008-03-21 04:14:17 -07001512 udp_proc_unregister(net, &udp6_seq_afinfo);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001513}
1514#endif /* CONFIG_PROC_FS */
1515
Eric Dumazetf77d6022013-05-09 10:28:16 +00001516void udp_v6_clear_sk(struct sock *sk, int size)
1517{
1518 struct inet_sock *inet = inet_sk(sk);
1519
1520 /* we do not want to clear pinet6 field, because of RCU lookups */
1521 sk_prot_clear_portaddr_nulls(sk, offsetof(struct inet_sock, pinet6));
1522
1523 size -= offsetof(struct inet_sock, pinet6) + sizeof(inet->pinet6);
1524 memset(&inet->pinet6 + 1, 0, size);
1525}
1526
Linus Torvalds1da177e2005-04-16 15:20:36 -07001527/* ------------------------------------------------------------------------ */
1528
1529struct proto udpv6_prot = {
Arnaldo Carvalho de Melo543d9cf2006-03-20 22:48:35 -08001530 .name = "UDPv6",
1531 .owner = THIS_MODULE,
Gerrit Renkerba4e58e2006-11-27 11:10:57 -08001532 .close = udp_lib_close,
Arnaldo Carvalho de Melo543d9cf2006-03-20 22:48:35 -08001533 .connect = ip6_datagram_connect,
1534 .disconnect = udp_disconnect,
1535 .ioctl = udp_ioctl,
1536 .destroy = udpv6_destroy_sock,
1537 .setsockopt = udpv6_setsockopt,
1538 .getsockopt = udpv6_getsockopt,
1539 .sendmsg = udpv6_sendmsg,
1540 .recvmsg = udpv6_recvmsg,
Benjamin LaHaisef7ad74f2012-04-27 08:23:21 +00001541 .backlog_rcv = __udpv6_queue_rcv_skb,
Martin KaFai Laue646b652016-04-11 15:29:37 -07001542 .release_cb = ip6_datagram_release_cb,
Gerrit Renkerba4e58e2006-11-27 11:10:57 -08001543 .hash = udp_lib_hash,
1544 .unhash = udp_lib_unhash,
Eric Dumazet719f8352010-09-08 05:08:44 +00001545 .rehash = udp_v6_rehash,
Arnaldo Carvalho de Melo543d9cf2006-03-20 22:48:35 -08001546 .get_port = udp_v6_get_port,
Hideo Aoki95766ff2007-12-31 00:29:24 -08001547 .memory_allocated = &udp_memory_allocated,
1548 .sysctl_mem = sysctl_udp_mem,
1549 .sysctl_wmem = &sysctl_udp_wmem_min,
1550 .sysctl_rmem = &sysctl_udp_rmem_min,
Arnaldo Carvalho de Melo543d9cf2006-03-20 22:48:35 -08001551 .obj_size = sizeof(struct udp6_sock),
Eric Dumazet271b72c2008-10-29 02:11:14 -07001552 .slab_flags = SLAB_DESTROY_BY_RCU,
Eric Dumazet645ca702008-10-29 01:41:45 -07001553 .h.udp_table = &udp_table,
Dmitry Mishin3fdadf72006-03-20 22:45:21 -08001554#ifdef CONFIG_COMPAT
Arnaldo Carvalho de Melo543d9cf2006-03-20 22:48:35 -08001555 .compat_setsockopt = compat_udpv6_setsockopt,
1556 .compat_getsockopt = compat_udpv6_getsockopt,
Dmitry Mishin3fdadf72006-03-20 22:45:21 -08001557#endif
Eric Dumazetf77d6022013-05-09 10:28:16 +00001558 .clear_sk = udp_v6_clear_sk,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001559};
1560
Linus Torvalds1da177e2005-04-16 15:20:36 -07001561static struct inet_protosw udpv6_protosw = {
1562 .type = SOCK_DGRAM,
1563 .protocol = IPPROTO_UDP,
1564 .prot = &udpv6_prot,
1565 .ops = &inet6_dgram_ops,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001566 .flags = INET_PROTOSW_PERMANENT,
1567};
1568
Daniel Lezcano7f4e4862007-12-11 02:25:35 -08001569int __init udpv6_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001570{
Daniel Lezcano7f4e4862007-12-11 02:25:35 -08001571 int ret;
1572
Vlad Yasevich33362882012-11-15 08:49:15 +00001573 ret = inet6_add_protocol(&udpv6_protocol, IPPROTO_UDP);
1574 if (ret)
Vlad Yasevichc6b641a2012-11-15 08:49:22 +00001575 goto out;
Vlad Yasevich33362882012-11-15 08:49:15 +00001576
Daniel Lezcano7f4e4862007-12-11 02:25:35 -08001577 ret = inet6_register_protosw(&udpv6_protosw);
1578 if (ret)
1579 goto out_udpv6_protocol;
1580out:
1581 return ret;
1582
1583out_udpv6_protocol:
1584 inet6_del_protocol(&udpv6_protocol, IPPROTO_UDP);
1585 goto out;
1586}
1587
Daniel Lezcano09f77092007-12-13 05:34:58 -08001588void udpv6_exit(void)
Daniel Lezcano7f4e4862007-12-11 02:25:35 -08001589{
1590 inet6_unregister_protosw(&udpv6_protosw);
1591 inet6_del_protocol(&udpv6_protocol, IPPROTO_UDP);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001592}