blob: 56fcb55fda31a8c15e23ed6051f1ab87e121d13d [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
Linus Torvalds1da177e2005-04-16 15:20:36 -070040#include <net/ndisc.h>
41#include <net/protocol.h>
42#include <net/transp_v6.h>
43#include <net/ip6_route.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070044#include <net/raw.h>
Arnaldo Carvalho de Meloc752f072005-08-09 20:08:28 -070045#include <net/tcp_states.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070046#include <net/ip6_checksum.h>
47#include <net/xfrm.h>
Tom Herbert72289b92013-01-22 09:50:44 +000048#include <net/inet6_hashtables.h>
Eliezer Tamir076bb0c2013-07-10 17:13:17 +030049#include <net/busy_poll.h>
Craig Galleke32ea7e2016-01-04 17:41:46 -050050#include <net/sock_reuseport.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070051
52#include <linux/proc_fs.h>
53#include <linux/seq_file.h>
Eric Dumazet22911fc2012-06-27 00:23:44 +000054#include <trace/events/skb.h>
Gerrit Renkerba4e58e2006-11-27 11:10:57 -080055#include "udp_impl.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070056
Eric Dumazet6eada012015-03-18 14:05:33 -070057static u32 udp6_ehashfn(const struct net *net,
58 const struct in6_addr *laddr,
59 const u16 lport,
60 const struct in6_addr *faddr,
61 const __be16 fport)
Hannes Frederic Sowab50026b2013-10-19 21:48:52 +020062{
Hannes Frederic Sowa1bbdcee2013-10-19 21:48:57 +020063 static u32 udp6_ehash_secret __read_mostly;
64 static u32 udp_ipv6_hash_secret __read_mostly;
65
66 u32 lhash, fhash;
67
68 net_get_random_once(&udp6_ehash_secret,
69 sizeof(udp6_ehash_secret));
70 net_get_random_once(&udp_ipv6_hash_secret,
71 sizeof(udp_ipv6_hash_secret));
72
73 lhash = (__force u32)laddr->s6_addr32[3];
74 fhash = __ipv6_addr_jhash(faddr, udp_ipv6_hash_secret);
75
Hannes Frederic Sowab50026b2013-10-19 21:48:52 +020076 return __inet6_ehashfn(lhash, lport, fhash, fport,
Hannes Frederic Sowa1bbdcee2013-10-19 21:48:57 +020077 udp_ipv6_hash_secret + net_hash_mix(net));
Hannes Frederic Sowab50026b2013-10-19 21:48:52 +020078}
79
Craig Galleke32ea7e2016-01-04 17:41:46 -050080/* match_wildcard == true: IPV6_ADDR_ANY equals to any IPv6 addresses if IPv6
81 * only, and any IPv4 addresses if not IPv6 only
82 * match_wildcard == false: addresses must be exactly the same, i.e.
83 * IPV6_ADDR_ANY only equals to IPV6_ADDR_ANY,
84 * and 0.0.0.0 equals to 0.0.0.0 only
85 */
86int ipv6_rcv_saddr_equal(const struct sock *sk, const struct sock *sk2,
87 bool match_wildcard)
Vlad Yasevichb2f5e7c2009-03-24 16:24:51 +000088{
Vlad Yasevichb2f5e7c2009-03-24 16:24:51 +000089 const struct in6_addr *sk2_rcv_saddr6 = inet6_rcv_saddr(sk2);
Vlad Yasevichb2f5e7c2009-03-24 16:24:51 +000090 int sk2_ipv6only = inet_v6_ipv6only(sk2);
Eric Dumazetefe42082013-10-03 15:42:29 -070091 int addr_type = ipv6_addr_type(&sk->sk_v6_rcv_saddr);
Vlad Yasevichb2f5e7c2009-03-24 16:24:51 +000092 int addr_type2 = sk2_rcv_saddr6 ? ipv6_addr_type(sk2_rcv_saddr6) : IPV6_ADDR_MAPPED;
93
94 /* if both are mapped, treat as IPv4 */
Craig Galleke32ea7e2016-01-04 17:41:46 -050095 if (addr_type == IPV6_ADDR_MAPPED && addr_type2 == IPV6_ADDR_MAPPED) {
96 if (!sk2_ipv6only) {
97 if (sk->sk_rcv_saddr == sk2->sk_rcv_saddr)
98 return 1;
99 if (!sk->sk_rcv_saddr || !sk2->sk_rcv_saddr)
100 return match_wildcard;
101 }
102 return 0;
103 }
Vlad Yasevichb2f5e7c2009-03-24 16:24:51 +0000104
Craig Galleke32ea7e2016-01-04 17:41:46 -0500105 if (addr_type == IPV6_ADDR_ANY && addr_type2 == IPV6_ADDR_ANY)
106 return 1;
107
108 if (addr_type2 == IPV6_ADDR_ANY && match_wildcard &&
Vlad Yasevichb2f5e7c2009-03-24 16:24:51 +0000109 !(sk2_ipv6only && addr_type == IPV6_ADDR_MAPPED))
110 return 1;
111
Craig Galleke32ea7e2016-01-04 17:41:46 -0500112 if (addr_type == IPV6_ADDR_ANY && match_wildcard &&
Eric Dumazet9fe516b2014-06-27 08:36:16 -0700113 !(ipv6_only_sock(sk) && addr_type2 == IPV6_ADDR_MAPPED))
Vlad Yasevichb2f5e7c2009-03-24 16:24:51 +0000114 return 1;
115
116 if (sk2_rcv_saddr6 &&
Eric Dumazetefe42082013-10-03 15:42:29 -0700117 ipv6_addr_equal(&sk->sk_v6_rcv_saddr, sk2_rcv_saddr6))
Vlad Yasevichb2f5e7c2009-03-24 16:24:51 +0000118 return 1;
119
120 return 0;
121}
122
Eric Dumazet6eada012015-03-18 14:05:33 -0700123static u32 udp6_portaddr_hash(const struct net *net,
124 const struct in6_addr *addr6,
125 unsigned int port)
Eric Dumazetd4cada42009-11-08 10:17:30 +0000126{
127 unsigned int hash, mix = net_hash_mix(net);
128
129 if (ipv6_addr_any(addr6))
130 hash = jhash_1word(0, mix);
Brian Haley856540e2009-11-09 12:05:53 +0000131 else if (ipv6_addr_v4mapped(addr6))
Eric Dumazet0eae88f2010-04-20 19:06:52 -0700132 hash = jhash_1word((__force u32)addr6->s6_addr32[3], mix);
Eric Dumazetd4cada42009-11-08 10:17:30 +0000133 else
Eric Dumazet0eae88f2010-04-20 19:06:52 -0700134 hash = jhash2((__force u32 *)addr6->s6_addr32, 4, mix);
Eric Dumazetd4cada42009-11-08 10:17:30 +0000135
136 return hash ^ port;
137}
138
Pavel Emelyanov6ba5a3c2008-03-22 16:51:21 -0700139int udp_v6_get_port(struct sock *sk, unsigned short snum)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700140{
Eric Dumazet30fff922009-11-09 05:26:33 +0000141 unsigned int hash2_nulladdr =
142 udp6_portaddr_hash(sock_net(sk), &in6addr_any, snum);
Jeffrin Jose9a52e972012-05-19 01:45:21 +0000143 unsigned int hash2_partial =
Eric Dumazetefe42082013-10-03 15:42:29 -0700144 udp6_portaddr_hash(sock_net(sk), &sk->sk_v6_rcv_saddr, 0);
Eric Dumazet30fff922009-11-09 05:26:33 +0000145
Eric Dumazetd4cada42009-11-08 10:17:30 +0000146 /* precompute partial secondary hash */
Eric Dumazet30fff922009-11-09 05:26:33 +0000147 udp_sk(sk)->udp_portaddr_hash = hash2_partial;
148 return udp_lib_get_port(sk, snum, ipv6_rcv_saddr_equal, hash2_nulladdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700149}
150
Eric Dumazet719f8352010-09-08 05:08:44 +0000151static void udp_v6_rehash(struct sock *sk)
152{
153 u16 new_hash = udp6_portaddr_hash(sock_net(sk),
Eric Dumazetefe42082013-10-03 15:42:29 -0700154 &sk->sk_v6_rcv_saddr,
Eric Dumazet719f8352010-09-08 05:08:44 +0000155 inet_sk(sk)->inet_num);
156
157 udp_lib_rehash(sk, new_hash);
158}
159
Eric Dumazet645ca702008-10-29 01:41:45 -0700160static inline int compute_score(struct sock *sk, struct net *net,
161 unsigned short hnum,
Balazs Scheidler88440ae2010-10-21 16:04:33 +0200162 const struct in6_addr *saddr, __be16 sport,
163 const struct in6_addr *daddr, __be16 dport,
Eric Dumazet645ca702008-10-29 01:41:45 -0700164 int dif)
165{
Joe Perches60c04ae2014-12-01 20:29:06 -0800166 int score;
167 struct inet_sock *inet;
Eric Dumazet645ca702008-10-29 01:41:45 -0700168
Joe Perches60c04ae2014-12-01 20:29:06 -0800169 if (!net_eq(sock_net(sk), net) ||
170 udp_sk(sk)->udp_port_hash != hnum ||
171 sk->sk_family != PF_INET6)
172 return -1;
Eric Dumazet645ca702008-10-29 01:41:45 -0700173
Joe Perches60c04ae2014-12-01 20:29:06 -0800174 score = 0;
175 inet = inet_sk(sk);
176
177 if (inet->inet_dport) {
178 if (inet->inet_dport != sport)
179 return -1;
180 score++;
Eric Dumazet645ca702008-10-29 01:41:45 -0700181 }
Joe Perches60c04ae2014-12-01 20:29:06 -0800182
183 if (!ipv6_addr_any(&sk->sk_v6_rcv_saddr)) {
184 if (!ipv6_addr_equal(&sk->sk_v6_rcv_saddr, daddr))
185 return -1;
186 score++;
187 }
188
189 if (!ipv6_addr_any(&sk->sk_v6_daddr)) {
190 if (!ipv6_addr_equal(&sk->sk_v6_daddr, saddr))
191 return -1;
192 score++;
193 }
194
195 if (sk->sk_bound_dev_if) {
196 if (sk->sk_bound_dev_if != dif)
197 return -1;
198 score++;
199 }
200
Eric Dumazet70da2682015-10-08 19:33:21 -0700201 if (sk->sk_incoming_cpu == raw_smp_processor_id())
202 score++;
203
Eric Dumazet645ca702008-10-29 01:41:45 -0700204 return score;
205}
206
Eric Dumazetfddc17d2009-11-08 10:18:30 +0000207static inline int compute_score2(struct sock *sk, struct net *net,
Joe Perches60c04ae2014-12-01 20:29:06 -0800208 const struct in6_addr *saddr, __be16 sport,
209 const struct in6_addr *daddr,
210 unsigned short hnum, int dif)
Eric Dumazetfddc17d2009-11-08 10:18:30 +0000211{
Joe Perches60c04ae2014-12-01 20:29:06 -0800212 int score;
213 struct inet_sock *inet;
Eric Dumazetfddc17d2009-11-08 10:18:30 +0000214
Joe Perches60c04ae2014-12-01 20:29:06 -0800215 if (!net_eq(sock_net(sk), net) ||
216 udp_sk(sk)->udp_port_hash != hnum ||
217 sk->sk_family != PF_INET6)
218 return -1;
Eric Dumazetfddc17d2009-11-08 10:18:30 +0000219
Joe Perches60c04ae2014-12-01 20:29:06 -0800220 if (!ipv6_addr_equal(&sk->sk_v6_rcv_saddr, daddr))
221 return -1;
222
223 score = 0;
224 inet = inet_sk(sk);
225
226 if (inet->inet_dport) {
227 if (inet->inet_dport != sport)
Eric Dumazetfddc17d2009-11-08 10:18:30 +0000228 return -1;
Joe Perches60c04ae2014-12-01 20:29:06 -0800229 score++;
Eric Dumazetfddc17d2009-11-08 10:18:30 +0000230 }
Joe Perches60c04ae2014-12-01 20:29:06 -0800231
232 if (!ipv6_addr_any(&sk->sk_v6_daddr)) {
233 if (!ipv6_addr_equal(&sk->sk_v6_daddr, saddr))
234 return -1;
235 score++;
236 }
237
238 if (sk->sk_bound_dev_if) {
239 if (sk->sk_bound_dev_if != dif)
240 return -1;
241 score++;
242 }
243
Eric Dumazet70da2682015-10-08 19:33:21 -0700244 if (sk->sk_incoming_cpu == raw_smp_processor_id())
245 score++;
246
Eric Dumazetfddc17d2009-11-08 10:18:30 +0000247 return score;
248}
249
Eric Dumazetfddc17d2009-11-08 10:18:30 +0000250/* called with read_rcu_lock() */
251static struct sock *udp6_lib_lookup2(struct net *net,
252 const struct in6_addr *saddr, __be16 sport,
253 const struct in6_addr *daddr, unsigned int hnum, int dif,
254 struct udp_hslot *hslot2, unsigned int slot2)
255{
256 struct sock *sk, *result;
257 struct hlist_nulls_node *node;
Tom Herbert72289b92013-01-22 09:50:44 +0000258 int score, badness, matches = 0, reuseport = 0;
259 u32 hash = 0;
Eric Dumazetfddc17d2009-11-08 10:18:30 +0000260
261begin:
262 result = NULL;
263 badness = -1;
264 udp_portaddr_for_each_entry_rcu(sk, node, &hslot2->head) {
265 score = compute_score2(sk, net, saddr, sport,
266 daddr, hnum, dif);
267 if (score > badness) {
268 result = sk;
269 badness = score;
Tom Herbert72289b92013-01-22 09:50:44 +0000270 reuseport = sk->sk_reuseport;
271 if (reuseport) {
Craig Galleke32ea7e2016-01-04 17:41:46 -0500272 struct sock *sk2;
Hannes Frederic Sowab50026b2013-10-19 21:48:52 +0200273 hash = udp6_ehashfn(net, daddr, hnum,
274 saddr, sport);
Craig Gallek538950a2016-01-04 17:41:47 -0500275 sk2 = reuseport_select_sock(sk, hash, NULL, 0);
Craig Galleke32ea7e2016-01-04 17:41:46 -0500276 if (sk2) {
277 result = sk2;
278 goto found;
279 }
Tom Herbert72289b92013-01-22 09:50:44 +0000280 matches = 1;
Eric Dumazet70da2682015-10-08 19:33:21 -0700281 }
Tom Herbert72289b92013-01-22 09:50:44 +0000282 } else if (score == badness && reuseport) {
283 matches++;
Daniel Borkmann8fc54f62014-08-23 20:58:54 +0200284 if (reciprocal_scale(hash, matches) == 0)
Tom Herbert72289b92013-01-22 09:50:44 +0000285 result = sk;
286 hash = next_pseudo_random32(hash);
Eric Dumazetfddc17d2009-11-08 10:18:30 +0000287 }
288 }
289 /*
290 * if the nulls value we got at the end of this lookup is
291 * not the expected one, we must restart lookup.
292 * We probably met an item that was moved to another chain.
293 */
294 if (get_nulls_value(node) != slot2)
295 goto begin;
296
297 if (result) {
Craig Galleke32ea7e2016-01-04 17:41:46 -0500298found:
Eric Dumazetc31504d2010-11-15 19:58:26 +0000299 if (unlikely(!atomic_inc_not_zero_hint(&result->sk_refcnt, 2)))
Eric Dumazetfddc17d2009-11-08 10:18:30 +0000300 result = NULL;
301 else if (unlikely(compute_score2(result, net, saddr, sport,
302 daddr, hnum, dif) < badness)) {
303 sock_put(result);
304 goto begin;
305 }
306 }
307 return result;
308}
309
Pavel Emelyanovfce82332011-12-09 06:23:34 +0000310struct sock *__udp6_lib_lookup(struct net *net,
Balazs Scheidler88440ae2010-10-21 16:04:33 +0200311 const struct in6_addr *saddr, __be16 sport,
312 const struct in6_addr *daddr, __be16 dport,
Craig Gallek538950a2016-01-04 17:41:47 -0500313 int dif, struct udp_table *udptable,
314 struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700315{
Eric Dumazet271b72c2008-10-29 02:11:14 -0700316 struct sock *sk, *result;
Eric Dumazet88ab1932008-11-16 19:39:21 -0800317 struct hlist_nulls_node *node;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700318 unsigned short hnum = ntohs(dport);
Eric Dumazetfddc17d2009-11-08 10:18:30 +0000319 unsigned int hash2, slot2, slot = udp_hashfn(net, hnum, udptable->mask);
320 struct udp_hslot *hslot2, *hslot = &udptable->hash[slot];
Tom Herbert72289b92013-01-22 09:50:44 +0000321 int score, badness, matches = 0, reuseport = 0;
322 u32 hash = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700323
Eric Dumazet271b72c2008-10-29 02:11:14 -0700324 rcu_read_lock();
Eric Dumazetfddc17d2009-11-08 10:18:30 +0000325 if (hslot->count > 10) {
326 hash2 = udp6_portaddr_hash(net, daddr, hnum);
327 slot2 = hash2 & udptable->mask;
328 hslot2 = &udptable->hash2[slot2];
329 if (hslot->count < hslot2->count)
330 goto begin;
331
332 result = udp6_lib_lookup2(net, saddr, sport,
333 daddr, hnum, dif,
334 hslot2, slot2);
335 if (!result) {
336 hash2 = udp6_portaddr_hash(net, &in6addr_any, hnum);
337 slot2 = hash2 & udptable->mask;
338 hslot2 = &udptable->hash2[slot2];
339 if (hslot->count < hslot2->count)
340 goto begin;
341
Jorge Boncompte [DTI2]1223c672010-04-08 04:56:48 +0000342 result = udp6_lib_lookup2(net, saddr, sport,
343 &in6addr_any, hnum, dif,
Eric Dumazetfddc17d2009-11-08 10:18:30 +0000344 hslot2, slot2);
345 }
346 rcu_read_unlock();
347 return result;
348 }
Eric Dumazet271b72c2008-10-29 02:11:14 -0700349begin:
350 result = NULL;
351 badness = -1;
Eric Dumazet88ab1932008-11-16 19:39:21 -0800352 sk_nulls_for_each_rcu(sk, node, &hslot->head) {
Eric Dumazet645ca702008-10-29 01:41:45 -0700353 score = compute_score(sk, net, hnum, saddr, sport, daddr, dport, dif);
354 if (score > badness) {
355 result = sk;
356 badness = score;
Tom Herbert72289b92013-01-22 09:50:44 +0000357 reuseport = sk->sk_reuseport;
358 if (reuseport) {
Craig Galleke32ea7e2016-01-04 17:41:46 -0500359 struct sock *sk2;
Hannes Frederic Sowab50026b2013-10-19 21:48:52 +0200360 hash = udp6_ehashfn(net, daddr, hnum,
361 saddr, sport);
Craig Gallek538950a2016-01-04 17:41:47 -0500362 sk2 = reuseport_select_sock(sk, hash, skb,
363 sizeof(struct udphdr));
Craig Galleke32ea7e2016-01-04 17:41:46 -0500364 if (sk2) {
365 result = sk2;
366 goto found;
367 }
Tom Herbert72289b92013-01-22 09:50:44 +0000368 matches = 1;
369 }
370 } else if (score == badness && reuseport) {
371 matches++;
Daniel Borkmann8fc54f62014-08-23 20:58:54 +0200372 if (reciprocal_scale(hash, matches) == 0)
Tom Herbert72289b92013-01-22 09:50:44 +0000373 result = sk;
374 hash = next_pseudo_random32(hash);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700375 }
376 }
Eric Dumazet88ab1932008-11-16 19:39:21 -0800377 /*
378 * if the nulls value we got at the end of this lookup is
379 * not the expected one, we must restart lookup.
380 * We probably met an item that was moved to another chain.
381 */
Eric Dumazetfddc17d2009-11-08 10:18:30 +0000382 if (get_nulls_value(node) != slot)
Eric Dumazet88ab1932008-11-16 19:39:21 -0800383 goto begin;
384
Eric Dumazet271b72c2008-10-29 02:11:14 -0700385 if (result) {
Craig Galleke32ea7e2016-01-04 17:41:46 -0500386found:
Eric Dumazetc31504d2010-11-15 19:58:26 +0000387 if (unlikely(!atomic_inc_not_zero_hint(&result->sk_refcnt, 2)))
Eric Dumazet271b72c2008-10-29 02:11:14 -0700388 result = NULL;
389 else if (unlikely(compute_score(result, net, hnum, saddr, sport,
390 daddr, dport, dif) < badness)) {
391 sock_put(result);
392 goto begin;
393 }
394 }
395 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700396 return result;
397}
Pavel Emelyanovfce82332011-12-09 06:23:34 +0000398EXPORT_SYMBOL_GPL(__udp6_lib_lookup);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700399
KOVACS Krisztian607c4aa2008-10-07 12:38:32 -0700400static struct sock *__udp6_lib_lookup_skb(struct sk_buff *skb,
401 __be16 sport, __be16 dport,
Eric Dumazet645ca702008-10-29 01:41:45 -0700402 struct udp_table *udptable)
KOVACS Krisztian607c4aa2008-10-07 12:38:32 -0700403{
KOVACS Krisztian23542612008-10-07 12:41:01 -0700404 struct sock *sk;
Eric Dumazetb71d1d42011-04-22 04:53:02 +0000405 const struct ipv6hdr *iph = ipv6_hdr(skb);
KOVACS Krisztian607c4aa2008-10-07 12:38:32 -0700406
Ian Morrise5d08d72014-11-23 21:28:43 +0000407 sk = skb_steal_sock(skb);
408 if (unlikely(sk))
KOVACS Krisztian23542612008-10-07 12:41:01 -0700409 return sk;
Eric Dumazetadf30902009-06-02 05:19:30 +0000410 return __udp6_lib_lookup(dev_net(skb_dst(skb)->dev), &iph->saddr, sport,
411 &iph->daddr, dport, inet6_iif(skb),
Craig Gallek538950a2016-01-04 17:41:47 -0500412 udptable, skb);
KOVACS Krisztian607c4aa2008-10-07 12:38:32 -0700413}
414
Balazs Scheidleraa976fc2010-10-21 16:05:41 +0200415struct sock *udp6_lib_lookup(struct net *net, const struct in6_addr *saddr, __be16 sport,
416 const struct in6_addr *daddr, __be16 dport, int dif)
417{
Craig Gallek538950a2016-01-04 17:41:47 -0500418 return __udp6_lib_lookup(net, saddr, sport, daddr, dport, dif, &udp_table, NULL);
Balazs Scheidleraa976fc2010-10-21 16:05:41 +0200419}
420EXPORT_SYMBOL_GPL(udp6_lib_lookup);
421
Linus Torvalds1da177e2005-04-16 15:20:36 -0700422/*
Ian Morris67ba4152014-08-24 21:53:10 +0100423 * This should be easy, if there is something there we
424 * return it, otherwise we block.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700425 */
426
Ying Xue1b784142015-03-02 15:37:48 +0800427int udpv6_recvmsg(struct sock *sk, struct msghdr *msg, size_t len,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700428 int noblock, int flags, int *addr_len)
429{
430 struct ipv6_pinfo *np = inet6_sk(sk);
431 struct inet_sock *inet = inet_sk(sk);
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900432 struct sk_buff *skb;
David S. Miller59c2cda2011-12-01 14:12:55 -0500433 unsigned int ulen, copied;
Pavel Emelyanov3f518bf2012-02-21 07:30:58 +0000434 int peeked, off = 0;
Herbert Xu759e5d02007-03-25 20:10:56 -0700435 int err;
436 int is_udplite = IS_UDPLITE(sk);
Eric Dumazet197c9492015-12-30 08:51:12 -0500437 bool checksum_valid = false;
Wei Yongjunf26ba172008-11-02 16:11:01 +0000438 int is_udp4;
Eric Dumazet8a74ad62010-05-26 19:20:18 +0000439 bool slow;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700440
Linus Torvalds1da177e2005-04-16 15:20:36 -0700441 if (flags & MSG_ERRQUEUE)
Hannes Frederic Sowa85fbaa72013-11-23 00:46:12 +0100442 return ipv6_recv_error(sk, msg, len, addr_len);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700443
Brian Haley4b340ae2010-04-23 11:26:09 +0000444 if (np->rxpmtu && np->rxopt.bits.rxpmtu)
Hannes Frederic Sowa85fbaa72013-11-23 00:46:12 +0100445 return ipv6_recv_rxpmtu(sk, msg, len, addr_len);
Brian Haley4b340ae2010-04-23 11:26:09 +0000446
Linus Torvalds1da177e2005-04-16 15:20:36 -0700447try_again:
Herbert Xua59322b2007-12-05 01:53:40 -0800448 skb = __skb_recv_datagram(sk, flags | (noblock ? MSG_DONTWAIT : 0),
Pavel Emelyanov3f518bf2012-02-21 07:30:58 +0000449 &peeked, &off, &err);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700450 if (!skb)
451 goto out;
452
Herbert Xu759e5d02007-03-25 20:10:56 -0700453 ulen = skb->len - sizeof(struct udphdr);
David S. Miller59c2cda2011-12-01 14:12:55 -0500454 copied = len;
455 if (copied > ulen)
456 copied = ulen;
457 else if (copied < ulen)
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900458 msg->msg_flags |= MSG_TRUNC;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700459
Wei Yongjunf26ba172008-11-02 16:11:01 +0000460 is_udp4 = (skb->protocol == htons(ETH_P_IP));
461
Gerrit Renkerba4e58e2006-11-27 11:10:57 -0800462 /*
Herbert Xu759e5d02007-03-25 20:10:56 -0700463 * If checksum is needed at all, try to do it while copying the
464 * data. If the data is truncated, or if we only want a partial
465 * coverage checksum (UDP-Lite), do it before the copy.
Gerrit Renkerba4e58e2006-11-27 11:10:57 -0800466 */
Gerrit Renkerba4e58e2006-11-27 11:10:57 -0800467
David S. Miller59c2cda2011-12-01 14:12:55 -0500468 if (copied < ulen || UDP_SKB_CB(skb)->partial_cov) {
Eric Dumazet197c9492015-12-30 08:51:12 -0500469 checksum_valid = !udp_lib_checksum_complete(skb);
470 if (!checksum_valid)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700471 goto csum_copy_err;
Gerrit Renkerba4e58e2006-11-27 11:10:57 -0800472 }
473
Eric Dumazet197c9492015-12-30 08:51:12 -0500474 if (checksum_valid || skb_csum_unnecessary(skb))
David S. Miller51f3d022014-11-05 16:46:40 -0500475 err = skb_copy_datagram_msg(skb, sizeof(struct udphdr),
476 msg, copied);
Gerrit Renkerba4e58e2006-11-27 11:10:57 -0800477 else {
Al Viro227158d2014-04-06 18:47:38 -0400478 err = skb_copy_and_csum_datagram_msg(skb, sizeof(struct udphdr), msg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700479 if (err == -EINVAL)
480 goto csum_copy_err;
481 }
Eric Dumazet22911fc2012-06-27 00:23:44 +0000482 if (unlikely(err)) {
483 trace_kfree_skb(skb, udpv6_recvmsg);
Eric Dumazet979402b2012-09-05 23:34:44 +0000484 if (!peeked) {
485 atomic_inc(&sk->sk_drops);
486 if (is_udp4)
487 UDP_INC_STATS_USER(sock_net(sk),
488 UDP_MIB_INERRORS,
489 is_udplite);
490 else
491 UDP6_INC_STATS_USER(sock_net(sk),
492 UDP_MIB_INERRORS,
493 is_udplite);
494 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700495 goto out_free;
Eric Dumazet22911fc2012-06-27 00:23:44 +0000496 }
Wei Yongjunf26ba172008-11-02 16:11:01 +0000497 if (!peeked) {
498 if (is_udp4)
499 UDP_INC_STATS_USER(sock_net(sk),
500 UDP_MIB_INDATAGRAMS, is_udplite);
501 else
502 UDP6_INC_STATS_USER(sock_net(sk),
503 UDP_MIB_INDATAGRAMS, is_udplite);
504 }
Wang Chencb759942007-12-03 22:33:28 +1100505
Neil Horman3b885782009-10-12 13:26:31 -0700506 sock_recv_ts_and_drops(msg, sk, skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700507
508 /* Copy the address. */
509 if (msg->msg_name) {
Steffen Hurrle342dfc32014-01-17 22:53:15 +0100510 DECLARE_SOCKADDR(struct sockaddr_in6 *, sin6, msg->msg_name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700511 sin6->sin6_family = AF_INET6;
Arnaldo Carvalho de Melo4bedb452007-03-13 14:28:48 -0300512 sin6->sin6_port = udp_hdr(skb)->source;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700513 sin6->sin6_flowinfo = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700514
Hannes Frederic Sowa842df072013-03-08 02:07:19 +0000515 if (is_udp4) {
Brian Haleyb301e822009-10-07 13:58:25 -0700516 ipv6_addr_set_v4mapped(ip_hdr(skb)->saddr,
517 &sin6->sin6_addr);
Hannes Frederic Sowa842df072013-03-08 02:07:19 +0000518 sin6->sin6_scope_id = 0;
519 } else {
Alexey Dobriyan4e3fd7a2011-11-21 03:39:03 +0000520 sin6->sin6_addr = ipv6_hdr(skb)->saddr;
Hannes Frederic Sowa842df072013-03-08 02:07:19 +0000521 sin6->sin6_scope_id =
522 ipv6_iface_scope_id(&sin6->sin6_addr,
Duan Jiong43304872014-08-01 09:52:58 +0800523 inet6_iif(skb));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700524 }
Hannes Frederic Sowabceaa902013-11-18 04:20:45 +0100525 *addr_len = sizeof(*sin6);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700526 }
Hannes Frederic Sowa4b261c72014-01-20 03:43:08 +0100527
528 if (np->rxopt.all)
529 ip6_datagram_recv_common_ctl(sk, msg, skb);
530
Wei Yongjunf26ba172008-11-02 16:11:01 +0000531 if (is_udp4) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700532 if (inet->cmsg_flags)
533 ip_cmsg_recv(msg, skb);
534 } else {
535 if (np->rxopt.all)
Hannes Frederic Sowa4b261c72014-01-20 03:43:08 +0100536 ip6_datagram_recv_specific_ctl(sk, msg, skb);
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900537 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700538
David S. Miller59c2cda2011-12-01 14:12:55 -0500539 err = copied;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700540 if (flags & MSG_TRUNC)
Herbert Xu759e5d02007-03-25 20:10:56 -0700541 err = ulen;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700542
543out_free:
Eric Dumazet9d410c72009-10-30 05:03:53 +0000544 skb_free_datagram_locked(sk, skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700545out:
546 return err;
547
548csum_copy_err:
Eric Dumazet8a74ad62010-05-26 19:20:18 +0000549 slow = lock_sock_fast(sk);
Wei Yongjun0856f932008-11-02 16:14:27 +0000550 if (!skb_kill_datagram(sk, skb, flags)) {
Eric Dumazet6a5dc9e2013-04-29 08:39:56 +0000551 if (is_udp4) {
552 UDP_INC_STATS_USER(sock_net(sk),
553 UDP_MIB_CSUMERRORS, is_udplite);
Wei Yongjun0856f932008-11-02 16:14:27 +0000554 UDP_INC_STATS_USER(sock_net(sk),
555 UDP_MIB_INERRORS, is_udplite);
Eric Dumazet6a5dc9e2013-04-29 08:39:56 +0000556 } else {
557 UDP6_INC_STATS_USER(sock_net(sk),
558 UDP_MIB_CSUMERRORS, is_udplite);
Wei Yongjun0856f932008-11-02 16:14:27 +0000559 UDP6_INC_STATS_USER(sock_net(sk),
560 UDP_MIB_INERRORS, is_udplite);
Eric Dumazet6a5dc9e2013-04-29 08:39:56 +0000561 }
Wei Yongjun0856f932008-11-02 16:14:27 +0000562 }
Eric Dumazet8a74ad62010-05-26 19:20:18 +0000563 unlock_sock_fast(sk, slow);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700564
Eric Dumazetbeb39db2015-05-30 09:16:53 -0700565 /* starting over for a new packet, but check if we need to yield */
566 cond_resched();
Xufeng Zhang9cfaa8d2011-06-21 10:43:40 +0000567 msg->msg_flags &= ~MSG_TRUNC;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700568 goto try_again;
569}
570
Gerrit Renkerba4e58e2006-11-27 11:10:57 -0800571void __udp6_lib_err(struct sk_buff *skb, struct inet6_skb_parm *opt,
Brian Haleyd5fdd6b2009-06-23 04:31:07 -0700572 u8 type, u8 code, int offset, __be32 info,
Eric Dumazet645ca702008-10-29 01:41:45 -0700573 struct udp_table *udptable)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700574{
575 struct ipv6_pinfo *np;
Eric Dumazetb71d1d42011-04-22 04:53:02 +0000576 const struct ipv6hdr *hdr = (const struct ipv6hdr *)skb->data;
577 const struct in6_addr *saddr = &hdr->saddr;
578 const struct in6_addr *daddr = &hdr->daddr;
Ian Morris67ba4152014-08-24 21:53:10 +0100579 struct udphdr *uh = (struct udphdr *)(skb->data+offset);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700580 struct sock *sk;
581 int err;
Duan Jiong7304fe42014-07-31 17:54:32 +0800582 struct net *net = dev_net(skb->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700583
Craig Galleke32ea7e2016-01-04 17:41:46 -0500584 sk = __udp6_lib_lookup(net, daddr, uh->dest, saddr, uh->source,
Craig Gallek538950a2016-01-04 17:41:47 -0500585 inet6_iif(skb), udptable, skb);
Ian Morris63159f22015-03-29 14:00:04 +0100586 if (!sk) {
Duan Jiong7304fe42014-07-31 17:54:32 +0800587 ICMP6_INC_STATS_BH(net, __in6_dev_get(skb->dev),
588 ICMP6_MIB_INERRORS);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700589 return;
Duan Jiong7304fe42014-07-31 17:54:32 +0800590 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700591
Hannes Frederic Sowa93b36cf2013-12-15 03:41:14 +0100592 if (type == ICMPV6_PKT_TOOBIG) {
593 if (!ip6_sk_accept_pmtu(sk))
594 goto out;
David S. Miller81aded22012-06-15 14:54:11 -0700595 ip6_sk_update_pmtu(skb, sk, info);
Hannes Frederic Sowa93b36cf2013-12-15 03:41:14 +0100596 }
Duan Jiong1a462d12013-09-20 18:20:28 +0800597 if (type == NDISC_REDIRECT) {
David S. Millerec18d9a2012-07-12 00:25:15 -0700598 ip6_sk_redirect(skb, sk);
Duan Jiong1a462d12013-09-20 18:20:28 +0800599 goto out;
600 }
David S. Miller81aded22012-06-15 14:54:11 -0700601
Linus Torvalds1da177e2005-04-16 15:20:36 -0700602 np = inet6_sk(sk);
603
604 if (!icmpv6_err_convert(type, code, &err) && !np->recverr)
605 goto out;
606
607 if (sk->sk_state != TCP_ESTABLISHED && !np->recverr)
608 goto out;
609
Eric Dumazetb1faf562010-05-31 23:44:05 -0700610 if (np->recverr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700611 ipv6_icmp_error(sk, skb, err, uh->dest, ntohl(info), (u8 *)(uh+1));
Eric Dumazetb1faf562010-05-31 23:44:05 -0700612
Linus Torvalds1da177e2005-04-16 15:20:36 -0700613 sk->sk_err = err;
614 sk->sk_error_report(sk);
615out:
616 sock_put(sk);
617}
618
Benjamin LaHaisef7ad74f2012-04-27 08:23:21 +0000619static int __udpv6_queue_rcv_skb(struct sock *sk, struct sk_buff *skb)
620{
621 int rc;
622
Eric Dumazetefe42082013-10-03 15:42:29 -0700623 if (!ipv6_addr_any(&sk->sk_v6_daddr)) {
Benjamin LaHaisef7ad74f2012-04-27 08:23:21 +0000624 sock_rps_save_rxhash(sk, skb);
Shawn Bohrer005ec972013-10-07 11:01:38 -0500625 sk_mark_napi_id(sk, skb);
Eric Dumazet2c8c56e2014-11-11 05:54:28 -0800626 sk_incoming_cpu_update(sk);
Shawn Bohrer005ec972013-10-07 11:01:38 -0500627 }
Benjamin LaHaisef7ad74f2012-04-27 08:23:21 +0000628
629 rc = sock_queue_rcv_skb(sk, skb);
630 if (rc < 0) {
631 int is_udplite = IS_UDPLITE(sk);
632
633 /* Note that an ENOMEM error is charged twice */
634 if (rc == -ENOMEM)
635 UDP6_INC_STATS_BH(sock_net(sk),
636 UDP_MIB_RCVBUFERRORS, is_udplite);
637 UDP6_INC_STATS_BH(sock_net(sk), UDP_MIB_INERRORS, is_udplite);
638 kfree_skb(skb);
639 return -1;
640 }
641 return 0;
642}
643
Gerrit Renkerba4e58e2006-11-27 11:10:57 -0800644static __inline__ void udpv6_err(struct sk_buff *skb,
Brian Haleyd5fdd6b2009-06-23 04:31:07 -0700645 struct inet6_skb_parm *opt, u8 type,
Ian Morris67ba4152014-08-24 21:53:10 +0100646 u8 code, int offset, __be32 info)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700647{
Eric Dumazet645ca702008-10-29 01:41:45 -0700648 __udp6_lib_err(skb, opt, type, code, offset, info, &udp_table);
Gerrit Renkerba4e58e2006-11-27 11:10:57 -0800649}
650
Benjamin LaHaised7f3f622012-04-27 08:24:08 +0000651static struct static_key udpv6_encap_needed __read_mostly;
652void udpv6_encap_enable(void)
653{
654 if (!static_key_enabled(&udpv6_encap_needed))
655 static_key_slow_inc(&udpv6_encap_needed);
656}
657EXPORT_SYMBOL(udpv6_encap_enable);
658
Benjamin LaHaisef7ad74f2012-04-27 08:23:21 +0000659int udpv6_queue_rcv_skb(struct sock *sk, struct sk_buff *skb)
Gerrit Renkerba4e58e2006-11-27 11:10:57 -0800660{
661 struct udp_sock *up = udp_sk(sk);
David S. Millera18135e2006-08-15 00:00:09 -0700662 int rc;
Wang Chenb2bf1e22007-12-03 22:34:16 +1100663 int is_udplite = IS_UDPLITE(sk);
David S. Millera18135e2006-08-15 00:00:09 -0700664
Gerrit Renkerba4e58e2006-11-27 11:10:57 -0800665 if (!xfrm6_policy_check(sk, XFRM_POLICY_IN, skb))
666 goto drop;
667
Benjamin LaHaised7f3f622012-04-27 08:24:08 +0000668 if (static_key_false(&udpv6_encap_needed) && up->encap_type) {
669 int (*encap_rcv)(struct sock *sk, struct sk_buff *skb);
670
671 /*
672 * This is an encapsulation socket so pass the skb to
673 * the socket's udp_encap_rcv() hook. Otherwise, just
674 * fall through and pass this up the UDP socket.
675 * up->encap_rcv() returns the following value:
676 * =0 if skb was successfully passed to the encap
677 * handler or was discarded by it.
678 * >0 if skb should be passed on to UDP.
679 * <0 if skb should be resubmitted as proto -N
680 */
681
682 /* if we're overly short, let UDP handle it */
683 encap_rcv = ACCESS_ONCE(up->encap_rcv);
Ian Morris53b24b82015-03-29 14:00:05 +0100684 if (skb->len > sizeof(struct udphdr) && encap_rcv) {
Benjamin LaHaised7f3f622012-04-27 08:24:08 +0000685 int ret;
686
Tom Herbert0a809662014-05-07 16:52:39 -0700687 /* Verify checksum before giving to encap */
688 if (udp_lib_checksum_complete(skb))
689 goto csum_error;
690
Benjamin LaHaised7f3f622012-04-27 08:24:08 +0000691 ret = encap_rcv(sk, skb);
692 if (ret <= 0) {
693 UDP_INC_STATS_BH(sock_net(sk),
694 UDP_MIB_INDATAGRAMS,
695 is_udplite);
696 return -ret;
697 }
698 }
699
700 /* FALLTHROUGH -- it's a UDP Packet */
701 }
702
Gerrit Renkerba4e58e2006-11-27 11:10:57 -0800703 /*
704 * UDP-Lite specific tests, ignored on UDP sockets (see net/ipv4/udp.c).
705 */
Wang Chenb2bf1e22007-12-03 22:34:16 +1100706 if ((is_udplite & UDPLITE_RECV_CC) && UDP_SKB_CB(skb)->partial_cov) {
Gerrit Renkerba4e58e2006-11-27 11:10:57 -0800707
708 if (up->pcrlen == 0) { /* full coverage was set */
Joe Perchesba7a46f2014-11-11 10:59:17 -0800709 net_dbg_ratelimited("UDPLITE6: partial coverage %d while full coverage %d requested\n",
710 UDP_SKB_CB(skb)->cscov, skb->len);
Gerrit Renkerba4e58e2006-11-27 11:10:57 -0800711 goto drop;
712 }
713 if (UDP_SKB_CB(skb)->cscov < up->pcrlen) {
Joe Perchesba7a46f2014-11-11 10:59:17 -0800714 net_dbg_ratelimited("UDPLITE6: coverage %d too small, need min %d\n",
715 UDP_SKB_CB(skb)->cscov, up->pcrlen);
Gerrit Renkerba4e58e2006-11-27 11:10:57 -0800716 goto drop;
717 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700718 }
719
Eric Dumazet33d480c2011-08-11 19:30:52 +0000720 if (rcu_access_pointer(sk->sk_filter)) {
Herbert Xu1ab6eb62007-03-06 20:29:58 -0800721 if (udp_lib_checksum_complete(skb))
Eric Dumazet6a5dc9e2013-04-29 08:39:56 +0000722 goto csum_error;
Herbert Xu1ab6eb62007-03-06 20:29:58 -0800723 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700724
Sorin Dumitru274f4822014-07-22 21:16:51 +0300725 if (sk_rcvqueues_full(sk, sk->sk_rcvbuf)) {
James M Leddy3e215c82014-06-25 17:38:13 -0400726 UDP6_INC_STATS_BH(sock_net(sk),
727 UDP_MIB_RCVBUFERRORS, is_udplite);
Benjamin LaHaisecb80ef42012-04-27 08:23:59 +0000728 goto drop;
James M Leddy3e215c82014-06-25 17:38:13 -0400729 }
Benjamin LaHaisecb80ef42012-04-27 08:23:59 +0000730
Eric Dumazetd826eb12011-11-09 07:24:35 +0000731 skb_dst_drop(skb);
Wang Chencb759942007-12-03 22:33:28 +1100732
Benjamin LaHaisecb80ef42012-04-27 08:23:59 +0000733 bh_lock_sock(sk);
734 rc = 0;
735 if (!sock_owned_by_user(sk))
736 rc = __udpv6_queue_rcv_skb(sk, skb);
737 else if (sk_add_backlog(sk, skb, sk->sk_rcvbuf)) {
738 bh_unlock_sock(sk);
739 goto drop;
740 }
741 bh_unlock_sock(sk);
Benjamin LaHaisef7ad74f2012-04-27 08:23:21 +0000742
743 return rc;
James M Leddy3e215c82014-06-25 17:38:13 -0400744
Eric Dumazet6a5dc9e2013-04-29 08:39:56 +0000745csum_error:
746 UDP6_INC_STATS_BH(sock_net(sk), UDP_MIB_CSUMERRORS, is_udplite);
Gerrit Renkerba4e58e2006-11-27 11:10:57 -0800747drop:
Pavel Emelyanovef28d1a2008-07-05 21:19:40 -0700748 UDP6_INC_STATS_BH(sock_net(sk), UDP_MIB_INERRORS, is_udplite);
Benjamin LaHaisecb80ef42012-04-27 08:23:59 +0000749 atomic_inc(&sk->sk_drops);
Gerrit Renkerba4e58e2006-11-27 11:10:57 -0800750 kfree_skb(skb);
751 return -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700752}
753
David Held5cf3d462014-07-15 23:28:31 -0400754static bool __udp_v6_is_mcast_sock(struct net *net, struct sock *sk,
755 __be16 loc_port, const struct in6_addr *loc_addr,
756 __be16 rmt_port, const struct in6_addr *rmt_addr,
757 int dif, unsigned short hnum)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700758{
David Held5cf3d462014-07-15 23:28:31 -0400759 struct inet_sock *inet = inet_sk(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700760
David Held5cf3d462014-07-15 23:28:31 -0400761 if (!net_eq(sock_net(sk), net))
762 return false;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700763
David Held5cf3d462014-07-15 23:28:31 -0400764 if (udp_sk(sk)->udp_port_hash != hnum ||
765 sk->sk_family != PF_INET6 ||
766 (inet->inet_dport && inet->inet_dport != rmt_port) ||
767 (!ipv6_addr_any(&sk->sk_v6_daddr) &&
768 !ipv6_addr_equal(&sk->sk_v6_daddr, rmt_addr)) ||
Henning Rogge33b4b012015-05-18 21:08:49 +0200769 (sk->sk_bound_dev_if && sk->sk_bound_dev_if != dif) ||
770 (!ipv6_addr_any(&sk->sk_v6_rcv_saddr) &&
771 !ipv6_addr_equal(&sk->sk_v6_rcv_saddr, loc_addr)))
David Held5cf3d462014-07-15 23:28:31 -0400772 return false;
773 if (!inet6_mc_check(sk, loc_addr, rmt_addr))
774 return false;
775 return true;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700776}
777
Eric Dumazeta1ab77f2009-11-08 10:18:52 +0000778static void flush_stack(struct sock **stack, unsigned int count,
779 struct sk_buff *skb, unsigned int final)
780{
Benjamin LaHaisecb80ef42012-04-27 08:23:59 +0000781 struct sk_buff *skb1 = NULL;
Eric Dumazeta1ab77f2009-11-08 10:18:52 +0000782 struct sock *sk;
Benjamin LaHaisecb80ef42012-04-27 08:23:59 +0000783 unsigned int i;
Eric Dumazeta1ab77f2009-11-08 10:18:52 +0000784
785 for (i = 0; i < count; i++) {
Eric Dumazetf6b8f322009-11-08 10:20:19 +0000786 sk = stack[i];
Ian Morris63159f22015-03-29 14:00:04 +0100787 if (likely(!skb1))
Benjamin LaHaisecb80ef42012-04-27 08:23:59 +0000788 skb1 = (i == final) ? skb : skb_clone(skb, GFP_ATOMIC);
789 if (!skb1) {
790 atomic_inc(&sk->sk_drops);
791 UDP6_INC_STATS_BH(sock_net(sk), UDP_MIB_RCVBUFERRORS,
792 IS_UDPLITE(sk));
793 UDP6_INC_STATS_BH(sock_net(sk), UDP_MIB_INERRORS,
794 IS_UDPLITE(sk));
Eric Dumazeta1ab77f2009-11-08 10:18:52 +0000795 }
Benjamin LaHaisecb80ef42012-04-27 08:23:59 +0000796
797 if (skb1 && udpv6_queue_rcv_skb(sk, skb1) <= 0)
798 skb1 = NULL;
David Held2dc41cf2014-07-15 23:28:32 -0400799 sock_put(sk);
Eric Dumazeta1ab77f2009-11-08 10:18:52 +0000800 }
Benjamin LaHaisecb80ef42012-04-27 08:23:59 +0000801 if (unlikely(skb1))
802 kfree_skb(skb1);
Eric Dumazeta1ab77f2009-11-08 10:18:52 +0000803}
Tom Herbert40685792014-05-02 16:29:58 -0700804
805static void udp6_csum_zero_error(struct sk_buff *skb)
806{
807 /* RFC 2460 section 8.1 says that we SHOULD log
808 * this error. Well, it is reasonable.
809 */
Joe Perchesba7a46f2014-11-11 10:59:17 -0800810 net_dbg_ratelimited("IPv6: udp checksum is 0 for [%pI6c]:%u->[%pI6c]:%u\n",
811 &ipv6_hdr(skb)->saddr, ntohs(udp_hdr(skb)->source),
812 &ipv6_hdr(skb)->daddr, ntohs(udp_hdr(skb)->dest));
Tom Herbert40685792014-05-02 16:29:58 -0700813}
814
Linus Torvalds1da177e2005-04-16 15:20:36 -0700815/*
816 * Note: called only from the BH handler context,
817 * so we don't need to lock the hashes.
818 */
Pavel Emelyanove3163492008-06-16 17:12:11 -0700819static int __udp6_lib_mcast_deliver(struct net *net, struct sk_buff *skb,
Eric Dumazetb71d1d42011-04-22 04:53:02 +0000820 const struct in6_addr *saddr, const struct in6_addr *daddr,
Rick Jones36cbb242014-11-06 10:37:54 -0800821 struct udp_table *udptable, int proto)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700822{
Eric Dumazeta1ab77f2009-11-08 10:18:52 +0000823 struct sock *sk, *stack[256 / sizeof(struct sock *)];
Arnaldo Carvalho de Melo4bedb452007-03-13 14:28:48 -0300824 const struct udphdr *uh = udp_hdr(skb);
David Held5cf3d462014-07-15 23:28:31 -0400825 struct hlist_nulls_node *node;
826 unsigned short hnum = ntohs(uh->dest);
827 struct udp_hslot *hslot = udp_hashslot(udptable, net, hnum);
828 int dif = inet6_iif(skb);
David Held2dc41cf2014-07-15 23:28:32 -0400829 unsigned int count = 0, offset = offsetof(typeof(*sk), sk_nulls_node);
830 unsigned int hash2 = 0, hash2_any = 0, use_hash2 = (hslot->count > 10);
Rick Jones36cbb242014-11-06 10:37:54 -0800831 bool inner_flushed = false;
David Held2dc41cf2014-07-15 23:28:32 -0400832
833 if (use_hash2) {
834 hash2_any = udp6_portaddr_hash(net, &in6addr_any, hnum) &
835 udp_table.mask;
836 hash2 = udp6_portaddr_hash(net, daddr, hnum) & udp_table.mask;
837start_lookup:
838 hslot = &udp_table.hash2[hash2];
839 offset = offsetof(typeof(*sk), __sk_common.skc_portaddr_node);
840 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700841
Eric Dumazet645ca702008-10-29 01:41:45 -0700842 spin_lock(&hslot->lock);
David Held2dc41cf2014-07-15 23:28:32 -0400843 sk_nulls_for_each_entry_offset(sk, node, &hslot->head, offset) {
David Held5cf3d462014-07-15 23:28:31 -0400844 if (__udp_v6_is_mcast_sock(net, sk,
845 uh->dest, daddr,
846 uh->source, saddr,
847 dif, hnum) &&
848 /* If zero checksum and no_check is not on for
849 * the socket then skip it.
850 */
851 (uh->check || udp_sk(sk)->no_check6_rx)) {
852 if (unlikely(count == ARRAY_SIZE(stack))) {
853 flush_stack(stack, count, skb, ~0);
Rick Jones36cbb242014-11-06 10:37:54 -0800854 inner_flushed = true;
David Held5cf3d462014-07-15 23:28:31 -0400855 count = 0;
856 }
Tom Herbert40685792014-05-02 16:29:58 -0700857 stack[count++] = sk;
David Held2dc41cf2014-07-15 23:28:32 -0400858 sock_hold(sk);
Hideo Aoki95766ff2007-12-31 00:29:24 -0800859 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700860 }
Eric Dumazeta1ab77f2009-11-08 10:18:52 +0000861
Eric Dumazet645ca702008-10-29 01:41:45 -0700862 spin_unlock(&hslot->lock);
Eric Dumazeta1ab77f2009-11-08 10:18:52 +0000863
David Held2dc41cf2014-07-15 23:28:32 -0400864 /* Also lookup *:port if we are using hash2 and haven't done so yet. */
865 if (use_hash2 && hash2 != hash2_any) {
866 hash2 = hash2_any;
867 goto start_lookup;
868 }
869
Eric Dumazeta1ab77f2009-11-08 10:18:52 +0000870 if (count) {
871 flush_stack(stack, count, skb, count - 1);
Eric Dumazeta1ab77f2009-11-08 10:18:52 +0000872 } else {
Rick Jones36cbb242014-11-06 10:37:54 -0800873 if (!inner_flushed)
874 UDP_INC_STATS_BH(net, UDP_MIB_IGNOREDMULTI,
875 proto == IPPROTO_UDPLITE);
876 consume_skb(skb);
Eric Dumazeta1ab77f2009-11-08 10:18:52 +0000877 }
Gerrit Renkerba4e58e2006-11-27 11:10:57 -0800878 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700879}
880
Eric Dumazet645ca702008-10-29 01:41:45 -0700881int __udp6_lib_rcv(struct sk_buff *skb, struct udp_table *udptable,
Herbert Xu759e5d02007-03-25 20:10:56 -0700882 int proto)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700883{
Alexey Dobriyan3ffe5332010-02-18 08:25:24 +0000884 struct net *net = dev_net(skb->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700885 struct sock *sk;
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900886 struct udphdr *uh;
Eric Dumazetb71d1d42011-04-22 04:53:02 +0000887 const struct in6_addr *saddr, *daddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700888 u32 ulen = 0;
889
890 if (!pskb_may_pull(skb, sizeof(struct udphdr)))
Bjørn Morkd6bc0142010-05-06 03:44:35 +0000891 goto discard;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700892
Arnaldo Carvalho de Melo0660e032007-04-25 17:54:47 -0700893 saddr = &ipv6_hdr(skb)->saddr;
894 daddr = &ipv6_hdr(skb)->daddr;
Arnaldo Carvalho de Melo4bedb452007-03-13 14:28:48 -0300895 uh = udp_hdr(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700896
897 ulen = ntohs(uh->len);
Gerrit Renkerba4e58e2006-11-27 11:10:57 -0800898 if (ulen > skb->len)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700899 goto short_packet;
900
Herbert Xu759e5d02007-03-25 20:10:56 -0700901 if (proto == IPPROTO_UDP) {
902 /* UDP validates ulen. */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700903
Gerrit Renkerba4e58e2006-11-27 11:10:57 -0800904 /* Check for jumbo payload */
905 if (ulen == 0)
906 ulen = skb->len;
907
908 if (ulen < sizeof(*uh))
909 goto short_packet;
910
911 if (ulen < skb->len) {
912 if (pskb_trim_rcsum(skb, ulen))
913 goto short_packet;
Arnaldo Carvalho de Melo0660e032007-04-25 17:54:47 -0700914 saddr = &ipv6_hdr(skb)->saddr;
915 daddr = &ipv6_hdr(skb)->daddr;
Arnaldo Carvalho de Melo4bedb452007-03-13 14:28:48 -0300916 uh = udp_hdr(skb);
Gerrit Renkerba4e58e2006-11-27 11:10:57 -0800917 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700918 }
919
Herbert Xu759e5d02007-03-25 20:10:56 -0700920 if (udp6_csum_init(skb, uh, proto))
Eric Dumazet6a5dc9e2013-04-29 08:39:56 +0000921 goto csum_error;
Herbert Xu759e5d02007-03-25 20:10:56 -0700922
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900923 /*
924 * Multicast receive code
Linus Torvalds1da177e2005-04-16 15:20:36 -0700925 */
Gerrit Renkerba4e58e2006-11-27 11:10:57 -0800926 if (ipv6_addr_is_multicast(daddr))
Pavel Emelyanove3163492008-06-16 17:12:11 -0700927 return __udp6_lib_mcast_deliver(net, skb,
Rick Jones36cbb242014-11-06 10:37:54 -0800928 saddr, daddr, udptable, proto);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700929
930 /* Unicast */
931
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900932 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700933 * check socket cache ... must talk to Alan about his plans
934 * for sock caches... i'll skip this for now.
935 */
KOVACS Krisztian607c4aa2008-10-07 12:38:32 -0700936 sk = __udp6_lib_lookup_skb(skb, uh->source, uh->dest, udptable);
Ian Morris53b24b82015-03-29 14:00:05 +0100937 if (sk) {
Eliezer Tamira5b50472013-06-10 11:40:00 +0300938 int ret;
939
Tom Herbert1c194482014-05-23 08:47:32 -0700940 if (!uh->check && !udp_sk(sk)->no_check6_rx) {
Tom Herbert79e0f1c2014-05-05 16:43:58 -0700941 sock_put(sk);
Tom Herbert40685792014-05-02 16:29:58 -0700942 udp6_csum_zero_error(skb);
943 goto csum_error;
944 }
945
Tom Herbert224d0192015-01-05 13:56:14 -0800946 if (inet_get_convert_csum(sk) && uh->check && !IS_UDPLITE(sk))
Tom Herbert2abb7cd2014-08-31 15:12:43 -0700947 skb_checksum_try_convert(skb, IPPROTO_UDP, uh->check,
948 ip6_compute_pseudo);
949
Eliezer Tamira5b50472013-06-10 11:40:00 +0300950 ret = udpv6_queue_rcv_skb(sk, skb);
Benjamin LaHaisecb80ef42012-04-27 08:23:59 +0000951 sock_put(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700952
Benjamin LaHaisecb80ef42012-04-27 08:23:59 +0000953 /* a return value > 0 means to resubmit the input, but
954 * it wants the return to be -protocol, or 0
955 */
956 if (ret > 0)
957 return -ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700958
Stephen Hemmingeradd459a2007-03-08 20:42:35 -0800959 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700960 }
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900961
Tom Herbert40685792014-05-02 16:29:58 -0700962 if (!uh->check) {
963 udp6_csum_zero_error(skb);
964 goto csum_error;
965 }
966
Benjamin LaHaisecb80ef42012-04-27 08:23:59 +0000967 if (!xfrm6_policy_check(NULL, XFRM_POLICY_IN, skb))
968 goto discard;
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900969
Benjamin LaHaisecb80ef42012-04-27 08:23:59 +0000970 if (udp_lib_checksum_complete(skb))
Eric Dumazet6a5dc9e2013-04-29 08:39:56 +0000971 goto csum_error;
Benjamin LaHaisecb80ef42012-04-27 08:23:59 +0000972
973 UDP6_INC_STATS_BH(net, UDP_MIB_NOPORTS, proto == IPPROTO_UDPLITE);
974 icmpv6_send(skb, ICMPV6_DEST_UNREACH, ICMPV6_PORT_UNREACH, 0);
975
976 kfree_skb(skb);
Stephen Hemmingeradd459a2007-03-08 20:42:35 -0800977 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700978
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900979short_packet:
Joe Perchesba7a46f2014-11-11 10:59:17 -0800980 net_dbg_ratelimited("UDP%sv6: short packet: From [%pI6c]:%u %d/%d to [%pI6c]:%u\n",
981 proto == IPPROTO_UDPLITE ? "-Lite" : "",
982 saddr, ntohs(uh->source),
983 ulen, skb->len,
984 daddr, ntohs(uh->dest));
Eric Dumazet6a5dc9e2013-04-29 08:39:56 +0000985 goto discard;
986csum_error:
987 UDP6_INC_STATS_BH(net, UDP_MIB_CSUMERRORS, proto == IPPROTO_UDPLITE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700988discard:
Pavel Emelyanovef28d1a2008-07-05 21:19:40 -0700989 UDP6_INC_STATS_BH(net, UDP_MIB_INERRORS, proto == IPPROTO_UDPLITE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700990 kfree_skb(skb);
Stephen Hemmingeradd459a2007-03-08 20:42:35 -0800991 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700992}
Gerrit Renkerba4e58e2006-11-27 11:10:57 -0800993
Herbert Xue5bbef22007-10-15 12:50:28 -0700994static __inline__ int udpv6_rcv(struct sk_buff *skb)
Gerrit Renkerba4e58e2006-11-27 11:10:57 -0800995{
Eric Dumazet645ca702008-10-29 01:41:45 -0700996 return __udp6_lib_rcv(skb, &udp_table, IPPROTO_UDP);
Gerrit Renkerba4e58e2006-11-27 11:10:57 -0800997}
998
Linus Torvalds1da177e2005-04-16 15:20:36 -0700999/*
1000 * Throw away all pending data and cancel the corking. Socket is locked.
1001 */
1002static void udp_v6_flush_pending_frames(struct sock *sk)
1003{
1004 struct udp_sock *up = udp_sk(sk);
1005
Denis V. Lunev36d926b2008-06-04 15:49:07 +04001006 if (up->pending == AF_INET)
1007 udp_flush_pending_frames(sk);
1008 else if (up->pending) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001009 up->len = 0;
1010 up->pending = 0;
1011 ip6_flush_pending_frames(sk);
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09001012 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001013}
1014
Sridhar Samudrala493c6be2009-07-09 08:09:54 +00001015/**
Ian Morris67ba4152014-08-24 21:53:10 +01001016 * udp6_hwcsum_outgoing - handle outgoing HW checksumming
1017 * @sk: socket we are sending on
1018 * @skb: sk_buff containing the filled-in UDP header
1019 * (checksum field must be zeroed out)
Sridhar Samudrala493c6be2009-07-09 08:09:54 +00001020 */
1021static void udp6_hwcsum_outgoing(struct sock *sk, struct sk_buff *skb,
1022 const struct in6_addr *saddr,
1023 const struct in6_addr *daddr, int len)
1024{
1025 unsigned int offset;
1026 struct udphdr *uh = udp_hdr(skb);
Vlad Yasevichd39d9382015-01-31 10:40:16 -05001027 struct sk_buff *frags = skb_shinfo(skb)->frag_list;
Sridhar Samudrala493c6be2009-07-09 08:09:54 +00001028 __wsum csum = 0;
1029
Vlad Yasevichd39d9382015-01-31 10:40:16 -05001030 if (!frags) {
Sridhar Samudrala493c6be2009-07-09 08:09:54 +00001031 /* Only one fragment on the socket. */
1032 skb->csum_start = skb_transport_header(skb) - skb->head;
1033 skb->csum_offset = offsetof(struct udphdr, check);
1034 uh->check = ~csum_ipv6_magic(saddr, daddr, len, IPPROTO_UDP, 0);
1035 } else {
1036 /*
1037 * HW-checksum won't work as there are two or more
1038 * fragments on the socket so that all csums of sk_buffs
1039 * should be together
1040 */
1041 offset = skb_transport_offset(skb);
1042 skb->csum = skb_checksum(skb, offset, skb->len - offset, 0);
1043
1044 skb->ip_summed = CHECKSUM_NONE;
1045
Vlad Yasevichd39d9382015-01-31 10:40:16 -05001046 do {
1047 csum = csum_add(csum, frags->csum);
1048 } while ((frags = frags->next));
Sridhar Samudrala493c6be2009-07-09 08:09:54 +00001049
1050 uh->check = csum_ipv6_magic(saddr, daddr, len, IPPROTO_UDP,
1051 csum);
1052 if (uh->check == 0)
1053 uh->check = CSUM_MANGLED_0;
1054 }
1055}
1056
Linus Torvalds1da177e2005-04-16 15:20:36 -07001057/*
1058 * Sending
1059 */
1060
Vlad Yasevichd39d9382015-01-31 10:40:16 -05001061static int udp_v6_send_skb(struct sk_buff *skb, struct flowi6 *fl6)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001062{
Vlad Yasevichd39d9382015-01-31 10:40:16 -05001063 struct sock *sk = skb->sk;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001064 struct udphdr *uh;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001065 int err = 0;
Wang Chenb2bf1e22007-12-03 22:34:16 +11001066 int is_udplite = IS_UDPLITE(sk);
Al Viro868c86b2006-11-14 21:35:48 -08001067 __wsum csum = 0;
Vlad Yasevichd39d9382015-01-31 10:40:16 -05001068 int offset = skb_transport_offset(skb);
1069 int len = skb->len - offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001070
1071 /*
1072 * Create a UDP header
1073 */
Arnaldo Carvalho de Melo4bedb452007-03-13 14:28:48 -03001074 uh = udp_hdr(skb);
David S. Miller1958b852011-03-12 16:36:19 -05001075 uh->source = fl6->fl6_sport;
1076 uh->dest = fl6->fl6_dport;
Vlad Yasevichd39d9382015-01-31 10:40:16 -05001077 uh->len = htons(len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001078 uh->check = 0;
1079
Wang Chenb2bf1e22007-12-03 22:34:16 +11001080 if (is_udplite)
Vlad Yasevichd39d9382015-01-31 10:40:16 -05001081 csum = udplite_csum(skb);
1082 else if (udp_sk(sk)->no_check6_tx) { /* UDP csum disabled */
Tom Herbert40685792014-05-02 16:29:58 -07001083 skb->ip_summed = CHECKSUM_NONE;
1084 goto send;
1085 } else if (skb->ip_summed == CHECKSUM_PARTIAL) { /* UDP hardware csum */
Vlad Yasevichd39d9382015-01-31 10:40:16 -05001086 udp6_hwcsum_outgoing(sk, skb, &fl6->saddr, &fl6->daddr, len);
Sridhar Samudrala493c6be2009-07-09 08:09:54 +00001087 goto send;
1088 } else
Vlad Yasevichd39d9382015-01-31 10:40:16 -05001089 csum = udp_csum(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001090
Gerrit Renkerba4e58e2006-11-27 11:10:57 -08001091 /* add protocol-dependent pseudo-header */
David S. Miller4c9483b2011-03-12 16:22:43 -05001092 uh->check = csum_ipv6_magic(&fl6->saddr, &fl6->daddr,
Vlad Yasevichd39d9382015-01-31 10:40:16 -05001093 len, fl6->flowi6_proto, csum);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001094 if (uh->check == 0)
Al Virof6ab0282006-11-16 02:36:50 -08001095 uh->check = CSUM_MANGLED_0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001096
Sridhar Samudrala493c6be2009-07-09 08:09:54 +00001097send:
Vlad Yasevichd39d9382015-01-31 10:40:16 -05001098 err = ip6_send_skb(skb);
Eric Dumazet6ce9e7b2009-09-02 18:05:33 -07001099 if (err) {
1100 if (err == -ENOBUFS && !inet6_sk(sk)->recverr) {
1101 UDP6_INC_STATS_USER(sock_net(sk),
1102 UDP_MIB_SNDBUFERRORS, is_udplite);
1103 err = 0;
1104 }
1105 } else
1106 UDP6_INC_STATS_USER(sock_net(sk),
1107 UDP_MIB_OUTDATAGRAMS, is_udplite);
Vlad Yasevichd39d9382015-01-31 10:40:16 -05001108 return err;
1109}
1110
1111static int udp_v6_push_pending_frames(struct sock *sk)
1112{
1113 struct sk_buff *skb;
1114 struct udp_sock *up = udp_sk(sk);
1115 struct flowi6 fl6;
1116 int err = 0;
1117
1118 if (up->pending == AF_INET)
1119 return udp_push_pending_frames(sk);
1120
1121 /* ip6_finish_skb will release the cork, so make a copy of
1122 * fl6 here.
1123 */
1124 fl6 = inet_sk(sk)->cork.fl.u.ip6;
1125
1126 skb = ip6_finish_skb(sk);
1127 if (!skb)
1128 goto out;
1129
1130 err = udp_v6_send_skb(skb, &fl6);
1131
Linus Torvalds1da177e2005-04-16 15:20:36 -07001132out:
1133 up->len = 0;
1134 up->pending = 0;
1135 return err;
1136}
1137
Ying Xue1b784142015-03-02 15:37:48 +08001138int udpv6_sendmsg(struct sock *sk, struct msghdr *msg, size_t len)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001139{
1140 struct ipv6_txoptions opt_space;
1141 struct udp_sock *up = udp_sk(sk);
1142 struct inet_sock *inet = inet_sk(sk);
1143 struct ipv6_pinfo *np = inet6_sk(sk);
Steffen Hurrle342dfc32014-01-17 22:53:15 +01001144 DECLARE_SOCKADDR(struct sockaddr_in6 *, sin6, msg->msg_name);
Arnaud Ebalard20c59de2010-06-01 21:35:01 +00001145 struct in6_addr *daddr, *final_p, final;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001146 struct ipv6_txoptions *opt = NULL;
Eric Dumazet45f6fad2015-11-29 19:37:57 -08001147 struct ipv6_txoptions *opt_to_free = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001148 struct ip6_flowlabel *flowlabel = NULL;
David S. Miller4c9483b2011-03-12 16:22:43 -05001149 struct flowi6 fl6;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001150 struct dst_entry *dst;
1151 int addr_len = msg->msg_namelen;
1152 int ulen = len;
1153 int hlimit = -1;
YOSHIFUJI Hideaki41a1f8e2005-09-08 10:19:03 +09001154 int tclass = -1;
Brian Haley13b52cd2010-04-23 11:26:08 +00001155 int dontfrag = -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001156 int corkreq = up->corkflag || msg->msg_flags&MSG_MORE;
1157 int err;
Mitsuru KANDA987905d2005-09-18 00:30:08 -07001158 int connected = 0;
Wang Chenb2bf1e22007-12-03 22:34:16 +11001159 int is_udplite = IS_UDPLITE(sk);
Gerrit Renkerba4e58e2006-11-27 11:10:57 -08001160 int (*getfrag)(void *, char *, int, int, int, struct sk_buff *);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001161
1162 /* destination address check */
1163 if (sin6) {
1164 if (addr_len < offsetof(struct sockaddr, sa_data))
1165 return -EINVAL;
1166
1167 switch (sin6->sin6_family) {
1168 case AF_INET6:
1169 if (addr_len < SIN6_LEN_RFC2133)
1170 return -EINVAL;
1171 daddr = &sin6->sin6_addr;
1172 break;
1173 case AF_INET:
1174 goto do_udp_sendmsg;
1175 case AF_UNSPEC:
1176 msg->msg_name = sin6 = NULL;
1177 msg->msg_namelen = addr_len = 0;
1178 daddr = NULL;
1179 break;
1180 default:
1181 return -EINVAL;
1182 }
1183 } else if (!up->pending) {
1184 if (sk->sk_state != TCP_ESTABLISHED)
1185 return -EDESTADDRREQ;
Eric Dumazetefe42082013-10-03 15:42:29 -07001186 daddr = &sk->sk_v6_daddr;
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09001187 } else
Linus Torvalds1da177e2005-04-16 15:20:36 -07001188 daddr = NULL;
1189
1190 if (daddr) {
Brian Haleye773e4f2007-08-24 23:16:08 -07001191 if (ipv6_addr_v4mapped(daddr)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001192 struct sockaddr_in sin;
1193 sin.sin_family = AF_INET;
Eric Dumazetc720c7e2009-10-15 06:30:45 +00001194 sin.sin_port = sin6 ? sin6->sin6_port : inet->inet_dport;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001195 sin.sin_addr.s_addr = daddr->s6_addr32[3];
1196 msg->msg_name = &sin;
1197 msg->msg_namelen = sizeof(sin);
1198do_udp_sendmsg:
1199 if (__ipv6_only_sock(sk))
1200 return -ENETUNREACH;
Ying Xue1b784142015-03-02 15:37:48 +08001201 return udp_sendmsg(sk, msg, len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001202 }
1203 }
1204
1205 if (up->pending == AF_INET)
Ying Xue1b784142015-03-02 15:37:48 +08001206 return udp_sendmsg(sk, msg, len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001207
1208 /* Rough check on arithmetic overflow,
YOSHIFUJI Hideakib59e1392007-03-30 14:45:35 -07001209 better check is made in ip6_append_data().
Linus Torvalds1da177e2005-04-16 15:20:36 -07001210 */
1211 if (len > INT_MAX - sizeof(struct udphdr))
1212 return -EMSGSIZE;
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09001213
Vlad Yasevich03485f22015-01-31 10:40:17 -05001214 getfrag = is_udplite ? udplite_getfrag : ip_generic_getfrag;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001215 if (up->pending) {
1216 /*
1217 * There are pending frames.
1218 * The socket lock must be held while it's corked.
1219 */
1220 lock_sock(sk);
1221 if (likely(up->pending)) {
1222 if (unlikely(up->pending != AF_INET6)) {
1223 release_sock(sk);
1224 return -EAFNOSUPPORT;
1225 }
1226 dst = NULL;
1227 goto do_append_data;
1228 }
1229 release_sock(sk);
1230 }
1231 ulen += sizeof(struct udphdr);
1232
David S. Miller4c9483b2011-03-12 16:22:43 -05001233 memset(&fl6, 0, sizeof(fl6));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001234
1235 if (sin6) {
1236 if (sin6->sin6_port == 0)
1237 return -EINVAL;
1238
David S. Miller1958b852011-03-12 16:36:19 -05001239 fl6.fl6_dport = sin6->sin6_port;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001240 daddr = &sin6->sin6_addr;
1241
1242 if (np->sndflow) {
David S. Miller4c9483b2011-03-12 16:22:43 -05001243 fl6.flowlabel = sin6->sin6_flowinfo&IPV6_FLOWINFO_MASK;
1244 if (fl6.flowlabel&IPV6_FLOWLABEL_MASK) {
1245 flowlabel = fl6_sock_lookup(sk, fl6.flowlabel);
Ian Morris63159f22015-03-29 14:00:04 +01001246 if (!flowlabel)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001247 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001248 }
1249 }
1250
1251 /*
1252 * Otherwise it will be difficult to maintain
1253 * sk->sk_dst_cache.
1254 */
1255 if (sk->sk_state == TCP_ESTABLISHED &&
Eric Dumazetefe42082013-10-03 15:42:29 -07001256 ipv6_addr_equal(daddr, &sk->sk_v6_daddr))
1257 daddr = &sk->sk_v6_daddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001258
1259 if (addr_len >= sizeof(struct sockaddr_in6) &&
1260 sin6->sin6_scope_id &&
Hannes Frederic Sowa842df072013-03-08 02:07:19 +00001261 __ipv6_addr_needs_scope_id(__ipv6_addr_type(daddr)))
David S. Miller4c9483b2011-03-12 16:22:43 -05001262 fl6.flowi6_oif = sin6->sin6_scope_id;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001263 } else {
1264 if (sk->sk_state != TCP_ESTABLISHED)
1265 return -EDESTADDRREQ;
1266
David S. Miller1958b852011-03-12 16:36:19 -05001267 fl6.fl6_dport = inet->inet_dport;
Eric Dumazetefe42082013-10-03 15:42:29 -07001268 daddr = &sk->sk_v6_daddr;
David S. Miller4c9483b2011-03-12 16:22:43 -05001269 fl6.flowlabel = np->flow_label;
Mitsuru KANDA987905d2005-09-18 00:30:08 -07001270 connected = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001271 }
1272
David S. Miller4c9483b2011-03-12 16:22:43 -05001273 if (!fl6.flowi6_oif)
1274 fl6.flowi6_oif = sk->sk_bound_dev_if;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001275
David S. Miller4c9483b2011-03-12 16:22:43 -05001276 if (!fl6.flowi6_oif)
1277 fl6.flowi6_oif = np->sticky_pktinfo.ipi6_ifindex;
Yang Hongyang9f690db2008-12-16 02:08:29 -08001278
David S. Miller4c9483b2011-03-12 16:22:43 -05001279 fl6.flowi6_mark = sk->sk_mark;
Brian Haley51953d52009-10-05 08:24:16 +00001280
Linus Torvalds1da177e2005-04-16 15:20:36 -07001281 if (msg->msg_controllen) {
1282 opt = &opt_space;
1283 memset(opt, 0, sizeof(struct ipv6_txoptions));
1284 opt->tot_len = sizeof(*opt);
1285
Tom Parkin73df66f2013-01-31 01:02:24 +00001286 err = ip6_datagram_send_ctl(sock_net(sk), sk, msg, &fl6, opt,
1287 &hlimit, &tclass, &dontfrag);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001288 if (err < 0) {
1289 fl6_sock_release(flowlabel);
1290 return err;
1291 }
David S. Miller4c9483b2011-03-12 16:22:43 -05001292 if ((fl6.flowlabel&IPV6_FLOWLABEL_MASK) && !flowlabel) {
1293 flowlabel = fl6_sock_lookup(sk, fl6.flowlabel);
Ian Morris63159f22015-03-29 14:00:04 +01001294 if (!flowlabel)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001295 return -EINVAL;
1296 }
1297 if (!(opt->opt_nflen|opt->opt_flen))
1298 opt = NULL;
Mitsuru KANDA987905d2005-09-18 00:30:08 -07001299 connected = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001300 }
Eric Dumazet45f6fad2015-11-29 19:37:57 -08001301 if (!opt) {
1302 opt = txopt_get(np);
1303 opt_to_free = opt;
1304 }
YOSHIFUJI Hideakidf9890c2005-11-20 12:23:18 +09001305 if (flowlabel)
1306 opt = fl6_merge_options(&opt_space, flowlabel, opt);
1307 opt = ipv6_fixup_options(&opt_space, opt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001308
David S. Miller4c9483b2011-03-12 16:22:43 -05001309 fl6.flowi6_proto = sk->sk_protocol;
Brian Haley876c7f42008-04-11 00:38:24 -04001310 if (!ipv6_addr_any(daddr))
Alexey Dobriyan4e3fd7a2011-11-21 03:39:03 +00001311 fl6.daddr = *daddr;
Brian Haley876c7f42008-04-11 00:38:24 -04001312 else
David S. Miller4c9483b2011-03-12 16:22:43 -05001313 fl6.daddr.s6_addr[15] = 0x1; /* :: means loopback (BSD'ism) */
1314 if (ipv6_addr_any(&fl6.saddr) && !ipv6_addr_any(&np->saddr))
Alexey Dobriyan4e3fd7a2011-11-21 03:39:03 +00001315 fl6.saddr = np->saddr;
David S. Miller1958b852011-03-12 16:36:19 -05001316 fl6.fl6_sport = inet->inet_sport;
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09001317
David S. Miller4c9483b2011-03-12 16:22:43 -05001318 final_p = fl6_update_dst(&fl6, opt, &final);
Arnaud Ebalard20c59de2010-06-01 21:35:01 +00001319 if (final_p)
Mitsuru KANDA987905d2005-09-18 00:30:08 -07001320 connected = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001321
David S. Miller4c9483b2011-03-12 16:22:43 -05001322 if (!fl6.flowi6_oif && ipv6_addr_is_multicast(&fl6.daddr)) {
1323 fl6.flowi6_oif = np->mcast_oif;
Mitsuru KANDA987905d2005-09-18 00:30:08 -07001324 connected = 0;
Erich E. Hooverc4062df2012-02-08 09:11:08 +00001325 } else if (!fl6.flowi6_oif)
1326 fl6.flowi6_oif = np->ucast_oif;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001327
David S. Miller4c9483b2011-03-12 16:22:43 -05001328 security_sk_classify_flow(sk, flowi6_to_flowi(&fl6));
Venkat Yekkiralabeb8d132006-08-04 23:12:42 -07001329
Steffen Klassert0e0d44a2013-08-28 08:04:14 +02001330 dst = ip6_sk_dst_lookup_flow(sk, &fl6, final_p);
David S. Miller68d0c6d2011-03-01 13:19:07 -08001331 if (IS_ERR(dst)) {
1332 err = PTR_ERR(dst);
1333 dst = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001334 goto out;
David S. Miller14e50e52007-05-24 18:17:54 -07001335 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001336
Lorenzo Colitti5c986312014-04-29 11:57:34 +09001337 if (hlimit < 0)
1338 hlimit = ip6_sk_dst_hoplimit(np, &fl6, dst);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001339
Gerrit Renkere651f032009-08-09 08:12:48 +00001340 if (tclass < 0)
YOSHIFUJI Hideaki41a1f8e2005-09-08 10:19:03 +09001341 tclass = np->tclass;
YOSHIFUJI Hideaki41a1f8e2005-09-08 10:19:03 +09001342
Linus Torvalds1da177e2005-04-16 15:20:36 -07001343 if (msg->msg_flags&MSG_CONFIRM)
1344 goto do_confirm;
1345back_from_confirm:
1346
Vlad Yasevich03485f22015-01-31 10:40:17 -05001347 /* Lockless fast path for the non-corking case */
1348 if (!corkreq) {
1349 struct sk_buff *skb;
1350
1351 skb = ip6_make_skb(sk, getfrag, msg, ulen,
1352 sizeof(struct udphdr), hlimit, tclass, opt,
1353 &fl6, (struct rt6_info *)dst,
1354 msg->msg_flags, dontfrag);
1355 err = PTR_ERR(skb);
1356 if (!IS_ERR_OR_NULL(skb))
1357 err = udp_v6_send_skb(skb, &fl6);
1358 goto release_dst;
1359 }
1360
Linus Torvalds1da177e2005-04-16 15:20:36 -07001361 lock_sock(sk);
1362 if (unlikely(up->pending)) {
1363 /* The socket is already corked while preparing it. */
1364 /* ... which is an evident application bug. --ANK */
1365 release_sock(sk);
1366
Joe Perchesba7a46f2014-11-11 10:59:17 -08001367 net_dbg_ratelimited("udp cork app bug 2\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001368 err = -EINVAL;
1369 goto out;
1370 }
1371
1372 up->pending = AF_INET6;
1373
1374do_append_data:
Jiri Pirkoe36d3ff2013-10-19 12:29:15 +02001375 if (dontfrag < 0)
1376 dontfrag = np->dontfrag;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001377 up->len += ulen;
Al Virof69e6d12014-11-24 13:23:40 -05001378 err = ip6_append_data(sk, getfrag, msg, ulen,
David S. Miller4c9483b2011-03-12 16:22:43 -05001379 sizeof(struct udphdr), hlimit, tclass, opt, &fl6,
Ian Morris67ba4152014-08-24 21:53:10 +01001380 (struct rt6_info *)dst,
Brian Haley13b52cd2010-04-23 11:26:08 +00001381 corkreq ? msg->msg_flags|MSG_MORE : msg->msg_flags, dontfrag);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001382 if (err)
1383 udp_v6_flush_pending_frames(sk);
1384 else if (!corkreq)
Gerrit Renker4c0a6cb2006-11-27 09:29:59 -08001385 err = udp_v6_push_pending_frames(sk);
Herbert Xu1e0c14f2006-10-03 14:35:49 -07001386 else if (unlikely(skb_queue_empty(&sk->sk_write_queue)))
1387 up->pending = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001388
Vlad Yasevich03485f22015-01-31 10:40:17 -05001389 if (err > 0)
1390 err = np->recverr ? net_xmit_errno(err) : 0;
1391 release_sock(sk);
1392
1393release_dst:
David S. Millera5e7c212005-10-03 14:21:58 -07001394 if (dst) {
1395 if (connected) {
1396 ip6_dst_store(sk, dst,
Eric Dumazetefe42082013-10-03 15:42:29 -07001397 ipv6_addr_equal(&fl6.daddr, &sk->sk_v6_daddr) ?
1398 &sk->sk_v6_daddr : NULL,
YOSHIFUJI Hideaki8e1ef0a2006-08-29 17:15:09 -07001399#ifdef CONFIG_IPV6_SUBTREES
David S. Miller4c9483b2011-03-12 16:22:43 -05001400 ipv6_addr_equal(&fl6.saddr, &np->saddr) ?
YOSHIFUJI Hideaki8e1ef0a2006-08-29 17:15:09 -07001401 &np->saddr :
1402#endif
1403 NULL);
David S. Millera5e7c212005-10-03 14:21:58 -07001404 } else {
1405 dst_release(dst);
1406 }
YOSHIFUJI Hideakia3c96082008-06-04 01:30:25 +09001407 dst = NULL;
David S. Millera5e7c212005-10-03 14:21:58 -07001408 }
1409
Linus Torvalds1da177e2005-04-16 15:20:36 -07001410out:
YOSHIFUJI Hideakia3c96082008-06-04 01:30:25 +09001411 dst_release(dst);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001412 fl6_sock_release(flowlabel);
Eric Dumazet45f6fad2015-11-29 19:37:57 -08001413 txopt_put(opt_to_free);
YOSHIFUJI Hideakicd562c92007-09-14 17:15:01 -07001414 if (!err)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001415 return len;
David S. Millera18135e2006-08-15 00:00:09 -07001416 /*
1417 * ENOBUFS = no kernel mem, SOCK_NOSPACE = no sndbuf space. Reporting
1418 * ENOBUFS might not be good (it's not tunable per se), but otherwise
1419 * we don't have a good statistic (IpOutDiscards but it can be too many
1420 * things). We could add another new stat but at least for now that
1421 * seems like overkill.
1422 */
1423 if (err == -ENOBUFS || test_bit(SOCK_NOSPACE, &sk->sk_socket->flags)) {
Pavel Emelyanov235b9f72008-07-05 21:19:20 -07001424 UDP6_INC_STATS_USER(sock_net(sk),
1425 UDP_MIB_SNDBUFERRORS, is_udplite);
David S. Millera18135e2006-08-15 00:00:09 -07001426 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001427 return err;
1428
1429do_confirm:
1430 dst_confirm(dst);
1431 if (!(msg->msg_flags&MSG_PROBE) || len)
1432 goto back_from_confirm;
1433 err = 0;
1434 goto out;
1435}
1436
Brian Haley7d06b2e2008-06-14 17:04:49 -07001437void udpv6_destroy_sock(struct sock *sk)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001438{
Tom Parkin44046a52013-03-19 06:11:12 +00001439 struct udp_sock *up = udp_sk(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001440 lock_sock(sk);
1441 udp_v6_flush_pending_frames(sk);
1442 release_sock(sk);
1443
Tom Parkin44046a52013-03-19 06:11:12 +00001444 if (static_key_false(&udpv6_encap_needed) && up->encap_type) {
1445 void (*encap_destroy)(struct sock *sk);
1446 encap_destroy = ACCESS_ONCE(up->encap_destroy);
1447 if (encap_destroy)
1448 encap_destroy(sk);
1449 }
1450
Linus Torvalds1da177e2005-04-16 15:20:36 -07001451 inet6_destroy_sock(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001452}
1453
1454/*
1455 * Socket option code for UDP
1456 */
Gerrit Renkerba4e58e2006-11-27 11:10:57 -08001457int udpv6_setsockopt(struct sock *sk, int level, int optname,
David S. Millerb7058842009-09-30 16:12:20 -07001458 char __user *optval, unsigned int optlen)
Dmitry Mishin3fdadf72006-03-20 22:45:21 -08001459{
David S. Millerdb8dac22008-03-06 16:22:02 -08001460 if (level == SOL_UDP || level == SOL_UDPLITE)
Gerrit Renker4c0a6cb2006-11-27 09:29:59 -08001461 return udp_lib_setsockopt(sk, level, optname, optval, optlen,
1462 udp_v6_push_pending_frames);
Gerrit Renkerba4e58e2006-11-27 11:10:57 -08001463 return ipv6_setsockopt(sk, level, optname, optval, optlen);
Dmitry Mishin3fdadf72006-03-20 22:45:21 -08001464}
1465
1466#ifdef CONFIG_COMPAT
Gerrit Renkerba4e58e2006-11-27 11:10:57 -08001467int compat_udpv6_setsockopt(struct sock *sk, int level, int optname,
David S. Millerb7058842009-09-30 16:12:20 -07001468 char __user *optval, unsigned int optlen)
Dmitry Mishin3fdadf72006-03-20 22:45:21 -08001469{
David S. Millerdb8dac22008-03-06 16:22:02 -08001470 if (level == SOL_UDP || level == SOL_UDPLITE)
Gerrit Renker4c0a6cb2006-11-27 09:29:59 -08001471 return udp_lib_setsockopt(sk, level, optname, optval, optlen,
1472 udp_v6_push_pending_frames);
Gerrit Renkerba4e58e2006-11-27 11:10:57 -08001473 return compat_ipv6_setsockopt(sk, level, optname, optval, optlen);
Dmitry Mishin3fdadf72006-03-20 22:45:21 -08001474}
1475#endif
1476
Gerrit Renkerba4e58e2006-11-27 11:10:57 -08001477int udpv6_getsockopt(struct sock *sk, int level, int optname,
1478 char __user *optval, int __user *optlen)
Dmitry Mishin3fdadf72006-03-20 22:45:21 -08001479{
David S. Millerdb8dac22008-03-06 16:22:02 -08001480 if (level == SOL_UDP || level == SOL_UDPLITE)
Gerrit Renker4c0a6cb2006-11-27 09:29:59 -08001481 return udp_lib_getsockopt(sk, level, optname, optval, optlen);
Gerrit Renkerba4e58e2006-11-27 11:10:57 -08001482 return ipv6_getsockopt(sk, level, optname, optval, optlen);
Dmitry Mishin3fdadf72006-03-20 22:45:21 -08001483}
1484
1485#ifdef CONFIG_COMPAT
Gerrit Renkerba4e58e2006-11-27 11:10:57 -08001486int compat_udpv6_getsockopt(struct sock *sk, int level, int optname,
1487 char __user *optval, int __user *optlen)
Dmitry Mishin3fdadf72006-03-20 22:45:21 -08001488{
David S. Millerdb8dac22008-03-06 16:22:02 -08001489 if (level == SOL_UDP || level == SOL_UDPLITE)
Gerrit Renker4c0a6cb2006-11-27 09:29:59 -08001490 return udp_lib_getsockopt(sk, level, optname, optval, optlen);
Gerrit Renkerba4e58e2006-11-27 11:10:57 -08001491 return compat_ipv6_getsockopt(sk, level, optname, optval, optlen);
Dmitry Mishin3fdadf72006-03-20 22:45:21 -08001492}
1493#endif
1494
Alexey Dobriyan41135cc2009-09-14 12:22:28 +00001495static const struct inet6_protocol udpv6_protocol = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001496 .handler = udpv6_rcv,
1497 .err_handler = udpv6_err,
1498 .flags = INET6_PROTO_NOPOLICY|INET6_PROTO_FINAL,
1499};
1500
1501/* ------------------------------------------------------------------------ */
1502#ifdef CONFIG_PROC_FS
Gerrit Renkerba4e58e2006-11-27 11:10:57 -08001503int udp6_seq_show(struct seq_file *seq, void *v)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001504{
Lorenzo Colitti17ef66af2013-05-31 15:05:48 +00001505 if (v == SEQ_START_TOKEN) {
1506 seq_puts(seq, IPV6_SEQ_DGRAM_HEADER);
1507 } else {
1508 int bucket = ((struct udp_iter_state *)seq->private)->bucket;
1509 struct inet_sock *inet = inet_sk(v);
1510 __u16 srcp = ntohs(inet->inet_sport);
1511 __u16 destp = ntohs(inet->inet_dport);
1512 ip6_dgram_sock_seq_show(seq, v, srcp, destp, bucket);
1513 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001514 return 0;
1515}
1516
Arjan van de Ven73cb88e2011-10-30 06:46:30 +00001517static const struct file_operations udp6_afinfo_seq_fops = {
1518 .owner = THIS_MODULE,
1519 .open = udp_seq_open,
1520 .read = seq_read,
1521 .llseek = seq_lseek,
1522 .release = seq_release_net
1523};
1524
Linus Torvalds1da177e2005-04-16 15:20:36 -07001525static struct udp_seq_afinfo udp6_seq_afinfo = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001526 .name = "udp6",
1527 .family = AF_INET6,
Eric Dumazet645ca702008-10-29 01:41:45 -07001528 .udp_table = &udp_table,
Arjan van de Ven73cb88e2011-10-30 06:46:30 +00001529 .seq_fops = &udp6_afinfo_seq_fops,
Denis V. Lunevdda61922008-03-28 18:24:26 -07001530 .seq_ops = {
1531 .show = udp6_seq_show,
1532 },
Linus Torvalds1da177e2005-04-16 15:20:36 -07001533};
1534
Alexey Dobriyan2c8c1e72010-01-17 03:35:32 +00001535int __net_init udp6_proc_init(struct net *net)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001536{
Daniel Lezcano0c96d8c2008-03-21 04:14:17 -07001537 return udp_proc_register(net, &udp6_seq_afinfo);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001538}
1539
Ian Morrisec120da2015-08-14 22:43:38 +01001540void udp6_proc_exit(struct net *net)
1541{
Daniel Lezcano0c96d8c2008-03-21 04:14:17 -07001542 udp_proc_unregister(net, &udp6_seq_afinfo);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001543}
1544#endif /* CONFIG_PROC_FS */
1545
Eric Dumazetf77d6022013-05-09 10:28:16 +00001546void udp_v6_clear_sk(struct sock *sk, int size)
1547{
1548 struct inet_sock *inet = inet_sk(sk);
1549
1550 /* we do not want to clear pinet6 field, because of RCU lookups */
1551 sk_prot_clear_portaddr_nulls(sk, offsetof(struct inet_sock, pinet6));
1552
1553 size -= offsetof(struct inet_sock, pinet6) + sizeof(inet->pinet6);
1554 memset(&inet->pinet6 + 1, 0, size);
1555}
1556
Linus Torvalds1da177e2005-04-16 15:20:36 -07001557/* ------------------------------------------------------------------------ */
1558
1559struct proto udpv6_prot = {
Arnaldo Carvalho de Melo543d9cf2006-03-20 22:48:35 -08001560 .name = "UDPv6",
1561 .owner = THIS_MODULE,
Gerrit Renkerba4e58e2006-11-27 11:10:57 -08001562 .close = udp_lib_close,
Arnaldo Carvalho de Melo543d9cf2006-03-20 22:48:35 -08001563 .connect = ip6_datagram_connect,
1564 .disconnect = udp_disconnect,
1565 .ioctl = udp_ioctl,
1566 .destroy = udpv6_destroy_sock,
1567 .setsockopt = udpv6_setsockopt,
1568 .getsockopt = udpv6_getsockopt,
1569 .sendmsg = udpv6_sendmsg,
1570 .recvmsg = udpv6_recvmsg,
Benjamin LaHaisef7ad74f2012-04-27 08:23:21 +00001571 .backlog_rcv = __udpv6_queue_rcv_skb,
Gerrit Renkerba4e58e2006-11-27 11:10:57 -08001572 .hash = udp_lib_hash,
1573 .unhash = udp_lib_unhash,
Eric Dumazet719f8352010-09-08 05:08:44 +00001574 .rehash = udp_v6_rehash,
Arnaldo Carvalho de Melo543d9cf2006-03-20 22:48:35 -08001575 .get_port = udp_v6_get_port,
Hideo Aoki95766ff2007-12-31 00:29:24 -08001576 .memory_allocated = &udp_memory_allocated,
1577 .sysctl_mem = sysctl_udp_mem,
1578 .sysctl_wmem = &sysctl_udp_wmem_min,
1579 .sysctl_rmem = &sysctl_udp_rmem_min,
Arnaldo Carvalho de Melo543d9cf2006-03-20 22:48:35 -08001580 .obj_size = sizeof(struct udp6_sock),
Eric Dumazet271b72c2008-10-29 02:11:14 -07001581 .slab_flags = SLAB_DESTROY_BY_RCU,
Eric Dumazet645ca702008-10-29 01:41:45 -07001582 .h.udp_table = &udp_table,
Dmitry Mishin3fdadf72006-03-20 22:45:21 -08001583#ifdef CONFIG_COMPAT
Arnaldo Carvalho de Melo543d9cf2006-03-20 22:48:35 -08001584 .compat_setsockopt = compat_udpv6_setsockopt,
1585 .compat_getsockopt = compat_udpv6_getsockopt,
Dmitry Mishin3fdadf72006-03-20 22:45:21 -08001586#endif
Eric Dumazetf77d6022013-05-09 10:28:16 +00001587 .clear_sk = udp_v6_clear_sk,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001588};
1589
Linus Torvalds1da177e2005-04-16 15:20:36 -07001590static struct inet_protosw udpv6_protosw = {
1591 .type = SOCK_DGRAM,
1592 .protocol = IPPROTO_UDP,
1593 .prot = &udpv6_prot,
1594 .ops = &inet6_dgram_ops,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001595 .flags = INET_PROTOSW_PERMANENT,
1596};
1597
Daniel Lezcano7f4e4862007-12-11 02:25:35 -08001598int __init udpv6_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001599{
Daniel Lezcano7f4e4862007-12-11 02:25:35 -08001600 int ret;
1601
Vlad Yasevich33362882012-11-15 08:49:15 +00001602 ret = inet6_add_protocol(&udpv6_protocol, IPPROTO_UDP);
1603 if (ret)
Vlad Yasevichc6b641a2012-11-15 08:49:22 +00001604 goto out;
Vlad Yasevich33362882012-11-15 08:49:15 +00001605
Daniel Lezcano7f4e4862007-12-11 02:25:35 -08001606 ret = inet6_register_protosw(&udpv6_protosw);
1607 if (ret)
1608 goto out_udpv6_protocol;
1609out:
1610 return ret;
1611
1612out_udpv6_protocol:
1613 inet6_del_protocol(&udpv6_protocol, IPPROTO_UDP);
1614 goto out;
1615}
1616
Daniel Lezcano09f77092007-12-13 05:34:58 -08001617void udpv6_exit(void)
Daniel Lezcano7f4e4862007-12-11 02:25:35 -08001618{
1619 inet6_unregister_protosw(&udpv6_protosw);
1620 inet6_del_protocol(&udpv6_protocol, IPPROTO_UDP);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001621}