blob: 8990856f5101eaabaf14d4017df522f37845083b [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 Torvalds7c0f6ba2016-12-24 11:46:01 -080038#include <linux/uaccess.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070039
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),
297 &udp_table, skb);
298}
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) || \
Arnd Bergmann30f58152016-11-08 14:28:18 +0100305 IS_ENABLED(CONFIG_NETFILTER_XT_TARGET_TPROXY) || \
306 IS_ENABLED(CONFIG_NF_SOCKET_IPV6)
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;
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);
Paolo Abeni7c13f972016-11-04 11:28:59 +0100347 skb = __skb_recv_udp(sk, flags, noblock, &peeked, &off, &err);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700348 if (!skb)
samanthakumar627d2d62016-04-05 12:41:16 -0400349 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700350
samanthakumare6afc8a2016-04-05 12:41:15 -0400351 ulen = skb->len;
David S. Miller59c2cda2011-12-01 14:12:55 -0500352 copied = len;
samanthakumar627d2d62016-04-05 12:41:16 -0400353 if (copied > ulen - off)
354 copied = ulen - off;
David S. Miller59c2cda2011-12-01 14:12:55 -0500355 else if (copied < ulen)
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900356 msg->msg_flags |= MSG_TRUNC;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700357
Wei Yongjunf26ba172008-11-02 16:11:01 +0000358 is_udp4 = (skb->protocol == htons(ETH_P_IP));
359
Gerrit Renkerba4e58e2006-11-27 11:10:57 -0800360 /*
Herbert Xu759e5d02007-03-25 20:10:56 -0700361 * If checksum is needed at all, try to do it while copying the
362 * data. If the data is truncated, or if we only want a partial
363 * coverage checksum (UDP-Lite), do it before the copy.
Gerrit Renkerba4e58e2006-11-27 11:10:57 -0800364 */
Gerrit Renkerba4e58e2006-11-27 11:10:57 -0800365
Eric Dumazetd21dbdf2016-11-18 17:18:03 -0800366 if (copied < ulen || peeking ||
367 (is_udplite && UDP_SKB_CB(skb)->partial_cov)) {
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)) {
Eric Dumazet979402b2012-09-05 23:34:44 +0000381 if (!peeked) {
382 atomic_inc(&sk->sk_drops);
383 if (is_udp4)
Eric Dumazet6aef70a2016-04-27 16:44:27 -0700384 UDP_INC_STATS(sock_net(sk), UDP_MIB_INERRORS,
385 is_udplite);
Eric Dumazet979402b2012-09-05 23:34:44 +0000386 else
Eric Dumazet6aef70a2016-04-27 16:44:27 -0700387 UDP6_INC_STATS(sock_net(sk), UDP_MIB_INERRORS,
388 is_udplite);
Eric Dumazet979402b2012-09-05 23:34:44 +0000389 }
Paolo Abeni850cbad2016-10-21 13:55:47 +0200390 kfree_skb(skb);
samanthakumar627d2d62016-04-05 12:41:16 -0400391 return err;
Eric Dumazet22911fc2012-06-27 00:23:44 +0000392 }
Wei Yongjunf26ba172008-11-02 16:11:01 +0000393 if (!peeked) {
394 if (is_udp4)
Eric Dumazet6aef70a2016-04-27 16:44:27 -0700395 UDP_INC_STATS(sock_net(sk), UDP_MIB_INDATAGRAMS,
396 is_udplite);
Wei Yongjunf26ba172008-11-02 16:11:01 +0000397 else
Eric Dumazet6aef70a2016-04-27 16:44:27 -0700398 UDP6_INC_STATS(sock_net(sk), UDP_MIB_INDATAGRAMS,
399 is_udplite);
Wei Yongjunf26ba172008-11-02 16:11:01 +0000400 }
Wang Chencb759942007-12-03 22:33:28 +1100401
Neil Horman3b885782009-10-12 13:26:31 -0700402 sock_recv_ts_and_drops(msg, sk, skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700403
404 /* Copy the address. */
405 if (msg->msg_name) {
Steffen Hurrle342dfc32014-01-17 22:53:15 +0100406 DECLARE_SOCKADDR(struct sockaddr_in6 *, sin6, msg->msg_name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700407 sin6->sin6_family = AF_INET6;
Arnaldo Carvalho de Melo4bedb452007-03-13 14:28:48 -0300408 sin6->sin6_port = udp_hdr(skb)->source;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700409 sin6->sin6_flowinfo = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700410
Hannes Frederic Sowa842df072013-03-08 02:07:19 +0000411 if (is_udp4) {
Brian Haleyb301e822009-10-07 13:58:25 -0700412 ipv6_addr_set_v4mapped(ip_hdr(skb)->saddr,
413 &sin6->sin6_addr);
Hannes Frederic Sowa842df072013-03-08 02:07:19 +0000414 sin6->sin6_scope_id = 0;
415 } else {
Alexey Dobriyan4e3fd7a2011-11-21 03:39:03 +0000416 sin6->sin6_addr = ipv6_hdr(skb)->saddr;
Hannes Frederic Sowa842df072013-03-08 02:07:19 +0000417 sin6->sin6_scope_id =
418 ipv6_iface_scope_id(&sin6->sin6_addr,
Duan Jiong43304872014-08-01 09:52:58 +0800419 inet6_iif(skb));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700420 }
Hannes Frederic Sowabceaa902013-11-18 04:20:45 +0100421 *addr_len = sizeof(*sin6);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700422 }
Hannes Frederic Sowa4b261c72014-01-20 03:43:08 +0100423
424 if (np->rxopt.all)
425 ip6_datagram_recv_common_ctl(sk, msg, skb);
426
Wei Yongjunf26ba172008-11-02 16:11:01 +0000427 if (is_udp4) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700428 if (inet->cmsg_flags)
Paolo Abeniad959032016-11-04 11:28:58 +0100429 ip_cmsg_recv_offset(msg, sk, skb,
Eric Dumazet10df8e62016-10-23 18:03:06 -0700430 sizeof(struct udphdr), off);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700431 } else {
432 if (np->rxopt.all)
Hannes Frederic Sowa4b261c72014-01-20 03:43:08 +0100433 ip6_datagram_recv_specific_ctl(sk, msg, skb);
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900434 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700435
David S. Miller59c2cda2011-12-01 14:12:55 -0500436 err = copied;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700437 if (flags & MSG_TRUNC)
Herbert Xu759e5d02007-03-25 20:10:56 -0700438 err = ulen;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700439
Paolo Abeni850cbad2016-10-21 13:55:47 +0200440 skb_consume_udp(sk, skb, peeking ? -err : err);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700441 return err;
442
443csum_copy_err:
Eric Dumazet69629462017-02-05 09:25:24 -0800444 if (!__sk_queue_drop_skb(sk, skb, flags, udp_skb_destructor)) {
Eric Dumazet6a5dc9e2013-04-29 08:39:56 +0000445 if (is_udp4) {
Eric Dumazet6aef70a2016-04-27 16:44:27 -0700446 UDP_INC_STATS(sock_net(sk),
447 UDP_MIB_CSUMERRORS, is_udplite);
448 UDP_INC_STATS(sock_net(sk),
449 UDP_MIB_INERRORS, is_udplite);
Eric Dumazet6a5dc9e2013-04-29 08:39:56 +0000450 } else {
Eric Dumazet6aef70a2016-04-27 16:44:27 -0700451 UDP6_INC_STATS(sock_net(sk),
452 UDP_MIB_CSUMERRORS, is_udplite);
453 UDP6_INC_STATS(sock_net(sk),
454 UDP_MIB_INERRORS, is_udplite);
Eric Dumazet6a5dc9e2013-04-29 08:39:56 +0000455 }
Wei Yongjun0856f932008-11-02 16:14:27 +0000456 }
Paolo Abeni850cbad2016-10-21 13:55:47 +0200457 kfree_skb(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700458
Eric Dumazetbeb39db2015-05-30 09:16:53 -0700459 /* starting over for a new packet, but check if we need to yield */
460 cond_resched();
Xufeng Zhang9cfaa8d2011-06-21 10:43:40 +0000461 msg->msg_flags &= ~MSG_TRUNC;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700462 goto try_again;
463}
464
Gerrit Renkerba4e58e2006-11-27 11:10:57 -0800465void __udp6_lib_err(struct sk_buff *skb, struct inet6_skb_parm *opt,
Brian Haleyd5fdd6b2009-06-23 04:31:07 -0700466 u8 type, u8 code, int offset, __be32 info,
Eric Dumazet645ca702008-10-29 01:41:45 -0700467 struct udp_table *udptable)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700468{
469 struct ipv6_pinfo *np;
Eric Dumazetb71d1d42011-04-22 04:53:02 +0000470 const struct ipv6hdr *hdr = (const struct ipv6hdr *)skb->data;
471 const struct in6_addr *saddr = &hdr->saddr;
472 const struct in6_addr *daddr = &hdr->daddr;
Ian Morris67ba4152014-08-24 21:53:10 +0100473 struct udphdr *uh = (struct udphdr *)(skb->data+offset);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700474 struct sock *sk;
Wei Wange0d8c1b2016-02-17 13:58:22 -0800475 int harderr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700476 int err;
Duan Jiong7304fe42014-07-31 17:54:32 +0800477 struct net *net = dev_net(skb->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700478
Craig Galleke32ea7e2016-01-04 17:41:46 -0500479 sk = __udp6_lib_lookup(net, daddr, uh->dest, saddr, uh->source,
Craig Gallek538950a2016-01-04 17:41:47 -0500480 inet6_iif(skb), udptable, skb);
Ian Morris63159f22015-03-29 14:00:04 +0100481 if (!sk) {
Eric Dumazeta16292a2016-04-27 16:44:36 -0700482 __ICMP6_INC_STATS(net, __in6_dev_get(skb->dev),
483 ICMP6_MIB_INERRORS);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700484 return;
Duan Jiong7304fe42014-07-31 17:54:32 +0800485 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700486
Wei Wange0d8c1b2016-02-17 13:58:22 -0800487 harderr = icmpv6_err_convert(type, code, &err);
488 np = inet6_sk(sk);
489
Hannes Frederic Sowa93b36cf2013-12-15 03:41:14 +0100490 if (type == ICMPV6_PKT_TOOBIG) {
491 if (!ip6_sk_accept_pmtu(sk))
492 goto out;
David S. Miller81aded22012-06-15 14:54:11 -0700493 ip6_sk_update_pmtu(skb, sk, info);
Wei Wange0d8c1b2016-02-17 13:58:22 -0800494 if (np->pmtudisc != IPV6_PMTUDISC_DONT)
495 harderr = 1;
Hannes Frederic Sowa93b36cf2013-12-15 03:41:14 +0100496 }
Duan Jiong1a462d12013-09-20 18:20:28 +0800497 if (type == NDISC_REDIRECT) {
David S. Millerec18d9a2012-07-12 00:25:15 -0700498 ip6_sk_redirect(skb, sk);
Duan Jiong1a462d12013-09-20 18:20:28 +0800499 goto out;
500 }
David S. Miller81aded22012-06-15 14:54:11 -0700501
Wei Wange0d8c1b2016-02-17 13:58:22 -0800502 if (!np->recverr) {
503 if (!harderr || sk->sk_state != TCP_ESTABLISHED)
504 goto out;
505 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700506 ipv6_icmp_error(sk, skb, err, uh->dest, ntohl(info), (u8 *)(uh+1));
Wei Wange0d8c1b2016-02-17 13:58:22 -0800507 }
Eric Dumazetb1faf562010-05-31 23:44:05 -0700508
Linus Torvalds1da177e2005-04-16 15:20:36 -0700509 sk->sk_err = err;
510 sk->sk_error_report(sk);
511out:
Eric Dumazetca065d02016-04-01 08:52:13 -0700512 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700513}
514
Eric Dumazet30c7be22016-11-22 09:06:45 -0800515int __udpv6_queue_rcv_skb(struct sock *sk, struct sk_buff *skb)
Benjamin LaHaisef7ad74f2012-04-27 08:23:21 +0000516{
517 int rc;
518
Eric Dumazetefe42082013-10-03 15:42:29 -0700519 if (!ipv6_addr_any(&sk->sk_v6_daddr)) {
Benjamin LaHaisef7ad74f2012-04-27 08:23:21 +0000520 sock_rps_save_rxhash(sk, skb);
Shawn Bohrer005ec972013-10-07 11:01:38 -0500521 sk_mark_napi_id(sk, skb);
Eric Dumazet2c8c56e2014-11-11 05:54:28 -0800522 sk_incoming_cpu_update(sk);
Eric Dumazete68b6e52016-11-16 09:10:42 -0800523 } else {
524 sk_mark_napi_id_once(sk, skb);
Shawn Bohrer005ec972013-10-07 11:01:38 -0500525 }
Benjamin LaHaisef7ad74f2012-04-27 08:23:21 +0000526
Paolo Abeni850cbad2016-10-21 13:55:47 +0200527 rc = __udp_enqueue_schedule_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 }
Paolo Abeni850cbad2016-10-21 13:55:47 +0200539
Benjamin LaHaisef7ad74f2012-04-27 08:23:21 +0000540 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);
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);
Benjamin LaHaisecb80ef42012-04-27 08:23:59 +0000626
Eric Dumazetd826eb12011-11-09 07:24:35 +0000627 skb_dst_drop(skb);
Wang Chencb759942007-12-03 22:33:28 +1100628
Paolo Abeni850cbad2016-10-21 13:55:47 +0200629 return __udpv6_queue_rcv_skb(sk, skb);
James M Leddy3e215c82014-06-25 17:38:13 -0400630
Eric Dumazet6a5dc9e2013-04-29 08:39:56 +0000631csum_error:
Eric Dumazet02c22342016-04-27 16:44:30 -0700632 __UDP6_INC_STATS(sock_net(sk), UDP_MIB_CSUMERRORS, is_udplite);
Gerrit Renkerba4e58e2006-11-27 11:10:57 -0800633drop:
Eric Dumazet02c22342016-04-27 16:44:30 -0700634 __UDP6_INC_STATS(sock_net(sk), UDP_MIB_INERRORS, is_udplite);
Benjamin LaHaisecb80ef42012-04-27 08:23:59 +0000635 atomic_inc(&sk->sk_drops);
Gerrit Renkerba4e58e2006-11-27 11:10:57 -0800636 kfree_skb(skb);
637 return -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700638}
639
David Held5cf3d462014-07-15 23:28:31 -0400640static bool __udp_v6_is_mcast_sock(struct net *net, struct sock *sk,
641 __be16 loc_port, const struct in6_addr *loc_addr,
642 __be16 rmt_port, const struct in6_addr *rmt_addr,
643 int dif, unsigned short hnum)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700644{
David Held5cf3d462014-07-15 23:28:31 -0400645 struct inet_sock *inet = inet_sk(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700646
David Held5cf3d462014-07-15 23:28:31 -0400647 if (!net_eq(sock_net(sk), net))
648 return false;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700649
David Held5cf3d462014-07-15 23:28:31 -0400650 if (udp_sk(sk)->udp_port_hash != hnum ||
651 sk->sk_family != PF_INET6 ||
652 (inet->inet_dport && inet->inet_dport != rmt_port) ||
653 (!ipv6_addr_any(&sk->sk_v6_daddr) &&
654 !ipv6_addr_equal(&sk->sk_v6_daddr, rmt_addr)) ||
Henning Rogge33b4b012015-05-18 21:08:49 +0200655 (sk->sk_bound_dev_if && sk->sk_bound_dev_if != dif) ||
656 (!ipv6_addr_any(&sk->sk_v6_rcv_saddr) &&
657 !ipv6_addr_equal(&sk->sk_v6_rcv_saddr, loc_addr)))
David Held5cf3d462014-07-15 23:28:31 -0400658 return false;
659 if (!inet6_mc_check(sk, loc_addr, rmt_addr))
660 return false;
661 return true;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700662}
663
Tom Herbert40685792014-05-02 16:29:58 -0700664static void udp6_csum_zero_error(struct sk_buff *skb)
665{
666 /* RFC 2460 section 8.1 says that we SHOULD log
667 * this error. Well, it is reasonable.
668 */
Joe Perchesba7a46f2014-11-11 10:59:17 -0800669 net_dbg_ratelimited("IPv6: udp checksum is 0 for [%pI6c]:%u->[%pI6c]:%u\n",
670 &ipv6_hdr(skb)->saddr, ntohs(udp_hdr(skb)->source),
671 &ipv6_hdr(skb)->daddr, ntohs(udp_hdr(skb)->dest));
Tom Herbert40685792014-05-02 16:29:58 -0700672}
673
Linus Torvalds1da177e2005-04-16 15:20:36 -0700674/*
675 * Note: called only from the BH handler context,
676 * so we don't need to lock the hashes.
677 */
Pavel Emelyanove3163492008-06-16 17:12:11 -0700678static int __udp6_lib_mcast_deliver(struct net *net, struct sk_buff *skb,
Eric Dumazetb71d1d42011-04-22 04:53:02 +0000679 const struct in6_addr *saddr, const struct in6_addr *daddr,
Rick Jones36cbb242014-11-06 10:37:54 -0800680 struct udp_table *udptable, int proto)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700681{
Eric Dumazetca065d02016-04-01 08:52:13 -0700682 struct sock *sk, *first = NULL;
Arnaldo Carvalho de Melo4bedb452007-03-13 14:28:48 -0300683 const struct udphdr *uh = udp_hdr(skb);
David Held5cf3d462014-07-15 23:28:31 -0400684 unsigned short hnum = ntohs(uh->dest);
685 struct udp_hslot *hslot = udp_hashslot(udptable, net, hnum);
Eric Dumazetca065d02016-04-01 08:52:13 -0700686 unsigned int offset = offsetof(typeof(*sk), sk_node);
David Held2dc41cf2014-07-15 23:28:32 -0400687 unsigned int hash2 = 0, hash2_any = 0, use_hash2 = (hslot->count > 10);
Eric Dumazetca065d02016-04-01 08:52:13 -0700688 int dif = inet6_iif(skb);
689 struct hlist_node *node;
690 struct sk_buff *nskb;
David Held2dc41cf2014-07-15 23:28:32 -0400691
692 if (use_hash2) {
693 hash2_any = udp6_portaddr_hash(net, &in6addr_any, hnum) &
Pablo Neira73e2d5e2016-11-14 23:40:30 +0100694 udptable->mask;
695 hash2 = udp6_portaddr_hash(net, daddr, hnum) & udptable->mask;
David Held2dc41cf2014-07-15 23:28:32 -0400696start_lookup:
Pablo Neira73e2d5e2016-11-14 23:40:30 +0100697 hslot = &udptable->hash2[hash2];
David Held2dc41cf2014-07-15 23:28:32 -0400698 offset = offsetof(typeof(*sk), __sk_common.skc_portaddr_node);
699 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700700
Eric Dumazetca065d02016-04-01 08:52:13 -0700701 sk_for_each_entry_offset_rcu(sk, node, &hslot->head, offset) {
702 if (!__udp_v6_is_mcast_sock(net, sk, uh->dest, daddr,
703 uh->source, saddr, dif, hnum))
704 continue;
705 /* If zero checksum and no_check is not on for
706 * the socket then skip it.
707 */
708 if (!uh->check && !udp_sk(sk)->no_check6_rx)
709 continue;
710 if (!first) {
711 first = sk;
712 continue;
Hideo Aoki95766ff2007-12-31 00:29:24 -0800713 }
Eric Dumazetca065d02016-04-01 08:52:13 -0700714 nskb = skb_clone(skb, GFP_ATOMIC);
715 if (unlikely(!nskb)) {
716 atomic_inc(&sk->sk_drops);
Eric Dumazet02c22342016-04-27 16:44:30 -0700717 __UDP6_INC_STATS(net, UDP_MIB_RCVBUFERRORS,
718 IS_UDPLITE(sk));
719 __UDP6_INC_STATS(net, UDP_MIB_INERRORS,
720 IS_UDPLITE(sk));
Eric Dumazetca065d02016-04-01 08:52:13 -0700721 continue;
722 }
Eric Dumazeta1ab77f2009-11-08 10:18:52 +0000723
Eric Dumazetca065d02016-04-01 08:52:13 -0700724 if (udpv6_queue_rcv_skb(sk, nskb) > 0)
725 consume_skb(nskb);
726 }
Eric Dumazeta1ab77f2009-11-08 10:18:52 +0000727
David Held2dc41cf2014-07-15 23:28:32 -0400728 /* Also lookup *:port if we are using hash2 and haven't done so yet. */
729 if (use_hash2 && hash2 != hash2_any) {
730 hash2 = hash2_any;
731 goto start_lookup;
732 }
733
Eric Dumazetca065d02016-04-01 08:52:13 -0700734 if (first) {
735 if (udpv6_queue_rcv_skb(first, skb) > 0)
736 consume_skb(skb);
Eric Dumazeta1ab77f2009-11-08 10:18:52 +0000737 } else {
Eric Dumazetca065d02016-04-01 08:52:13 -0700738 kfree_skb(skb);
Eric Dumazet02c22342016-04-27 16:44:30 -0700739 __UDP6_INC_STATS(net, UDP_MIB_IGNOREDMULTI,
740 proto == IPPROTO_UDPLITE);
Eric Dumazeta1ab77f2009-11-08 10:18:52 +0000741 }
Gerrit Renkerba4e58e2006-11-27 11:10:57 -0800742 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700743}
744
Eric Dumazet645ca702008-10-29 01:41:45 -0700745int __udp6_lib_rcv(struct sk_buff *skb, struct udp_table *udptable,
Herbert Xu759e5d02007-03-25 20:10:56 -0700746 int proto)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700747{
Eric Dumazetb71d1d42011-04-22 04:53:02 +0000748 const struct in6_addr *saddr, *daddr;
Eric Dumazetca065d02016-04-01 08:52:13 -0700749 struct net *net = dev_net(skb->dev);
750 struct udphdr *uh;
751 struct sock *sk;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700752 u32 ulen = 0;
753
754 if (!pskb_may_pull(skb, sizeof(struct udphdr)))
Bjørn Morkd6bc0142010-05-06 03:44:35 +0000755 goto discard;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700756
Arnaldo Carvalho de Melo0660e032007-04-25 17:54:47 -0700757 saddr = &ipv6_hdr(skb)->saddr;
758 daddr = &ipv6_hdr(skb)->daddr;
Arnaldo Carvalho de Melo4bedb452007-03-13 14:28:48 -0300759 uh = udp_hdr(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700760
761 ulen = ntohs(uh->len);
Gerrit Renkerba4e58e2006-11-27 11:10:57 -0800762 if (ulen > skb->len)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700763 goto short_packet;
764
Herbert Xu759e5d02007-03-25 20:10:56 -0700765 if (proto == IPPROTO_UDP) {
766 /* UDP validates ulen. */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700767
Gerrit Renkerba4e58e2006-11-27 11:10:57 -0800768 /* Check for jumbo payload */
769 if (ulen == 0)
770 ulen = skb->len;
771
772 if (ulen < sizeof(*uh))
773 goto short_packet;
774
775 if (ulen < skb->len) {
776 if (pskb_trim_rcsum(skb, ulen))
777 goto short_packet;
Arnaldo Carvalho de Melo0660e032007-04-25 17:54:47 -0700778 saddr = &ipv6_hdr(skb)->saddr;
779 daddr = &ipv6_hdr(skb)->daddr;
Arnaldo Carvalho de Melo4bedb452007-03-13 14:28:48 -0300780 uh = udp_hdr(skb);
Gerrit Renkerba4e58e2006-11-27 11:10:57 -0800781 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700782 }
783
Herbert Xu759e5d02007-03-25 20:10:56 -0700784 if (udp6_csum_init(skb, uh, proto))
Eric Dumazet6a5dc9e2013-04-29 08:39:56 +0000785 goto csum_error;
Herbert Xu759e5d02007-03-25 20:10:56 -0700786
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900787 /*
788 * Multicast receive code
Linus Torvalds1da177e2005-04-16 15:20:36 -0700789 */
Gerrit Renkerba4e58e2006-11-27 11:10:57 -0800790 if (ipv6_addr_is_multicast(daddr))
Pavel Emelyanove3163492008-06-16 17:12:11 -0700791 return __udp6_lib_mcast_deliver(net, skb,
Rick Jones36cbb242014-11-06 10:37:54 -0800792 saddr, daddr, udptable, proto);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700793
794 /* Unicast */
795
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900796 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700797 * check socket cache ... must talk to Alan about his plans
798 * for sock caches... i'll skip this for now.
799 */
KOVACS Krisztian607c4aa2008-10-07 12:38:32 -0700800 sk = __udp6_lib_lookup_skb(skb, uh->source, uh->dest, udptable);
Ian Morris53b24b82015-03-29 14:00:05 +0100801 if (sk) {
Eliezer Tamira5b50472013-06-10 11:40:00 +0300802 int ret;
803
Tom Herbert1c194482014-05-23 08:47:32 -0700804 if (!uh->check && !udp_sk(sk)->no_check6_rx) {
Tom Herbert40685792014-05-02 16:29:58 -0700805 udp6_csum_zero_error(skb);
806 goto csum_error;
807 }
808
Tom Herbert224d0192015-01-05 13:56:14 -0800809 if (inet_get_convert_csum(sk) && uh->check && !IS_UDPLITE(sk))
Tom Herbert2abb7cd2014-08-31 15:12:43 -0700810 skb_checksum_try_convert(skb, IPPROTO_UDP, uh->check,
811 ip6_compute_pseudo);
812
Eliezer Tamira5b50472013-06-10 11:40:00 +0300813 ret = udpv6_queue_rcv_skb(sk, skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700814
Bill Sommerfeld59dca1d2016-03-04 14:47:21 -0800815 /* a return value > 0 means to resubmit the input */
Benjamin LaHaisecb80ef42012-04-27 08:23:59 +0000816 if (ret > 0)
Bill Sommerfeld59dca1d2016-03-04 14:47:21 -0800817 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700818
Stephen Hemmingeradd459a2007-03-08 20:42:35 -0800819 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700820 }
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900821
Tom Herbert40685792014-05-02 16:29:58 -0700822 if (!uh->check) {
823 udp6_csum_zero_error(skb);
824 goto csum_error;
825 }
826
Benjamin LaHaisecb80ef42012-04-27 08:23:59 +0000827 if (!xfrm6_policy_check(NULL, XFRM_POLICY_IN, skb))
828 goto discard;
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900829
Benjamin LaHaisecb80ef42012-04-27 08:23:59 +0000830 if (udp_lib_checksum_complete(skb))
Eric Dumazet6a5dc9e2013-04-29 08:39:56 +0000831 goto csum_error;
Benjamin LaHaisecb80ef42012-04-27 08:23:59 +0000832
Eric Dumazet02c22342016-04-27 16:44:30 -0700833 __UDP6_INC_STATS(net, UDP_MIB_NOPORTS, proto == IPPROTO_UDPLITE);
Benjamin LaHaisecb80ef42012-04-27 08:23:59 +0000834 icmpv6_send(skb, ICMPV6_DEST_UNREACH, ICMPV6_PORT_UNREACH, 0);
835
836 kfree_skb(skb);
Stephen Hemmingeradd459a2007-03-08 20:42:35 -0800837 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700838
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900839short_packet:
Joe Perchesba7a46f2014-11-11 10:59:17 -0800840 net_dbg_ratelimited("UDP%sv6: short packet: From [%pI6c]:%u %d/%d to [%pI6c]:%u\n",
841 proto == IPPROTO_UDPLITE ? "-Lite" : "",
842 saddr, ntohs(uh->source),
843 ulen, skb->len,
844 daddr, ntohs(uh->dest));
Eric Dumazet6a5dc9e2013-04-29 08:39:56 +0000845 goto discard;
846csum_error:
Eric Dumazet02c22342016-04-27 16:44:30 -0700847 __UDP6_INC_STATS(net, UDP_MIB_CSUMERRORS, proto == IPPROTO_UDPLITE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700848discard:
Eric Dumazet02c22342016-04-27 16:44:30 -0700849 __UDP6_INC_STATS(net, UDP_MIB_INERRORS, proto == IPPROTO_UDPLITE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700850 kfree_skb(skb);
Stephen Hemmingeradd459a2007-03-08 20:42:35 -0800851 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700852}
Gerrit Renkerba4e58e2006-11-27 11:10:57 -0800853
Herbert Xue5bbef22007-10-15 12:50:28 -0700854static __inline__ int udpv6_rcv(struct sk_buff *skb)
Gerrit Renkerba4e58e2006-11-27 11:10:57 -0800855{
Eric Dumazet645ca702008-10-29 01:41:45 -0700856 return __udp6_lib_rcv(skb, &udp_table, IPPROTO_UDP);
Gerrit Renkerba4e58e2006-11-27 11:10:57 -0800857}
858
Linus Torvalds1da177e2005-04-16 15:20:36 -0700859/*
860 * Throw away all pending data and cancel the corking. Socket is locked.
861 */
862static void udp_v6_flush_pending_frames(struct sock *sk)
863{
864 struct udp_sock *up = udp_sk(sk);
865
Denis V. Lunev36d926b2008-06-04 15:49:07 +0400866 if (up->pending == AF_INET)
867 udp_flush_pending_frames(sk);
868 else if (up->pending) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700869 up->len = 0;
870 up->pending = 0;
871 ip6_flush_pending_frames(sk);
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900872 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700873}
874
Sridhar Samudrala493c6be2009-07-09 08:09:54 +0000875/**
Ian Morris67ba4152014-08-24 21:53:10 +0100876 * udp6_hwcsum_outgoing - handle outgoing HW checksumming
877 * @sk: socket we are sending on
878 * @skb: sk_buff containing the filled-in UDP header
879 * (checksum field must be zeroed out)
Sridhar Samudrala493c6be2009-07-09 08:09:54 +0000880 */
881static void udp6_hwcsum_outgoing(struct sock *sk, struct sk_buff *skb,
882 const struct in6_addr *saddr,
883 const struct in6_addr *daddr, int len)
884{
885 unsigned int offset;
886 struct udphdr *uh = udp_hdr(skb);
Vlad Yasevichd39d9382015-01-31 10:40:16 -0500887 struct sk_buff *frags = skb_shinfo(skb)->frag_list;
Sridhar Samudrala493c6be2009-07-09 08:09:54 +0000888 __wsum csum = 0;
889
Vlad Yasevichd39d9382015-01-31 10:40:16 -0500890 if (!frags) {
Sridhar Samudrala493c6be2009-07-09 08:09:54 +0000891 /* Only one fragment on the socket. */
892 skb->csum_start = skb_transport_header(skb) - skb->head;
893 skb->csum_offset = offsetof(struct udphdr, check);
894 uh->check = ~csum_ipv6_magic(saddr, daddr, len, IPPROTO_UDP, 0);
895 } else {
896 /*
897 * HW-checksum won't work as there are two or more
898 * fragments on the socket so that all csums of sk_buffs
899 * should be together
900 */
901 offset = skb_transport_offset(skb);
902 skb->csum = skb_checksum(skb, offset, skb->len - offset, 0);
903
904 skb->ip_summed = CHECKSUM_NONE;
905
Vlad Yasevichd39d9382015-01-31 10:40:16 -0500906 do {
907 csum = csum_add(csum, frags->csum);
908 } while ((frags = frags->next));
Sridhar Samudrala493c6be2009-07-09 08:09:54 +0000909
910 uh->check = csum_ipv6_magic(saddr, daddr, len, IPPROTO_UDP,
911 csum);
912 if (uh->check == 0)
913 uh->check = CSUM_MANGLED_0;
914 }
915}
916
Linus Torvalds1da177e2005-04-16 15:20:36 -0700917/*
918 * Sending
919 */
920
Vlad Yasevichd39d9382015-01-31 10:40:16 -0500921static int udp_v6_send_skb(struct sk_buff *skb, struct flowi6 *fl6)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700922{
Vlad Yasevichd39d9382015-01-31 10:40:16 -0500923 struct sock *sk = skb->sk;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700924 struct udphdr *uh;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700925 int err = 0;
Wang Chenb2bf1e22007-12-03 22:34:16 +1100926 int is_udplite = IS_UDPLITE(sk);
Al Viro868c86b2006-11-14 21:35:48 -0800927 __wsum csum = 0;
Vlad Yasevichd39d9382015-01-31 10:40:16 -0500928 int offset = skb_transport_offset(skb);
929 int len = skb->len - offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700930
931 /*
932 * Create a UDP header
933 */
Arnaldo Carvalho de Melo4bedb452007-03-13 14:28:48 -0300934 uh = udp_hdr(skb);
David S. Miller1958b852011-03-12 16:36:19 -0500935 uh->source = fl6->fl6_sport;
936 uh->dest = fl6->fl6_dport;
Vlad Yasevichd39d9382015-01-31 10:40:16 -0500937 uh->len = htons(len);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700938 uh->check = 0;
939
Wang Chenb2bf1e22007-12-03 22:34:16 +1100940 if (is_udplite)
Vlad Yasevichd39d9382015-01-31 10:40:16 -0500941 csum = udplite_csum(skb);
942 else if (udp_sk(sk)->no_check6_tx) { /* UDP csum disabled */
Tom Herbert40685792014-05-02 16:29:58 -0700943 skb->ip_summed = CHECKSUM_NONE;
944 goto send;
945 } else if (skb->ip_summed == CHECKSUM_PARTIAL) { /* UDP hardware csum */
Vlad Yasevichd39d9382015-01-31 10:40:16 -0500946 udp6_hwcsum_outgoing(sk, skb, &fl6->saddr, &fl6->daddr, len);
Sridhar Samudrala493c6be2009-07-09 08:09:54 +0000947 goto send;
948 } else
Vlad Yasevichd39d9382015-01-31 10:40:16 -0500949 csum = udp_csum(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700950
Gerrit Renkerba4e58e2006-11-27 11:10:57 -0800951 /* add protocol-dependent pseudo-header */
David S. Miller4c9483b2011-03-12 16:22:43 -0500952 uh->check = csum_ipv6_magic(&fl6->saddr, &fl6->daddr,
Vlad Yasevichd39d9382015-01-31 10:40:16 -0500953 len, fl6->flowi6_proto, csum);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700954 if (uh->check == 0)
Al Virof6ab0282006-11-16 02:36:50 -0800955 uh->check = CSUM_MANGLED_0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700956
Sridhar Samudrala493c6be2009-07-09 08:09:54 +0000957send:
Vlad Yasevichd39d9382015-01-31 10:40:16 -0500958 err = ip6_send_skb(skb);
Eric Dumazet6ce9e7b2009-09-02 18:05:33 -0700959 if (err) {
960 if (err == -ENOBUFS && !inet6_sk(sk)->recverr) {
Eric Dumazet6aef70a2016-04-27 16:44:27 -0700961 UDP6_INC_STATS(sock_net(sk),
962 UDP_MIB_SNDBUFERRORS, is_udplite);
Eric Dumazet6ce9e7b2009-09-02 18:05:33 -0700963 err = 0;
964 }
Eric Dumazet6aef70a2016-04-27 16:44:27 -0700965 } else {
966 UDP6_INC_STATS(sock_net(sk),
967 UDP_MIB_OUTDATAGRAMS, is_udplite);
968 }
Vlad Yasevichd39d9382015-01-31 10:40:16 -0500969 return err;
970}
971
972static int udp_v6_push_pending_frames(struct sock *sk)
973{
974 struct sk_buff *skb;
975 struct udp_sock *up = udp_sk(sk);
976 struct flowi6 fl6;
977 int err = 0;
978
979 if (up->pending == AF_INET)
980 return udp_push_pending_frames(sk);
981
982 /* ip6_finish_skb will release the cork, so make a copy of
983 * fl6 here.
984 */
985 fl6 = inet_sk(sk)->cork.fl.u.ip6;
986
987 skb = ip6_finish_skb(sk);
988 if (!skb)
989 goto out;
990
991 err = udp_v6_send_skb(skb, &fl6);
992
Linus Torvalds1da177e2005-04-16 15:20:36 -0700993out:
994 up->len = 0;
995 up->pending = 0;
996 return err;
997}
998
Ying Xue1b784142015-03-02 15:37:48 +0800999int udpv6_sendmsg(struct sock *sk, struct msghdr *msg, size_t len)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001000{
1001 struct ipv6_txoptions opt_space;
1002 struct udp_sock *up = udp_sk(sk);
1003 struct inet_sock *inet = inet_sk(sk);
1004 struct ipv6_pinfo *np = inet6_sk(sk);
Steffen Hurrle342dfc32014-01-17 22:53:15 +01001005 DECLARE_SOCKADDR(struct sockaddr_in6 *, sin6, msg->msg_name);
Arnaud Ebalard20c59de2010-06-01 21:35:01 +00001006 struct in6_addr *daddr, *final_p, final;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001007 struct ipv6_txoptions *opt = NULL;
Eric Dumazet45f6fad2015-11-29 19:37:57 -08001008 struct ipv6_txoptions *opt_to_free = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001009 struct ip6_flowlabel *flowlabel = NULL;
David S. Miller4c9483b2011-03-12 16:22:43 -05001010 struct flowi6 fl6;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001011 struct dst_entry *dst;
Wei Wang26879da2016-05-02 21:40:07 -07001012 struct ipcm6_cookie ipc6;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001013 int addr_len = msg->msg_namelen;
1014 int ulen = len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001015 int corkreq = up->corkflag || msg->msg_flags&MSG_MORE;
1016 int err;
Mitsuru KANDA987905d2005-09-18 00:30:08 -07001017 int connected = 0;
Wang Chenb2bf1e22007-12-03 22:34:16 +11001018 int is_udplite = IS_UDPLITE(sk);
Gerrit Renkerba4e58e2006-11-27 11:10:57 -08001019 int (*getfrag)(void *, char *, int, int, int, struct sk_buff *);
Soheil Hassas Yeganehad1e46a2016-04-02 23:08:11 -04001020 struct sockcm_cookie sockc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001021
Wei Wang26879da2016-05-02 21:40:07 -07001022 ipc6.hlimit = -1;
1023 ipc6.tclass = -1;
1024 ipc6.dontfrag = -1;
1025
Linus Torvalds1da177e2005-04-16 15:20:36 -07001026 /* destination address check */
1027 if (sin6) {
1028 if (addr_len < offsetof(struct sockaddr, sa_data))
1029 return -EINVAL;
1030
1031 switch (sin6->sin6_family) {
1032 case AF_INET6:
1033 if (addr_len < SIN6_LEN_RFC2133)
1034 return -EINVAL;
1035 daddr = &sin6->sin6_addr;
1036 break;
1037 case AF_INET:
1038 goto do_udp_sendmsg;
1039 case AF_UNSPEC:
1040 msg->msg_name = sin6 = NULL;
1041 msg->msg_namelen = addr_len = 0;
1042 daddr = NULL;
1043 break;
1044 default:
1045 return -EINVAL;
1046 }
1047 } else if (!up->pending) {
1048 if (sk->sk_state != TCP_ESTABLISHED)
1049 return -EDESTADDRREQ;
Eric Dumazetefe42082013-10-03 15:42:29 -07001050 daddr = &sk->sk_v6_daddr;
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09001051 } else
Linus Torvalds1da177e2005-04-16 15:20:36 -07001052 daddr = NULL;
1053
1054 if (daddr) {
Brian Haleye773e4f2007-08-24 23:16:08 -07001055 if (ipv6_addr_v4mapped(daddr)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001056 struct sockaddr_in sin;
1057 sin.sin_family = AF_INET;
Eric Dumazetc720c7e2009-10-15 06:30:45 +00001058 sin.sin_port = sin6 ? sin6->sin6_port : inet->inet_dport;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001059 sin.sin_addr.s_addr = daddr->s6_addr32[3];
1060 msg->msg_name = &sin;
1061 msg->msg_namelen = sizeof(sin);
1062do_udp_sendmsg:
1063 if (__ipv6_only_sock(sk))
1064 return -ENETUNREACH;
Ying Xue1b784142015-03-02 15:37:48 +08001065 return udp_sendmsg(sk, msg, len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001066 }
1067 }
1068
1069 if (up->pending == AF_INET)
Ying Xue1b784142015-03-02 15:37:48 +08001070 return udp_sendmsg(sk, msg, len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001071
1072 /* Rough check on arithmetic overflow,
YOSHIFUJI Hideakib59e1392007-03-30 14:45:35 -07001073 better check is made in ip6_append_data().
Linus Torvalds1da177e2005-04-16 15:20:36 -07001074 */
1075 if (len > INT_MAX - sizeof(struct udphdr))
1076 return -EMSGSIZE;
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09001077
Vlad Yasevich03485f22015-01-31 10:40:17 -05001078 getfrag = is_udplite ? udplite_getfrag : ip_generic_getfrag;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001079 if (up->pending) {
1080 /*
1081 * There are pending frames.
1082 * The socket lock must be held while it's corked.
1083 */
1084 lock_sock(sk);
1085 if (likely(up->pending)) {
1086 if (unlikely(up->pending != AF_INET6)) {
1087 release_sock(sk);
1088 return -EAFNOSUPPORT;
1089 }
1090 dst = NULL;
1091 goto do_append_data;
1092 }
1093 release_sock(sk);
1094 }
1095 ulen += sizeof(struct udphdr);
1096
David S. Miller4c9483b2011-03-12 16:22:43 -05001097 memset(&fl6, 0, sizeof(fl6));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001098
1099 if (sin6) {
1100 if (sin6->sin6_port == 0)
1101 return -EINVAL;
1102
David S. Miller1958b852011-03-12 16:36:19 -05001103 fl6.fl6_dport = sin6->sin6_port;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001104 daddr = &sin6->sin6_addr;
1105
1106 if (np->sndflow) {
David S. Miller4c9483b2011-03-12 16:22:43 -05001107 fl6.flowlabel = sin6->sin6_flowinfo&IPV6_FLOWINFO_MASK;
1108 if (fl6.flowlabel&IPV6_FLOWLABEL_MASK) {
1109 flowlabel = fl6_sock_lookup(sk, fl6.flowlabel);
Ian Morris63159f22015-03-29 14:00:04 +01001110 if (!flowlabel)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001111 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001112 }
1113 }
1114
1115 /*
1116 * Otherwise it will be difficult to maintain
1117 * sk->sk_dst_cache.
1118 */
1119 if (sk->sk_state == TCP_ESTABLISHED &&
Eric Dumazetefe42082013-10-03 15:42:29 -07001120 ipv6_addr_equal(daddr, &sk->sk_v6_daddr))
1121 daddr = &sk->sk_v6_daddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001122
1123 if (addr_len >= sizeof(struct sockaddr_in6) &&
1124 sin6->sin6_scope_id &&
Hannes Frederic Sowa842df072013-03-08 02:07:19 +00001125 __ipv6_addr_needs_scope_id(__ipv6_addr_type(daddr)))
David S. Miller4c9483b2011-03-12 16:22:43 -05001126 fl6.flowi6_oif = sin6->sin6_scope_id;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001127 } else {
1128 if (sk->sk_state != TCP_ESTABLISHED)
1129 return -EDESTADDRREQ;
1130
David S. Miller1958b852011-03-12 16:36:19 -05001131 fl6.fl6_dport = inet->inet_dport;
Eric Dumazetefe42082013-10-03 15:42:29 -07001132 daddr = &sk->sk_v6_daddr;
David S. Miller4c9483b2011-03-12 16:22:43 -05001133 fl6.flowlabel = np->flow_label;
Mitsuru KANDA987905d2005-09-18 00:30:08 -07001134 connected = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001135 }
1136
David S. Miller4c9483b2011-03-12 16:22:43 -05001137 if (!fl6.flowi6_oif)
1138 fl6.flowi6_oif = sk->sk_bound_dev_if;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001139
David S. Miller4c9483b2011-03-12 16:22:43 -05001140 if (!fl6.flowi6_oif)
1141 fl6.flowi6_oif = np->sticky_pktinfo.ipi6_ifindex;
Yang Hongyang9f690db2008-12-16 02:08:29 -08001142
David S. Miller4c9483b2011-03-12 16:22:43 -05001143 fl6.flowi6_mark = sk->sk_mark;
Lorenzo Colittie2d118a2016-11-04 02:23:43 +09001144 fl6.flowi6_uid = sk->sk_uid;
Soheil Hassas Yeganehc14ac942016-04-02 23:08:12 -04001145 sockc.tsflags = sk->sk_tsflags;
Brian Haley51953d52009-10-05 08:24:16 +00001146
Linus Torvalds1da177e2005-04-16 15:20:36 -07001147 if (msg->msg_controllen) {
1148 opt = &opt_space;
1149 memset(opt, 0, sizeof(struct ipv6_txoptions));
1150 opt->tot_len = sizeof(*opt);
Wei Wang26879da2016-05-02 21:40:07 -07001151 ipc6.opt = opt;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001152
Wei Wang26879da2016-05-02 21:40:07 -07001153 err = ip6_datagram_send_ctl(sock_net(sk), sk, msg, &fl6, &ipc6, &sockc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001154 if (err < 0) {
1155 fl6_sock_release(flowlabel);
1156 return err;
1157 }
David S. Miller4c9483b2011-03-12 16:22:43 -05001158 if ((fl6.flowlabel&IPV6_FLOWLABEL_MASK) && !flowlabel) {
1159 flowlabel = fl6_sock_lookup(sk, fl6.flowlabel);
Ian Morris63159f22015-03-29 14:00:04 +01001160 if (!flowlabel)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001161 return -EINVAL;
1162 }
1163 if (!(opt->opt_nflen|opt->opt_flen))
1164 opt = NULL;
Mitsuru KANDA987905d2005-09-18 00:30:08 -07001165 connected = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001166 }
Eric Dumazet45f6fad2015-11-29 19:37:57 -08001167 if (!opt) {
1168 opt = txopt_get(np);
1169 opt_to_free = opt;
1170 }
YOSHIFUJI Hideakidf9890c2005-11-20 12:23:18 +09001171 if (flowlabel)
1172 opt = fl6_merge_options(&opt_space, flowlabel, opt);
1173 opt = ipv6_fixup_options(&opt_space, opt);
Wei Wang26879da2016-05-02 21:40:07 -07001174 ipc6.opt = opt;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001175
David S. Miller4c9483b2011-03-12 16:22:43 -05001176 fl6.flowi6_proto = sk->sk_protocol;
Brian Haley876c7f42008-04-11 00:38:24 -04001177 if (!ipv6_addr_any(daddr))
Alexey Dobriyan4e3fd7a2011-11-21 03:39:03 +00001178 fl6.daddr = *daddr;
Brian Haley876c7f42008-04-11 00:38:24 -04001179 else
David S. Miller4c9483b2011-03-12 16:22:43 -05001180 fl6.daddr.s6_addr[15] = 0x1; /* :: means loopback (BSD'ism) */
1181 if (ipv6_addr_any(&fl6.saddr) && !ipv6_addr_any(&np->saddr))
Alexey Dobriyan4e3fd7a2011-11-21 03:39:03 +00001182 fl6.saddr = np->saddr;
David S. Miller1958b852011-03-12 16:36:19 -05001183 fl6.fl6_sport = inet->inet_sport;
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09001184
David S. Miller4c9483b2011-03-12 16:22:43 -05001185 final_p = fl6_update_dst(&fl6, opt, &final);
Arnaud Ebalard20c59de2010-06-01 21:35:01 +00001186 if (final_p)
Mitsuru KANDA987905d2005-09-18 00:30:08 -07001187 connected = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001188
David S. Miller4c9483b2011-03-12 16:22:43 -05001189 if (!fl6.flowi6_oif && ipv6_addr_is_multicast(&fl6.daddr)) {
1190 fl6.flowi6_oif = np->mcast_oif;
Mitsuru KANDA987905d2005-09-18 00:30:08 -07001191 connected = 0;
Erich E. Hooverc4062df2012-02-08 09:11:08 +00001192 } else if (!fl6.flowi6_oif)
1193 fl6.flowi6_oif = np->ucast_oif;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001194
David S. Miller4c9483b2011-03-12 16:22:43 -05001195 security_sk_classify_flow(sk, flowi6_to_flowi(&fl6));
Venkat Yekkiralabeb8d132006-08-04 23:12:42 -07001196
Hannes Frederic Sowa38b70972016-06-11 20:08:19 +02001197 if (ipc6.tclass < 0)
1198 ipc6.tclass = np->tclass;
1199
1200 fl6.flowlabel = ip6_make_flowinfo(ipc6.tclass, fl6.flowlabel);
1201
Steffen Klassert0e0d44a2013-08-28 08:04:14 +02001202 dst = ip6_sk_dst_lookup_flow(sk, &fl6, final_p);
David S. Miller68d0c6d2011-03-01 13:19:07 -08001203 if (IS_ERR(dst)) {
1204 err = PTR_ERR(dst);
1205 dst = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001206 goto out;
David S. Miller14e50e52007-05-24 18:17:54 -07001207 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001208
Wei Wang26879da2016-05-02 21:40:07 -07001209 if (ipc6.hlimit < 0)
1210 ipc6.hlimit = ip6_sk_dst_hoplimit(np, &fl6, dst);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001211
1212 if (msg->msg_flags&MSG_CONFIRM)
1213 goto do_confirm;
1214back_from_confirm:
1215
Vlad Yasevich03485f22015-01-31 10:40:17 -05001216 /* Lockless fast path for the non-corking case */
1217 if (!corkreq) {
1218 struct sk_buff *skb;
1219
1220 skb = ip6_make_skb(sk, getfrag, msg, ulen,
Wei Wang26879da2016-05-02 21:40:07 -07001221 sizeof(struct udphdr), &ipc6,
Vlad Yasevich03485f22015-01-31 10:40:17 -05001222 &fl6, (struct rt6_info *)dst,
Wei Wang26879da2016-05-02 21:40:07 -07001223 msg->msg_flags, &sockc);
Vlad Yasevich03485f22015-01-31 10:40:17 -05001224 err = PTR_ERR(skb);
1225 if (!IS_ERR_OR_NULL(skb))
1226 err = udp_v6_send_skb(skb, &fl6);
1227 goto release_dst;
1228 }
1229
Linus Torvalds1da177e2005-04-16 15:20:36 -07001230 lock_sock(sk);
1231 if (unlikely(up->pending)) {
1232 /* The socket is already corked while preparing it. */
1233 /* ... which is an evident application bug. --ANK */
1234 release_sock(sk);
1235
Joe Perchesba7a46f2014-11-11 10:59:17 -08001236 net_dbg_ratelimited("udp cork app bug 2\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001237 err = -EINVAL;
1238 goto out;
1239 }
1240
1241 up->pending = AF_INET6;
1242
1243do_append_data:
Wei Wang26879da2016-05-02 21:40:07 -07001244 if (ipc6.dontfrag < 0)
1245 ipc6.dontfrag = np->dontfrag;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001246 up->len += ulen;
Wei Wang26879da2016-05-02 21:40:07 -07001247 err = ip6_append_data(sk, getfrag, msg, ulen, sizeof(struct udphdr),
1248 &ipc6, &fl6, (struct rt6_info *)dst,
1249 corkreq ? msg->msg_flags|MSG_MORE : msg->msg_flags, &sockc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001250 if (err)
1251 udp_v6_flush_pending_frames(sk);
1252 else if (!corkreq)
Gerrit Renker4c0a6cb2006-11-27 09:29:59 -08001253 err = udp_v6_push_pending_frames(sk);
Herbert Xu1e0c14f2006-10-03 14:35:49 -07001254 else if (unlikely(skb_queue_empty(&sk->sk_write_queue)))
1255 up->pending = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001256
Vlad Yasevich03485f22015-01-31 10:40:17 -05001257 if (err > 0)
1258 err = np->recverr ? net_xmit_errno(err) : 0;
1259 release_sock(sk);
1260
1261release_dst:
David S. Millera5e7c212005-10-03 14:21:58 -07001262 if (dst) {
1263 if (connected) {
1264 ip6_dst_store(sk, dst,
Eric Dumazetefe42082013-10-03 15:42:29 -07001265 ipv6_addr_equal(&fl6.daddr, &sk->sk_v6_daddr) ?
1266 &sk->sk_v6_daddr : NULL,
YOSHIFUJI Hideaki8e1ef0a2006-08-29 17:15:09 -07001267#ifdef CONFIG_IPV6_SUBTREES
David S. Miller4c9483b2011-03-12 16:22:43 -05001268 ipv6_addr_equal(&fl6.saddr, &np->saddr) ?
YOSHIFUJI Hideaki8e1ef0a2006-08-29 17:15:09 -07001269 &np->saddr :
1270#endif
1271 NULL);
David S. Millera5e7c212005-10-03 14:21:58 -07001272 } else {
1273 dst_release(dst);
1274 }
YOSHIFUJI Hideakia3c96082008-06-04 01:30:25 +09001275 dst = NULL;
David S. Millera5e7c212005-10-03 14:21:58 -07001276 }
1277
Linus Torvalds1da177e2005-04-16 15:20:36 -07001278out:
YOSHIFUJI Hideakia3c96082008-06-04 01:30:25 +09001279 dst_release(dst);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001280 fl6_sock_release(flowlabel);
Eric Dumazet45f6fad2015-11-29 19:37:57 -08001281 txopt_put(opt_to_free);
YOSHIFUJI Hideakicd562c92007-09-14 17:15:01 -07001282 if (!err)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001283 return len;
David S. Millera18135e2006-08-15 00:00:09 -07001284 /*
1285 * ENOBUFS = no kernel mem, SOCK_NOSPACE = no sndbuf space. Reporting
1286 * ENOBUFS might not be good (it's not tunable per se), but otherwise
1287 * we don't have a good statistic (IpOutDiscards but it can be too many
1288 * things). We could add another new stat but at least for now that
1289 * seems like overkill.
1290 */
1291 if (err == -ENOBUFS || test_bit(SOCK_NOSPACE, &sk->sk_socket->flags)) {
Eric Dumazet6aef70a2016-04-27 16:44:27 -07001292 UDP6_INC_STATS(sock_net(sk),
1293 UDP_MIB_SNDBUFERRORS, is_udplite);
David S. Millera18135e2006-08-15 00:00:09 -07001294 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001295 return err;
1296
1297do_confirm:
1298 dst_confirm(dst);
1299 if (!(msg->msg_flags&MSG_PROBE) || len)
1300 goto back_from_confirm;
1301 err = 0;
1302 goto out;
1303}
1304
Brian Haley7d06b2e2008-06-14 17:04:49 -07001305void udpv6_destroy_sock(struct sock *sk)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001306{
Tom Parkin44046a52013-03-19 06:11:12 +00001307 struct udp_sock *up = udp_sk(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001308 lock_sock(sk);
1309 udp_v6_flush_pending_frames(sk);
1310 release_sock(sk);
1311
Tom Parkin44046a52013-03-19 06:11:12 +00001312 if (static_key_false(&udpv6_encap_needed) && up->encap_type) {
1313 void (*encap_destroy)(struct sock *sk);
1314 encap_destroy = ACCESS_ONCE(up->encap_destroy);
1315 if (encap_destroy)
1316 encap_destroy(sk);
1317 }
1318
Linus Torvalds1da177e2005-04-16 15:20:36 -07001319 inet6_destroy_sock(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001320}
1321
1322/*
1323 * Socket option code for UDP
1324 */
Gerrit Renkerba4e58e2006-11-27 11:10:57 -08001325int udpv6_setsockopt(struct sock *sk, int level, int optname,
David S. Millerb7058842009-09-30 16:12:20 -07001326 char __user *optval, unsigned int optlen)
Dmitry Mishin3fdadf72006-03-20 22:45:21 -08001327{
David S. Millerdb8dac22008-03-06 16:22:02 -08001328 if (level == SOL_UDP || level == SOL_UDPLITE)
Gerrit Renker4c0a6cb2006-11-27 09:29:59 -08001329 return udp_lib_setsockopt(sk, level, optname, optval, optlen,
1330 udp_v6_push_pending_frames);
Gerrit Renkerba4e58e2006-11-27 11:10:57 -08001331 return ipv6_setsockopt(sk, level, optname, optval, optlen);
Dmitry Mishin3fdadf72006-03-20 22:45:21 -08001332}
1333
1334#ifdef CONFIG_COMPAT
Gerrit Renkerba4e58e2006-11-27 11:10:57 -08001335int compat_udpv6_setsockopt(struct sock *sk, int level, int optname,
David S. Millerb7058842009-09-30 16:12:20 -07001336 char __user *optval, unsigned int optlen)
Dmitry Mishin3fdadf72006-03-20 22:45:21 -08001337{
David S. Millerdb8dac22008-03-06 16:22:02 -08001338 if (level == SOL_UDP || level == SOL_UDPLITE)
Gerrit Renker4c0a6cb2006-11-27 09:29:59 -08001339 return udp_lib_setsockopt(sk, level, optname, optval, optlen,
1340 udp_v6_push_pending_frames);
Gerrit Renkerba4e58e2006-11-27 11:10:57 -08001341 return compat_ipv6_setsockopt(sk, level, optname, optval, optlen);
Dmitry Mishin3fdadf72006-03-20 22:45:21 -08001342}
1343#endif
1344
Gerrit Renkerba4e58e2006-11-27 11:10:57 -08001345int udpv6_getsockopt(struct sock *sk, int level, int optname,
1346 char __user *optval, int __user *optlen)
Dmitry Mishin3fdadf72006-03-20 22:45:21 -08001347{
David S. Millerdb8dac22008-03-06 16:22:02 -08001348 if (level == SOL_UDP || level == SOL_UDPLITE)
Gerrit Renker4c0a6cb2006-11-27 09:29:59 -08001349 return udp_lib_getsockopt(sk, level, optname, optval, optlen);
Gerrit Renkerba4e58e2006-11-27 11:10:57 -08001350 return ipv6_getsockopt(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_getsockopt(struct sock *sk, int level, int optname,
1355 char __user *optval, int __user *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_getsockopt(sk, level, optname, optval, optlen);
Gerrit Renkerba4e58e2006-11-27 11:10:57 -08001359 return compat_ipv6_getsockopt(sk, level, optname, optval, optlen);
Dmitry Mishin3fdadf72006-03-20 22:45:21 -08001360}
1361#endif
1362
Alexey Dobriyan41135cc2009-09-14 12:22:28 +00001363static const struct inet6_protocol udpv6_protocol = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001364 .handler = udpv6_rcv,
1365 .err_handler = udpv6_err,
1366 .flags = INET6_PROTO_NOPOLICY|INET6_PROTO_FINAL,
1367};
1368
1369/* ------------------------------------------------------------------------ */
1370#ifdef CONFIG_PROC_FS
Gerrit Renkerba4e58e2006-11-27 11:10:57 -08001371int udp6_seq_show(struct seq_file *seq, void *v)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001372{
Lorenzo Colitti17ef66af2013-05-31 15:05:48 +00001373 if (v == SEQ_START_TOKEN) {
1374 seq_puts(seq, IPV6_SEQ_DGRAM_HEADER);
1375 } else {
1376 int bucket = ((struct udp_iter_state *)seq->private)->bucket;
1377 struct inet_sock *inet = inet_sk(v);
1378 __u16 srcp = ntohs(inet->inet_sport);
1379 __u16 destp = ntohs(inet->inet_dport);
1380 ip6_dgram_sock_seq_show(seq, v, srcp, destp, bucket);
1381 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001382 return 0;
1383}
1384
Arjan van de Ven73cb88e2011-10-30 06:46:30 +00001385static const struct file_operations udp6_afinfo_seq_fops = {
1386 .owner = THIS_MODULE,
1387 .open = udp_seq_open,
1388 .read = seq_read,
1389 .llseek = seq_lseek,
1390 .release = seq_release_net
1391};
1392
Linus Torvalds1da177e2005-04-16 15:20:36 -07001393static struct udp_seq_afinfo udp6_seq_afinfo = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001394 .name = "udp6",
1395 .family = AF_INET6,
Eric Dumazet645ca702008-10-29 01:41:45 -07001396 .udp_table = &udp_table,
Arjan van de Ven73cb88e2011-10-30 06:46:30 +00001397 .seq_fops = &udp6_afinfo_seq_fops,
Denis V. Lunevdda61922008-03-28 18:24:26 -07001398 .seq_ops = {
1399 .show = udp6_seq_show,
1400 },
Linus Torvalds1da177e2005-04-16 15:20:36 -07001401};
1402
Alexey Dobriyan2c8c1e72010-01-17 03:35:32 +00001403int __net_init udp6_proc_init(struct net *net)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001404{
Daniel Lezcano0c96d8c2008-03-21 04:14:17 -07001405 return udp_proc_register(net, &udp6_seq_afinfo);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001406}
1407
Ian Morrisec120da2015-08-14 22:43:38 +01001408void udp6_proc_exit(struct net *net)
1409{
Daniel Lezcano0c96d8c2008-03-21 04:14:17 -07001410 udp_proc_unregister(net, &udp6_seq_afinfo);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001411}
1412#endif /* CONFIG_PROC_FS */
1413
1414/* ------------------------------------------------------------------------ */
1415
1416struct proto udpv6_prot = {
Arnaldo Carvalho de Melo543d9cf2006-03-20 22:48:35 -08001417 .name = "UDPv6",
1418 .owner = THIS_MODULE,
Gerrit Renkerba4e58e2006-11-27 11:10:57 -08001419 .close = udp_lib_close,
Arnaldo Carvalho de Melo543d9cf2006-03-20 22:48:35 -08001420 .connect = ip6_datagram_connect,
1421 .disconnect = udp_disconnect,
1422 .ioctl = udp_ioctl,
Paolo Abeni850cbad2016-10-21 13:55:47 +02001423 .init = udp_init_sock,
Arnaldo Carvalho de Melo543d9cf2006-03-20 22:48:35 -08001424 .destroy = udpv6_destroy_sock,
1425 .setsockopt = udpv6_setsockopt,
1426 .getsockopt = udpv6_getsockopt,
1427 .sendmsg = udpv6_sendmsg,
1428 .recvmsg = udpv6_recvmsg,
Martin KaFai Laue646b652016-04-11 15:29:37 -07001429 .release_cb = ip6_datagram_release_cb,
Gerrit Renkerba4e58e2006-11-27 11:10:57 -08001430 .hash = udp_lib_hash,
1431 .unhash = udp_lib_unhash,
Eric Dumazet719f8352010-09-08 05:08:44 +00001432 .rehash = udp_v6_rehash,
Arnaldo Carvalho de Melo543d9cf2006-03-20 22:48:35 -08001433 .get_port = udp_v6_get_port,
Hideo Aoki95766ff2007-12-31 00:29:24 -08001434 .memory_allocated = &udp_memory_allocated,
1435 .sysctl_mem = sysctl_udp_mem,
1436 .sysctl_wmem = &sysctl_udp_wmem_min,
1437 .sysctl_rmem = &sysctl_udp_rmem_min,
Arnaldo Carvalho de Melo543d9cf2006-03-20 22:48:35 -08001438 .obj_size = sizeof(struct udp6_sock),
Eric Dumazet645ca702008-10-29 01:41:45 -07001439 .h.udp_table = &udp_table,
Dmitry Mishin3fdadf72006-03-20 22:45:21 -08001440#ifdef CONFIG_COMPAT
Arnaldo Carvalho de Melo543d9cf2006-03-20 22:48:35 -08001441 .compat_setsockopt = compat_udpv6_setsockopt,
1442 .compat_getsockopt = compat_udpv6_getsockopt,
Dmitry Mishin3fdadf72006-03-20 22:45:21 -08001443#endif
David Ahern5d77dca2016-08-23 21:06:33 -07001444 .diag_destroy = udp_abort,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001445};
1446
Linus Torvalds1da177e2005-04-16 15:20:36 -07001447static struct inet_protosw udpv6_protosw = {
1448 .type = SOCK_DGRAM,
1449 .protocol = IPPROTO_UDP,
1450 .prot = &udpv6_prot,
1451 .ops = &inet6_dgram_ops,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001452 .flags = INET_PROTOSW_PERMANENT,
1453};
1454
Daniel Lezcano7f4e4862007-12-11 02:25:35 -08001455int __init udpv6_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001456{
Daniel Lezcano7f4e4862007-12-11 02:25:35 -08001457 int ret;
1458
Vlad Yasevich33362882012-11-15 08:49:15 +00001459 ret = inet6_add_protocol(&udpv6_protocol, IPPROTO_UDP);
1460 if (ret)
Vlad Yasevichc6b641a2012-11-15 08:49:22 +00001461 goto out;
Vlad Yasevich33362882012-11-15 08:49:15 +00001462
Daniel Lezcano7f4e4862007-12-11 02:25:35 -08001463 ret = inet6_register_protosw(&udpv6_protosw);
1464 if (ret)
1465 goto out_udpv6_protocol;
1466out:
1467 return ret;
1468
1469out_udpv6_protocol:
1470 inet6_del_protocol(&udpv6_protocol, IPPROTO_UDP);
1471 goto out;
1472}
1473
Daniel Lezcano09f77092007-12-13 05:34:58 -08001474void udpv6_exit(void)
Daniel Lezcano7f4e4862007-12-11 02:25:35 -08001475{
1476 inet6_unregister_protosw(&udpv6_protosw);
1477 inet6_del_protocol(&udpv6_protocol, IPPROTO_UDP);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001478}