blob: cdeb6b2187b10b4b97eb6fbbb9a39793665644e2 [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>
subashab@codeaurora.orga4c9e522017-04-18 11:39:41 -060049#include <net/inet_hashtables.h>
Tom Herbert72289b92013-01-22 09:50:44 +000050#include <net/inet6_hashtables.h>
Eliezer Tamir076bb0c2013-07-10 17:13:17 +030051#include <net/busy_poll.h>
Craig Galleke32ea7e2016-01-04 17:41:46 -050052#include <net/sock_reuseport.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070053
54#include <linux/proc_fs.h>
55#include <linux/seq_file.h>
Eric Dumazet22911fc2012-06-27 00:23:44 +000056#include <trace/events/skb.h>
Gerrit Renkerba4e58e2006-11-27 11:10:57 -080057#include "udp_impl.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070058
Eric Dumazet6eada012015-03-18 14:05:33 -070059static u32 udp6_ehashfn(const struct net *net,
60 const struct in6_addr *laddr,
61 const u16 lport,
62 const struct in6_addr *faddr,
63 const __be16 fport)
Hannes Frederic Sowab50026b2013-10-19 21:48:52 +020064{
Hannes Frederic Sowa1bbdcee2013-10-19 21:48:57 +020065 static u32 udp6_ehash_secret __read_mostly;
66 static u32 udp_ipv6_hash_secret __read_mostly;
67
68 u32 lhash, fhash;
69
70 net_get_random_once(&udp6_ehash_secret,
71 sizeof(udp6_ehash_secret));
72 net_get_random_once(&udp_ipv6_hash_secret,
73 sizeof(udp_ipv6_hash_secret));
74
75 lhash = (__force u32)laddr->s6_addr32[3];
76 fhash = __ipv6_addr_jhash(faddr, udp_ipv6_hash_secret);
77
Hannes Frederic Sowab50026b2013-10-19 21:48:52 +020078 return __inet6_ehashfn(lhash, lport, fhash, fport,
Hannes Frederic Sowa1bbdcee2013-10-19 21:48:57 +020079 udp_ipv6_hash_secret + net_hash_mix(net));
Hannes Frederic Sowab50026b2013-10-19 21:48:52 +020080}
81
Eric Dumazet6eada012015-03-18 14:05:33 -070082static u32 udp6_portaddr_hash(const struct net *net,
83 const struct in6_addr *addr6,
84 unsigned int port)
Eric Dumazetd4cada42009-11-08 10:17:30 +000085{
86 unsigned int hash, mix = net_hash_mix(net);
87
88 if (ipv6_addr_any(addr6))
89 hash = jhash_1word(0, mix);
Brian Haley856540e2009-11-09 12:05:53 +000090 else if (ipv6_addr_v4mapped(addr6))
Eric Dumazet0eae88f2010-04-20 19:06:52 -070091 hash = jhash_1word((__force u32)addr6->s6_addr32[3], mix);
Eric Dumazetd4cada42009-11-08 10:17:30 +000092 else
Eric Dumazet0eae88f2010-04-20 19:06:52 -070093 hash = jhash2((__force u32 *)addr6->s6_addr32, 4, mix);
Eric Dumazetd4cada42009-11-08 10:17:30 +000094
95 return hash ^ port;
96}
97
Pavel Emelyanov6ba5a3c2008-03-22 16:51:21 -070098int udp_v6_get_port(struct sock *sk, unsigned short snum)
Linus Torvalds1da177e2005-04-16 15:20:36 -070099{
Eric Dumazet30fff922009-11-09 05:26:33 +0000100 unsigned int hash2_nulladdr =
101 udp6_portaddr_hash(sock_net(sk), &in6addr_any, snum);
Jeffrin Jose9a52e972012-05-19 01:45:21 +0000102 unsigned int hash2_partial =
Eric Dumazetefe42082013-10-03 15:42:29 -0700103 udp6_portaddr_hash(sock_net(sk), &sk->sk_v6_rcv_saddr, 0);
Eric Dumazet30fff922009-11-09 05:26:33 +0000104
Eric Dumazetd4cada42009-11-08 10:17:30 +0000105 /* precompute partial secondary hash */
Eric Dumazet30fff922009-11-09 05:26:33 +0000106 udp_sk(sk)->udp_portaddr_hash = hash2_partial;
107 return udp_lib_get_port(sk, snum, ipv6_rcv_saddr_equal, hash2_nulladdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700108}
109
Eric Dumazet719f8352010-09-08 05:08:44 +0000110static void udp_v6_rehash(struct sock *sk)
111{
112 u16 new_hash = udp6_portaddr_hash(sock_net(sk),
Eric Dumazetefe42082013-10-03 15:42:29 -0700113 &sk->sk_v6_rcv_saddr,
Eric Dumazet719f8352010-09-08 05:08:44 +0000114 inet_sk(sk)->inet_num);
115
116 udp_lib_rehash(sk, new_hash);
117}
118
Su, Xuemind1e37282016-06-13 11:02:50 +0800119static int compute_score(struct sock *sk, struct net *net,
120 const struct in6_addr *saddr, __be16 sport,
121 const struct in6_addr *daddr, unsigned short hnum,
122 int dif)
Eric Dumazet645ca702008-10-29 01:41:45 -0700123{
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
Su, Xuemind1e37282016-06-13 11:02:50 +0800165/* called with rcu_read_lock() */
Eric Dumazetfddc17d2009-11-08 10:18:30 +0000166static struct sock *udp6_lib_lookup2(struct net *net,
167 const struct in6_addr *saddr, __be16 sport,
168 const struct in6_addr *daddr, unsigned int hnum, int dif,
Su, Xuemind1e37282016-06-13 11:02:50 +0800169 struct udp_hslot *hslot2,
Craig Gallek11341582016-01-05 15:08:07 -0500170 struct sk_buff *skb)
Eric Dumazetfddc17d2009-11-08 10:18:30 +0000171{
172 struct sock *sk, *result;
Tom Herbert72289b92013-01-22 09:50:44 +0000173 int score, badness, matches = 0, reuseport = 0;
174 u32 hash = 0;
Eric Dumazetfddc17d2009-11-08 10:18:30 +0000175
Eric Dumazetfddc17d2009-11-08 10:18:30 +0000176 result = NULL;
177 badness = -1;
Eric Dumazetca065d02016-04-01 08:52:13 -0700178 udp_portaddr_for_each_entry_rcu(sk, &hslot2->head) {
Su, Xuemind1e37282016-06-13 11:02:50 +0800179 score = compute_score(sk, net, saddr, sport,
Eric Dumazetfddc17d2009-11-08 10:18:30 +0000180 daddr, hnum, dif);
181 if (score > badness) {
Tom Herbert72289b92013-01-22 09:50:44 +0000182 reuseport = sk->sk_reuseport;
183 if (reuseport) {
Hannes Frederic Sowab50026b2013-10-19 21:48:52 +0200184 hash = udp6_ehashfn(net, daddr, hnum,
185 saddr, sport);
Eric Dumazeted0dfff2016-01-19 08:36:43 -0800186
Eric Dumazetca065d02016-04-01 08:52:13 -0700187 result = reuseport_select_sock(sk, hash, skb,
Eric Dumazeted0dfff2016-01-19 08:36:43 -0800188 sizeof(struct udphdr));
Eric Dumazetca065d02016-04-01 08:52:13 -0700189 if (result)
190 return result;
Tom Herbert72289b92013-01-22 09:50:44 +0000191 matches = 1;
Eric Dumazet70da2682015-10-08 19:33:21 -0700192 }
Eric Dumazetca065d02016-04-01 08:52:13 -0700193 result = sk;
194 badness = score;
Tom Herbert72289b92013-01-22 09:50:44 +0000195 } else if (score == badness && reuseport) {
196 matches++;
Daniel Borkmann8fc54f62014-08-23 20:58:54 +0200197 if (reciprocal_scale(hash, matches) == 0)
Tom Herbert72289b92013-01-22 09:50:44 +0000198 result = sk;
199 hash = next_pseudo_random32(hash);
Eric Dumazetfddc17d2009-11-08 10:18:30 +0000200 }
201 }
Eric Dumazetfddc17d2009-11-08 10:18:30 +0000202 return result;
203}
204
Eric Dumazetca065d02016-04-01 08:52:13 -0700205/* rcu_read_lock() must be held */
Pavel Emelyanovfce82332011-12-09 06:23:34 +0000206struct sock *__udp6_lib_lookup(struct net *net,
Balazs Scheidler88440ae2010-10-21 16:04:33 +0200207 const struct in6_addr *saddr, __be16 sport,
208 const struct in6_addr *daddr, __be16 dport,
Craig Gallek538950a2016-01-04 17:41:47 -0500209 int dif, struct udp_table *udptable,
210 struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700211{
Eric Dumazet271b72c2008-10-29 02:11:14 -0700212 struct sock *sk, *result;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700213 unsigned short hnum = ntohs(dport);
Eric Dumazetfddc17d2009-11-08 10:18:30 +0000214 unsigned int hash2, slot2, slot = udp_hashfn(net, hnum, udptable->mask);
215 struct udp_hslot *hslot2, *hslot = &udptable->hash[slot];
Tom Herbert72289b92013-01-22 09:50:44 +0000216 int score, badness, matches = 0, reuseport = 0;
217 u32 hash = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700218
Eric Dumazetfddc17d2009-11-08 10:18:30 +0000219 if (hslot->count > 10) {
220 hash2 = udp6_portaddr_hash(net, daddr, hnum);
221 slot2 = hash2 & udptable->mask;
222 hslot2 = &udptable->hash2[slot2];
223 if (hslot->count < hslot2->count)
224 goto begin;
225
226 result = udp6_lib_lookup2(net, saddr, sport,
227 daddr, hnum, dif,
Su, Xuemind1e37282016-06-13 11:02:50 +0800228 hslot2, skb);
Eric Dumazetfddc17d2009-11-08 10:18:30 +0000229 if (!result) {
Su, Xuemind1e37282016-06-13 11:02:50 +0800230 unsigned int old_slot2 = slot2;
Eric Dumazetfddc17d2009-11-08 10:18:30 +0000231 hash2 = udp6_portaddr_hash(net, &in6addr_any, hnum);
232 slot2 = hash2 & udptable->mask;
Su, Xuemind1e37282016-06-13 11:02:50 +0800233 /* avoid searching the same slot again. */
234 if (unlikely(slot2 == old_slot2))
235 return result;
236
Eric Dumazetfddc17d2009-11-08 10:18:30 +0000237 hslot2 = &udptable->hash2[slot2];
238 if (hslot->count < hslot2->count)
239 goto begin;
240
Jorge Boncompte [DTI2]1223c672010-04-08 04:56:48 +0000241 result = udp6_lib_lookup2(net, saddr, sport,
Su, Xuemind1e37282016-06-13 11:02:50 +0800242 daddr, hnum, dif,
243 hslot2, skb);
Eric Dumazetfddc17d2009-11-08 10:18:30 +0000244 }
Eric Dumazetfddc17d2009-11-08 10:18:30 +0000245 return result;
246 }
Eric Dumazet271b72c2008-10-29 02:11:14 -0700247begin:
248 result = NULL;
249 badness = -1;
Eric Dumazetca065d02016-04-01 08:52:13 -0700250 sk_for_each_rcu(sk, &hslot->head) {
Su, Xuemind1e37282016-06-13 11:02:50 +0800251 score = compute_score(sk, net, saddr, sport, daddr, hnum, dif);
Eric Dumazet645ca702008-10-29 01:41:45 -0700252 if (score > badness) {
Tom Herbert72289b92013-01-22 09:50:44 +0000253 reuseport = sk->sk_reuseport;
254 if (reuseport) {
Hannes Frederic Sowab50026b2013-10-19 21:48:52 +0200255 hash = udp6_ehashfn(net, daddr, hnum,
256 saddr, sport);
Eric Dumazetca065d02016-04-01 08:52:13 -0700257 result = reuseport_select_sock(sk, hash, skb,
Craig Gallek538950a2016-01-04 17:41:47 -0500258 sizeof(struct udphdr));
Eric Dumazetca065d02016-04-01 08:52:13 -0700259 if (result)
260 return result;
Tom Herbert72289b92013-01-22 09:50:44 +0000261 matches = 1;
262 }
Eric Dumazetca065d02016-04-01 08:52:13 -0700263 result = sk;
264 badness = score;
Tom Herbert72289b92013-01-22 09:50:44 +0000265 } else if (score == badness && reuseport) {
266 matches++;
Daniel Borkmann8fc54f62014-08-23 20:58:54 +0200267 if (reciprocal_scale(hash, matches) == 0)
Tom Herbert72289b92013-01-22 09:50:44 +0000268 result = sk;
269 hash = next_pseudo_random32(hash);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700270 }
271 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700272 return result;
273}
Pavel Emelyanovfce82332011-12-09 06:23:34 +0000274EXPORT_SYMBOL_GPL(__udp6_lib_lookup);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700275
KOVACS Krisztian607c4aa2008-10-07 12:38:32 -0700276static struct sock *__udp6_lib_lookup_skb(struct sk_buff *skb,
277 __be16 sport, __be16 dport,
Eric Dumazet645ca702008-10-29 01:41:45 -0700278 struct udp_table *udptable)
KOVACS Krisztian607c4aa2008-10-07 12:38:32 -0700279{
Eric Dumazetb71d1d42011-04-22 04:53:02 +0000280 const struct ipv6hdr *iph = ipv6_hdr(skb);
Alexander Duycked7cbbc2016-05-12 16:23:44 -0700281 struct sock *sk;
KOVACS Krisztian607c4aa2008-10-07 12:38:32 -0700282
Ian Morrise5d08d72014-11-23 21:28:43 +0000283 sk = skb_steal_sock(skb);
284 if (unlikely(sk))
KOVACS Krisztian23542612008-10-07 12:41:01 -0700285 return sk;
Alexander Duycked7cbbc2016-05-12 16:23:44 -0700286 return __udp6_lib_lookup(dev_net(skb->dev), &iph->saddr, sport,
Eric Dumazetadf30902009-06-02 05:19:30 +0000287 &iph->daddr, dport, inet6_iif(skb),
Craig Gallek538950a2016-01-04 17:41:47 -0500288 udptable, skb);
KOVACS Krisztian607c4aa2008-10-07 12:38:32 -0700289}
290
Tom Herbert63058302016-04-05 08:22:50 -0700291struct sock *udp6_lib_lookup_skb(struct sk_buff *skb,
292 __be16 sport, __be16 dport)
293{
294 const struct ipv6hdr *iph = ipv6_hdr(skb);
Tom Herbert63058302016-04-05 08:22:50 -0700295
Alexander Duycked7cbbc2016-05-12 16:23:44 -0700296 return __udp6_lib_lookup(dev_net(skb->dev), &iph->saddr, sport,
Tom Herbert63058302016-04-05 08:22:50 -0700297 &iph->daddr, dport, inet6_iif(skb),
298 &udp_table, skb);
299}
300EXPORT_SYMBOL_GPL(udp6_lib_lookup_skb);
301
Eric Dumazetca065d02016-04-01 08:52:13 -0700302/* Must be called under rcu_read_lock().
303 * Does increment socket refcount.
304 */
305#if IS_ENABLED(CONFIG_NETFILTER_XT_MATCH_SOCKET) || \
306 IS_ENABLED(CONFIG_NETFILTER_XT_TARGET_TPROXY)
Balazs Scheidleraa976fc2010-10-21 16:05:41 +0200307struct sock *udp6_lib_lookup(struct net *net, const struct in6_addr *saddr, __be16 sport,
308 const struct in6_addr *daddr, __be16 dport, int dif)
309{
Eric Dumazetca065d02016-04-01 08:52:13 -0700310 struct sock *sk;
311
312 sk = __udp6_lib_lookup(net, saddr, sport, daddr, dport,
313 dif, &udp_table, NULL);
314 if (sk && !atomic_inc_not_zero(&sk->sk_refcnt))
315 sk = NULL;
316 return sk;
Balazs Scheidleraa976fc2010-10-21 16:05:41 +0200317}
318EXPORT_SYMBOL_GPL(udp6_lib_lookup);
Eric Dumazetca065d02016-04-01 08:52:13 -0700319#endif
Balazs Scheidleraa976fc2010-10-21 16:05:41 +0200320
Linus Torvalds1da177e2005-04-16 15:20:36 -0700321/*
Ian Morris67ba4152014-08-24 21:53:10 +0100322 * This should be easy, if there is something there we
323 * return it, otherwise we block.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700324 */
325
Ying Xue1b784142015-03-02 15:37:48 +0800326int udpv6_recvmsg(struct sock *sk, struct msghdr *msg, size_t len,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700327 int noblock, int flags, int *addr_len)
328{
329 struct ipv6_pinfo *np = inet6_sk(sk);
330 struct inet_sock *inet = inet_sk(sk);
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900331 struct sk_buff *skb;
David S. Miller59c2cda2011-12-01 14:12:55 -0500332 unsigned int ulen, copied;
samanthakumar627d2d62016-04-05 12:41:16 -0400333 int peeked, peeking, off;
Herbert Xu759e5d02007-03-25 20:10:56 -0700334 int err;
335 int is_udplite = IS_UDPLITE(sk);
Eric Dumazet197c9492015-12-30 08:51:12 -0500336 bool checksum_valid = false;
Wei Yongjunf26ba172008-11-02 16:11:01 +0000337 int is_udp4;
Eric Dumazet8a74ad62010-05-26 19:20:18 +0000338 bool slow;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700339
Linus Torvalds1da177e2005-04-16 15:20:36 -0700340 if (flags & MSG_ERRQUEUE)
Hannes Frederic Sowa85fbaa72013-11-23 00:46:12 +0100341 return ipv6_recv_error(sk, msg, len, addr_len);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700342
Brian Haley4b340ae2010-04-23 11:26:09 +0000343 if (np->rxpmtu && np->rxopt.bits.rxpmtu)
Hannes Frederic Sowa85fbaa72013-11-23 00:46:12 +0100344 return ipv6_recv_rxpmtu(sk, msg, len, addr_len);
Brian Haley4b340ae2010-04-23 11:26:09 +0000345
Linus Torvalds1da177e2005-04-16 15:20:36 -0700346try_again:
samanthakumar627d2d62016-04-05 12:41:16 -0400347 peeking = off = sk_peek_offset(sk, flags);
Herbert Xua59322b2007-12-05 01:53:40 -0800348 skb = __skb_recv_datagram(sk, flags | (noblock ? MSG_DONTWAIT : 0),
Pavel Emelyanov3f518bf2012-02-21 07:30:58 +0000349 &peeked, &off, &err);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700350 if (!skb)
samanthakumar627d2d62016-04-05 12:41:16 -0400351 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700352
samanthakumare6afc8a2016-04-05 12:41:15 -0400353 ulen = skb->len;
David S. Miller59c2cda2011-12-01 14:12:55 -0500354 copied = len;
samanthakumar627d2d62016-04-05 12:41:16 -0400355 if (copied > ulen - off)
356 copied = ulen - off;
David S. Miller59c2cda2011-12-01 14:12:55 -0500357 else if (copied < ulen)
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900358 msg->msg_flags |= MSG_TRUNC;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700359
Wei Yongjunf26ba172008-11-02 16:11:01 +0000360 is_udp4 = (skb->protocol == htons(ETH_P_IP));
361
Gerrit Renkerba4e58e2006-11-27 11:10:57 -0800362 /*
Herbert Xu759e5d02007-03-25 20:10:56 -0700363 * If checksum is needed at all, try to do it while copying the
364 * data. If the data is truncated, or if we only want a partial
365 * coverage checksum (UDP-Lite), do it before the copy.
Gerrit Renkerba4e58e2006-11-27 11:10:57 -0800366 */
Gerrit Renkerba4e58e2006-11-27 11:10:57 -0800367
samanthakumar627d2d62016-04-05 12:41:16 -0400368 if (copied < ulen || UDP_SKB_CB(skb)->partial_cov || peeking) {
Eric Dumazet197c9492015-12-30 08:51:12 -0500369 checksum_valid = !udp_lib_checksum_complete(skb);
370 if (!checksum_valid)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700371 goto csum_copy_err;
Gerrit Renkerba4e58e2006-11-27 11:10:57 -0800372 }
373
Eric Dumazet197c9492015-12-30 08:51:12 -0500374 if (checksum_valid || skb_csum_unnecessary(skb))
samanthakumar627d2d62016-04-05 12:41:16 -0400375 err = skb_copy_datagram_msg(skb, off, msg, copied);
Gerrit Renkerba4e58e2006-11-27 11:10:57 -0800376 else {
samanthakumar627d2d62016-04-05 12:41:16 -0400377 err = skb_copy_and_csum_datagram_msg(skb, off, msg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700378 if (err == -EINVAL)
379 goto csum_copy_err;
380 }
Eric Dumazet22911fc2012-06-27 00:23:44 +0000381 if (unlikely(err)) {
382 trace_kfree_skb(skb, udpv6_recvmsg);
Eric Dumazet979402b2012-09-05 23:34:44 +0000383 if (!peeked) {
384 atomic_inc(&sk->sk_drops);
385 if (is_udp4)
Eric Dumazet6aef70a2016-04-27 16:44:27 -0700386 UDP_INC_STATS(sock_net(sk), UDP_MIB_INERRORS,
387 is_udplite);
Eric Dumazet979402b2012-09-05 23:34:44 +0000388 else
Eric Dumazet6aef70a2016-04-27 16:44:27 -0700389 UDP6_INC_STATS(sock_net(sk), UDP_MIB_INERRORS,
390 is_udplite);
Eric Dumazet979402b2012-09-05 23:34:44 +0000391 }
samanthakumar627d2d62016-04-05 12:41:16 -0400392 skb_free_datagram_locked(sk, skb);
393 return err;
Eric Dumazet22911fc2012-06-27 00:23:44 +0000394 }
Wei Yongjunf26ba172008-11-02 16:11:01 +0000395 if (!peeked) {
396 if (is_udp4)
Eric Dumazet6aef70a2016-04-27 16:44:27 -0700397 UDP_INC_STATS(sock_net(sk), UDP_MIB_INDATAGRAMS,
398 is_udplite);
Wei Yongjunf26ba172008-11-02 16:11:01 +0000399 else
Eric Dumazet6aef70a2016-04-27 16:44:27 -0700400 UDP6_INC_STATS(sock_net(sk), UDP_MIB_INDATAGRAMS,
401 is_udplite);
Wei Yongjunf26ba172008-11-02 16:11:01 +0000402 }
Wang Chencb759942007-12-03 22:33:28 +1100403
Neil Horman3b885782009-10-12 13:26:31 -0700404 sock_recv_ts_and_drops(msg, sk, skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700405
406 /* Copy the address. */
407 if (msg->msg_name) {
Steffen Hurrle342dfc32014-01-17 22:53:15 +0100408 DECLARE_SOCKADDR(struct sockaddr_in6 *, sin6, msg->msg_name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700409 sin6->sin6_family = AF_INET6;
Arnaldo Carvalho de Melo4bedb452007-03-13 14:28:48 -0300410 sin6->sin6_port = udp_hdr(skb)->source;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700411 sin6->sin6_flowinfo = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700412
Hannes Frederic Sowa842df072013-03-08 02:07:19 +0000413 if (is_udp4) {
Brian Haleyb301e822009-10-07 13:58:25 -0700414 ipv6_addr_set_v4mapped(ip_hdr(skb)->saddr,
415 &sin6->sin6_addr);
Hannes Frederic Sowa842df072013-03-08 02:07:19 +0000416 sin6->sin6_scope_id = 0;
417 } else {
Alexey Dobriyan4e3fd7a2011-11-21 03:39:03 +0000418 sin6->sin6_addr = ipv6_hdr(skb)->saddr;
Hannes Frederic Sowa842df072013-03-08 02:07:19 +0000419 sin6->sin6_scope_id =
420 ipv6_iface_scope_id(&sin6->sin6_addr,
Duan Jiong43304872014-08-01 09:52:58 +0800421 inet6_iif(skb));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700422 }
Hannes Frederic Sowabceaa902013-11-18 04:20:45 +0100423 *addr_len = sizeof(*sin6);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700424 }
Hannes Frederic Sowa4b261c72014-01-20 03:43:08 +0100425
426 if (np->rxopt.all)
427 ip6_datagram_recv_common_ctl(sk, msg, skb);
428
Wei Yongjunf26ba172008-11-02 16:11:01 +0000429 if (is_udp4) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700430 if (inet->cmsg_flags)
Eric Dumazet10df8e62016-10-23 18:03:06 -0700431 ip_cmsg_recv_offset(msg, skb,
432 sizeof(struct udphdr), off);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700433 } else {
434 if (np->rxopt.all)
Hannes Frederic Sowa4b261c72014-01-20 03:43:08 +0100435 ip6_datagram_recv_specific_ctl(sk, msg, skb);
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900436 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700437
David S. Miller59c2cda2011-12-01 14:12:55 -0500438 err = copied;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700439 if (flags & MSG_TRUNC)
Herbert Xu759e5d02007-03-25 20:10:56 -0700440 err = ulen;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700441
samanthakumar627d2d62016-04-05 12:41:16 -0400442 __skb_free_datagram_locked(sk, skb, peeking ? -err : err);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700443 return err;
444
445csum_copy_err:
Eric Dumazet8a74ad62010-05-26 19:20:18 +0000446 slow = lock_sock_fast(sk);
Wei Yongjun0856f932008-11-02 16:14:27 +0000447 if (!skb_kill_datagram(sk, skb, flags)) {
Eric Dumazet6a5dc9e2013-04-29 08:39:56 +0000448 if (is_udp4) {
Eric Dumazet6aef70a2016-04-27 16:44:27 -0700449 UDP_INC_STATS(sock_net(sk),
450 UDP_MIB_CSUMERRORS, is_udplite);
451 UDP_INC_STATS(sock_net(sk),
452 UDP_MIB_INERRORS, is_udplite);
Eric Dumazet6a5dc9e2013-04-29 08:39:56 +0000453 } else {
Eric Dumazet6aef70a2016-04-27 16:44:27 -0700454 UDP6_INC_STATS(sock_net(sk),
455 UDP_MIB_CSUMERRORS, is_udplite);
456 UDP6_INC_STATS(sock_net(sk),
457 UDP_MIB_INERRORS, is_udplite);
Eric Dumazet6a5dc9e2013-04-29 08:39:56 +0000458 }
Wei Yongjun0856f932008-11-02 16:14:27 +0000459 }
Eric Dumazet8a74ad62010-05-26 19:20:18 +0000460 unlock_sock_fast(sk, slow);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700461
Eric Dumazetbeb39db2015-05-30 09:16:53 -0700462 /* starting over for a new packet, but check if we need to yield */
463 cond_resched();
Xufeng Zhang9cfaa8d2011-06-21 10:43:40 +0000464 msg->msg_flags &= ~MSG_TRUNC;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700465 goto try_again;
466}
467
Gerrit Renkerba4e58e2006-11-27 11:10:57 -0800468void __udp6_lib_err(struct sk_buff *skb, struct inet6_skb_parm *opt,
Brian Haleyd5fdd6b2009-06-23 04:31:07 -0700469 u8 type, u8 code, int offset, __be32 info,
Eric Dumazet645ca702008-10-29 01:41:45 -0700470 struct udp_table *udptable)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700471{
472 struct ipv6_pinfo *np;
Eric Dumazetb71d1d42011-04-22 04:53:02 +0000473 const struct ipv6hdr *hdr = (const struct ipv6hdr *)skb->data;
474 const struct in6_addr *saddr = &hdr->saddr;
475 const struct in6_addr *daddr = &hdr->daddr;
Ian Morris67ba4152014-08-24 21:53:10 +0100476 struct udphdr *uh = (struct udphdr *)(skb->data+offset);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700477 struct sock *sk;
Wei Wange0d8c1b2016-02-17 13:58:22 -0800478 int harderr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700479 int err;
Duan Jiong7304fe42014-07-31 17:54:32 +0800480 struct net *net = dev_net(skb->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700481
Craig Galleke32ea7e2016-01-04 17:41:46 -0500482 sk = __udp6_lib_lookup(net, daddr, uh->dest, saddr, uh->source,
Craig Gallek538950a2016-01-04 17:41:47 -0500483 inet6_iif(skb), udptable, skb);
Ian Morris63159f22015-03-29 14:00:04 +0100484 if (!sk) {
Eric Dumazeta16292a2016-04-27 16:44:36 -0700485 __ICMP6_INC_STATS(net, __in6_dev_get(skb->dev),
486 ICMP6_MIB_INERRORS);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700487 return;
Duan Jiong7304fe42014-07-31 17:54:32 +0800488 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700489
Wei Wange0d8c1b2016-02-17 13:58:22 -0800490 harderr = icmpv6_err_convert(type, code, &err);
491 np = inet6_sk(sk);
492
Hannes Frederic Sowa93b36cf2013-12-15 03:41:14 +0100493 if (type == ICMPV6_PKT_TOOBIG) {
494 if (!ip6_sk_accept_pmtu(sk))
495 goto out;
David S. Miller81aded22012-06-15 14:54:11 -0700496 ip6_sk_update_pmtu(skb, sk, info);
Wei Wange0d8c1b2016-02-17 13:58:22 -0800497 if (np->pmtudisc != IPV6_PMTUDISC_DONT)
498 harderr = 1;
Hannes Frederic Sowa93b36cf2013-12-15 03:41:14 +0100499 }
Duan Jiong1a462d12013-09-20 18:20:28 +0800500 if (type == NDISC_REDIRECT) {
David S. Millerec18d9a2012-07-12 00:25:15 -0700501 ip6_sk_redirect(skb, sk);
Duan Jiong1a462d12013-09-20 18:20:28 +0800502 goto out;
503 }
David S. Miller81aded22012-06-15 14:54:11 -0700504
Wei Wange0d8c1b2016-02-17 13:58:22 -0800505 if (!np->recverr) {
506 if (!harderr || sk->sk_state != TCP_ESTABLISHED)
507 goto out;
508 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700509 ipv6_icmp_error(sk, skb, err, uh->dest, ntohl(info), (u8 *)(uh+1));
Wei Wange0d8c1b2016-02-17 13:58:22 -0800510 }
Eric Dumazetb1faf562010-05-31 23:44:05 -0700511
Linus Torvalds1da177e2005-04-16 15:20:36 -0700512 sk->sk_err = err;
513 sk->sk_error_report(sk);
514out:
Eric Dumazetca065d02016-04-01 08:52:13 -0700515 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700516}
517
Eric Dumazet30c7be22016-11-22 09:06:45 -0800518int __udpv6_queue_rcv_skb(struct sock *sk, struct sk_buff *skb)
Benjamin LaHaisef7ad74f2012-04-27 08:23:21 +0000519{
520 int rc;
521
Eric Dumazetefe42082013-10-03 15:42:29 -0700522 if (!ipv6_addr_any(&sk->sk_v6_daddr)) {
Benjamin LaHaisef7ad74f2012-04-27 08:23:21 +0000523 sock_rps_save_rxhash(sk, skb);
Shawn Bohrer005ec972013-10-07 11:01:38 -0500524 sk_mark_napi_id(sk, skb);
Eric Dumazet2c8c56e2014-11-11 05:54:28 -0800525 sk_incoming_cpu_update(sk);
Shawn Bohrer005ec972013-10-07 11:01:38 -0500526 }
Benjamin LaHaisef7ad74f2012-04-27 08:23:21 +0000527
samanthakumare6afc8a2016-04-05 12:41:15 -0400528 rc = __sock_queue_rcv_skb(sk, skb);
Benjamin LaHaisef7ad74f2012-04-27 08:23:21 +0000529 if (rc < 0) {
530 int is_udplite = IS_UDPLITE(sk);
531
532 /* Note that an ENOMEM error is charged twice */
533 if (rc == -ENOMEM)
Eric Dumazete61da9e2016-04-29 14:16:50 -0700534 UDP6_INC_STATS(sock_net(sk),
Eric Dumazet02c22342016-04-27 16:44:30 -0700535 UDP_MIB_RCVBUFERRORS, is_udplite);
Eric Dumazete61da9e2016-04-29 14:16:50 -0700536 UDP6_INC_STATS(sock_net(sk), UDP_MIB_INERRORS, is_udplite);
Benjamin LaHaisef7ad74f2012-04-27 08:23:21 +0000537 kfree_skb(skb);
538 return -1;
539 }
540 return 0;
541}
542
Gerrit Renkerba4e58e2006-11-27 11:10:57 -0800543static __inline__ void udpv6_err(struct sk_buff *skb,
Brian Haleyd5fdd6b2009-06-23 04:31:07 -0700544 struct inet6_skb_parm *opt, u8 type,
Ian Morris67ba4152014-08-24 21:53:10 +0100545 u8 code, int offset, __be32 info)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700546{
Eric Dumazet645ca702008-10-29 01:41:45 -0700547 __udp6_lib_err(skb, opt, type, code, offset, info, &udp_table);
Gerrit Renkerba4e58e2006-11-27 11:10:57 -0800548}
549
Benjamin LaHaised7f3f622012-04-27 08:24:08 +0000550static struct static_key udpv6_encap_needed __read_mostly;
551void udpv6_encap_enable(void)
552{
553 if (!static_key_enabled(&udpv6_encap_needed))
554 static_key_slow_inc(&udpv6_encap_needed);
555}
556EXPORT_SYMBOL(udpv6_encap_enable);
557
Benjamin LaHaisef7ad74f2012-04-27 08:23:21 +0000558int udpv6_queue_rcv_skb(struct sock *sk, struct sk_buff *skb)
Gerrit Renkerba4e58e2006-11-27 11:10:57 -0800559{
560 struct udp_sock *up = udp_sk(sk);
David S. Millera18135e2006-08-15 00:00:09 -0700561 int rc;
Wang Chenb2bf1e22007-12-03 22:34:16 +1100562 int is_udplite = IS_UDPLITE(sk);
David S. Millera18135e2006-08-15 00:00:09 -0700563
Gerrit Renkerba4e58e2006-11-27 11:10:57 -0800564 if (!xfrm6_policy_check(sk, XFRM_POLICY_IN, skb))
565 goto drop;
566
Benjamin LaHaised7f3f622012-04-27 08:24:08 +0000567 if (static_key_false(&udpv6_encap_needed) && up->encap_type) {
568 int (*encap_rcv)(struct sock *sk, struct sk_buff *skb);
569
570 /*
571 * This is an encapsulation socket so pass the skb to
572 * the socket's udp_encap_rcv() hook. Otherwise, just
573 * fall through and pass this up the UDP socket.
574 * up->encap_rcv() returns the following value:
575 * =0 if skb was successfully passed to the encap
576 * handler or was discarded by it.
577 * >0 if skb should be passed on to UDP.
578 * <0 if skb should be resubmitted as proto -N
579 */
580
581 /* if we're overly short, let UDP handle it */
582 encap_rcv = ACCESS_ONCE(up->encap_rcv);
Hannes Frederic Sowae5aed002016-05-19 15:58:33 +0200583 if (encap_rcv) {
Benjamin LaHaised7f3f622012-04-27 08:24:08 +0000584 int ret;
585
Tom Herbert0a809662014-05-07 16:52:39 -0700586 /* Verify checksum before giving to encap */
587 if (udp_lib_checksum_complete(skb))
588 goto csum_error;
589
Benjamin LaHaised7f3f622012-04-27 08:24:08 +0000590 ret = encap_rcv(sk, skb);
591 if (ret <= 0) {
Eric Dumazet02c22342016-04-27 16:44:30 -0700592 __UDP_INC_STATS(sock_net(sk),
593 UDP_MIB_INDATAGRAMS,
594 is_udplite);
Benjamin LaHaised7f3f622012-04-27 08:24:08 +0000595 return -ret;
596 }
597 }
598
599 /* FALLTHROUGH -- it's a UDP Packet */
600 }
601
Gerrit Renkerba4e58e2006-11-27 11:10:57 -0800602 /*
603 * UDP-Lite specific tests, ignored on UDP sockets (see net/ipv4/udp.c).
604 */
Wang Chenb2bf1e22007-12-03 22:34:16 +1100605 if ((is_udplite & UDPLITE_RECV_CC) && UDP_SKB_CB(skb)->partial_cov) {
Gerrit Renkerba4e58e2006-11-27 11:10:57 -0800606
607 if (up->pcrlen == 0) { /* full coverage was set */
Joe Perchesba7a46f2014-11-11 10:59:17 -0800608 net_dbg_ratelimited("UDPLITE6: partial coverage %d while full coverage %d requested\n",
609 UDP_SKB_CB(skb)->cscov, skb->len);
Gerrit Renkerba4e58e2006-11-27 11:10:57 -0800610 goto drop;
611 }
612 if (UDP_SKB_CB(skb)->cscov < up->pcrlen) {
Joe Perchesba7a46f2014-11-11 10:59:17 -0800613 net_dbg_ratelimited("UDPLITE6: coverage %d too small, need min %d\n",
614 UDP_SKB_CB(skb)->cscov, up->pcrlen);
Gerrit Renkerba4e58e2006-11-27 11:10:57 -0800615 goto drop;
616 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700617 }
618
Eric Dumazetce25d662016-06-02 14:52:43 -0700619 if (rcu_access_pointer(sk->sk_filter) &&
620 udp_lib_checksum_complete(skb))
621 goto csum_error;
622
Daniel Borkmannba66bbe2016-07-25 18:06:12 +0200623 if (sk_filter_trim_cap(sk, skb, sizeof(struct udphdr)))
Michal Kubečeka6127692016-07-08 17:52:33 +0200624 goto drop;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700625
samanthakumare6afc8a2016-04-05 12:41:15 -0400626 udp_csum_pull_header(skb);
Sorin Dumitru274f4822014-07-22 21:16:51 +0300627 if (sk_rcvqueues_full(sk, sk->sk_rcvbuf)) {
Eric Dumazet02c22342016-04-27 16:44:30 -0700628 __UDP6_INC_STATS(sock_net(sk),
629 UDP_MIB_RCVBUFERRORS, is_udplite);
Benjamin LaHaisecb80ef42012-04-27 08:23:59 +0000630 goto drop;
James M Leddy3e215c82014-06-25 17:38:13 -0400631 }
Benjamin LaHaisecb80ef42012-04-27 08:23:59 +0000632
Eric Dumazetd826eb12011-11-09 07:24:35 +0000633 skb_dst_drop(skb);
Wang Chencb759942007-12-03 22:33:28 +1100634
Benjamin LaHaisecb80ef42012-04-27 08:23:59 +0000635 bh_lock_sock(sk);
636 rc = 0;
637 if (!sock_owned_by_user(sk))
638 rc = __udpv6_queue_rcv_skb(sk, skb);
639 else if (sk_add_backlog(sk, skb, sk->sk_rcvbuf)) {
640 bh_unlock_sock(sk);
641 goto drop;
642 }
643 bh_unlock_sock(sk);
Benjamin LaHaisef7ad74f2012-04-27 08:23:21 +0000644
645 return rc;
James M Leddy3e215c82014-06-25 17:38:13 -0400646
Eric Dumazet6a5dc9e2013-04-29 08:39:56 +0000647csum_error:
Eric Dumazet02c22342016-04-27 16:44:30 -0700648 __UDP6_INC_STATS(sock_net(sk), UDP_MIB_CSUMERRORS, is_udplite);
Gerrit Renkerba4e58e2006-11-27 11:10:57 -0800649drop:
Eric Dumazet02c22342016-04-27 16:44:30 -0700650 __UDP6_INC_STATS(sock_net(sk), UDP_MIB_INERRORS, is_udplite);
Benjamin LaHaisecb80ef42012-04-27 08:23:59 +0000651 atomic_inc(&sk->sk_drops);
Gerrit Renkerba4e58e2006-11-27 11:10:57 -0800652 kfree_skb(skb);
653 return -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700654}
655
David Held5cf3d462014-07-15 23:28:31 -0400656static bool __udp_v6_is_mcast_sock(struct net *net, struct sock *sk,
657 __be16 loc_port, const struct in6_addr *loc_addr,
658 __be16 rmt_port, const struct in6_addr *rmt_addr,
659 int dif, unsigned short hnum)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700660{
David Held5cf3d462014-07-15 23:28:31 -0400661 struct inet_sock *inet = inet_sk(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700662
David Held5cf3d462014-07-15 23:28:31 -0400663 if (!net_eq(sock_net(sk), net))
664 return false;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700665
David Held5cf3d462014-07-15 23:28:31 -0400666 if (udp_sk(sk)->udp_port_hash != hnum ||
667 sk->sk_family != PF_INET6 ||
668 (inet->inet_dport && inet->inet_dport != rmt_port) ||
669 (!ipv6_addr_any(&sk->sk_v6_daddr) &&
670 !ipv6_addr_equal(&sk->sk_v6_daddr, rmt_addr)) ||
Henning Rogge33b4b012015-05-18 21:08:49 +0200671 (sk->sk_bound_dev_if && sk->sk_bound_dev_if != dif) ||
672 (!ipv6_addr_any(&sk->sk_v6_rcv_saddr) &&
673 !ipv6_addr_equal(&sk->sk_v6_rcv_saddr, loc_addr)))
David Held5cf3d462014-07-15 23:28:31 -0400674 return false;
675 if (!inet6_mc_check(sk, loc_addr, rmt_addr))
676 return false;
677 return true;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700678}
679
Tom Herbert40685792014-05-02 16:29:58 -0700680static void udp6_csum_zero_error(struct sk_buff *skb)
681{
682 /* RFC 2460 section 8.1 says that we SHOULD log
683 * this error. Well, it is reasonable.
684 */
Joe Perchesba7a46f2014-11-11 10:59:17 -0800685 net_dbg_ratelimited("IPv6: udp checksum is 0 for [%pI6c]:%u->[%pI6c]:%u\n",
686 &ipv6_hdr(skb)->saddr, ntohs(udp_hdr(skb)->source),
687 &ipv6_hdr(skb)->daddr, ntohs(udp_hdr(skb)->dest));
Tom Herbert40685792014-05-02 16:29:58 -0700688}
689
Linus Torvalds1da177e2005-04-16 15:20:36 -0700690/*
691 * Note: called only from the BH handler context,
692 * so we don't need to lock the hashes.
693 */
Pavel Emelyanove3163492008-06-16 17:12:11 -0700694static int __udp6_lib_mcast_deliver(struct net *net, struct sk_buff *skb,
Eric Dumazetb71d1d42011-04-22 04:53:02 +0000695 const struct in6_addr *saddr, const struct in6_addr *daddr,
Rick Jones36cbb242014-11-06 10:37:54 -0800696 struct udp_table *udptable, int proto)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700697{
Eric Dumazetca065d02016-04-01 08:52:13 -0700698 struct sock *sk, *first = NULL;
Arnaldo Carvalho de Melo4bedb452007-03-13 14:28:48 -0300699 const struct udphdr *uh = udp_hdr(skb);
David Held5cf3d462014-07-15 23:28:31 -0400700 unsigned short hnum = ntohs(uh->dest);
701 struct udp_hslot *hslot = udp_hashslot(udptable, net, hnum);
Eric Dumazetca065d02016-04-01 08:52:13 -0700702 unsigned int offset = offsetof(typeof(*sk), sk_node);
David Held2dc41cf2014-07-15 23:28:32 -0400703 unsigned int hash2 = 0, hash2_any = 0, use_hash2 = (hslot->count > 10);
Eric Dumazetca065d02016-04-01 08:52:13 -0700704 int dif = inet6_iif(skb);
705 struct hlist_node *node;
706 struct sk_buff *nskb;
David Held2dc41cf2014-07-15 23:28:32 -0400707
708 if (use_hash2) {
709 hash2_any = udp6_portaddr_hash(net, &in6addr_any, hnum) &
Pablo Neira73e2d5e2016-11-14 23:40:30 +0100710 udptable->mask;
711 hash2 = udp6_portaddr_hash(net, daddr, hnum) & udptable->mask;
David Held2dc41cf2014-07-15 23:28:32 -0400712start_lookup:
Pablo Neira73e2d5e2016-11-14 23:40:30 +0100713 hslot = &udptable->hash2[hash2];
David Held2dc41cf2014-07-15 23:28:32 -0400714 offset = offsetof(typeof(*sk), __sk_common.skc_portaddr_node);
715 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700716
Eric Dumazetca065d02016-04-01 08:52:13 -0700717 sk_for_each_entry_offset_rcu(sk, node, &hslot->head, offset) {
718 if (!__udp_v6_is_mcast_sock(net, sk, uh->dest, daddr,
719 uh->source, saddr, dif, hnum))
720 continue;
721 /* If zero checksum and no_check is not on for
722 * the socket then skip it.
723 */
724 if (!uh->check && !udp_sk(sk)->no_check6_rx)
725 continue;
726 if (!first) {
727 first = sk;
728 continue;
Hideo Aoki95766ff2007-12-31 00:29:24 -0800729 }
Eric Dumazetca065d02016-04-01 08:52:13 -0700730 nskb = skb_clone(skb, GFP_ATOMIC);
731 if (unlikely(!nskb)) {
732 atomic_inc(&sk->sk_drops);
Eric Dumazet02c22342016-04-27 16:44:30 -0700733 __UDP6_INC_STATS(net, UDP_MIB_RCVBUFERRORS,
734 IS_UDPLITE(sk));
735 __UDP6_INC_STATS(net, UDP_MIB_INERRORS,
736 IS_UDPLITE(sk));
Eric Dumazetca065d02016-04-01 08:52:13 -0700737 continue;
738 }
Eric Dumazeta1ab77f2009-11-08 10:18:52 +0000739
Eric Dumazetca065d02016-04-01 08:52:13 -0700740 if (udpv6_queue_rcv_skb(sk, nskb) > 0)
741 consume_skb(nskb);
742 }
Eric Dumazeta1ab77f2009-11-08 10:18:52 +0000743
David Held2dc41cf2014-07-15 23:28:32 -0400744 /* Also lookup *:port if we are using hash2 and haven't done so yet. */
745 if (use_hash2 && hash2 != hash2_any) {
746 hash2 = hash2_any;
747 goto start_lookup;
748 }
749
Eric Dumazetca065d02016-04-01 08:52:13 -0700750 if (first) {
751 if (udpv6_queue_rcv_skb(first, skb) > 0)
752 consume_skb(skb);
Eric Dumazeta1ab77f2009-11-08 10:18:52 +0000753 } else {
Eric Dumazetca065d02016-04-01 08:52:13 -0700754 kfree_skb(skb);
Eric Dumazet02c22342016-04-27 16:44:30 -0700755 __UDP6_INC_STATS(net, UDP_MIB_IGNOREDMULTI,
756 proto == IPPROTO_UDPLITE);
Eric Dumazeta1ab77f2009-11-08 10:18:52 +0000757 }
Gerrit Renkerba4e58e2006-11-27 11:10:57 -0800758 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700759}
760
Eric Dumazet645ca702008-10-29 01:41:45 -0700761int __udp6_lib_rcv(struct sk_buff *skb, struct udp_table *udptable,
Herbert Xu759e5d02007-03-25 20:10:56 -0700762 int proto)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700763{
Eric Dumazetb71d1d42011-04-22 04:53:02 +0000764 const struct in6_addr *saddr, *daddr;
Eric Dumazetca065d02016-04-01 08:52:13 -0700765 struct net *net = dev_net(skb->dev);
766 struct udphdr *uh;
767 struct sock *sk;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700768 u32 ulen = 0;
769
770 if (!pskb_may_pull(skb, sizeof(struct udphdr)))
Bjørn Morkd6bc0142010-05-06 03:44:35 +0000771 goto discard;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700772
Arnaldo Carvalho de Melo0660e032007-04-25 17:54:47 -0700773 saddr = &ipv6_hdr(skb)->saddr;
774 daddr = &ipv6_hdr(skb)->daddr;
Arnaldo Carvalho de Melo4bedb452007-03-13 14:28:48 -0300775 uh = udp_hdr(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700776
777 ulen = ntohs(uh->len);
Gerrit Renkerba4e58e2006-11-27 11:10:57 -0800778 if (ulen > skb->len)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700779 goto short_packet;
780
Herbert Xu759e5d02007-03-25 20:10:56 -0700781 if (proto == IPPROTO_UDP) {
782 /* UDP validates ulen. */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700783
Gerrit Renkerba4e58e2006-11-27 11:10:57 -0800784 /* Check for jumbo payload */
785 if (ulen == 0)
786 ulen = skb->len;
787
788 if (ulen < sizeof(*uh))
789 goto short_packet;
790
791 if (ulen < skb->len) {
792 if (pskb_trim_rcsum(skb, ulen))
793 goto short_packet;
Arnaldo Carvalho de Melo0660e032007-04-25 17:54:47 -0700794 saddr = &ipv6_hdr(skb)->saddr;
795 daddr = &ipv6_hdr(skb)->daddr;
Arnaldo Carvalho de Melo4bedb452007-03-13 14:28:48 -0300796 uh = udp_hdr(skb);
Gerrit Renkerba4e58e2006-11-27 11:10:57 -0800797 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700798 }
799
Herbert Xu759e5d02007-03-25 20:10:56 -0700800 if (udp6_csum_init(skb, uh, proto))
Eric Dumazet6a5dc9e2013-04-29 08:39:56 +0000801 goto csum_error;
Herbert Xu759e5d02007-03-25 20:10:56 -0700802
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900803 /*
804 * Multicast receive code
Linus Torvalds1da177e2005-04-16 15:20:36 -0700805 */
Gerrit Renkerba4e58e2006-11-27 11:10:57 -0800806 if (ipv6_addr_is_multicast(daddr))
Pavel Emelyanove3163492008-06-16 17:12:11 -0700807 return __udp6_lib_mcast_deliver(net, skb,
Rick Jones36cbb242014-11-06 10:37:54 -0800808 saddr, daddr, udptable, proto);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700809
810 /* Unicast */
811
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900812 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700813 * check socket cache ... must talk to Alan about his plans
814 * for sock caches... i'll skip this for now.
815 */
KOVACS Krisztian607c4aa2008-10-07 12:38:32 -0700816 sk = __udp6_lib_lookup_skb(skb, uh->source, uh->dest, udptable);
Ian Morris53b24b82015-03-29 14:00:05 +0100817 if (sk) {
Eliezer Tamira5b50472013-06-10 11:40:00 +0300818 int ret;
819
Tom Herbert1c194482014-05-23 08:47:32 -0700820 if (!uh->check && !udp_sk(sk)->no_check6_rx) {
Tom Herbert40685792014-05-02 16:29:58 -0700821 udp6_csum_zero_error(skb);
822 goto csum_error;
823 }
824
Tom Herbert224d0192015-01-05 13:56:14 -0800825 if (inet_get_convert_csum(sk) && uh->check && !IS_UDPLITE(sk))
Tom Herbert2abb7cd2014-08-31 15:12:43 -0700826 skb_checksum_try_convert(skb, IPPROTO_UDP, uh->check,
827 ip6_compute_pseudo);
828
Eliezer Tamira5b50472013-06-10 11:40:00 +0300829 ret = udpv6_queue_rcv_skb(sk, skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700830
Bill Sommerfeld59dca1d2016-03-04 14:47:21 -0800831 /* a return value > 0 means to resubmit the input */
Benjamin LaHaisecb80ef42012-04-27 08:23:59 +0000832 if (ret > 0)
Bill Sommerfeld59dca1d2016-03-04 14:47:21 -0800833 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700834
Stephen Hemmingeradd459a2007-03-08 20:42:35 -0800835 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700836 }
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900837
Tom Herbert40685792014-05-02 16:29:58 -0700838 if (!uh->check) {
839 udp6_csum_zero_error(skb);
840 goto csum_error;
841 }
842
Benjamin LaHaisecb80ef42012-04-27 08:23:59 +0000843 if (!xfrm6_policy_check(NULL, XFRM_POLICY_IN, skb))
844 goto discard;
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900845
Benjamin LaHaisecb80ef42012-04-27 08:23:59 +0000846 if (udp_lib_checksum_complete(skb))
Eric Dumazet6a5dc9e2013-04-29 08:39:56 +0000847 goto csum_error;
Benjamin LaHaisecb80ef42012-04-27 08:23:59 +0000848
Eric Dumazet02c22342016-04-27 16:44:30 -0700849 __UDP6_INC_STATS(net, UDP_MIB_NOPORTS, proto == IPPROTO_UDPLITE);
Benjamin LaHaisecb80ef42012-04-27 08:23:59 +0000850 icmpv6_send(skb, ICMPV6_DEST_UNREACH, ICMPV6_PORT_UNREACH, 0);
851
852 kfree_skb(skb);
Stephen Hemmingeradd459a2007-03-08 20:42:35 -0800853 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700854
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900855short_packet:
Joe Perchesba7a46f2014-11-11 10:59:17 -0800856 net_dbg_ratelimited("UDP%sv6: short packet: From [%pI6c]:%u %d/%d to [%pI6c]:%u\n",
857 proto == IPPROTO_UDPLITE ? "-Lite" : "",
858 saddr, ntohs(uh->source),
859 ulen, skb->len,
860 daddr, ntohs(uh->dest));
Eric Dumazet6a5dc9e2013-04-29 08:39:56 +0000861 goto discard;
862csum_error:
Eric Dumazet02c22342016-04-27 16:44:30 -0700863 __UDP6_INC_STATS(net, UDP_MIB_CSUMERRORS, proto == IPPROTO_UDPLITE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700864discard:
Eric Dumazet02c22342016-04-27 16:44:30 -0700865 __UDP6_INC_STATS(net, UDP_MIB_INERRORS, proto == IPPROTO_UDPLITE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700866 kfree_skb(skb);
Stephen Hemmingeradd459a2007-03-08 20:42:35 -0800867 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700868}
Gerrit Renkerba4e58e2006-11-27 11:10:57 -0800869
subashab@codeaurora.orgf6c002e2017-03-08 16:36:49 -0700870static struct sock *__udp6_lib_demux_lookup(struct net *net,
871 __be16 loc_port,
872 const struct in6_addr *loc_addr,
873 __be16 rmt_port,
874 const struct in6_addr *rmt_addr,
875 int dif)
876{
subashab@codeaurora.orga4c9e522017-04-18 11:39:41 -0600877 unsigned short hnum = ntohs(loc_port);
878 unsigned int hash2 = udp6_portaddr_hash(net, loc_addr, hnum);
879 unsigned int slot2 = hash2 & udp_table.mask;
880 struct udp_hslot *hslot2 = &udp_table.hash2[slot2];
881
882 const __portpair ports = INET_COMBINED_PORTS(rmt_port, hnum);
subashab@codeaurora.orgf6c002e2017-03-08 16:36:49 -0700883 struct sock *sk;
884
subashab@codeaurora.orga4c9e522017-04-18 11:39:41 -0600885 udp_portaddr_for_each_entry_rcu(sk, &hslot2->head) {
Wei Wangd61f7af2017-06-23 15:25:37 -0700886 if (sk->sk_state == TCP_ESTABLISHED &&
887 INET6_MATCH(sk, net, rmt_addr, loc_addr, ports, dif))
subashab@codeaurora.orga4c9e522017-04-18 11:39:41 -0600888 return sk;
889 /* Only check first socket in chain */
890 break;
891 }
892 return NULL;
subashab@codeaurora.orgf6c002e2017-03-08 16:36:49 -0700893}
894
895static void udp_v6_early_demux(struct sk_buff *skb)
896{
897 struct net *net = dev_net(skb->dev);
898 const struct udphdr *uh;
899 struct sock *sk;
900 struct dst_entry *dst;
901 int dif = skb->dev->ifindex;
902
903 if (!pskb_may_pull(skb, skb_transport_offset(skb) +
904 sizeof(struct udphdr)))
905 return;
906
907 uh = udp_hdr(skb);
908
909 if (skb->pkt_type == PACKET_HOST)
910 sk = __udp6_lib_demux_lookup(net, uh->dest,
911 &ipv6_hdr(skb)->daddr,
912 uh->source, &ipv6_hdr(skb)->saddr,
913 dif);
914 else
915 return;
916
subashab@codeaurora.orga4c9e522017-04-18 11:39:41 -0600917 if (!sk || !atomic_inc_not_zero_hint(&sk->sk_refcnt, 2))
subashab@codeaurora.orgf6c002e2017-03-08 16:36:49 -0700918 return;
919
920 skb->sk = sk;
921 skb->destructor = sock_efree;
922 dst = READ_ONCE(sk->sk_rx_dst);
923
924 if (dst)
925 dst = dst_check(dst, inet6_sk(sk)->rx_dst_cookie);
926 if (dst) {
927 if (dst->flags & DST_NOCACHE) {
928 if (likely(atomic_inc_not_zero(&dst->__refcnt)))
929 skb_dst_set(skb, dst);
930 } else {
931 skb_dst_set_noref(skb, dst);
932 }
933 }
934}
935
Herbert Xue5bbef22007-10-15 12:50:28 -0700936static __inline__ int udpv6_rcv(struct sk_buff *skb)
Gerrit Renkerba4e58e2006-11-27 11:10:57 -0800937{
Eric Dumazet645ca702008-10-29 01:41:45 -0700938 return __udp6_lib_rcv(skb, &udp_table, IPPROTO_UDP);
Gerrit Renkerba4e58e2006-11-27 11:10:57 -0800939}
940
Linus Torvalds1da177e2005-04-16 15:20:36 -0700941/*
942 * Throw away all pending data and cancel the corking. Socket is locked.
943 */
944static void udp_v6_flush_pending_frames(struct sock *sk)
945{
946 struct udp_sock *up = udp_sk(sk);
947
Denis V. Lunev36d926b2008-06-04 15:49:07 +0400948 if (up->pending == AF_INET)
949 udp_flush_pending_frames(sk);
950 else if (up->pending) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700951 up->len = 0;
952 up->pending = 0;
953 ip6_flush_pending_frames(sk);
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900954 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700955}
956
Sridhar Samudrala493c6be2009-07-09 08:09:54 +0000957/**
Ian Morris67ba4152014-08-24 21:53:10 +0100958 * udp6_hwcsum_outgoing - handle outgoing HW checksumming
959 * @sk: socket we are sending on
960 * @skb: sk_buff containing the filled-in UDP header
961 * (checksum field must be zeroed out)
Sridhar Samudrala493c6be2009-07-09 08:09:54 +0000962 */
963static void udp6_hwcsum_outgoing(struct sock *sk, struct sk_buff *skb,
964 const struct in6_addr *saddr,
965 const struct in6_addr *daddr, int len)
966{
967 unsigned int offset;
968 struct udphdr *uh = udp_hdr(skb);
Vlad Yasevichd39d9382015-01-31 10:40:16 -0500969 struct sk_buff *frags = skb_shinfo(skb)->frag_list;
Sridhar Samudrala493c6be2009-07-09 08:09:54 +0000970 __wsum csum = 0;
971
Vlad Yasevichd39d9382015-01-31 10:40:16 -0500972 if (!frags) {
Sridhar Samudrala493c6be2009-07-09 08:09:54 +0000973 /* Only one fragment on the socket. */
974 skb->csum_start = skb_transport_header(skb) - skb->head;
975 skb->csum_offset = offsetof(struct udphdr, check);
976 uh->check = ~csum_ipv6_magic(saddr, daddr, len, IPPROTO_UDP, 0);
977 } else {
978 /*
979 * HW-checksum won't work as there are two or more
980 * fragments on the socket so that all csums of sk_buffs
981 * should be together
982 */
983 offset = skb_transport_offset(skb);
984 skb->csum = skb_checksum(skb, offset, skb->len - offset, 0);
Subash Abhinov Kasiviswanathandf3b8832017-09-13 17:56:39 -0600985 csum = skb->csum;
Sridhar Samudrala493c6be2009-07-09 08:09:54 +0000986
987 skb->ip_summed = CHECKSUM_NONE;
988
Vlad Yasevichd39d9382015-01-31 10:40:16 -0500989 do {
990 csum = csum_add(csum, frags->csum);
991 } while ((frags = frags->next));
Sridhar Samudrala493c6be2009-07-09 08:09:54 +0000992
993 uh->check = csum_ipv6_magic(saddr, daddr, len, IPPROTO_UDP,
994 csum);
995 if (uh->check == 0)
996 uh->check = CSUM_MANGLED_0;
997 }
998}
999
Linus Torvalds1da177e2005-04-16 15:20:36 -07001000/*
1001 * Sending
1002 */
1003
Vlad Yasevichd39d9382015-01-31 10:40:16 -05001004static int udp_v6_send_skb(struct sk_buff *skb, struct flowi6 *fl6)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001005{
Vlad Yasevichd39d9382015-01-31 10:40:16 -05001006 struct sock *sk = skb->sk;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001007 struct udphdr *uh;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001008 int err = 0;
Wang Chenb2bf1e22007-12-03 22:34:16 +11001009 int is_udplite = IS_UDPLITE(sk);
Al Viro868c86b2006-11-14 21:35:48 -08001010 __wsum csum = 0;
Vlad Yasevichd39d9382015-01-31 10:40:16 -05001011 int offset = skb_transport_offset(skb);
1012 int len = skb->len - offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001013
1014 /*
1015 * Create a UDP header
1016 */
Arnaldo Carvalho de Melo4bedb452007-03-13 14:28:48 -03001017 uh = udp_hdr(skb);
David S. Miller1958b852011-03-12 16:36:19 -05001018 uh->source = fl6->fl6_sport;
1019 uh->dest = fl6->fl6_dport;
Vlad Yasevichd39d9382015-01-31 10:40:16 -05001020 uh->len = htons(len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001021 uh->check = 0;
1022
Wang Chenb2bf1e22007-12-03 22:34:16 +11001023 if (is_udplite)
Vlad Yasevichd39d9382015-01-31 10:40:16 -05001024 csum = udplite_csum(skb);
1025 else if (udp_sk(sk)->no_check6_tx) { /* UDP csum disabled */
Tom Herbert40685792014-05-02 16:29:58 -07001026 skb->ip_summed = CHECKSUM_NONE;
1027 goto send;
1028 } else if (skb->ip_summed == CHECKSUM_PARTIAL) { /* UDP hardware csum */
Vlad Yasevichd39d9382015-01-31 10:40:16 -05001029 udp6_hwcsum_outgoing(sk, skb, &fl6->saddr, &fl6->daddr, len);
Sridhar Samudrala493c6be2009-07-09 08:09:54 +00001030 goto send;
1031 } else
Vlad Yasevichd39d9382015-01-31 10:40:16 -05001032 csum = udp_csum(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001033
Gerrit Renkerba4e58e2006-11-27 11:10:57 -08001034 /* add protocol-dependent pseudo-header */
David S. Miller4c9483b2011-03-12 16:22:43 -05001035 uh->check = csum_ipv6_magic(&fl6->saddr, &fl6->daddr,
Vlad Yasevichd39d9382015-01-31 10:40:16 -05001036 len, fl6->flowi6_proto, csum);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001037 if (uh->check == 0)
Al Virof6ab0282006-11-16 02:36:50 -08001038 uh->check = CSUM_MANGLED_0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001039
Sridhar Samudrala493c6be2009-07-09 08:09:54 +00001040send:
Vlad Yasevichd39d9382015-01-31 10:40:16 -05001041 err = ip6_send_skb(skb);
Eric Dumazet6ce9e7b2009-09-02 18:05:33 -07001042 if (err) {
1043 if (err == -ENOBUFS && !inet6_sk(sk)->recverr) {
Eric Dumazet6aef70a2016-04-27 16:44:27 -07001044 UDP6_INC_STATS(sock_net(sk),
1045 UDP_MIB_SNDBUFERRORS, is_udplite);
Eric Dumazet6ce9e7b2009-09-02 18:05:33 -07001046 err = 0;
1047 }
Eric Dumazet6aef70a2016-04-27 16:44:27 -07001048 } else {
1049 UDP6_INC_STATS(sock_net(sk),
1050 UDP_MIB_OUTDATAGRAMS, is_udplite);
1051 }
Vlad Yasevichd39d9382015-01-31 10:40:16 -05001052 return err;
1053}
1054
1055static int udp_v6_push_pending_frames(struct sock *sk)
1056{
1057 struct sk_buff *skb;
1058 struct udp_sock *up = udp_sk(sk);
1059 struct flowi6 fl6;
1060 int err = 0;
1061
1062 if (up->pending == AF_INET)
1063 return udp_push_pending_frames(sk);
1064
1065 /* ip6_finish_skb will release the cork, so make a copy of
1066 * fl6 here.
1067 */
1068 fl6 = inet_sk(sk)->cork.fl.u.ip6;
1069
1070 skb = ip6_finish_skb(sk);
1071 if (!skb)
1072 goto out;
1073
1074 err = udp_v6_send_skb(skb, &fl6);
1075
Linus Torvalds1da177e2005-04-16 15:20:36 -07001076out:
1077 up->len = 0;
1078 up->pending = 0;
1079 return err;
1080}
1081
Ying Xue1b784142015-03-02 15:37:48 +08001082int udpv6_sendmsg(struct sock *sk, struct msghdr *msg, size_t len)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001083{
1084 struct ipv6_txoptions opt_space;
1085 struct udp_sock *up = udp_sk(sk);
1086 struct inet_sock *inet = inet_sk(sk);
1087 struct ipv6_pinfo *np = inet6_sk(sk);
Steffen Hurrle342dfc32014-01-17 22:53:15 +01001088 DECLARE_SOCKADDR(struct sockaddr_in6 *, sin6, msg->msg_name);
Arnaud Ebalard20c59de2010-06-01 21:35:01 +00001089 struct in6_addr *daddr, *final_p, final;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001090 struct ipv6_txoptions *opt = NULL;
Eric Dumazet45f6fad2015-11-29 19:37:57 -08001091 struct ipv6_txoptions *opt_to_free = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001092 struct ip6_flowlabel *flowlabel = NULL;
David S. Miller4c9483b2011-03-12 16:22:43 -05001093 struct flowi6 fl6;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001094 struct dst_entry *dst;
Wei Wang26879da2016-05-02 21:40:07 -07001095 struct ipcm6_cookie ipc6;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001096 int addr_len = msg->msg_namelen;
1097 int ulen = len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001098 int corkreq = up->corkflag || msg->msg_flags&MSG_MORE;
1099 int err;
Mitsuru KANDA987905d2005-09-18 00:30:08 -07001100 int connected = 0;
Wang Chenb2bf1e22007-12-03 22:34:16 +11001101 int is_udplite = IS_UDPLITE(sk);
Gerrit Renkerba4e58e2006-11-27 11:10:57 -08001102 int (*getfrag)(void *, char *, int, int, int, struct sk_buff *);
Soheil Hassas Yeganehad1e46a2016-04-02 23:08:11 -04001103 struct sockcm_cookie sockc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001104
Wei Wang26879da2016-05-02 21:40:07 -07001105 ipc6.hlimit = -1;
1106 ipc6.tclass = -1;
1107 ipc6.dontfrag = -1;
Alexander Potapenkod80caeb2017-03-21 17:14:27 +01001108 sockc.tsflags = sk->sk_tsflags;
Wei Wang26879da2016-05-02 21:40:07 -07001109
Linus Torvalds1da177e2005-04-16 15:20:36 -07001110 /* destination address check */
1111 if (sin6) {
1112 if (addr_len < offsetof(struct sockaddr, sa_data))
1113 return -EINVAL;
1114
1115 switch (sin6->sin6_family) {
1116 case AF_INET6:
1117 if (addr_len < SIN6_LEN_RFC2133)
1118 return -EINVAL;
1119 daddr = &sin6->sin6_addr;
Jonathan T. Leighton12ec2562017-05-23 21:53:33 -04001120 if (ipv6_addr_any(daddr) &&
1121 ipv6_addr_v4mapped(&np->saddr))
1122 ipv6_addr_set_v4mapped(htonl(INADDR_LOOPBACK),
1123 daddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001124 break;
1125 case AF_INET:
1126 goto do_udp_sendmsg;
1127 case AF_UNSPEC:
1128 msg->msg_name = sin6 = NULL;
1129 msg->msg_namelen = addr_len = 0;
1130 daddr = NULL;
1131 break;
1132 default:
1133 return -EINVAL;
1134 }
1135 } else if (!up->pending) {
1136 if (sk->sk_state != TCP_ESTABLISHED)
1137 return -EDESTADDRREQ;
Eric Dumazetefe42082013-10-03 15:42:29 -07001138 daddr = &sk->sk_v6_daddr;
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09001139 } else
Linus Torvalds1da177e2005-04-16 15:20:36 -07001140 daddr = NULL;
1141
1142 if (daddr) {
Brian Haleye773e4f2007-08-24 23:16:08 -07001143 if (ipv6_addr_v4mapped(daddr)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001144 struct sockaddr_in sin;
1145 sin.sin_family = AF_INET;
Eric Dumazetc720c7e2009-10-15 06:30:45 +00001146 sin.sin_port = sin6 ? sin6->sin6_port : inet->inet_dport;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001147 sin.sin_addr.s_addr = daddr->s6_addr32[3];
1148 msg->msg_name = &sin;
1149 msg->msg_namelen = sizeof(sin);
1150do_udp_sendmsg:
1151 if (__ipv6_only_sock(sk))
1152 return -ENETUNREACH;
Ying Xue1b784142015-03-02 15:37:48 +08001153 return udp_sendmsg(sk, msg, len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001154 }
1155 }
1156
1157 if (up->pending == AF_INET)
Ying Xue1b784142015-03-02 15:37:48 +08001158 return udp_sendmsg(sk, msg, len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001159
1160 /* Rough check on arithmetic overflow,
YOSHIFUJI Hideakib59e1392007-03-30 14:45:35 -07001161 better check is made in ip6_append_data().
Linus Torvalds1da177e2005-04-16 15:20:36 -07001162 */
1163 if (len > INT_MAX - sizeof(struct udphdr))
1164 return -EMSGSIZE;
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09001165
Vlad Yasevich03485f22015-01-31 10:40:17 -05001166 getfrag = is_udplite ? udplite_getfrag : ip_generic_getfrag;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001167 if (up->pending) {
1168 /*
1169 * There are pending frames.
1170 * The socket lock must be held while it's corked.
1171 */
1172 lock_sock(sk);
1173 if (likely(up->pending)) {
1174 if (unlikely(up->pending != AF_INET6)) {
1175 release_sock(sk);
1176 return -EAFNOSUPPORT;
1177 }
1178 dst = NULL;
1179 goto do_append_data;
1180 }
1181 release_sock(sk);
1182 }
1183 ulen += sizeof(struct udphdr);
1184
David S. Miller4c9483b2011-03-12 16:22:43 -05001185 memset(&fl6, 0, sizeof(fl6));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001186
1187 if (sin6) {
1188 if (sin6->sin6_port == 0)
1189 return -EINVAL;
1190
David S. Miller1958b852011-03-12 16:36:19 -05001191 fl6.fl6_dport = sin6->sin6_port;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001192 daddr = &sin6->sin6_addr;
1193
1194 if (np->sndflow) {
David S. Miller4c9483b2011-03-12 16:22:43 -05001195 fl6.flowlabel = sin6->sin6_flowinfo&IPV6_FLOWINFO_MASK;
1196 if (fl6.flowlabel&IPV6_FLOWLABEL_MASK) {
1197 flowlabel = fl6_sock_lookup(sk, fl6.flowlabel);
Ian Morris63159f22015-03-29 14:00:04 +01001198 if (!flowlabel)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001199 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001200 }
1201 }
1202
1203 /*
1204 * Otherwise it will be difficult to maintain
1205 * sk->sk_dst_cache.
1206 */
1207 if (sk->sk_state == TCP_ESTABLISHED &&
Eric Dumazetefe42082013-10-03 15:42:29 -07001208 ipv6_addr_equal(daddr, &sk->sk_v6_daddr))
1209 daddr = &sk->sk_v6_daddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001210
1211 if (addr_len >= sizeof(struct sockaddr_in6) &&
1212 sin6->sin6_scope_id &&
Hannes Frederic Sowa842df072013-03-08 02:07:19 +00001213 __ipv6_addr_needs_scope_id(__ipv6_addr_type(daddr)))
David S. Miller4c9483b2011-03-12 16:22:43 -05001214 fl6.flowi6_oif = sin6->sin6_scope_id;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001215 } else {
1216 if (sk->sk_state != TCP_ESTABLISHED)
1217 return -EDESTADDRREQ;
1218
David S. Miller1958b852011-03-12 16:36:19 -05001219 fl6.fl6_dport = inet->inet_dport;
Eric Dumazetefe42082013-10-03 15:42:29 -07001220 daddr = &sk->sk_v6_daddr;
David S. Miller4c9483b2011-03-12 16:22:43 -05001221 fl6.flowlabel = np->flow_label;
Mitsuru KANDA987905d2005-09-18 00:30:08 -07001222 connected = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001223 }
1224
David S. Miller4c9483b2011-03-12 16:22:43 -05001225 if (!fl6.flowi6_oif)
1226 fl6.flowi6_oif = sk->sk_bound_dev_if;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001227
David S. Miller4c9483b2011-03-12 16:22:43 -05001228 if (!fl6.flowi6_oif)
1229 fl6.flowi6_oif = np->sticky_pktinfo.ipi6_ifindex;
Yang Hongyang9f690db2008-12-16 02:08:29 -08001230
David S. Miller4c9483b2011-03-12 16:22:43 -05001231 fl6.flowi6_mark = sk->sk_mark;
Lorenzo Colitti50442922016-11-04 02:23:43 +09001232 fl6.flowi6_uid = sk->sk_uid;
Brian Haley51953d52009-10-05 08:24:16 +00001233
Linus Torvalds1da177e2005-04-16 15:20:36 -07001234 if (msg->msg_controllen) {
1235 opt = &opt_space;
1236 memset(opt, 0, sizeof(struct ipv6_txoptions));
1237 opt->tot_len = sizeof(*opt);
Wei Wang26879da2016-05-02 21:40:07 -07001238 ipc6.opt = opt;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001239
Wei Wang26879da2016-05-02 21:40:07 -07001240 err = ip6_datagram_send_ctl(sock_net(sk), sk, msg, &fl6, &ipc6, &sockc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001241 if (err < 0) {
1242 fl6_sock_release(flowlabel);
1243 return err;
1244 }
David S. Miller4c9483b2011-03-12 16:22:43 -05001245 if ((fl6.flowlabel&IPV6_FLOWLABEL_MASK) && !flowlabel) {
1246 flowlabel = fl6_sock_lookup(sk, fl6.flowlabel);
Ian Morris63159f22015-03-29 14:00:04 +01001247 if (!flowlabel)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001248 return -EINVAL;
1249 }
1250 if (!(opt->opt_nflen|opt->opt_flen))
1251 opt = NULL;
Mitsuru KANDA987905d2005-09-18 00:30:08 -07001252 connected = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001253 }
Eric Dumazet45f6fad2015-11-29 19:37:57 -08001254 if (!opt) {
1255 opt = txopt_get(np);
1256 opt_to_free = opt;
1257 }
YOSHIFUJI Hideakidf9890c2005-11-20 12:23:18 +09001258 if (flowlabel)
1259 opt = fl6_merge_options(&opt_space, flowlabel, opt);
1260 opt = ipv6_fixup_options(&opt_space, opt);
Wei Wang26879da2016-05-02 21:40:07 -07001261 ipc6.opt = opt;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001262
David S. Miller4c9483b2011-03-12 16:22:43 -05001263 fl6.flowi6_proto = sk->sk_protocol;
Brian Haley876c7f42008-04-11 00:38:24 -04001264 if (!ipv6_addr_any(daddr))
Alexey Dobriyan4e3fd7a2011-11-21 03:39:03 +00001265 fl6.daddr = *daddr;
Brian Haley876c7f42008-04-11 00:38:24 -04001266 else
David S. Miller4c9483b2011-03-12 16:22:43 -05001267 fl6.daddr.s6_addr[15] = 0x1; /* :: means loopback (BSD'ism) */
1268 if (ipv6_addr_any(&fl6.saddr) && !ipv6_addr_any(&np->saddr))
Alexey Dobriyan4e3fd7a2011-11-21 03:39:03 +00001269 fl6.saddr = np->saddr;
David S. Miller1958b852011-03-12 16:36:19 -05001270 fl6.fl6_sport = inet->inet_sport;
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09001271
David S. Miller4c9483b2011-03-12 16:22:43 -05001272 final_p = fl6_update_dst(&fl6, opt, &final);
Arnaud Ebalard20c59de2010-06-01 21:35:01 +00001273 if (final_p)
Mitsuru KANDA987905d2005-09-18 00:30:08 -07001274 connected = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001275
David S. Miller4c9483b2011-03-12 16:22:43 -05001276 if (!fl6.flowi6_oif && ipv6_addr_is_multicast(&fl6.daddr)) {
1277 fl6.flowi6_oif = np->mcast_oif;
Mitsuru KANDA987905d2005-09-18 00:30:08 -07001278 connected = 0;
Erich E. Hooverc4062df2012-02-08 09:11:08 +00001279 } else if (!fl6.flowi6_oif)
1280 fl6.flowi6_oif = np->ucast_oif;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001281
David S. Miller4c9483b2011-03-12 16:22:43 -05001282 security_sk_classify_flow(sk, flowi6_to_flowi(&fl6));
Venkat Yekkiralabeb8d132006-08-04 23:12:42 -07001283
Hannes Frederic Sowa38b70972016-06-11 20:08:19 +02001284 if (ipc6.tclass < 0)
1285 ipc6.tclass = np->tclass;
1286
1287 fl6.flowlabel = ip6_make_flowinfo(ipc6.tclass, fl6.flowlabel);
1288
Steffen Klassert0e0d44a2013-08-28 08:04:14 +02001289 dst = ip6_sk_dst_lookup_flow(sk, &fl6, final_p);
David S. Miller68d0c6d2011-03-01 13:19:07 -08001290 if (IS_ERR(dst)) {
1291 err = PTR_ERR(dst);
1292 dst = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001293 goto out;
David S. Miller14e50e52007-05-24 18:17:54 -07001294 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001295
Wei Wang26879da2016-05-02 21:40:07 -07001296 if (ipc6.hlimit < 0)
1297 ipc6.hlimit = ip6_sk_dst_hoplimit(np, &fl6, dst);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001298
1299 if (msg->msg_flags&MSG_CONFIRM)
1300 goto do_confirm;
1301back_from_confirm:
1302
Vlad Yasevich03485f22015-01-31 10:40:17 -05001303 /* Lockless fast path for the non-corking case */
1304 if (!corkreq) {
1305 struct sk_buff *skb;
1306
1307 skb = ip6_make_skb(sk, getfrag, msg, ulen,
Wei Wang26879da2016-05-02 21:40:07 -07001308 sizeof(struct udphdr), &ipc6,
Vlad Yasevich03485f22015-01-31 10:40:17 -05001309 &fl6, (struct rt6_info *)dst,
Wei Wang26879da2016-05-02 21:40:07 -07001310 msg->msg_flags, &sockc);
Vlad Yasevich03485f22015-01-31 10:40:17 -05001311 err = PTR_ERR(skb);
1312 if (!IS_ERR_OR_NULL(skb))
1313 err = udp_v6_send_skb(skb, &fl6);
1314 goto release_dst;
1315 }
1316
Linus Torvalds1da177e2005-04-16 15:20:36 -07001317 lock_sock(sk);
1318 if (unlikely(up->pending)) {
1319 /* The socket is already corked while preparing it. */
1320 /* ... which is an evident application bug. --ANK */
1321 release_sock(sk);
1322
Joe Perchesba7a46f2014-11-11 10:59:17 -08001323 net_dbg_ratelimited("udp cork app bug 2\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001324 err = -EINVAL;
1325 goto out;
1326 }
1327
1328 up->pending = AF_INET6;
1329
1330do_append_data:
Wei Wang26879da2016-05-02 21:40:07 -07001331 if (ipc6.dontfrag < 0)
1332 ipc6.dontfrag = np->dontfrag;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001333 up->len += ulen;
Wei Wang26879da2016-05-02 21:40:07 -07001334 err = ip6_append_data(sk, getfrag, msg, ulen, sizeof(struct udphdr),
1335 &ipc6, &fl6, (struct rt6_info *)dst,
1336 corkreq ? msg->msg_flags|MSG_MORE : msg->msg_flags, &sockc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001337 if (err)
1338 udp_v6_flush_pending_frames(sk);
1339 else if (!corkreq)
Gerrit Renker4c0a6cb2006-11-27 09:29:59 -08001340 err = udp_v6_push_pending_frames(sk);
Herbert Xu1e0c14f2006-10-03 14:35:49 -07001341 else if (unlikely(skb_queue_empty(&sk->sk_write_queue)))
1342 up->pending = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001343
Vlad Yasevich03485f22015-01-31 10:40:17 -05001344 if (err > 0)
1345 err = np->recverr ? net_xmit_errno(err) : 0;
1346 release_sock(sk);
1347
1348release_dst:
David S. Millera5e7c212005-10-03 14:21:58 -07001349 if (dst) {
1350 if (connected) {
1351 ip6_dst_store(sk, dst,
Eric Dumazetefe42082013-10-03 15:42:29 -07001352 ipv6_addr_equal(&fl6.daddr, &sk->sk_v6_daddr) ?
1353 &sk->sk_v6_daddr : NULL,
YOSHIFUJI Hideaki8e1ef0a2006-08-29 17:15:09 -07001354#ifdef CONFIG_IPV6_SUBTREES
David S. Miller4c9483b2011-03-12 16:22:43 -05001355 ipv6_addr_equal(&fl6.saddr, &np->saddr) ?
YOSHIFUJI Hideaki8e1ef0a2006-08-29 17:15:09 -07001356 &np->saddr :
1357#endif
1358 NULL);
David S. Millera5e7c212005-10-03 14:21:58 -07001359 } else {
1360 dst_release(dst);
1361 }
YOSHIFUJI Hideakia3c96082008-06-04 01:30:25 +09001362 dst = NULL;
David S. Millera5e7c212005-10-03 14:21:58 -07001363 }
1364
Linus Torvalds1da177e2005-04-16 15:20:36 -07001365out:
YOSHIFUJI Hideakia3c96082008-06-04 01:30:25 +09001366 dst_release(dst);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001367 fl6_sock_release(flowlabel);
Eric Dumazet45f6fad2015-11-29 19:37:57 -08001368 txopt_put(opt_to_free);
YOSHIFUJI Hideakicd562c92007-09-14 17:15:01 -07001369 if (!err)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001370 return len;
David S. Millera18135e2006-08-15 00:00:09 -07001371 /*
1372 * ENOBUFS = no kernel mem, SOCK_NOSPACE = no sndbuf space. Reporting
1373 * ENOBUFS might not be good (it's not tunable per se), but otherwise
1374 * we don't have a good statistic (IpOutDiscards but it can be too many
1375 * things). We could add another new stat but at least for now that
1376 * seems like overkill.
1377 */
1378 if (err == -ENOBUFS || test_bit(SOCK_NOSPACE, &sk->sk_socket->flags)) {
Eric Dumazet6aef70a2016-04-27 16:44:27 -07001379 UDP6_INC_STATS(sock_net(sk),
1380 UDP_MIB_SNDBUFERRORS, is_udplite);
David S. Millera18135e2006-08-15 00:00:09 -07001381 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001382 return err;
1383
1384do_confirm:
1385 dst_confirm(dst);
1386 if (!(msg->msg_flags&MSG_PROBE) || len)
1387 goto back_from_confirm;
1388 err = 0;
1389 goto out;
1390}
1391
Brian Haley7d06b2e2008-06-14 17:04:49 -07001392void udpv6_destroy_sock(struct sock *sk)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001393{
Tom Parkin44046a52013-03-19 06:11:12 +00001394 struct udp_sock *up = udp_sk(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001395 lock_sock(sk);
1396 udp_v6_flush_pending_frames(sk);
1397 release_sock(sk);
1398
Tom Parkin44046a52013-03-19 06:11:12 +00001399 if (static_key_false(&udpv6_encap_needed) && up->encap_type) {
1400 void (*encap_destroy)(struct sock *sk);
1401 encap_destroy = ACCESS_ONCE(up->encap_destroy);
1402 if (encap_destroy)
1403 encap_destroy(sk);
1404 }
1405
Linus Torvalds1da177e2005-04-16 15:20:36 -07001406 inet6_destroy_sock(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001407}
1408
1409/*
1410 * Socket option code for UDP
1411 */
Gerrit Renkerba4e58e2006-11-27 11:10:57 -08001412int udpv6_setsockopt(struct sock *sk, int level, int optname,
David S. Millerb7058842009-09-30 16:12:20 -07001413 char __user *optval, unsigned int optlen)
Dmitry Mishin3fdadf72006-03-20 22:45:21 -08001414{
David S. Millerdb8dac22008-03-06 16:22:02 -08001415 if (level == SOL_UDP || level == SOL_UDPLITE)
Gerrit Renker4c0a6cb2006-11-27 09:29:59 -08001416 return udp_lib_setsockopt(sk, level, optname, optval, optlen,
1417 udp_v6_push_pending_frames);
Gerrit Renkerba4e58e2006-11-27 11:10:57 -08001418 return ipv6_setsockopt(sk, level, optname, optval, optlen);
Dmitry Mishin3fdadf72006-03-20 22:45:21 -08001419}
1420
1421#ifdef CONFIG_COMPAT
Gerrit Renkerba4e58e2006-11-27 11:10:57 -08001422int compat_udpv6_setsockopt(struct sock *sk, int level, int optname,
David S. Millerb7058842009-09-30 16:12:20 -07001423 char __user *optval, unsigned int optlen)
Dmitry Mishin3fdadf72006-03-20 22:45:21 -08001424{
David S. Millerdb8dac22008-03-06 16:22:02 -08001425 if (level == SOL_UDP || level == SOL_UDPLITE)
Gerrit Renker4c0a6cb2006-11-27 09:29:59 -08001426 return udp_lib_setsockopt(sk, level, optname, optval, optlen,
1427 udp_v6_push_pending_frames);
Gerrit Renkerba4e58e2006-11-27 11:10:57 -08001428 return compat_ipv6_setsockopt(sk, level, optname, optval, optlen);
Dmitry Mishin3fdadf72006-03-20 22:45:21 -08001429}
1430#endif
1431
Gerrit Renkerba4e58e2006-11-27 11:10:57 -08001432int udpv6_getsockopt(struct sock *sk, int level, int optname,
1433 char __user *optval, int __user *optlen)
Dmitry Mishin3fdadf72006-03-20 22:45:21 -08001434{
David S. Millerdb8dac22008-03-06 16:22:02 -08001435 if (level == SOL_UDP || level == SOL_UDPLITE)
Gerrit Renker4c0a6cb2006-11-27 09:29:59 -08001436 return udp_lib_getsockopt(sk, level, optname, optval, optlen);
Gerrit Renkerba4e58e2006-11-27 11:10:57 -08001437 return ipv6_getsockopt(sk, level, optname, optval, optlen);
Dmitry Mishin3fdadf72006-03-20 22:45:21 -08001438}
1439
1440#ifdef CONFIG_COMPAT
Gerrit Renkerba4e58e2006-11-27 11:10:57 -08001441int compat_udpv6_getsockopt(struct sock *sk, int level, int optname,
1442 char __user *optval, int __user *optlen)
Dmitry Mishin3fdadf72006-03-20 22:45:21 -08001443{
David S. Millerdb8dac22008-03-06 16:22:02 -08001444 if (level == SOL_UDP || level == SOL_UDPLITE)
Gerrit Renker4c0a6cb2006-11-27 09:29:59 -08001445 return udp_lib_getsockopt(sk, level, optname, optval, optlen);
Gerrit Renkerba4e58e2006-11-27 11:10:57 -08001446 return compat_ipv6_getsockopt(sk, level, optname, optval, optlen);
Dmitry Mishin3fdadf72006-03-20 22:45:21 -08001447}
1448#endif
1449
Alexey Dobriyan41135cc2009-09-14 12:22:28 +00001450static const struct inet6_protocol udpv6_protocol = {
subashab@codeaurora.orgf6c002e2017-03-08 16:36:49 -07001451 .early_demux = udp_v6_early_demux,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001452 .handler = udpv6_rcv,
1453 .err_handler = udpv6_err,
1454 .flags = INET6_PROTO_NOPOLICY|INET6_PROTO_FINAL,
1455};
1456
1457/* ------------------------------------------------------------------------ */
1458#ifdef CONFIG_PROC_FS
Gerrit Renkerba4e58e2006-11-27 11:10:57 -08001459int udp6_seq_show(struct seq_file *seq, void *v)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001460{
Lorenzo Colitti17ef66af2013-05-31 15:05:48 +00001461 if (v == SEQ_START_TOKEN) {
1462 seq_puts(seq, IPV6_SEQ_DGRAM_HEADER);
1463 } else {
1464 int bucket = ((struct udp_iter_state *)seq->private)->bucket;
1465 struct inet_sock *inet = inet_sk(v);
1466 __u16 srcp = ntohs(inet->inet_sport);
1467 __u16 destp = ntohs(inet->inet_dport);
1468 ip6_dgram_sock_seq_show(seq, v, srcp, destp, bucket);
1469 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001470 return 0;
1471}
1472
Arjan van de Ven73cb88e2011-10-30 06:46:30 +00001473static const struct file_operations udp6_afinfo_seq_fops = {
1474 .owner = THIS_MODULE,
1475 .open = udp_seq_open,
1476 .read = seq_read,
1477 .llseek = seq_lseek,
1478 .release = seq_release_net
1479};
1480
Linus Torvalds1da177e2005-04-16 15:20:36 -07001481static struct udp_seq_afinfo udp6_seq_afinfo = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001482 .name = "udp6",
1483 .family = AF_INET6,
Eric Dumazet645ca702008-10-29 01:41:45 -07001484 .udp_table = &udp_table,
Arjan van de Ven73cb88e2011-10-30 06:46:30 +00001485 .seq_fops = &udp6_afinfo_seq_fops,
Denis V. Lunevdda61922008-03-28 18:24:26 -07001486 .seq_ops = {
1487 .show = udp6_seq_show,
1488 },
Linus Torvalds1da177e2005-04-16 15:20:36 -07001489};
1490
Alexey Dobriyan2c8c1e72010-01-17 03:35:32 +00001491int __net_init udp6_proc_init(struct net *net)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001492{
Daniel Lezcano0c96d8c2008-03-21 04:14:17 -07001493 return udp_proc_register(net, &udp6_seq_afinfo);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001494}
1495
Ian Morrisec120da2015-08-14 22:43:38 +01001496void udp6_proc_exit(struct net *net)
1497{
Daniel Lezcano0c96d8c2008-03-21 04:14:17 -07001498 udp_proc_unregister(net, &udp6_seq_afinfo);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001499}
1500#endif /* CONFIG_PROC_FS */
1501
1502/* ------------------------------------------------------------------------ */
1503
1504struct proto udpv6_prot = {
Arnaldo Carvalho de Melo543d9cf2006-03-20 22:48:35 -08001505 .name = "UDPv6",
1506 .owner = THIS_MODULE,
Gerrit Renkerba4e58e2006-11-27 11:10:57 -08001507 .close = udp_lib_close,
Arnaldo Carvalho de Melo543d9cf2006-03-20 22:48:35 -08001508 .connect = ip6_datagram_connect,
1509 .disconnect = udp_disconnect,
1510 .ioctl = udp_ioctl,
1511 .destroy = udpv6_destroy_sock,
1512 .setsockopt = udpv6_setsockopt,
1513 .getsockopt = udpv6_getsockopt,
1514 .sendmsg = udpv6_sendmsg,
1515 .recvmsg = udpv6_recvmsg,
Benjamin LaHaisef7ad74f2012-04-27 08:23:21 +00001516 .backlog_rcv = __udpv6_queue_rcv_skb,
Martin KaFai Laue646b652016-04-11 15:29:37 -07001517 .release_cb = ip6_datagram_release_cb,
Gerrit Renkerba4e58e2006-11-27 11:10:57 -08001518 .hash = udp_lib_hash,
1519 .unhash = udp_lib_unhash,
Eric Dumazet719f8352010-09-08 05:08:44 +00001520 .rehash = udp_v6_rehash,
Arnaldo Carvalho de Melo543d9cf2006-03-20 22:48:35 -08001521 .get_port = udp_v6_get_port,
Hideo Aoki95766ff2007-12-31 00:29:24 -08001522 .memory_allocated = &udp_memory_allocated,
1523 .sysctl_mem = sysctl_udp_mem,
1524 .sysctl_wmem = &sysctl_udp_wmem_min,
1525 .sysctl_rmem = &sysctl_udp_rmem_min,
Arnaldo Carvalho de Melo543d9cf2006-03-20 22:48:35 -08001526 .obj_size = sizeof(struct udp6_sock),
Eric Dumazet645ca702008-10-29 01:41:45 -07001527 .h.udp_table = &udp_table,
Dmitry Mishin3fdadf72006-03-20 22:45:21 -08001528#ifdef CONFIG_COMPAT
Arnaldo Carvalho de Melo543d9cf2006-03-20 22:48:35 -08001529 .compat_setsockopt = compat_udpv6_setsockopt,
1530 .compat_getsockopt = compat_udpv6_getsockopt,
Dmitry Mishin3fdadf72006-03-20 22:45:21 -08001531#endif
David Ahern5d77dca2016-08-23 21:06:33 -07001532 .diag_destroy = udp_abort,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001533};
1534
Linus Torvalds1da177e2005-04-16 15:20:36 -07001535static struct inet_protosw udpv6_protosw = {
1536 .type = SOCK_DGRAM,
1537 .protocol = IPPROTO_UDP,
1538 .prot = &udpv6_prot,
1539 .ops = &inet6_dgram_ops,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001540 .flags = INET_PROTOSW_PERMANENT,
1541};
1542
Daniel Lezcano7f4e4862007-12-11 02:25:35 -08001543int __init udpv6_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001544{
Daniel Lezcano7f4e4862007-12-11 02:25:35 -08001545 int ret;
1546
Vlad Yasevich33362882012-11-15 08:49:15 +00001547 ret = inet6_add_protocol(&udpv6_protocol, IPPROTO_UDP);
1548 if (ret)
Vlad Yasevichc6b641a2012-11-15 08:49:22 +00001549 goto out;
Vlad Yasevich33362882012-11-15 08:49:15 +00001550
Daniel Lezcano7f4e4862007-12-11 02:25:35 -08001551 ret = inet6_register_protosw(&udpv6_protosw);
1552 if (ret)
1553 goto out_udpv6_protocol;
1554out:
1555 return ret;
1556
1557out_udpv6_protocol:
1558 inet6_del_protocol(&udpv6_protocol, IPPROTO_UDP);
1559 goto out;
1560}
1561
Daniel Lezcano09f77092007-12-13 05:34:58 -08001562void udpv6_exit(void)
Daniel Lezcano7f4e4862007-12-11 02:25:35 -08001563{
1564 inet6_unregister_protosw(&udpv6_protosw);
1565 inet6_del_protocol(&udpv6_protocol, IPPROTO_UDP);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001566}