blob: 6a397e110b46ac783cd979683d162b480445fabb [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * UDP over IPv6
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09003 * Linux INET6 implementation
Linus Torvalds1da177e2005-04-16 15:20:36 -07004 *
5 * Authors:
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09006 * Pedro Roque <roque@di.fc.ul.pt>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007 *
8 * Based on linux/ipv4/udp.c
9 *
Linus Torvalds1da177e2005-04-16 15:20:36 -070010 * Fixes:
11 * Hideaki YOSHIFUJI : sin6_scope_id support
12 * YOSHIFUJI Hideaki @USAGI and: Support IPV6_V6ONLY socket option, which
13 * Alexey Kuznetsov allow both IPv4 and IPv6 sockets to bind
14 * a single port at the same time.
15 * Kazunori MIYAZAWA @USAGI: change process style to use ip6_append_data
16 * YOSHIFUJI Hideaki @USAGI: convert /proc/net/udp6 to seq_file.
17 *
18 * This program is free software; you can redistribute it and/or
19 * modify it under the terms of the GNU General Public License
20 * as published by the Free Software Foundation; either version
21 * 2 of the License, or (at your option) any later version.
22 */
23
Linus Torvalds1da177e2005-04-16 15:20:36 -070024#include <linux/errno.h>
25#include <linux/types.h>
26#include <linux/socket.h>
27#include <linux/sockios.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070028#include <linux/net.h>
29#include <linux/in6.h>
30#include <linux/netdevice.h>
31#include <linux/if_arp.h>
32#include <linux/ipv6.h>
33#include <linux/icmpv6.h>
34#include <linux/init.h>
Herbert Xu1781f7f2007-12-11 11:30:32 -080035#include <linux/module.h>
Herbert Xu3305b802005-12-13 23:16:37 -080036#include <linux/skbuff.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090037#include <linux/slab.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070038#include <asm/uaccess.h>
39
Craig Gallek496611d2016-02-10 11:50:36 -050040#include <net/addrconf.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070041#include <net/ndisc.h>
42#include <net/protocol.h>
43#include <net/transp_v6.h>
44#include <net/ip6_route.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070045#include <net/raw.h>
Arnaldo Carvalho de Meloc752f072005-08-09 20:08:28 -070046#include <net/tcp_states.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070047#include <net/ip6_checksum.h>
48#include <net/xfrm.h>
Tom Herbert72289b92013-01-22 09:50:44 +000049#include <net/inet6_hashtables.h>
Eliezer Tamir076bb0c2013-07-10 17:13:17 +030050#include <net/busy_poll.h>
Craig Galleke32ea7e2016-01-04 17:41:46 -050051#include <net/sock_reuseport.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070052
53#include <linux/proc_fs.h>
54#include <linux/seq_file.h>
Eric Dumazet22911fc2012-06-27 00:23:44 +000055#include <trace/events/skb.h>
Gerrit Renkerba4e58e2006-11-27 11:10:57 -080056#include "udp_impl.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070057
Eric Dumazet6eada012015-03-18 14:05:33 -070058static u32 udp6_ehashfn(const struct net *net,
59 const struct in6_addr *laddr,
60 const u16 lport,
61 const struct in6_addr *faddr,
62 const __be16 fport)
Hannes Frederic Sowab50026b2013-10-19 21:48:52 +020063{
Hannes Frederic Sowa1bbdcee2013-10-19 21:48:57 +020064 static u32 udp6_ehash_secret __read_mostly;
65 static u32 udp_ipv6_hash_secret __read_mostly;
66
67 u32 lhash, fhash;
68
69 net_get_random_once(&udp6_ehash_secret,
70 sizeof(udp6_ehash_secret));
71 net_get_random_once(&udp_ipv6_hash_secret,
72 sizeof(udp_ipv6_hash_secret));
73
74 lhash = (__force u32)laddr->s6_addr32[3];
75 fhash = __ipv6_addr_jhash(faddr, udp_ipv6_hash_secret);
76
Hannes Frederic Sowab50026b2013-10-19 21:48:52 +020077 return __inet6_ehashfn(lhash, lport, fhash, fport,
Hannes Frederic Sowa1bbdcee2013-10-19 21:48:57 +020078 udp_ipv6_hash_secret + net_hash_mix(net));
Hannes Frederic Sowab50026b2013-10-19 21:48:52 +020079}
80
Eric Dumazet6eada012015-03-18 14:05:33 -070081static u32 udp6_portaddr_hash(const struct net *net,
82 const struct in6_addr *addr6,
83 unsigned int port)
Eric Dumazetd4cada42009-11-08 10:17:30 +000084{
85 unsigned int hash, mix = net_hash_mix(net);
86
87 if (ipv6_addr_any(addr6))
88 hash = jhash_1word(0, mix);
Brian Haley856540e2009-11-09 12:05:53 +000089 else if (ipv6_addr_v4mapped(addr6))
Eric Dumazet0eae88f2010-04-20 19:06:52 -070090 hash = jhash_1word((__force u32)addr6->s6_addr32[3], mix);
Eric Dumazetd4cada42009-11-08 10:17:30 +000091 else
Eric Dumazet0eae88f2010-04-20 19:06:52 -070092 hash = jhash2((__force u32 *)addr6->s6_addr32, 4, mix);
Eric Dumazetd4cada42009-11-08 10:17:30 +000093
94 return hash ^ port;
95}
96
Pavel Emelyanov6ba5a3c2008-03-22 16:51:21 -070097int udp_v6_get_port(struct sock *sk, unsigned short snum)
Linus Torvalds1da177e2005-04-16 15:20:36 -070098{
Eric Dumazet30fff922009-11-09 05:26:33 +000099 unsigned int hash2_nulladdr =
100 udp6_portaddr_hash(sock_net(sk), &in6addr_any, snum);
Jeffrin Jose9a52e972012-05-19 01:45:21 +0000101 unsigned int hash2_partial =
Eric Dumazetefe42082013-10-03 15:42:29 -0700102 udp6_portaddr_hash(sock_net(sk), &sk->sk_v6_rcv_saddr, 0);
Eric Dumazet30fff922009-11-09 05:26:33 +0000103
Eric Dumazetd4cada42009-11-08 10:17:30 +0000104 /* precompute partial secondary hash */
Eric Dumazet30fff922009-11-09 05:26:33 +0000105 udp_sk(sk)->udp_portaddr_hash = hash2_partial;
106 return udp_lib_get_port(sk, snum, ipv6_rcv_saddr_equal, hash2_nulladdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700107}
108
Eric Dumazet719f8352010-09-08 05:08:44 +0000109static void udp_v6_rehash(struct sock *sk)
110{
111 u16 new_hash = udp6_portaddr_hash(sock_net(sk),
Eric Dumazetefe42082013-10-03 15:42:29 -0700112 &sk->sk_v6_rcv_saddr,
Eric Dumazet719f8352010-09-08 05:08:44 +0000113 inet_sk(sk)->inet_num);
114
115 udp_lib_rehash(sk, new_hash);
116}
117
Su, Xuemind1e37282016-06-13 11:02:50 +0800118static int compute_score(struct sock *sk, struct net *net,
119 const struct in6_addr *saddr, __be16 sport,
120 const struct in6_addr *daddr, unsigned short hnum,
121 int dif)
Eric Dumazet645ca702008-10-29 01:41:45 -0700122{
Joe Perches60c04ae2014-12-01 20:29:06 -0800123 int score;
124 struct inet_sock *inet;
Eric Dumazet645ca702008-10-29 01:41:45 -0700125
Joe Perches60c04ae2014-12-01 20:29:06 -0800126 if (!net_eq(sock_net(sk), net) ||
127 udp_sk(sk)->udp_port_hash != hnum ||
128 sk->sk_family != PF_INET6)
129 return -1;
Eric Dumazet645ca702008-10-29 01:41:45 -0700130
Joe Perches60c04ae2014-12-01 20:29:06 -0800131 score = 0;
132 inet = inet_sk(sk);
133
134 if (inet->inet_dport) {
135 if (inet->inet_dport != sport)
136 return -1;
137 score++;
Eric Dumazet645ca702008-10-29 01:41:45 -0700138 }
Joe Perches60c04ae2014-12-01 20:29:06 -0800139
140 if (!ipv6_addr_any(&sk->sk_v6_rcv_saddr)) {
141 if (!ipv6_addr_equal(&sk->sk_v6_rcv_saddr, daddr))
142 return -1;
143 score++;
144 }
145
146 if (!ipv6_addr_any(&sk->sk_v6_daddr)) {
147 if (!ipv6_addr_equal(&sk->sk_v6_daddr, saddr))
148 return -1;
149 score++;
150 }
151
152 if (sk->sk_bound_dev_if) {
153 if (sk->sk_bound_dev_if != dif)
154 return -1;
155 score++;
156 }
157
Eric Dumazet70da2682015-10-08 19:33:21 -0700158 if (sk->sk_incoming_cpu == raw_smp_processor_id())
159 score++;
160
Eric Dumazet645ca702008-10-29 01:41:45 -0700161 return score;
162}
163
Su, Xuemind1e37282016-06-13 11:02:50 +0800164/* called with rcu_read_lock() */
Eric Dumazetfddc17d2009-11-08 10:18:30 +0000165static struct sock *udp6_lib_lookup2(struct net *net,
166 const struct in6_addr *saddr, __be16 sport,
167 const struct in6_addr *daddr, unsigned int hnum, int dif,
Su, Xuemind1e37282016-06-13 11:02:50 +0800168 struct udp_hslot *hslot2,
Craig Gallek11341582016-01-05 15:08:07 -0500169 struct sk_buff *skb)
Eric Dumazetfddc17d2009-11-08 10:18:30 +0000170{
171 struct sock *sk, *result;
Tom Herbert72289b92013-01-22 09:50:44 +0000172 int score, badness, matches = 0, reuseport = 0;
173 u32 hash = 0;
Eric Dumazetfddc17d2009-11-08 10:18:30 +0000174
Eric Dumazetfddc17d2009-11-08 10:18:30 +0000175 result = NULL;
176 badness = -1;
Eric Dumazetca065d02016-04-01 08:52:13 -0700177 udp_portaddr_for_each_entry_rcu(sk, &hslot2->head) {
Su, Xuemind1e37282016-06-13 11:02:50 +0800178 score = compute_score(sk, net, saddr, sport,
Eric Dumazetfddc17d2009-11-08 10:18:30 +0000179 daddr, hnum, dif);
180 if (score > badness) {
Tom Herbert72289b92013-01-22 09:50:44 +0000181 reuseport = sk->sk_reuseport;
182 if (reuseport) {
Hannes Frederic Sowab50026b2013-10-19 21:48:52 +0200183 hash = udp6_ehashfn(net, daddr, hnum,
184 saddr, sport);
Eric Dumazeted0dfff2016-01-19 08:36:43 -0800185
Eric Dumazetca065d02016-04-01 08:52:13 -0700186 result = reuseport_select_sock(sk, hash, skb,
Eric Dumazeted0dfff2016-01-19 08:36:43 -0800187 sizeof(struct udphdr));
Eric Dumazetca065d02016-04-01 08:52:13 -0700188 if (result)
189 return result;
Tom Herbert72289b92013-01-22 09:50:44 +0000190 matches = 1;
Eric Dumazet70da2682015-10-08 19:33:21 -0700191 }
Eric Dumazetca065d02016-04-01 08:52:13 -0700192 result = sk;
193 badness = score;
Tom Herbert72289b92013-01-22 09:50:44 +0000194 } else if (score == badness && reuseport) {
195 matches++;
Daniel Borkmann8fc54f62014-08-23 20:58:54 +0200196 if (reciprocal_scale(hash, matches) == 0)
Tom Herbert72289b92013-01-22 09:50:44 +0000197 result = sk;
198 hash = next_pseudo_random32(hash);
Eric Dumazetfddc17d2009-11-08 10:18:30 +0000199 }
200 }
Eric Dumazetfddc17d2009-11-08 10:18:30 +0000201 return result;
202}
203
Eric Dumazetca065d02016-04-01 08:52:13 -0700204/* rcu_read_lock() must be held */
Pavel Emelyanovfce82332011-12-09 06:23:34 +0000205struct sock *__udp6_lib_lookup(struct net *net,
Balazs Scheidler88440ae2010-10-21 16:04:33 +0200206 const struct in6_addr *saddr, __be16 sport,
207 const struct in6_addr *daddr, __be16 dport,
Craig Gallek538950a2016-01-04 17:41:47 -0500208 int dif, struct udp_table *udptable,
209 struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700210{
Eric Dumazet271b72c2008-10-29 02:11:14 -0700211 struct sock *sk, *result;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700212 unsigned short hnum = ntohs(dport);
Eric Dumazetfddc17d2009-11-08 10:18:30 +0000213 unsigned int hash2, slot2, slot = udp_hashfn(net, hnum, udptable->mask);
214 struct udp_hslot *hslot2, *hslot = &udptable->hash[slot];
Tom Herbert72289b92013-01-22 09:50:44 +0000215 int score, badness, matches = 0, reuseport = 0;
216 u32 hash = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700217
Eric Dumazetfddc17d2009-11-08 10:18:30 +0000218 if (hslot->count > 10) {
219 hash2 = udp6_portaddr_hash(net, daddr, hnum);
220 slot2 = hash2 & udptable->mask;
221 hslot2 = &udptable->hash2[slot2];
222 if (hslot->count < hslot2->count)
223 goto begin;
224
225 result = udp6_lib_lookup2(net, saddr, sport,
226 daddr, hnum, dif,
Su, Xuemind1e37282016-06-13 11:02:50 +0800227 hslot2, skb);
Eric Dumazetfddc17d2009-11-08 10:18:30 +0000228 if (!result) {
Su, Xuemind1e37282016-06-13 11:02:50 +0800229 unsigned int old_slot2 = slot2;
Eric Dumazetfddc17d2009-11-08 10:18:30 +0000230 hash2 = udp6_portaddr_hash(net, &in6addr_any, hnum);
231 slot2 = hash2 & udptable->mask;
Su, Xuemind1e37282016-06-13 11:02:50 +0800232 /* avoid searching the same slot again. */
233 if (unlikely(slot2 == old_slot2))
234 return result;
235
Eric Dumazetfddc17d2009-11-08 10:18:30 +0000236 hslot2 = &udptable->hash2[slot2];
237 if (hslot->count < hslot2->count)
238 goto begin;
239
Jorge Boncompte [DTI2]1223c672010-04-08 04:56:48 +0000240 result = udp6_lib_lookup2(net, saddr, sport,
Su, Xuemind1e37282016-06-13 11:02:50 +0800241 daddr, hnum, dif,
242 hslot2, skb);
Eric Dumazetfddc17d2009-11-08 10:18:30 +0000243 }
Eric Dumazetfddc17d2009-11-08 10:18:30 +0000244 return result;
245 }
Eric Dumazet271b72c2008-10-29 02:11:14 -0700246begin:
247 result = NULL;
248 badness = -1;
Eric Dumazetca065d02016-04-01 08:52:13 -0700249 sk_for_each_rcu(sk, &hslot->head) {
Su, Xuemind1e37282016-06-13 11:02:50 +0800250 score = compute_score(sk, net, saddr, sport, daddr, hnum, dif);
Eric Dumazet645ca702008-10-29 01:41:45 -0700251 if (score > badness) {
Tom Herbert72289b92013-01-22 09:50:44 +0000252 reuseport = sk->sk_reuseport;
253 if (reuseport) {
Hannes Frederic Sowab50026b2013-10-19 21:48:52 +0200254 hash = udp6_ehashfn(net, daddr, hnum,
255 saddr, sport);
Eric Dumazetca065d02016-04-01 08:52:13 -0700256 result = reuseport_select_sock(sk, hash, skb,
Craig Gallek538950a2016-01-04 17:41:47 -0500257 sizeof(struct udphdr));
Eric Dumazetca065d02016-04-01 08:52:13 -0700258 if (result)
259 return result;
Tom Herbert72289b92013-01-22 09:50:44 +0000260 matches = 1;
261 }
Eric Dumazetca065d02016-04-01 08:52:13 -0700262 result = sk;
263 badness = score;
Tom Herbert72289b92013-01-22 09:50:44 +0000264 } else if (score == badness && reuseport) {
265 matches++;
Daniel Borkmann8fc54f62014-08-23 20:58:54 +0200266 if (reciprocal_scale(hash, matches) == 0)
Tom Herbert72289b92013-01-22 09:50:44 +0000267 result = sk;
268 hash = next_pseudo_random32(hash);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700269 }
270 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700271 return result;
272}
Pavel Emelyanovfce82332011-12-09 06:23:34 +0000273EXPORT_SYMBOL_GPL(__udp6_lib_lookup);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700274
KOVACS Krisztian607c4aa2008-10-07 12:38:32 -0700275static struct sock *__udp6_lib_lookup_skb(struct sk_buff *skb,
276 __be16 sport, __be16 dport,
Eric Dumazet645ca702008-10-29 01:41:45 -0700277 struct udp_table *udptable)
KOVACS Krisztian607c4aa2008-10-07 12:38:32 -0700278{
Eric Dumazetb71d1d42011-04-22 04:53:02 +0000279 const struct ipv6hdr *iph = ipv6_hdr(skb);
Alexander Duycked7cbbc2016-05-12 16:23:44 -0700280 struct sock *sk;
KOVACS Krisztian607c4aa2008-10-07 12:38:32 -0700281
Ian Morrise5d08d72014-11-23 21:28:43 +0000282 sk = skb_steal_sock(skb);
283 if (unlikely(sk))
KOVACS Krisztian23542612008-10-07 12:41:01 -0700284 return sk;
Alexander Duycked7cbbc2016-05-12 16:23:44 -0700285 return __udp6_lib_lookup(dev_net(skb->dev), &iph->saddr, sport,
Eric Dumazetadf30902009-06-02 05:19:30 +0000286 &iph->daddr, dport, inet6_iif(skb),
Craig Gallek538950a2016-01-04 17:41:47 -0500287 udptable, skb);
KOVACS Krisztian607c4aa2008-10-07 12:38:32 -0700288}
289
Tom Herbert63058302016-04-05 08:22:50 -0700290struct sock *udp6_lib_lookup_skb(struct sk_buff *skb,
291 __be16 sport, __be16 dport)
292{
293 const struct ipv6hdr *iph = ipv6_hdr(skb);
Tom Herbert63058302016-04-05 08:22:50 -0700294
Alexander Duycked7cbbc2016-05-12 16:23:44 -0700295 return __udp6_lib_lookup(dev_net(skb->dev), &iph->saddr, sport,
Tom Herbert63058302016-04-05 08:22:50 -0700296 &iph->daddr, dport, inet6_iif(skb),
Martin KaFai Lau3c77e8f2019-05-31 15:29:13 -0700297 &udp_table, NULL);
Tom Herbert63058302016-04-05 08:22:50 -0700298}
299EXPORT_SYMBOL_GPL(udp6_lib_lookup_skb);
300
Eric Dumazetca065d02016-04-01 08:52:13 -0700301/* Must be called under rcu_read_lock().
302 * Does increment socket refcount.
303 */
304#if IS_ENABLED(CONFIG_NETFILTER_XT_MATCH_SOCKET) || \
305 IS_ENABLED(CONFIG_NETFILTER_XT_TARGET_TPROXY)
Balazs Scheidleraa976fc2010-10-21 16:05:41 +0200306struct sock *udp6_lib_lookup(struct net *net, const struct in6_addr *saddr, __be16 sport,
307 const struct in6_addr *daddr, __be16 dport, int dif)
308{
Eric Dumazetca065d02016-04-01 08:52:13 -0700309 struct sock *sk;
310
311 sk = __udp6_lib_lookup(net, saddr, sport, daddr, dport,
312 dif, &udp_table, NULL);
313 if (sk && !atomic_inc_not_zero(&sk->sk_refcnt))
314 sk = NULL;
315 return sk;
Balazs Scheidleraa976fc2010-10-21 16:05:41 +0200316}
317EXPORT_SYMBOL_GPL(udp6_lib_lookup);
Eric Dumazetca065d02016-04-01 08:52:13 -0700318#endif
Balazs Scheidleraa976fc2010-10-21 16:05:41 +0200319
Linus Torvalds1da177e2005-04-16 15:20:36 -0700320/*
Ian Morris67ba4152014-08-24 21:53:10 +0100321 * This should be easy, if there is something there we
322 * return it, otherwise we block.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700323 */
324
Ying Xue1b784142015-03-02 15:37:48 +0800325int udpv6_recvmsg(struct sock *sk, struct msghdr *msg, size_t len,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700326 int noblock, int flags, int *addr_len)
327{
328 struct ipv6_pinfo *np = inet6_sk(sk);
329 struct inet_sock *inet = inet_sk(sk);
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900330 struct sk_buff *skb;
David S. Miller59c2cda2011-12-01 14:12:55 -0500331 unsigned int ulen, copied;
samanthakumar627d2d62016-04-05 12:41:16 -0400332 int peeked, peeking, off;
Herbert Xu759e5d02007-03-25 20:10:56 -0700333 int err;
334 int is_udplite = IS_UDPLITE(sk);
Eric Dumazet197c9492015-12-30 08:51:12 -0500335 bool checksum_valid = false;
Wei Yongjunf26ba172008-11-02 16:11:01 +0000336 int is_udp4;
Eric Dumazet8a74ad62010-05-26 19:20:18 +0000337 bool slow;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700338
Linus Torvalds1da177e2005-04-16 15:20:36 -0700339 if (flags & MSG_ERRQUEUE)
Hannes Frederic Sowa85fbaa72013-11-23 00:46:12 +0100340 return ipv6_recv_error(sk, msg, len, addr_len);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700341
Brian Haley4b340ae2010-04-23 11:26:09 +0000342 if (np->rxpmtu && np->rxopt.bits.rxpmtu)
Hannes Frederic Sowa85fbaa72013-11-23 00:46:12 +0100343 return ipv6_recv_rxpmtu(sk, msg, len, addr_len);
Brian Haley4b340ae2010-04-23 11:26:09 +0000344
Linus Torvalds1da177e2005-04-16 15:20:36 -0700345try_again:
samanthakumar627d2d62016-04-05 12:41:16 -0400346 peeking = off = sk_peek_offset(sk, flags);
Herbert Xua59322b2007-12-05 01:53:40 -0800347 skb = __skb_recv_datagram(sk, flags | (noblock ? MSG_DONTWAIT : 0),
Pavel Emelyanov3f518bf2012-02-21 07:30:58 +0000348 &peeked, &off, &err);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700349 if (!skb)
samanthakumar627d2d62016-04-05 12:41:16 -0400350 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700351
samanthakumare6afc8a2016-04-05 12:41:15 -0400352 ulen = skb->len;
David S. Miller59c2cda2011-12-01 14:12:55 -0500353 copied = len;
samanthakumar627d2d62016-04-05 12:41:16 -0400354 if (copied > ulen - off)
355 copied = ulen - off;
David S. Miller59c2cda2011-12-01 14:12:55 -0500356 else if (copied < ulen)
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900357 msg->msg_flags |= MSG_TRUNC;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700358
Wei Yongjunf26ba172008-11-02 16:11:01 +0000359 is_udp4 = (skb->protocol == htons(ETH_P_IP));
360
Gerrit Renkerba4e58e2006-11-27 11:10:57 -0800361 /*
Herbert Xu759e5d02007-03-25 20:10:56 -0700362 * If checksum is needed at all, try to do it while copying the
363 * data. If the data is truncated, or if we only want a partial
364 * coverage checksum (UDP-Lite), do it before the copy.
Gerrit Renkerba4e58e2006-11-27 11:10:57 -0800365 */
Gerrit Renkerba4e58e2006-11-27 11:10:57 -0800366
samanthakumar627d2d62016-04-05 12:41:16 -0400367 if (copied < ulen || UDP_SKB_CB(skb)->partial_cov || peeking) {
Eric Dumazet197c9492015-12-30 08:51:12 -0500368 checksum_valid = !udp_lib_checksum_complete(skb);
369 if (!checksum_valid)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700370 goto csum_copy_err;
Gerrit Renkerba4e58e2006-11-27 11:10:57 -0800371 }
372
Eric Dumazet197c9492015-12-30 08:51:12 -0500373 if (checksum_valid || skb_csum_unnecessary(skb))
samanthakumar627d2d62016-04-05 12:41:16 -0400374 err = skb_copy_datagram_msg(skb, off, msg, copied);
Gerrit Renkerba4e58e2006-11-27 11:10:57 -0800375 else {
samanthakumar627d2d62016-04-05 12:41:16 -0400376 err = skb_copy_and_csum_datagram_msg(skb, off, msg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700377 if (err == -EINVAL)
378 goto csum_copy_err;
379 }
Eric Dumazet22911fc2012-06-27 00:23:44 +0000380 if (unlikely(err)) {
381 trace_kfree_skb(skb, udpv6_recvmsg);
Eric Dumazet979402b2012-09-05 23:34:44 +0000382 if (!peeked) {
383 atomic_inc(&sk->sk_drops);
384 if (is_udp4)
Eric Dumazet6aef70a2016-04-27 16:44:27 -0700385 UDP_INC_STATS(sock_net(sk), UDP_MIB_INERRORS,
386 is_udplite);
Eric Dumazet979402b2012-09-05 23:34:44 +0000387 else
Eric Dumazet6aef70a2016-04-27 16:44:27 -0700388 UDP6_INC_STATS(sock_net(sk), UDP_MIB_INERRORS,
389 is_udplite);
Eric Dumazet979402b2012-09-05 23:34:44 +0000390 }
samanthakumar627d2d62016-04-05 12:41:16 -0400391 skb_free_datagram_locked(sk, skb);
392 return err;
Eric Dumazet22911fc2012-06-27 00:23:44 +0000393 }
Wei Yongjunf26ba172008-11-02 16:11:01 +0000394 if (!peeked) {
395 if (is_udp4)
Eric Dumazet6aef70a2016-04-27 16:44:27 -0700396 UDP_INC_STATS(sock_net(sk), UDP_MIB_INDATAGRAMS,
397 is_udplite);
Wei Yongjunf26ba172008-11-02 16:11:01 +0000398 else
Eric Dumazet6aef70a2016-04-27 16:44:27 -0700399 UDP6_INC_STATS(sock_net(sk), UDP_MIB_INDATAGRAMS,
400 is_udplite);
Wei Yongjunf26ba172008-11-02 16:11:01 +0000401 }
Wang Chencb759942007-12-03 22:33:28 +1100402
Neil Horman3b885782009-10-12 13:26:31 -0700403 sock_recv_ts_and_drops(msg, sk, skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700404
405 /* Copy the address. */
406 if (msg->msg_name) {
Steffen Hurrle342dfc32014-01-17 22:53:15 +0100407 DECLARE_SOCKADDR(struct sockaddr_in6 *, sin6, msg->msg_name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700408 sin6->sin6_family = AF_INET6;
Arnaldo Carvalho de Melo4bedb452007-03-13 14:28:48 -0300409 sin6->sin6_port = udp_hdr(skb)->source;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700410 sin6->sin6_flowinfo = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700411
Hannes Frederic Sowa842df072013-03-08 02:07:19 +0000412 if (is_udp4) {
Brian Haleyb301e822009-10-07 13:58:25 -0700413 ipv6_addr_set_v4mapped(ip_hdr(skb)->saddr,
414 &sin6->sin6_addr);
Hannes Frederic Sowa842df072013-03-08 02:07:19 +0000415 sin6->sin6_scope_id = 0;
416 } else {
Alexey Dobriyan4e3fd7a2011-11-21 03:39:03 +0000417 sin6->sin6_addr = ipv6_hdr(skb)->saddr;
Hannes Frederic Sowa842df072013-03-08 02:07:19 +0000418 sin6->sin6_scope_id =
419 ipv6_iface_scope_id(&sin6->sin6_addr,
Duan Jiong43304872014-08-01 09:52:58 +0800420 inet6_iif(skb));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700421 }
Hannes Frederic Sowabceaa902013-11-18 04:20:45 +0100422 *addr_len = sizeof(*sin6);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700423 }
Hannes Frederic Sowa4b261c72014-01-20 03:43:08 +0100424
425 if (np->rxopt.all)
426 ip6_datagram_recv_common_ctl(sk, msg, skb);
427
Wei Yongjunf26ba172008-11-02 16:11:01 +0000428 if (is_udp4) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700429 if (inet->cmsg_flags)
Eric Dumazet10df8e62016-10-23 18:03:06 -0700430 ip_cmsg_recv_offset(msg, skb,
431 sizeof(struct udphdr), off);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700432 } else {
433 if (np->rxopt.all)
Hannes Frederic Sowa4b261c72014-01-20 03:43:08 +0100434 ip6_datagram_recv_specific_ctl(sk, msg, skb);
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900435 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700436
David S. Miller59c2cda2011-12-01 14:12:55 -0500437 err = copied;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700438 if (flags & MSG_TRUNC)
Herbert Xu759e5d02007-03-25 20:10:56 -0700439 err = ulen;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700440
samanthakumar627d2d62016-04-05 12:41:16 -0400441 __skb_free_datagram_locked(sk, skb, peeking ? -err : err);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700442 return err;
443
444csum_copy_err:
Eric Dumazet8a74ad62010-05-26 19:20:18 +0000445 slow = lock_sock_fast(sk);
Wei Yongjun0856f932008-11-02 16:14:27 +0000446 if (!skb_kill_datagram(sk, skb, flags)) {
Eric Dumazet6a5dc9e2013-04-29 08:39:56 +0000447 if (is_udp4) {
Eric Dumazet6aef70a2016-04-27 16:44:27 -0700448 UDP_INC_STATS(sock_net(sk),
449 UDP_MIB_CSUMERRORS, is_udplite);
450 UDP_INC_STATS(sock_net(sk),
451 UDP_MIB_INERRORS, is_udplite);
Eric Dumazet6a5dc9e2013-04-29 08:39:56 +0000452 } else {
Eric Dumazet6aef70a2016-04-27 16:44:27 -0700453 UDP6_INC_STATS(sock_net(sk),
454 UDP_MIB_CSUMERRORS, is_udplite);
455 UDP6_INC_STATS(sock_net(sk),
456 UDP_MIB_INERRORS, is_udplite);
Eric Dumazet6a5dc9e2013-04-29 08:39:56 +0000457 }
Wei Yongjun0856f932008-11-02 16:14:27 +0000458 }
Eric Dumazet8a74ad62010-05-26 19:20:18 +0000459 unlock_sock_fast(sk, slow);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700460
Eric Dumazetbeb39db2015-05-30 09:16:53 -0700461 /* starting over for a new packet, but check if we need to yield */
462 cond_resched();
Xufeng Zhang9cfaa8d2011-06-21 10:43:40 +0000463 msg->msg_flags &= ~MSG_TRUNC;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700464 goto try_again;
465}
466
Gerrit Renkerba4e58e2006-11-27 11:10:57 -0800467void __udp6_lib_err(struct sk_buff *skb, struct inet6_skb_parm *opt,
Brian Haleyd5fdd6b2009-06-23 04:31:07 -0700468 u8 type, u8 code, int offset, __be32 info,
Eric Dumazet645ca702008-10-29 01:41:45 -0700469 struct udp_table *udptable)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700470{
471 struct ipv6_pinfo *np;
Eric Dumazetb71d1d42011-04-22 04:53:02 +0000472 const struct ipv6hdr *hdr = (const struct ipv6hdr *)skb->data;
473 const struct in6_addr *saddr = &hdr->saddr;
474 const struct in6_addr *daddr = &hdr->daddr;
Ian Morris67ba4152014-08-24 21:53:10 +0100475 struct udphdr *uh = (struct udphdr *)(skb->data+offset);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700476 struct sock *sk;
Wei Wange0d8c1b2016-02-17 13:58:22 -0800477 int harderr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700478 int err;
Duan Jiong7304fe42014-07-31 17:54:32 +0800479 struct net *net = dev_net(skb->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700480
Craig Galleke32ea7e2016-01-04 17:41:46 -0500481 sk = __udp6_lib_lookup(net, daddr, uh->dest, saddr, uh->source,
Martin KaFai Lau0f00d442019-05-31 15:29:11 -0700482 inet6_iif(skb), udptable, NULL);
Ian Morris63159f22015-03-29 14:00:04 +0100483 if (!sk) {
Eric Dumazeta16292a2016-04-27 16:44:36 -0700484 __ICMP6_INC_STATS(net, __in6_dev_get(skb->dev),
485 ICMP6_MIB_INERRORS);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700486 return;
Duan Jiong7304fe42014-07-31 17:54:32 +0800487 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700488
Wei Wange0d8c1b2016-02-17 13:58:22 -0800489 harderr = icmpv6_err_convert(type, code, &err);
490 np = inet6_sk(sk);
491
Hannes Frederic Sowa93b36cf2013-12-15 03:41:14 +0100492 if (type == ICMPV6_PKT_TOOBIG) {
493 if (!ip6_sk_accept_pmtu(sk))
494 goto out;
David S. Miller81aded22012-06-15 14:54:11 -0700495 ip6_sk_update_pmtu(skb, sk, info);
Wei Wange0d8c1b2016-02-17 13:58:22 -0800496 if (np->pmtudisc != IPV6_PMTUDISC_DONT)
497 harderr = 1;
Hannes Frederic Sowa93b36cf2013-12-15 03:41:14 +0100498 }
Duan Jiong1a462d12013-09-20 18:20:28 +0800499 if (type == NDISC_REDIRECT) {
David S. Millerec18d9a2012-07-12 00:25:15 -0700500 ip6_sk_redirect(skb, sk);
Duan Jiong1a462d12013-09-20 18:20:28 +0800501 goto out;
502 }
David S. Miller81aded22012-06-15 14:54:11 -0700503
Wei Wange0d8c1b2016-02-17 13:58:22 -0800504 if (!np->recverr) {
505 if (!harderr || sk->sk_state != TCP_ESTABLISHED)
506 goto out;
507 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700508 ipv6_icmp_error(sk, skb, err, uh->dest, ntohl(info), (u8 *)(uh+1));
Wei Wange0d8c1b2016-02-17 13:58:22 -0800509 }
Eric Dumazetb1faf562010-05-31 23:44:05 -0700510
Linus Torvalds1da177e2005-04-16 15:20:36 -0700511 sk->sk_err = err;
512 sk->sk_error_report(sk);
513out:
Eric Dumazetca065d02016-04-01 08:52:13 -0700514 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700515}
516
Eric Dumazet30c7be22016-11-22 09:06:45 -0800517int __udpv6_queue_rcv_skb(struct sock *sk, struct sk_buff *skb)
Benjamin LaHaisef7ad74f2012-04-27 08:23:21 +0000518{
519 int rc;
520
Eric Dumazetefe42082013-10-03 15:42:29 -0700521 if (!ipv6_addr_any(&sk->sk_v6_daddr)) {
Benjamin LaHaisef7ad74f2012-04-27 08:23:21 +0000522 sock_rps_save_rxhash(sk, skb);
Shawn Bohrer005ec972013-10-07 11:01:38 -0500523 sk_mark_napi_id(sk, skb);
Eric Dumazet2c8c56e2014-11-11 05:54:28 -0800524 sk_incoming_cpu_update(sk);
Shawn Bohrer005ec972013-10-07 11:01:38 -0500525 }
Benjamin LaHaisef7ad74f2012-04-27 08:23:21 +0000526
samanthakumare6afc8a2016-04-05 12:41:15 -0400527 rc = __sock_queue_rcv_skb(sk, skb);
Benjamin LaHaisef7ad74f2012-04-27 08:23:21 +0000528 if (rc < 0) {
529 int is_udplite = IS_UDPLITE(sk);
530
531 /* Note that an ENOMEM error is charged twice */
532 if (rc == -ENOMEM)
Eric Dumazete61da9e2016-04-29 14:16:50 -0700533 UDP6_INC_STATS(sock_net(sk),
Eric Dumazet02c22342016-04-27 16:44:30 -0700534 UDP_MIB_RCVBUFERRORS, is_udplite);
Eric Dumazete61da9e2016-04-29 14:16:50 -0700535 UDP6_INC_STATS(sock_net(sk), UDP_MIB_INERRORS, is_udplite);
Benjamin LaHaisef7ad74f2012-04-27 08:23:21 +0000536 kfree_skb(skb);
537 return -1;
538 }
539 return 0;
540}
541
Gerrit Renkerba4e58e2006-11-27 11:10:57 -0800542static __inline__ void udpv6_err(struct sk_buff *skb,
Brian Haleyd5fdd6b2009-06-23 04:31:07 -0700543 struct inet6_skb_parm *opt, u8 type,
Ian Morris67ba4152014-08-24 21:53:10 +0100544 u8 code, int offset, __be32 info)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700545{
Eric Dumazet645ca702008-10-29 01:41:45 -0700546 __udp6_lib_err(skb, opt, type, code, offset, info, &udp_table);
Gerrit Renkerba4e58e2006-11-27 11:10:57 -0800547}
548
Benjamin LaHaised7f3f622012-04-27 08:24:08 +0000549static struct static_key udpv6_encap_needed __read_mostly;
550void udpv6_encap_enable(void)
551{
552 if (!static_key_enabled(&udpv6_encap_needed))
553 static_key_slow_inc(&udpv6_encap_needed);
554}
555EXPORT_SYMBOL(udpv6_encap_enable);
556
Benjamin LaHaisef7ad74f2012-04-27 08:23:21 +0000557int udpv6_queue_rcv_skb(struct sock *sk, struct sk_buff *skb)
Gerrit Renkerba4e58e2006-11-27 11:10:57 -0800558{
559 struct udp_sock *up = udp_sk(sk);
David S. Millera18135e2006-08-15 00:00:09 -0700560 int rc;
Wang Chenb2bf1e22007-12-03 22:34:16 +1100561 int is_udplite = IS_UDPLITE(sk);
David S. Millera18135e2006-08-15 00:00:09 -0700562
Gerrit Renkerba4e58e2006-11-27 11:10:57 -0800563 if (!xfrm6_policy_check(sk, XFRM_POLICY_IN, skb))
564 goto drop;
565
Benjamin LaHaised7f3f622012-04-27 08:24:08 +0000566 if (static_key_false(&udpv6_encap_needed) && up->encap_type) {
567 int (*encap_rcv)(struct sock *sk, struct sk_buff *skb);
568
569 /*
570 * This is an encapsulation socket so pass the skb to
571 * the socket's udp_encap_rcv() hook. Otherwise, just
572 * fall through and pass this up the UDP socket.
573 * up->encap_rcv() returns the following value:
574 * =0 if skb was successfully passed to the encap
575 * handler or was discarded by it.
576 * >0 if skb should be passed on to UDP.
577 * <0 if skb should be resubmitted as proto -N
578 */
579
580 /* if we're overly short, let UDP handle it */
581 encap_rcv = ACCESS_ONCE(up->encap_rcv);
Hannes Frederic Sowae5aed002016-05-19 15:58:33 +0200582 if (encap_rcv) {
Benjamin LaHaised7f3f622012-04-27 08:24:08 +0000583 int ret;
584
Tom Herbert0a809662014-05-07 16:52:39 -0700585 /* Verify checksum before giving to encap */
586 if (udp_lib_checksum_complete(skb))
587 goto csum_error;
588
Benjamin LaHaised7f3f622012-04-27 08:24:08 +0000589 ret = encap_rcv(sk, skb);
590 if (ret <= 0) {
Eric Dumazet02c22342016-04-27 16:44:30 -0700591 __UDP_INC_STATS(sock_net(sk),
592 UDP_MIB_INDATAGRAMS,
593 is_udplite);
Benjamin LaHaised7f3f622012-04-27 08:24:08 +0000594 return -ret;
595 }
596 }
597
598 /* FALLTHROUGH -- it's a UDP Packet */
599 }
600
Gerrit Renkerba4e58e2006-11-27 11:10:57 -0800601 /*
602 * UDP-Lite specific tests, ignored on UDP sockets (see net/ipv4/udp.c).
603 */
Wang Chenb2bf1e22007-12-03 22:34:16 +1100604 if ((is_udplite & UDPLITE_RECV_CC) && UDP_SKB_CB(skb)->partial_cov) {
Gerrit Renkerba4e58e2006-11-27 11:10:57 -0800605
606 if (up->pcrlen == 0) { /* full coverage was set */
Joe Perchesba7a46f2014-11-11 10:59:17 -0800607 net_dbg_ratelimited("UDPLITE6: partial coverage %d while full coverage %d requested\n",
608 UDP_SKB_CB(skb)->cscov, skb->len);
Gerrit Renkerba4e58e2006-11-27 11:10:57 -0800609 goto drop;
610 }
611 if (UDP_SKB_CB(skb)->cscov < up->pcrlen) {
Joe Perchesba7a46f2014-11-11 10:59:17 -0800612 net_dbg_ratelimited("UDPLITE6: coverage %d too small, need min %d\n",
613 UDP_SKB_CB(skb)->cscov, up->pcrlen);
Gerrit Renkerba4e58e2006-11-27 11:10:57 -0800614 goto drop;
615 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700616 }
617
Eric Dumazetce25d662016-06-02 14:52:43 -0700618 if (rcu_access_pointer(sk->sk_filter) &&
619 udp_lib_checksum_complete(skb))
620 goto csum_error;
621
Daniel Borkmannba66bbe2016-07-25 18:06:12 +0200622 if (sk_filter_trim_cap(sk, skb, sizeof(struct udphdr)))
Michal Kubečeka6127692016-07-08 17:52:33 +0200623 goto drop;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700624
samanthakumare6afc8a2016-04-05 12:41:15 -0400625 udp_csum_pull_header(skb);
Sorin Dumitru274f4822014-07-22 21:16:51 +0300626 if (sk_rcvqueues_full(sk, sk->sk_rcvbuf)) {
Eric Dumazet02c22342016-04-27 16:44:30 -0700627 __UDP6_INC_STATS(sock_net(sk),
628 UDP_MIB_RCVBUFERRORS, is_udplite);
Benjamin LaHaisecb80ef42012-04-27 08:23:59 +0000629 goto drop;
James M Leddy3e215c82014-06-25 17:38:13 -0400630 }
Benjamin LaHaisecb80ef42012-04-27 08:23:59 +0000631
Eric Dumazetd826eb12011-11-09 07:24:35 +0000632 skb_dst_drop(skb);
Wang Chencb759942007-12-03 22:33:28 +1100633
Benjamin LaHaisecb80ef42012-04-27 08:23:59 +0000634 bh_lock_sock(sk);
635 rc = 0;
636 if (!sock_owned_by_user(sk))
637 rc = __udpv6_queue_rcv_skb(sk, skb);
638 else if (sk_add_backlog(sk, skb, sk->sk_rcvbuf)) {
639 bh_unlock_sock(sk);
640 goto drop;
641 }
642 bh_unlock_sock(sk);
Benjamin LaHaisef7ad74f2012-04-27 08:23:21 +0000643
644 return rc;
James M Leddy3e215c82014-06-25 17:38:13 -0400645
Eric Dumazet6a5dc9e2013-04-29 08:39:56 +0000646csum_error:
Eric Dumazet02c22342016-04-27 16:44:30 -0700647 __UDP6_INC_STATS(sock_net(sk), UDP_MIB_CSUMERRORS, is_udplite);
Gerrit Renkerba4e58e2006-11-27 11:10:57 -0800648drop:
Eric Dumazet02c22342016-04-27 16:44:30 -0700649 __UDP6_INC_STATS(sock_net(sk), UDP_MIB_INERRORS, is_udplite);
Benjamin LaHaisecb80ef42012-04-27 08:23:59 +0000650 atomic_inc(&sk->sk_drops);
Gerrit Renkerba4e58e2006-11-27 11:10:57 -0800651 kfree_skb(skb);
652 return -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700653}
654
David Held5cf3d462014-07-15 23:28:31 -0400655static bool __udp_v6_is_mcast_sock(struct net *net, struct sock *sk,
656 __be16 loc_port, const struct in6_addr *loc_addr,
657 __be16 rmt_port, const struct in6_addr *rmt_addr,
658 int dif, unsigned short hnum)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700659{
David Held5cf3d462014-07-15 23:28:31 -0400660 struct inet_sock *inet = inet_sk(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700661
David Held5cf3d462014-07-15 23:28:31 -0400662 if (!net_eq(sock_net(sk), net))
663 return false;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700664
David Held5cf3d462014-07-15 23:28:31 -0400665 if (udp_sk(sk)->udp_port_hash != hnum ||
666 sk->sk_family != PF_INET6 ||
667 (inet->inet_dport && inet->inet_dport != rmt_port) ||
668 (!ipv6_addr_any(&sk->sk_v6_daddr) &&
669 !ipv6_addr_equal(&sk->sk_v6_daddr, rmt_addr)) ||
Henning Rogge33b4b012015-05-18 21:08:49 +0200670 (sk->sk_bound_dev_if && sk->sk_bound_dev_if != dif) ||
671 (!ipv6_addr_any(&sk->sk_v6_rcv_saddr) &&
672 !ipv6_addr_equal(&sk->sk_v6_rcv_saddr, loc_addr)))
David Held5cf3d462014-07-15 23:28:31 -0400673 return false;
674 if (!inet6_mc_check(sk, loc_addr, rmt_addr))
675 return false;
676 return true;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700677}
678
Tom Herbert40685792014-05-02 16:29:58 -0700679static void udp6_csum_zero_error(struct sk_buff *skb)
680{
681 /* RFC 2460 section 8.1 says that we SHOULD log
682 * this error. Well, it is reasonable.
683 */
Joe Perchesba7a46f2014-11-11 10:59:17 -0800684 net_dbg_ratelimited("IPv6: udp checksum is 0 for [%pI6c]:%u->[%pI6c]:%u\n",
685 &ipv6_hdr(skb)->saddr, ntohs(udp_hdr(skb)->source),
686 &ipv6_hdr(skb)->daddr, ntohs(udp_hdr(skb)->dest));
Tom Herbert40685792014-05-02 16:29:58 -0700687}
688
Linus Torvalds1da177e2005-04-16 15:20:36 -0700689/*
690 * Note: called only from the BH handler context,
691 * so we don't need to lock the hashes.
692 */
Pavel Emelyanove3163492008-06-16 17:12:11 -0700693static int __udp6_lib_mcast_deliver(struct net *net, struct sk_buff *skb,
Eric Dumazetb71d1d42011-04-22 04:53:02 +0000694 const struct in6_addr *saddr, const struct in6_addr *daddr,
Rick Jones36cbb242014-11-06 10:37:54 -0800695 struct udp_table *udptable, int proto)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700696{
Eric Dumazetca065d02016-04-01 08:52:13 -0700697 struct sock *sk, *first = NULL;
Arnaldo Carvalho de Melo4bedb452007-03-13 14:28:48 -0300698 const struct udphdr *uh = udp_hdr(skb);
David Held5cf3d462014-07-15 23:28:31 -0400699 unsigned short hnum = ntohs(uh->dest);
700 struct udp_hslot *hslot = udp_hashslot(udptable, net, hnum);
Eric Dumazetca065d02016-04-01 08:52:13 -0700701 unsigned int offset = offsetof(typeof(*sk), sk_node);
David Held2dc41cf2014-07-15 23:28:32 -0400702 unsigned int hash2 = 0, hash2_any = 0, use_hash2 = (hslot->count > 10);
Eric Dumazetca065d02016-04-01 08:52:13 -0700703 int dif = inet6_iif(skb);
704 struct hlist_node *node;
705 struct sk_buff *nskb;
David Held2dc41cf2014-07-15 23:28:32 -0400706
707 if (use_hash2) {
708 hash2_any = udp6_portaddr_hash(net, &in6addr_any, hnum) &
Pablo Neira73e2d5e2016-11-14 23:40:30 +0100709 udptable->mask;
710 hash2 = udp6_portaddr_hash(net, daddr, hnum) & udptable->mask;
David Held2dc41cf2014-07-15 23:28:32 -0400711start_lookup:
Pablo Neira73e2d5e2016-11-14 23:40:30 +0100712 hslot = &udptable->hash2[hash2];
David Held2dc41cf2014-07-15 23:28:32 -0400713 offset = offsetof(typeof(*sk), __sk_common.skc_portaddr_node);
714 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700715
Eric Dumazetca065d02016-04-01 08:52:13 -0700716 sk_for_each_entry_offset_rcu(sk, node, &hslot->head, offset) {
717 if (!__udp_v6_is_mcast_sock(net, sk, uh->dest, daddr,
718 uh->source, saddr, dif, hnum))
719 continue;
720 /* If zero checksum and no_check is not on for
721 * the socket then skip it.
722 */
723 if (!uh->check && !udp_sk(sk)->no_check6_rx)
724 continue;
725 if (!first) {
726 first = sk;
727 continue;
Hideo Aoki95766ff2007-12-31 00:29:24 -0800728 }
Eric Dumazetca065d02016-04-01 08:52:13 -0700729 nskb = skb_clone(skb, GFP_ATOMIC);
730 if (unlikely(!nskb)) {
731 atomic_inc(&sk->sk_drops);
Eric Dumazet02c22342016-04-27 16:44:30 -0700732 __UDP6_INC_STATS(net, UDP_MIB_RCVBUFERRORS,
733 IS_UDPLITE(sk));
734 __UDP6_INC_STATS(net, UDP_MIB_INERRORS,
735 IS_UDPLITE(sk));
Eric Dumazetca065d02016-04-01 08:52:13 -0700736 continue;
737 }
Eric Dumazeta1ab77f2009-11-08 10:18:52 +0000738
Eric Dumazetca065d02016-04-01 08:52:13 -0700739 if (udpv6_queue_rcv_skb(sk, nskb) > 0)
740 consume_skb(nskb);
741 }
Eric Dumazeta1ab77f2009-11-08 10:18:52 +0000742
David Held2dc41cf2014-07-15 23:28:32 -0400743 /* Also lookup *:port if we are using hash2 and haven't done so yet. */
744 if (use_hash2 && hash2 != hash2_any) {
745 hash2 = hash2_any;
746 goto start_lookup;
747 }
748
Eric Dumazetca065d02016-04-01 08:52:13 -0700749 if (first) {
750 if (udpv6_queue_rcv_skb(first, skb) > 0)
751 consume_skb(skb);
Eric Dumazeta1ab77f2009-11-08 10:18:52 +0000752 } else {
Eric Dumazetca065d02016-04-01 08:52:13 -0700753 kfree_skb(skb);
Eric Dumazet02c22342016-04-27 16:44:30 -0700754 __UDP6_INC_STATS(net, UDP_MIB_IGNOREDMULTI,
755 proto == IPPROTO_UDPLITE);
Eric Dumazeta1ab77f2009-11-08 10:18:52 +0000756 }
Gerrit Renkerba4e58e2006-11-27 11:10:57 -0800757 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700758}
759
Eric Dumazet645ca702008-10-29 01:41:45 -0700760int __udp6_lib_rcv(struct sk_buff *skb, struct udp_table *udptable,
Herbert Xu759e5d02007-03-25 20:10:56 -0700761 int proto)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700762{
Eric Dumazetb71d1d42011-04-22 04:53:02 +0000763 const struct in6_addr *saddr, *daddr;
Eric Dumazetca065d02016-04-01 08:52:13 -0700764 struct net *net = dev_net(skb->dev);
765 struct udphdr *uh;
766 struct sock *sk;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700767 u32 ulen = 0;
768
769 if (!pskb_may_pull(skb, sizeof(struct udphdr)))
Bjørn Morkd6bc0142010-05-06 03:44:35 +0000770 goto discard;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700771
Arnaldo Carvalho de Melo0660e032007-04-25 17:54:47 -0700772 saddr = &ipv6_hdr(skb)->saddr;
773 daddr = &ipv6_hdr(skb)->daddr;
Arnaldo Carvalho de Melo4bedb452007-03-13 14:28:48 -0300774 uh = udp_hdr(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700775
776 ulen = ntohs(uh->len);
Gerrit Renkerba4e58e2006-11-27 11:10:57 -0800777 if (ulen > skb->len)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700778 goto short_packet;
779
Herbert Xu759e5d02007-03-25 20:10:56 -0700780 if (proto == IPPROTO_UDP) {
781 /* UDP validates ulen. */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700782
Gerrit Renkerba4e58e2006-11-27 11:10:57 -0800783 /* Check for jumbo payload */
784 if (ulen == 0)
785 ulen = skb->len;
786
787 if (ulen < sizeof(*uh))
788 goto short_packet;
789
790 if (ulen < skb->len) {
791 if (pskb_trim_rcsum(skb, ulen))
792 goto short_packet;
Arnaldo Carvalho de Melo0660e032007-04-25 17:54:47 -0700793 saddr = &ipv6_hdr(skb)->saddr;
794 daddr = &ipv6_hdr(skb)->daddr;
Arnaldo Carvalho de Melo4bedb452007-03-13 14:28:48 -0300795 uh = udp_hdr(skb);
Gerrit Renkerba4e58e2006-11-27 11:10:57 -0800796 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700797 }
798
Herbert Xu759e5d02007-03-25 20:10:56 -0700799 if (udp6_csum_init(skb, uh, proto))
Eric Dumazet6a5dc9e2013-04-29 08:39:56 +0000800 goto csum_error;
Herbert Xu759e5d02007-03-25 20:10:56 -0700801
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900802 /*
803 * Multicast receive code
Linus Torvalds1da177e2005-04-16 15:20:36 -0700804 */
Gerrit Renkerba4e58e2006-11-27 11:10:57 -0800805 if (ipv6_addr_is_multicast(daddr))
Pavel Emelyanove3163492008-06-16 17:12:11 -0700806 return __udp6_lib_mcast_deliver(net, skb,
Rick Jones36cbb242014-11-06 10:37:54 -0800807 saddr, daddr, udptable, proto);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700808
809 /* Unicast */
810
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900811 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700812 * check socket cache ... must talk to Alan about his plans
813 * for sock caches... i'll skip this for now.
814 */
KOVACS Krisztian607c4aa2008-10-07 12:38:32 -0700815 sk = __udp6_lib_lookup_skb(skb, uh->source, uh->dest, udptable);
Ian Morris53b24b82015-03-29 14:00:05 +0100816 if (sk) {
Eliezer Tamira5b50472013-06-10 11:40:00 +0300817 int ret;
818
Tom Herbert1c194482014-05-23 08:47:32 -0700819 if (!uh->check && !udp_sk(sk)->no_check6_rx) {
Tom Herbert40685792014-05-02 16:29:58 -0700820 udp6_csum_zero_error(skb);
821 goto csum_error;
822 }
823
Tom Herbert224d0192015-01-05 13:56:14 -0800824 if (inet_get_convert_csum(sk) && uh->check && !IS_UDPLITE(sk))
Tom Herbert2abb7cd2014-08-31 15:12:43 -0700825 skb_checksum_try_convert(skb, IPPROTO_UDP, uh->check,
826 ip6_compute_pseudo);
827
Eliezer Tamira5b50472013-06-10 11:40:00 +0300828 ret = udpv6_queue_rcv_skb(sk, skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700829
Bill Sommerfeld59dca1d2016-03-04 14:47:21 -0800830 /* a return value > 0 means to resubmit the input */
Benjamin LaHaisecb80ef42012-04-27 08:23:59 +0000831 if (ret > 0)
Bill Sommerfeld59dca1d2016-03-04 14:47:21 -0800832 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700833
Stephen Hemmingeradd459a2007-03-08 20:42:35 -0800834 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700835 }
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900836
Tom Herbert40685792014-05-02 16:29:58 -0700837 if (!uh->check) {
838 udp6_csum_zero_error(skb);
839 goto csum_error;
840 }
841
Benjamin LaHaisecb80ef42012-04-27 08:23:59 +0000842 if (!xfrm6_policy_check(NULL, XFRM_POLICY_IN, skb))
843 goto discard;
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900844
Benjamin LaHaisecb80ef42012-04-27 08:23:59 +0000845 if (udp_lib_checksum_complete(skb))
Eric Dumazet6a5dc9e2013-04-29 08:39:56 +0000846 goto csum_error;
Benjamin LaHaisecb80ef42012-04-27 08:23:59 +0000847
Eric Dumazet02c22342016-04-27 16:44:30 -0700848 __UDP6_INC_STATS(net, UDP_MIB_NOPORTS, proto == IPPROTO_UDPLITE);
Benjamin LaHaisecb80ef42012-04-27 08:23:59 +0000849 icmpv6_send(skb, ICMPV6_DEST_UNREACH, ICMPV6_PORT_UNREACH, 0);
850
851 kfree_skb(skb);
Stephen Hemmingeradd459a2007-03-08 20:42:35 -0800852 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700853
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900854short_packet:
Joe Perchesba7a46f2014-11-11 10:59:17 -0800855 net_dbg_ratelimited("UDP%sv6: short packet: From [%pI6c]:%u %d/%d to [%pI6c]:%u\n",
856 proto == IPPROTO_UDPLITE ? "-Lite" : "",
857 saddr, ntohs(uh->source),
858 ulen, skb->len,
859 daddr, ntohs(uh->dest));
Eric Dumazet6a5dc9e2013-04-29 08:39:56 +0000860 goto discard;
861csum_error:
Eric Dumazet02c22342016-04-27 16:44:30 -0700862 __UDP6_INC_STATS(net, UDP_MIB_CSUMERRORS, proto == IPPROTO_UDPLITE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700863discard:
Eric Dumazet02c22342016-04-27 16:44:30 -0700864 __UDP6_INC_STATS(net, UDP_MIB_INERRORS, proto == IPPROTO_UDPLITE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700865 kfree_skb(skb);
Stephen Hemmingeradd459a2007-03-08 20:42:35 -0800866 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700867}
Gerrit Renkerba4e58e2006-11-27 11:10:57 -0800868
Herbert Xue5bbef22007-10-15 12:50:28 -0700869static __inline__ int udpv6_rcv(struct sk_buff *skb)
Gerrit Renkerba4e58e2006-11-27 11:10:57 -0800870{
Eric Dumazet645ca702008-10-29 01:41:45 -0700871 return __udp6_lib_rcv(skb, &udp_table, IPPROTO_UDP);
Gerrit Renkerba4e58e2006-11-27 11:10:57 -0800872}
873
Linus Torvalds1da177e2005-04-16 15:20:36 -0700874/*
875 * Throw away all pending data and cancel the corking. Socket is locked.
876 */
877static void udp_v6_flush_pending_frames(struct sock *sk)
878{
879 struct udp_sock *up = udp_sk(sk);
880
Denis V. Lunev36d926b2008-06-04 15:49:07 +0400881 if (up->pending == AF_INET)
882 udp_flush_pending_frames(sk);
883 else if (up->pending) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700884 up->len = 0;
885 up->pending = 0;
886 ip6_flush_pending_frames(sk);
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900887 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700888}
889
Sridhar Samudrala493c6be2009-07-09 08:09:54 +0000890/**
Ian Morris67ba4152014-08-24 21:53:10 +0100891 * udp6_hwcsum_outgoing - handle outgoing HW checksumming
892 * @sk: socket we are sending on
893 * @skb: sk_buff containing the filled-in UDP header
894 * (checksum field must be zeroed out)
Sridhar Samudrala493c6be2009-07-09 08:09:54 +0000895 */
896static void udp6_hwcsum_outgoing(struct sock *sk, struct sk_buff *skb,
897 const struct in6_addr *saddr,
898 const struct in6_addr *daddr, int len)
899{
900 unsigned int offset;
901 struct udphdr *uh = udp_hdr(skb);
Vlad Yasevichd39d9382015-01-31 10:40:16 -0500902 struct sk_buff *frags = skb_shinfo(skb)->frag_list;
Sridhar Samudrala493c6be2009-07-09 08:09:54 +0000903 __wsum csum = 0;
904
Vlad Yasevichd39d9382015-01-31 10:40:16 -0500905 if (!frags) {
Sridhar Samudrala493c6be2009-07-09 08:09:54 +0000906 /* Only one fragment on the socket. */
907 skb->csum_start = skb_transport_header(skb) - skb->head;
908 skb->csum_offset = offsetof(struct udphdr, check);
909 uh->check = ~csum_ipv6_magic(saddr, daddr, len, IPPROTO_UDP, 0);
910 } else {
911 /*
912 * HW-checksum won't work as there are two or more
913 * fragments on the socket so that all csums of sk_buffs
914 * should be together
915 */
916 offset = skb_transport_offset(skb);
917 skb->csum = skb_checksum(skb, offset, skb->len - offset, 0);
Subash Abhinov Kasiviswanathanf0a5af72017-09-13 19:30:51 -0600918 csum = skb->csum;
Sridhar Samudrala493c6be2009-07-09 08:09:54 +0000919
920 skb->ip_summed = CHECKSUM_NONE;
921
Vlad Yasevichd39d9382015-01-31 10:40:16 -0500922 do {
923 csum = csum_add(csum, frags->csum);
924 } while ((frags = frags->next));
Sridhar Samudrala493c6be2009-07-09 08:09:54 +0000925
926 uh->check = csum_ipv6_magic(saddr, daddr, len, IPPROTO_UDP,
927 csum);
928 if (uh->check == 0)
929 uh->check = CSUM_MANGLED_0;
930 }
931}
932
Linus Torvalds1da177e2005-04-16 15:20:36 -0700933/*
934 * Sending
935 */
936
Vlad Yasevichd39d9382015-01-31 10:40:16 -0500937static int udp_v6_send_skb(struct sk_buff *skb, struct flowi6 *fl6)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700938{
Vlad Yasevichd39d9382015-01-31 10:40:16 -0500939 struct sock *sk = skb->sk;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700940 struct udphdr *uh;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700941 int err = 0;
Wang Chenb2bf1e22007-12-03 22:34:16 +1100942 int is_udplite = IS_UDPLITE(sk);
Al Viro868c86b2006-11-14 21:35:48 -0800943 __wsum csum = 0;
Vlad Yasevichd39d9382015-01-31 10:40:16 -0500944 int offset = skb_transport_offset(skb);
945 int len = skb->len - offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700946
947 /*
948 * Create a UDP header
949 */
Arnaldo Carvalho de Melo4bedb452007-03-13 14:28:48 -0300950 uh = udp_hdr(skb);
David S. Miller1958b852011-03-12 16:36:19 -0500951 uh->source = fl6->fl6_sport;
952 uh->dest = fl6->fl6_dport;
Vlad Yasevichd39d9382015-01-31 10:40:16 -0500953 uh->len = htons(len);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700954 uh->check = 0;
955
Wang Chenb2bf1e22007-12-03 22:34:16 +1100956 if (is_udplite)
Vlad Yasevichd39d9382015-01-31 10:40:16 -0500957 csum = udplite_csum(skb);
958 else if (udp_sk(sk)->no_check6_tx) { /* UDP csum disabled */
Tom Herbert40685792014-05-02 16:29:58 -0700959 skb->ip_summed = CHECKSUM_NONE;
960 goto send;
961 } else if (skb->ip_summed == CHECKSUM_PARTIAL) { /* UDP hardware csum */
Vlad Yasevichd39d9382015-01-31 10:40:16 -0500962 udp6_hwcsum_outgoing(sk, skb, &fl6->saddr, &fl6->daddr, len);
Sridhar Samudrala493c6be2009-07-09 08:09:54 +0000963 goto send;
964 } else
Vlad Yasevichd39d9382015-01-31 10:40:16 -0500965 csum = udp_csum(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700966
Gerrit Renkerba4e58e2006-11-27 11:10:57 -0800967 /* add protocol-dependent pseudo-header */
David S. Miller4c9483b2011-03-12 16:22:43 -0500968 uh->check = csum_ipv6_magic(&fl6->saddr, &fl6->daddr,
Vlad Yasevichd39d9382015-01-31 10:40:16 -0500969 len, fl6->flowi6_proto, csum);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700970 if (uh->check == 0)
Al Virof6ab0282006-11-16 02:36:50 -0800971 uh->check = CSUM_MANGLED_0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700972
Sridhar Samudrala493c6be2009-07-09 08:09:54 +0000973send:
Vlad Yasevichd39d9382015-01-31 10:40:16 -0500974 err = ip6_send_skb(skb);
Eric Dumazet6ce9e7b2009-09-02 18:05:33 -0700975 if (err) {
976 if (err == -ENOBUFS && !inet6_sk(sk)->recverr) {
Eric Dumazet6aef70a2016-04-27 16:44:27 -0700977 UDP6_INC_STATS(sock_net(sk),
978 UDP_MIB_SNDBUFERRORS, is_udplite);
Eric Dumazet6ce9e7b2009-09-02 18:05:33 -0700979 err = 0;
980 }
Eric Dumazet6aef70a2016-04-27 16:44:27 -0700981 } else {
982 UDP6_INC_STATS(sock_net(sk),
983 UDP_MIB_OUTDATAGRAMS, is_udplite);
984 }
Vlad Yasevichd39d9382015-01-31 10:40:16 -0500985 return err;
986}
987
988static int udp_v6_push_pending_frames(struct sock *sk)
989{
990 struct sk_buff *skb;
991 struct udp_sock *up = udp_sk(sk);
992 struct flowi6 fl6;
993 int err = 0;
994
995 if (up->pending == AF_INET)
996 return udp_push_pending_frames(sk);
997
998 /* ip6_finish_skb will release the cork, so make a copy of
999 * fl6 here.
1000 */
1001 fl6 = inet_sk(sk)->cork.fl.u.ip6;
1002
1003 skb = ip6_finish_skb(sk);
1004 if (!skb)
1005 goto out;
1006
1007 err = udp_v6_send_skb(skb, &fl6);
1008
Linus Torvalds1da177e2005-04-16 15:20:36 -07001009out:
1010 up->len = 0;
1011 up->pending = 0;
1012 return err;
1013}
1014
Ying Xue1b784142015-03-02 15:37:48 +08001015int udpv6_sendmsg(struct sock *sk, struct msghdr *msg, size_t len)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001016{
1017 struct ipv6_txoptions opt_space;
1018 struct udp_sock *up = udp_sk(sk);
1019 struct inet_sock *inet = inet_sk(sk);
1020 struct ipv6_pinfo *np = inet6_sk(sk);
Steffen Hurrle342dfc32014-01-17 22:53:15 +01001021 DECLARE_SOCKADDR(struct sockaddr_in6 *, sin6, msg->msg_name);
Arnaud Ebalard20c59de2010-06-01 21:35:01 +00001022 struct in6_addr *daddr, *final_p, final;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001023 struct ipv6_txoptions *opt = NULL;
Eric Dumazet45f6fad2015-11-29 19:37:57 -08001024 struct ipv6_txoptions *opt_to_free = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001025 struct ip6_flowlabel *flowlabel = NULL;
David S. Miller4c9483b2011-03-12 16:22:43 -05001026 struct flowi6 fl6;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001027 struct dst_entry *dst;
Wei Wang26879da2016-05-02 21:40:07 -07001028 struct ipcm6_cookie ipc6;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001029 int addr_len = msg->msg_namelen;
1030 int ulen = len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001031 int corkreq = up->corkflag || msg->msg_flags&MSG_MORE;
1032 int err;
Mitsuru KANDA987905d2005-09-18 00:30:08 -07001033 int connected = 0;
Wang Chenb2bf1e22007-12-03 22:34:16 +11001034 int is_udplite = IS_UDPLITE(sk);
Gerrit Renkerba4e58e2006-11-27 11:10:57 -08001035 int (*getfrag)(void *, char *, int, int, int, struct sk_buff *);
Soheil Hassas Yeganehad1e46a2016-04-02 23:08:11 -04001036 struct sockcm_cookie sockc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001037
Wei Wang26879da2016-05-02 21:40:07 -07001038 ipc6.hlimit = -1;
1039 ipc6.tclass = -1;
1040 ipc6.dontfrag = -1;
Alexander Potapenkod80caeb2017-03-21 17:14:27 +01001041 sockc.tsflags = sk->sk_tsflags;
Wei Wang26879da2016-05-02 21:40:07 -07001042
Linus Torvalds1da177e2005-04-16 15:20:36 -07001043 /* destination address check */
1044 if (sin6) {
1045 if (addr_len < offsetof(struct sockaddr, sa_data))
1046 return -EINVAL;
1047
1048 switch (sin6->sin6_family) {
1049 case AF_INET6:
1050 if (addr_len < SIN6_LEN_RFC2133)
1051 return -EINVAL;
1052 daddr = &sin6->sin6_addr;
Jonathan T. Leighton12ec2562017-05-23 21:53:33 -04001053 if (ipv6_addr_any(daddr) &&
1054 ipv6_addr_v4mapped(&np->saddr))
1055 ipv6_addr_set_v4mapped(htonl(INADDR_LOOPBACK),
1056 daddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001057 break;
1058 case AF_INET:
1059 goto do_udp_sendmsg;
1060 case AF_UNSPEC:
1061 msg->msg_name = sin6 = NULL;
1062 msg->msg_namelen = addr_len = 0;
1063 daddr = NULL;
1064 break;
1065 default:
1066 return -EINVAL;
1067 }
1068 } else if (!up->pending) {
1069 if (sk->sk_state != TCP_ESTABLISHED)
1070 return -EDESTADDRREQ;
Eric Dumazetefe42082013-10-03 15:42:29 -07001071 daddr = &sk->sk_v6_daddr;
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09001072 } else
Linus Torvalds1da177e2005-04-16 15:20:36 -07001073 daddr = NULL;
1074
1075 if (daddr) {
Brian Haleye773e4f2007-08-24 23:16:08 -07001076 if (ipv6_addr_v4mapped(daddr)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001077 struct sockaddr_in sin;
1078 sin.sin_family = AF_INET;
Eric Dumazetc720c7e2009-10-15 06:30:45 +00001079 sin.sin_port = sin6 ? sin6->sin6_port : inet->inet_dport;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001080 sin.sin_addr.s_addr = daddr->s6_addr32[3];
1081 msg->msg_name = &sin;
1082 msg->msg_namelen = sizeof(sin);
1083do_udp_sendmsg:
1084 if (__ipv6_only_sock(sk))
1085 return -ENETUNREACH;
Ying Xue1b784142015-03-02 15:37:48 +08001086 return udp_sendmsg(sk, msg, len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001087 }
1088 }
1089
1090 if (up->pending == AF_INET)
Ying Xue1b784142015-03-02 15:37:48 +08001091 return udp_sendmsg(sk, msg, len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001092
1093 /* Rough check on arithmetic overflow,
YOSHIFUJI Hideakib59e1392007-03-30 14:45:35 -07001094 better check is made in ip6_append_data().
Linus Torvalds1da177e2005-04-16 15:20:36 -07001095 */
1096 if (len > INT_MAX - sizeof(struct udphdr))
1097 return -EMSGSIZE;
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09001098
Vlad Yasevich03485f22015-01-31 10:40:17 -05001099 getfrag = is_udplite ? udplite_getfrag : ip_generic_getfrag;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001100 if (up->pending) {
1101 /*
1102 * There are pending frames.
1103 * The socket lock must be held while it's corked.
1104 */
1105 lock_sock(sk);
1106 if (likely(up->pending)) {
1107 if (unlikely(up->pending != AF_INET6)) {
1108 release_sock(sk);
1109 return -EAFNOSUPPORT;
1110 }
1111 dst = NULL;
1112 goto do_append_data;
1113 }
1114 release_sock(sk);
1115 }
1116 ulen += sizeof(struct udphdr);
1117
David S. Miller4c9483b2011-03-12 16:22:43 -05001118 memset(&fl6, 0, sizeof(fl6));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001119
1120 if (sin6) {
1121 if (sin6->sin6_port == 0)
1122 return -EINVAL;
1123
David S. Miller1958b852011-03-12 16:36:19 -05001124 fl6.fl6_dport = sin6->sin6_port;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001125 daddr = &sin6->sin6_addr;
1126
1127 if (np->sndflow) {
David S. Miller4c9483b2011-03-12 16:22:43 -05001128 fl6.flowlabel = sin6->sin6_flowinfo&IPV6_FLOWINFO_MASK;
1129 if (fl6.flowlabel&IPV6_FLOWLABEL_MASK) {
1130 flowlabel = fl6_sock_lookup(sk, fl6.flowlabel);
Ian Morris63159f22015-03-29 14:00:04 +01001131 if (!flowlabel)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001132 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001133 }
1134 }
1135
1136 /*
1137 * Otherwise it will be difficult to maintain
1138 * sk->sk_dst_cache.
1139 */
1140 if (sk->sk_state == TCP_ESTABLISHED &&
Eric Dumazetefe42082013-10-03 15:42:29 -07001141 ipv6_addr_equal(daddr, &sk->sk_v6_daddr))
1142 daddr = &sk->sk_v6_daddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001143
1144 if (addr_len >= sizeof(struct sockaddr_in6) &&
1145 sin6->sin6_scope_id &&
Hannes Frederic Sowa842df072013-03-08 02:07:19 +00001146 __ipv6_addr_needs_scope_id(__ipv6_addr_type(daddr)))
David S. Miller4c9483b2011-03-12 16:22:43 -05001147 fl6.flowi6_oif = sin6->sin6_scope_id;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001148 } else {
1149 if (sk->sk_state != TCP_ESTABLISHED)
1150 return -EDESTADDRREQ;
1151
David S. Miller1958b852011-03-12 16:36:19 -05001152 fl6.fl6_dport = inet->inet_dport;
Eric Dumazetefe42082013-10-03 15:42:29 -07001153 daddr = &sk->sk_v6_daddr;
David S. Miller4c9483b2011-03-12 16:22:43 -05001154 fl6.flowlabel = np->flow_label;
Mitsuru KANDA987905d2005-09-18 00:30:08 -07001155 connected = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001156 }
1157
David S. Miller4c9483b2011-03-12 16:22:43 -05001158 if (!fl6.flowi6_oif)
1159 fl6.flowi6_oif = sk->sk_bound_dev_if;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001160
David S. Miller4c9483b2011-03-12 16:22:43 -05001161 if (!fl6.flowi6_oif)
1162 fl6.flowi6_oif = np->sticky_pktinfo.ipi6_ifindex;
Yang Hongyang9f690db2008-12-16 02:08:29 -08001163
David S. Miller4c9483b2011-03-12 16:22:43 -05001164 fl6.flowi6_mark = sk->sk_mark;
Brian Haley51953d52009-10-05 08:24:16 +00001165
Linus Torvalds1da177e2005-04-16 15:20:36 -07001166 if (msg->msg_controllen) {
1167 opt = &opt_space;
1168 memset(opt, 0, sizeof(struct ipv6_txoptions));
1169 opt->tot_len = sizeof(*opt);
Wei Wang26879da2016-05-02 21:40:07 -07001170 ipc6.opt = opt;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001171
Wei Wang26879da2016-05-02 21:40:07 -07001172 err = ip6_datagram_send_ctl(sock_net(sk), sk, msg, &fl6, &ipc6, &sockc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001173 if (err < 0) {
1174 fl6_sock_release(flowlabel);
1175 return err;
1176 }
David S. Miller4c9483b2011-03-12 16:22:43 -05001177 if ((fl6.flowlabel&IPV6_FLOWLABEL_MASK) && !flowlabel) {
1178 flowlabel = fl6_sock_lookup(sk, fl6.flowlabel);
Ian Morris63159f22015-03-29 14:00:04 +01001179 if (!flowlabel)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001180 return -EINVAL;
1181 }
1182 if (!(opt->opt_nflen|opt->opt_flen))
1183 opt = NULL;
Mitsuru KANDA987905d2005-09-18 00:30:08 -07001184 connected = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001185 }
Eric Dumazet45f6fad2015-11-29 19:37:57 -08001186 if (!opt) {
1187 opt = txopt_get(np);
1188 opt_to_free = opt;
1189 }
YOSHIFUJI Hideakidf9890c2005-11-20 12:23:18 +09001190 if (flowlabel)
1191 opt = fl6_merge_options(&opt_space, flowlabel, opt);
1192 opt = ipv6_fixup_options(&opt_space, opt);
Wei Wang26879da2016-05-02 21:40:07 -07001193 ipc6.opt = opt;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001194
David S. Miller4c9483b2011-03-12 16:22:43 -05001195 fl6.flowi6_proto = sk->sk_protocol;
Brian Haley876c7f42008-04-11 00:38:24 -04001196 if (!ipv6_addr_any(daddr))
Alexey Dobriyan4e3fd7a2011-11-21 03:39:03 +00001197 fl6.daddr = *daddr;
Brian Haley876c7f42008-04-11 00:38:24 -04001198 else
David S. Miller4c9483b2011-03-12 16:22:43 -05001199 fl6.daddr.s6_addr[15] = 0x1; /* :: means loopback (BSD'ism) */
1200 if (ipv6_addr_any(&fl6.saddr) && !ipv6_addr_any(&np->saddr))
Alexey Dobriyan4e3fd7a2011-11-21 03:39:03 +00001201 fl6.saddr = np->saddr;
David S. Miller1958b852011-03-12 16:36:19 -05001202 fl6.fl6_sport = inet->inet_sport;
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09001203
David S. Miller4c9483b2011-03-12 16:22:43 -05001204 final_p = fl6_update_dst(&fl6, opt, &final);
Arnaud Ebalard20c59de2010-06-01 21:35:01 +00001205 if (final_p)
Mitsuru KANDA987905d2005-09-18 00:30:08 -07001206 connected = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001207
David S. Miller4c9483b2011-03-12 16:22:43 -05001208 if (!fl6.flowi6_oif && ipv6_addr_is_multicast(&fl6.daddr)) {
1209 fl6.flowi6_oif = np->mcast_oif;
Mitsuru KANDA987905d2005-09-18 00:30:08 -07001210 connected = 0;
Erich E. Hooverc4062df2012-02-08 09:11:08 +00001211 } else if (!fl6.flowi6_oif)
1212 fl6.flowi6_oif = np->ucast_oif;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001213
David S. Miller4c9483b2011-03-12 16:22:43 -05001214 security_sk_classify_flow(sk, flowi6_to_flowi(&fl6));
Venkat Yekkiralabeb8d132006-08-04 23:12:42 -07001215
Hannes Frederic Sowa38b70972016-06-11 20:08:19 +02001216 if (ipc6.tclass < 0)
1217 ipc6.tclass = np->tclass;
1218
1219 fl6.flowlabel = ip6_make_flowinfo(ipc6.tclass, fl6.flowlabel);
1220
Steffen Klassert0e0d44a2013-08-28 08:04:14 +02001221 dst = ip6_sk_dst_lookup_flow(sk, &fl6, final_p);
David S. Miller68d0c6d2011-03-01 13:19:07 -08001222 if (IS_ERR(dst)) {
1223 err = PTR_ERR(dst);
1224 dst = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001225 goto out;
David S. Miller14e50e52007-05-24 18:17:54 -07001226 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001227
Wei Wang26879da2016-05-02 21:40:07 -07001228 if (ipc6.hlimit < 0)
1229 ipc6.hlimit = ip6_sk_dst_hoplimit(np, &fl6, dst);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001230
1231 if (msg->msg_flags&MSG_CONFIRM)
1232 goto do_confirm;
1233back_from_confirm:
1234
Vlad Yasevich03485f22015-01-31 10:40:17 -05001235 /* Lockless fast path for the non-corking case */
1236 if (!corkreq) {
1237 struct sk_buff *skb;
1238
1239 skb = ip6_make_skb(sk, getfrag, msg, ulen,
Wei Wang26879da2016-05-02 21:40:07 -07001240 sizeof(struct udphdr), &ipc6,
Vlad Yasevich03485f22015-01-31 10:40:17 -05001241 &fl6, (struct rt6_info *)dst,
Wei Wang26879da2016-05-02 21:40:07 -07001242 msg->msg_flags, &sockc);
Vlad Yasevich03485f22015-01-31 10:40:17 -05001243 err = PTR_ERR(skb);
1244 if (!IS_ERR_OR_NULL(skb))
1245 err = udp_v6_send_skb(skb, &fl6);
1246 goto release_dst;
1247 }
1248
Linus Torvalds1da177e2005-04-16 15:20:36 -07001249 lock_sock(sk);
1250 if (unlikely(up->pending)) {
1251 /* The socket is already corked while preparing it. */
1252 /* ... which is an evident application bug. --ANK */
1253 release_sock(sk);
1254
Joe Perchesba7a46f2014-11-11 10:59:17 -08001255 net_dbg_ratelimited("udp cork app bug 2\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001256 err = -EINVAL;
1257 goto out;
1258 }
1259
1260 up->pending = AF_INET6;
1261
1262do_append_data:
Wei Wang26879da2016-05-02 21:40:07 -07001263 if (ipc6.dontfrag < 0)
1264 ipc6.dontfrag = np->dontfrag;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001265 up->len += ulen;
Wei Wang26879da2016-05-02 21:40:07 -07001266 err = ip6_append_data(sk, getfrag, msg, ulen, sizeof(struct udphdr),
1267 &ipc6, &fl6, (struct rt6_info *)dst,
1268 corkreq ? msg->msg_flags|MSG_MORE : msg->msg_flags, &sockc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001269 if (err)
1270 udp_v6_flush_pending_frames(sk);
1271 else if (!corkreq)
Gerrit Renker4c0a6cb2006-11-27 09:29:59 -08001272 err = udp_v6_push_pending_frames(sk);
Herbert Xu1e0c14f2006-10-03 14:35:49 -07001273 else if (unlikely(skb_queue_empty(&sk->sk_write_queue)))
1274 up->pending = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001275
Vlad Yasevich03485f22015-01-31 10:40:17 -05001276 if (err > 0)
1277 err = np->recverr ? net_xmit_errno(err) : 0;
1278 release_sock(sk);
1279
1280release_dst:
David S. Millera5e7c212005-10-03 14:21:58 -07001281 if (dst) {
1282 if (connected) {
1283 ip6_dst_store(sk, dst,
Eric Dumazetefe42082013-10-03 15:42:29 -07001284 ipv6_addr_equal(&fl6.daddr, &sk->sk_v6_daddr) ?
1285 &sk->sk_v6_daddr : NULL,
YOSHIFUJI Hideaki8e1ef0a2006-08-29 17:15:09 -07001286#ifdef CONFIG_IPV6_SUBTREES
David S. Miller4c9483b2011-03-12 16:22:43 -05001287 ipv6_addr_equal(&fl6.saddr, &np->saddr) ?
YOSHIFUJI Hideaki8e1ef0a2006-08-29 17:15:09 -07001288 &np->saddr :
1289#endif
1290 NULL);
David S. Millera5e7c212005-10-03 14:21:58 -07001291 } else {
1292 dst_release(dst);
1293 }
YOSHIFUJI Hideakia3c96082008-06-04 01:30:25 +09001294 dst = NULL;
David S. Millera5e7c212005-10-03 14:21:58 -07001295 }
1296
Linus Torvalds1da177e2005-04-16 15:20:36 -07001297out:
YOSHIFUJI Hideakia3c96082008-06-04 01:30:25 +09001298 dst_release(dst);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001299 fl6_sock_release(flowlabel);
Eric Dumazet45f6fad2015-11-29 19:37:57 -08001300 txopt_put(opt_to_free);
YOSHIFUJI Hideakicd562c92007-09-14 17:15:01 -07001301 if (!err)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001302 return len;
David S. Millera18135e2006-08-15 00:00:09 -07001303 /*
1304 * ENOBUFS = no kernel mem, SOCK_NOSPACE = no sndbuf space. Reporting
1305 * ENOBUFS might not be good (it's not tunable per se), but otherwise
1306 * we don't have a good statistic (IpOutDiscards but it can be too many
1307 * things). We could add another new stat but at least for now that
1308 * seems like overkill.
1309 */
1310 if (err == -ENOBUFS || test_bit(SOCK_NOSPACE, &sk->sk_socket->flags)) {
Eric Dumazet6aef70a2016-04-27 16:44:27 -07001311 UDP6_INC_STATS(sock_net(sk),
1312 UDP_MIB_SNDBUFERRORS, is_udplite);
David S. Millera18135e2006-08-15 00:00:09 -07001313 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001314 return err;
1315
1316do_confirm:
1317 dst_confirm(dst);
1318 if (!(msg->msg_flags&MSG_PROBE) || len)
1319 goto back_from_confirm;
1320 err = 0;
1321 goto out;
1322}
1323
Brian Haley7d06b2e2008-06-14 17:04:49 -07001324void udpv6_destroy_sock(struct sock *sk)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001325{
Tom Parkin44046a52013-03-19 06:11:12 +00001326 struct udp_sock *up = udp_sk(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001327 lock_sock(sk);
1328 udp_v6_flush_pending_frames(sk);
1329 release_sock(sk);
1330
Tom Parkin44046a52013-03-19 06:11:12 +00001331 if (static_key_false(&udpv6_encap_needed) && up->encap_type) {
1332 void (*encap_destroy)(struct sock *sk);
1333 encap_destroy = ACCESS_ONCE(up->encap_destroy);
1334 if (encap_destroy)
1335 encap_destroy(sk);
1336 }
1337
Linus Torvalds1da177e2005-04-16 15:20:36 -07001338 inet6_destroy_sock(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001339}
1340
1341/*
1342 * Socket option code for UDP
1343 */
Gerrit Renkerba4e58e2006-11-27 11:10:57 -08001344int udpv6_setsockopt(struct sock *sk, int level, int optname,
David S. Millerb7058842009-09-30 16:12:20 -07001345 char __user *optval, unsigned int optlen)
Dmitry Mishin3fdadf72006-03-20 22:45:21 -08001346{
David S. Millerdb8dac22008-03-06 16:22:02 -08001347 if (level == SOL_UDP || level == SOL_UDPLITE)
Gerrit Renker4c0a6cb2006-11-27 09:29:59 -08001348 return udp_lib_setsockopt(sk, level, optname, optval, optlen,
1349 udp_v6_push_pending_frames);
Gerrit Renkerba4e58e2006-11-27 11:10:57 -08001350 return ipv6_setsockopt(sk, level, optname, optval, optlen);
Dmitry Mishin3fdadf72006-03-20 22:45:21 -08001351}
1352
1353#ifdef CONFIG_COMPAT
Gerrit Renkerba4e58e2006-11-27 11:10:57 -08001354int compat_udpv6_setsockopt(struct sock *sk, int level, int optname,
David S. Millerb7058842009-09-30 16:12:20 -07001355 char __user *optval, unsigned int optlen)
Dmitry Mishin3fdadf72006-03-20 22:45:21 -08001356{
David S. Millerdb8dac22008-03-06 16:22:02 -08001357 if (level == SOL_UDP || level == SOL_UDPLITE)
Gerrit Renker4c0a6cb2006-11-27 09:29:59 -08001358 return udp_lib_setsockopt(sk, level, optname, optval, optlen,
1359 udp_v6_push_pending_frames);
Gerrit Renkerba4e58e2006-11-27 11:10:57 -08001360 return compat_ipv6_setsockopt(sk, level, optname, optval, optlen);
Dmitry Mishin3fdadf72006-03-20 22:45:21 -08001361}
1362#endif
1363
Gerrit Renkerba4e58e2006-11-27 11:10:57 -08001364int udpv6_getsockopt(struct sock *sk, int level, int optname,
1365 char __user *optval, int __user *optlen)
Dmitry Mishin3fdadf72006-03-20 22:45:21 -08001366{
David S. Millerdb8dac22008-03-06 16:22:02 -08001367 if (level == SOL_UDP || level == SOL_UDPLITE)
Gerrit Renker4c0a6cb2006-11-27 09:29:59 -08001368 return udp_lib_getsockopt(sk, level, optname, optval, optlen);
Gerrit Renkerba4e58e2006-11-27 11:10:57 -08001369 return ipv6_getsockopt(sk, level, optname, optval, optlen);
Dmitry Mishin3fdadf72006-03-20 22:45:21 -08001370}
1371
1372#ifdef CONFIG_COMPAT
Gerrit Renkerba4e58e2006-11-27 11:10:57 -08001373int compat_udpv6_getsockopt(struct sock *sk, int level, int optname,
1374 char __user *optval, int __user *optlen)
Dmitry Mishin3fdadf72006-03-20 22:45:21 -08001375{
David S. Millerdb8dac22008-03-06 16:22:02 -08001376 if (level == SOL_UDP || level == SOL_UDPLITE)
Gerrit Renker4c0a6cb2006-11-27 09:29:59 -08001377 return udp_lib_getsockopt(sk, level, optname, optval, optlen);
Gerrit Renkerba4e58e2006-11-27 11:10:57 -08001378 return compat_ipv6_getsockopt(sk, level, optname, optval, optlen);
Dmitry Mishin3fdadf72006-03-20 22:45:21 -08001379}
1380#endif
1381
Alexey Dobriyan41135cc2009-09-14 12:22:28 +00001382static const struct inet6_protocol udpv6_protocol = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001383 .handler = udpv6_rcv,
1384 .err_handler = udpv6_err,
1385 .flags = INET6_PROTO_NOPOLICY|INET6_PROTO_FINAL,
1386};
1387
1388/* ------------------------------------------------------------------------ */
1389#ifdef CONFIG_PROC_FS
Gerrit Renkerba4e58e2006-11-27 11:10:57 -08001390int udp6_seq_show(struct seq_file *seq, void *v)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001391{
Lorenzo Colitti17ef66af2013-05-31 15:05:48 +00001392 if (v == SEQ_START_TOKEN) {
1393 seq_puts(seq, IPV6_SEQ_DGRAM_HEADER);
1394 } else {
1395 int bucket = ((struct udp_iter_state *)seq->private)->bucket;
1396 struct inet_sock *inet = inet_sk(v);
1397 __u16 srcp = ntohs(inet->inet_sport);
1398 __u16 destp = ntohs(inet->inet_dport);
1399 ip6_dgram_sock_seq_show(seq, v, srcp, destp, bucket);
1400 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001401 return 0;
1402}
1403
Arjan van de Ven73cb88e2011-10-30 06:46:30 +00001404static const struct file_operations udp6_afinfo_seq_fops = {
1405 .owner = THIS_MODULE,
1406 .open = udp_seq_open,
1407 .read = seq_read,
1408 .llseek = seq_lseek,
1409 .release = seq_release_net
1410};
1411
Linus Torvalds1da177e2005-04-16 15:20:36 -07001412static struct udp_seq_afinfo udp6_seq_afinfo = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001413 .name = "udp6",
1414 .family = AF_INET6,
Eric Dumazet645ca702008-10-29 01:41:45 -07001415 .udp_table = &udp_table,
Arjan van de Ven73cb88e2011-10-30 06:46:30 +00001416 .seq_fops = &udp6_afinfo_seq_fops,
Denis V. Lunevdda61922008-03-28 18:24:26 -07001417 .seq_ops = {
1418 .show = udp6_seq_show,
1419 },
Linus Torvalds1da177e2005-04-16 15:20:36 -07001420};
1421
Alexey Dobriyan2c8c1e72010-01-17 03:35:32 +00001422int __net_init udp6_proc_init(struct net *net)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001423{
Daniel Lezcano0c96d8c2008-03-21 04:14:17 -07001424 return udp_proc_register(net, &udp6_seq_afinfo);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001425}
1426
Ian Morrisec120da2015-08-14 22:43:38 +01001427void udp6_proc_exit(struct net *net)
1428{
Daniel Lezcano0c96d8c2008-03-21 04:14:17 -07001429 udp_proc_unregister(net, &udp6_seq_afinfo);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001430}
1431#endif /* CONFIG_PROC_FS */
1432
1433/* ------------------------------------------------------------------------ */
1434
1435struct proto udpv6_prot = {
Arnaldo Carvalho de Melo543d9cf2006-03-20 22:48:35 -08001436 .name = "UDPv6",
1437 .owner = THIS_MODULE,
Gerrit Renkerba4e58e2006-11-27 11:10:57 -08001438 .close = udp_lib_close,
Arnaldo Carvalho de Melo543d9cf2006-03-20 22:48:35 -08001439 .connect = ip6_datagram_connect,
1440 .disconnect = udp_disconnect,
1441 .ioctl = udp_ioctl,
1442 .destroy = udpv6_destroy_sock,
1443 .setsockopt = udpv6_setsockopt,
1444 .getsockopt = udpv6_getsockopt,
1445 .sendmsg = udpv6_sendmsg,
1446 .recvmsg = udpv6_recvmsg,
Benjamin LaHaisef7ad74f2012-04-27 08:23:21 +00001447 .backlog_rcv = __udpv6_queue_rcv_skb,
Martin KaFai Laue646b652016-04-11 15:29:37 -07001448 .release_cb = ip6_datagram_release_cb,
Gerrit Renkerba4e58e2006-11-27 11:10:57 -08001449 .hash = udp_lib_hash,
1450 .unhash = udp_lib_unhash,
Eric Dumazet719f8352010-09-08 05:08:44 +00001451 .rehash = udp_v6_rehash,
Arnaldo Carvalho de Melo543d9cf2006-03-20 22:48:35 -08001452 .get_port = udp_v6_get_port,
Hideo Aoki95766ff2007-12-31 00:29:24 -08001453 .memory_allocated = &udp_memory_allocated,
1454 .sysctl_mem = sysctl_udp_mem,
1455 .sysctl_wmem = &sysctl_udp_wmem_min,
1456 .sysctl_rmem = &sysctl_udp_rmem_min,
Arnaldo Carvalho de Melo543d9cf2006-03-20 22:48:35 -08001457 .obj_size = sizeof(struct udp6_sock),
Eric Dumazet645ca702008-10-29 01:41:45 -07001458 .h.udp_table = &udp_table,
Dmitry Mishin3fdadf72006-03-20 22:45:21 -08001459#ifdef CONFIG_COMPAT
Arnaldo Carvalho de Melo543d9cf2006-03-20 22:48:35 -08001460 .compat_setsockopt = compat_udpv6_setsockopt,
1461 .compat_getsockopt = compat_udpv6_getsockopt,
Dmitry Mishin3fdadf72006-03-20 22:45:21 -08001462#endif
David Ahern5d77dca2016-08-23 21:06:33 -07001463 .diag_destroy = udp_abort,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001464};
1465
Linus Torvalds1da177e2005-04-16 15:20:36 -07001466static struct inet_protosw udpv6_protosw = {
1467 .type = SOCK_DGRAM,
1468 .protocol = IPPROTO_UDP,
1469 .prot = &udpv6_prot,
1470 .ops = &inet6_dgram_ops,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001471 .flags = INET_PROTOSW_PERMANENT,
1472};
1473
Daniel Lezcano7f4e4862007-12-11 02:25:35 -08001474int __init udpv6_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001475{
Daniel Lezcano7f4e4862007-12-11 02:25:35 -08001476 int ret;
1477
Vlad Yasevich33362882012-11-15 08:49:15 +00001478 ret = inet6_add_protocol(&udpv6_protocol, IPPROTO_UDP);
1479 if (ret)
Vlad Yasevichc6b641a2012-11-15 08:49:22 +00001480 goto out;
Vlad Yasevich33362882012-11-15 08:49:15 +00001481
Daniel Lezcano7f4e4862007-12-11 02:25:35 -08001482 ret = inet6_register_protosw(&udpv6_protosw);
1483 if (ret)
1484 goto out_udpv6_protocol;
1485out:
1486 return ret;
1487
1488out_udpv6_protocol:
1489 inet6_del_protocol(&udpv6_protocol, IPPROTO_UDP);
1490 goto out;
1491}
1492
Daniel Lezcano09f77092007-12-13 05:34:58 -08001493void udpv6_exit(void)
Daniel Lezcano7f4e4862007-12-11 02:25:35 -08001494{
1495 inet6_unregister_protosw(&udpv6_protosw);
1496 inet6_del_protocol(&udpv6_protocol, IPPROTO_UDP);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001497}