Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* |
| 2 | * UDP over IPv6 |
YOSHIFUJI Hideaki | 1ab1457 | 2007-02-09 23:24:49 +0900 | [diff] [blame] | 3 | * Linux INET6 implementation |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4 | * |
| 5 | * Authors: |
YOSHIFUJI Hideaki | 1ab1457 | 2007-02-09 23:24:49 +0900 | [diff] [blame] | 6 | * Pedro Roque <roque@di.fc.ul.pt> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 7 | * |
| 8 | * Based on linux/ipv4/udp.c |
| 9 | * |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 10 | * 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 Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 24 | #include <linux/errno.h> |
| 25 | #include <linux/types.h> |
| 26 | #include <linux/socket.h> |
| 27 | #include <linux/sockios.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 28 | #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 Xu | 1781f7f | 2007-12-11 11:30:32 -0800 | [diff] [blame] | 35 | #include <linux/module.h> |
Herbert Xu | 3305b80 | 2005-12-13 23:16:37 -0800 | [diff] [blame] | 36 | #include <linux/skbuff.h> |
Tejun Heo | 5a0e3ad | 2010-03-24 17:04:11 +0900 | [diff] [blame] | 37 | #include <linux/slab.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 38 | #include <asm/uaccess.h> |
| 39 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 40 | #include <net/ndisc.h> |
| 41 | #include <net/protocol.h> |
| 42 | #include <net/transp_v6.h> |
| 43 | #include <net/ip6_route.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 44 | #include <net/raw.h> |
Arnaldo Carvalho de Melo | c752f07 | 2005-08-09 20:08:28 -0700 | [diff] [blame] | 45 | #include <net/tcp_states.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 46 | #include <net/ip6_checksum.h> |
| 47 | #include <net/xfrm.h> |
Tom Herbert | 72289b9 | 2013-01-22 09:50:44 +0000 | [diff] [blame] | 48 | #include <net/inet6_hashtables.h> |
Eliezer Tamir | 076bb0c | 2013-07-10 17:13:17 +0300 | [diff] [blame] | 49 | #include <net/busy_poll.h> |
Craig Gallek | e32ea7e | 2016-01-04 17:41:46 -0500 | [diff] [blame] | 50 | #include <net/sock_reuseport.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 51 | |
| 52 | #include <linux/proc_fs.h> |
| 53 | #include <linux/seq_file.h> |
Eric Dumazet | 22911fc | 2012-06-27 00:23:44 +0000 | [diff] [blame] | 54 | #include <trace/events/skb.h> |
Gerrit Renker | ba4e58e | 2006-11-27 11:10:57 -0800 | [diff] [blame] | 55 | #include "udp_impl.h" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 56 | |
Eric Dumazet | 6eada01 | 2015-03-18 14:05:33 -0700 | [diff] [blame] | 57 | static u32 udp6_ehashfn(const struct net *net, |
| 58 | const struct in6_addr *laddr, |
| 59 | const u16 lport, |
| 60 | const struct in6_addr *faddr, |
| 61 | const __be16 fport) |
Hannes Frederic Sowa | b50026b | 2013-10-19 21:48:52 +0200 | [diff] [blame] | 62 | { |
Hannes Frederic Sowa | 1bbdcee | 2013-10-19 21:48:57 +0200 | [diff] [blame] | 63 | static u32 udp6_ehash_secret __read_mostly; |
| 64 | static u32 udp_ipv6_hash_secret __read_mostly; |
| 65 | |
| 66 | u32 lhash, fhash; |
| 67 | |
| 68 | net_get_random_once(&udp6_ehash_secret, |
| 69 | sizeof(udp6_ehash_secret)); |
| 70 | net_get_random_once(&udp_ipv6_hash_secret, |
| 71 | sizeof(udp_ipv6_hash_secret)); |
| 72 | |
| 73 | lhash = (__force u32)laddr->s6_addr32[3]; |
| 74 | fhash = __ipv6_addr_jhash(faddr, udp_ipv6_hash_secret); |
| 75 | |
Hannes Frederic Sowa | b50026b | 2013-10-19 21:48:52 +0200 | [diff] [blame] | 76 | return __inet6_ehashfn(lhash, lport, fhash, fport, |
Hannes Frederic Sowa | 1bbdcee | 2013-10-19 21:48:57 +0200 | [diff] [blame] | 77 | udp_ipv6_hash_secret + net_hash_mix(net)); |
Hannes Frederic Sowa | b50026b | 2013-10-19 21:48:52 +0200 | [diff] [blame] | 78 | } |
| 79 | |
Craig Gallek | e32ea7e | 2016-01-04 17:41:46 -0500 | [diff] [blame] | 80 | /* match_wildcard == true: IPV6_ADDR_ANY equals to any IPv6 addresses if IPv6 |
| 81 | * only, and any IPv4 addresses if not IPv6 only |
| 82 | * match_wildcard == false: addresses must be exactly the same, i.e. |
| 83 | * IPV6_ADDR_ANY only equals to IPV6_ADDR_ANY, |
| 84 | * and 0.0.0.0 equals to 0.0.0.0 only |
| 85 | */ |
| 86 | int ipv6_rcv_saddr_equal(const struct sock *sk, const struct sock *sk2, |
| 87 | bool match_wildcard) |
Vlad Yasevich | b2f5e7c | 2009-03-24 16:24:51 +0000 | [diff] [blame] | 88 | { |
Vlad Yasevich | b2f5e7c | 2009-03-24 16:24:51 +0000 | [diff] [blame] | 89 | const struct in6_addr *sk2_rcv_saddr6 = inet6_rcv_saddr(sk2); |
Vlad Yasevich | b2f5e7c | 2009-03-24 16:24:51 +0000 | [diff] [blame] | 90 | int sk2_ipv6only = inet_v6_ipv6only(sk2); |
Eric Dumazet | efe4208 | 2013-10-03 15:42:29 -0700 | [diff] [blame] | 91 | int addr_type = ipv6_addr_type(&sk->sk_v6_rcv_saddr); |
Vlad Yasevich | b2f5e7c | 2009-03-24 16:24:51 +0000 | [diff] [blame] | 92 | int addr_type2 = sk2_rcv_saddr6 ? ipv6_addr_type(sk2_rcv_saddr6) : IPV6_ADDR_MAPPED; |
| 93 | |
| 94 | /* if both are mapped, treat as IPv4 */ |
Craig Gallek | e32ea7e | 2016-01-04 17:41:46 -0500 | [diff] [blame] | 95 | if (addr_type == IPV6_ADDR_MAPPED && addr_type2 == IPV6_ADDR_MAPPED) { |
| 96 | if (!sk2_ipv6only) { |
| 97 | if (sk->sk_rcv_saddr == sk2->sk_rcv_saddr) |
| 98 | return 1; |
| 99 | if (!sk->sk_rcv_saddr || !sk2->sk_rcv_saddr) |
| 100 | return match_wildcard; |
| 101 | } |
| 102 | return 0; |
| 103 | } |
Vlad Yasevich | b2f5e7c | 2009-03-24 16:24:51 +0000 | [diff] [blame] | 104 | |
Craig Gallek | e32ea7e | 2016-01-04 17:41:46 -0500 | [diff] [blame] | 105 | if (addr_type == IPV6_ADDR_ANY && addr_type2 == IPV6_ADDR_ANY) |
| 106 | return 1; |
| 107 | |
| 108 | if (addr_type2 == IPV6_ADDR_ANY && match_wildcard && |
Vlad Yasevich | b2f5e7c | 2009-03-24 16:24:51 +0000 | [diff] [blame] | 109 | !(sk2_ipv6only && addr_type == IPV6_ADDR_MAPPED)) |
| 110 | return 1; |
| 111 | |
Craig Gallek | e32ea7e | 2016-01-04 17:41:46 -0500 | [diff] [blame] | 112 | if (addr_type == IPV6_ADDR_ANY && match_wildcard && |
Eric Dumazet | 9fe516b | 2014-06-27 08:36:16 -0700 | [diff] [blame] | 113 | !(ipv6_only_sock(sk) && addr_type2 == IPV6_ADDR_MAPPED)) |
Vlad Yasevich | b2f5e7c | 2009-03-24 16:24:51 +0000 | [diff] [blame] | 114 | return 1; |
| 115 | |
| 116 | if (sk2_rcv_saddr6 && |
Eric Dumazet | efe4208 | 2013-10-03 15:42:29 -0700 | [diff] [blame] | 117 | ipv6_addr_equal(&sk->sk_v6_rcv_saddr, sk2_rcv_saddr6)) |
Vlad Yasevich | b2f5e7c | 2009-03-24 16:24:51 +0000 | [diff] [blame] | 118 | return 1; |
| 119 | |
| 120 | return 0; |
| 121 | } |
| 122 | |
Eric Dumazet | 6eada01 | 2015-03-18 14:05:33 -0700 | [diff] [blame] | 123 | static u32 udp6_portaddr_hash(const struct net *net, |
| 124 | const struct in6_addr *addr6, |
| 125 | unsigned int port) |
Eric Dumazet | d4cada4 | 2009-11-08 10:17:30 +0000 | [diff] [blame] | 126 | { |
| 127 | unsigned int hash, mix = net_hash_mix(net); |
| 128 | |
| 129 | if (ipv6_addr_any(addr6)) |
| 130 | hash = jhash_1word(0, mix); |
Brian Haley | 856540e | 2009-11-09 12:05:53 +0000 | [diff] [blame] | 131 | else if (ipv6_addr_v4mapped(addr6)) |
Eric Dumazet | 0eae88f | 2010-04-20 19:06:52 -0700 | [diff] [blame] | 132 | hash = jhash_1word((__force u32)addr6->s6_addr32[3], mix); |
Eric Dumazet | d4cada4 | 2009-11-08 10:17:30 +0000 | [diff] [blame] | 133 | else |
Eric Dumazet | 0eae88f | 2010-04-20 19:06:52 -0700 | [diff] [blame] | 134 | hash = jhash2((__force u32 *)addr6->s6_addr32, 4, mix); |
Eric Dumazet | d4cada4 | 2009-11-08 10:17:30 +0000 | [diff] [blame] | 135 | |
| 136 | return hash ^ port; |
| 137 | } |
| 138 | |
Pavel Emelyanov | 6ba5a3c | 2008-03-22 16:51:21 -0700 | [diff] [blame] | 139 | int udp_v6_get_port(struct sock *sk, unsigned short snum) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 140 | { |
Eric Dumazet | 30fff92 | 2009-11-09 05:26:33 +0000 | [diff] [blame] | 141 | unsigned int hash2_nulladdr = |
| 142 | udp6_portaddr_hash(sock_net(sk), &in6addr_any, snum); |
Jeffrin Jose | 9a52e97 | 2012-05-19 01:45:21 +0000 | [diff] [blame] | 143 | unsigned int hash2_partial = |
Eric Dumazet | efe4208 | 2013-10-03 15:42:29 -0700 | [diff] [blame] | 144 | udp6_portaddr_hash(sock_net(sk), &sk->sk_v6_rcv_saddr, 0); |
Eric Dumazet | 30fff92 | 2009-11-09 05:26:33 +0000 | [diff] [blame] | 145 | |
Eric Dumazet | d4cada4 | 2009-11-08 10:17:30 +0000 | [diff] [blame] | 146 | /* precompute partial secondary hash */ |
Eric Dumazet | 30fff92 | 2009-11-09 05:26:33 +0000 | [diff] [blame] | 147 | udp_sk(sk)->udp_portaddr_hash = hash2_partial; |
| 148 | return udp_lib_get_port(sk, snum, ipv6_rcv_saddr_equal, hash2_nulladdr); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 149 | } |
| 150 | |
Eric Dumazet | 719f835 | 2010-09-08 05:08:44 +0000 | [diff] [blame] | 151 | static void udp_v6_rehash(struct sock *sk) |
| 152 | { |
| 153 | u16 new_hash = udp6_portaddr_hash(sock_net(sk), |
Eric Dumazet | efe4208 | 2013-10-03 15:42:29 -0700 | [diff] [blame] | 154 | &sk->sk_v6_rcv_saddr, |
Eric Dumazet | 719f835 | 2010-09-08 05:08:44 +0000 | [diff] [blame] | 155 | inet_sk(sk)->inet_num); |
| 156 | |
| 157 | udp_lib_rehash(sk, new_hash); |
| 158 | } |
| 159 | |
Eric Dumazet | 645ca70 | 2008-10-29 01:41:45 -0700 | [diff] [blame] | 160 | static inline int compute_score(struct sock *sk, struct net *net, |
| 161 | unsigned short hnum, |
Balazs Scheidler | 88440ae | 2010-10-21 16:04:33 +0200 | [diff] [blame] | 162 | const struct in6_addr *saddr, __be16 sport, |
| 163 | const struct in6_addr *daddr, __be16 dport, |
Eric Dumazet | 645ca70 | 2008-10-29 01:41:45 -0700 | [diff] [blame] | 164 | int dif) |
| 165 | { |
Joe Perches | 60c04ae | 2014-12-01 20:29:06 -0800 | [diff] [blame] | 166 | int score; |
| 167 | struct inet_sock *inet; |
Eric Dumazet | 645ca70 | 2008-10-29 01:41:45 -0700 | [diff] [blame] | 168 | |
Joe Perches | 60c04ae | 2014-12-01 20:29:06 -0800 | [diff] [blame] | 169 | if (!net_eq(sock_net(sk), net) || |
| 170 | udp_sk(sk)->udp_port_hash != hnum || |
| 171 | sk->sk_family != PF_INET6) |
| 172 | return -1; |
Eric Dumazet | 645ca70 | 2008-10-29 01:41:45 -0700 | [diff] [blame] | 173 | |
Joe Perches | 60c04ae | 2014-12-01 20:29:06 -0800 | [diff] [blame] | 174 | score = 0; |
| 175 | inet = inet_sk(sk); |
| 176 | |
| 177 | if (inet->inet_dport) { |
| 178 | if (inet->inet_dport != sport) |
| 179 | return -1; |
| 180 | score++; |
Eric Dumazet | 645ca70 | 2008-10-29 01:41:45 -0700 | [diff] [blame] | 181 | } |
Joe Perches | 60c04ae | 2014-12-01 20:29:06 -0800 | [diff] [blame] | 182 | |
| 183 | if (!ipv6_addr_any(&sk->sk_v6_rcv_saddr)) { |
| 184 | if (!ipv6_addr_equal(&sk->sk_v6_rcv_saddr, daddr)) |
| 185 | return -1; |
| 186 | score++; |
| 187 | } |
| 188 | |
| 189 | if (!ipv6_addr_any(&sk->sk_v6_daddr)) { |
| 190 | if (!ipv6_addr_equal(&sk->sk_v6_daddr, saddr)) |
| 191 | return -1; |
| 192 | score++; |
| 193 | } |
| 194 | |
| 195 | if (sk->sk_bound_dev_if) { |
| 196 | if (sk->sk_bound_dev_if != dif) |
| 197 | return -1; |
| 198 | score++; |
| 199 | } |
| 200 | |
Eric Dumazet | 70da268 | 2015-10-08 19:33:21 -0700 | [diff] [blame] | 201 | if (sk->sk_incoming_cpu == raw_smp_processor_id()) |
| 202 | score++; |
| 203 | |
Eric Dumazet | 645ca70 | 2008-10-29 01:41:45 -0700 | [diff] [blame] | 204 | return score; |
| 205 | } |
| 206 | |
Eric Dumazet | fddc17d | 2009-11-08 10:18:30 +0000 | [diff] [blame] | 207 | static inline int compute_score2(struct sock *sk, struct net *net, |
Joe Perches | 60c04ae | 2014-12-01 20:29:06 -0800 | [diff] [blame] | 208 | const struct in6_addr *saddr, __be16 sport, |
| 209 | const struct in6_addr *daddr, |
| 210 | unsigned short hnum, int dif) |
Eric Dumazet | fddc17d | 2009-11-08 10:18:30 +0000 | [diff] [blame] | 211 | { |
Joe Perches | 60c04ae | 2014-12-01 20:29:06 -0800 | [diff] [blame] | 212 | int score; |
| 213 | struct inet_sock *inet; |
Eric Dumazet | fddc17d | 2009-11-08 10:18:30 +0000 | [diff] [blame] | 214 | |
Joe Perches | 60c04ae | 2014-12-01 20:29:06 -0800 | [diff] [blame] | 215 | if (!net_eq(sock_net(sk), net) || |
| 216 | udp_sk(sk)->udp_port_hash != hnum || |
| 217 | sk->sk_family != PF_INET6) |
| 218 | return -1; |
Eric Dumazet | fddc17d | 2009-11-08 10:18:30 +0000 | [diff] [blame] | 219 | |
Joe Perches | 60c04ae | 2014-12-01 20:29:06 -0800 | [diff] [blame] | 220 | if (!ipv6_addr_equal(&sk->sk_v6_rcv_saddr, daddr)) |
| 221 | return -1; |
| 222 | |
| 223 | score = 0; |
| 224 | inet = inet_sk(sk); |
| 225 | |
| 226 | if (inet->inet_dport) { |
| 227 | if (inet->inet_dport != sport) |
Eric Dumazet | fddc17d | 2009-11-08 10:18:30 +0000 | [diff] [blame] | 228 | return -1; |
Joe Perches | 60c04ae | 2014-12-01 20:29:06 -0800 | [diff] [blame] | 229 | score++; |
Eric Dumazet | fddc17d | 2009-11-08 10:18:30 +0000 | [diff] [blame] | 230 | } |
Joe Perches | 60c04ae | 2014-12-01 20:29:06 -0800 | [diff] [blame] | 231 | |
| 232 | if (!ipv6_addr_any(&sk->sk_v6_daddr)) { |
| 233 | if (!ipv6_addr_equal(&sk->sk_v6_daddr, saddr)) |
| 234 | return -1; |
| 235 | score++; |
| 236 | } |
| 237 | |
| 238 | if (sk->sk_bound_dev_if) { |
| 239 | if (sk->sk_bound_dev_if != dif) |
| 240 | return -1; |
| 241 | score++; |
| 242 | } |
| 243 | |
Eric Dumazet | 70da268 | 2015-10-08 19:33:21 -0700 | [diff] [blame] | 244 | if (sk->sk_incoming_cpu == raw_smp_processor_id()) |
| 245 | score++; |
| 246 | |
Eric Dumazet | fddc17d | 2009-11-08 10:18:30 +0000 | [diff] [blame] | 247 | return score; |
| 248 | } |
| 249 | |
Eric Dumazet | fddc17d | 2009-11-08 10:18:30 +0000 | [diff] [blame] | 250 | /* called with read_rcu_lock() */ |
| 251 | static struct sock *udp6_lib_lookup2(struct net *net, |
| 252 | const struct in6_addr *saddr, __be16 sport, |
| 253 | const struct in6_addr *daddr, unsigned int hnum, int dif, |
Craig Gallek | 1134158 | 2016-01-05 15:08:07 -0500 | [diff] [blame] | 254 | struct udp_hslot *hslot2, unsigned int slot2, |
| 255 | struct sk_buff *skb) |
Eric Dumazet | fddc17d | 2009-11-08 10:18:30 +0000 | [diff] [blame] | 256 | { |
| 257 | struct sock *sk, *result; |
| 258 | struct hlist_nulls_node *node; |
Tom Herbert | 72289b9 | 2013-01-22 09:50:44 +0000 | [diff] [blame] | 259 | int score, badness, matches = 0, reuseport = 0; |
| 260 | u32 hash = 0; |
Eric Dumazet | fddc17d | 2009-11-08 10:18:30 +0000 | [diff] [blame] | 261 | |
| 262 | begin: |
| 263 | result = NULL; |
| 264 | badness = -1; |
| 265 | udp_portaddr_for_each_entry_rcu(sk, node, &hslot2->head) { |
| 266 | score = compute_score2(sk, net, saddr, sport, |
| 267 | daddr, hnum, dif); |
| 268 | if (score > badness) { |
| 269 | result = sk; |
| 270 | badness = score; |
Tom Herbert | 72289b9 | 2013-01-22 09:50:44 +0000 | [diff] [blame] | 271 | reuseport = sk->sk_reuseport; |
| 272 | if (reuseport) { |
Craig Gallek | e32ea7e | 2016-01-04 17:41:46 -0500 | [diff] [blame] | 273 | struct sock *sk2; |
Hannes Frederic Sowa | b50026b | 2013-10-19 21:48:52 +0200 | [diff] [blame] | 274 | hash = udp6_ehashfn(net, daddr, hnum, |
| 275 | saddr, sport); |
Craig Gallek | 1134158 | 2016-01-05 15:08:07 -0500 | [diff] [blame] | 276 | sk2 = reuseport_select_sock(sk, hash, skb, |
| 277 | sizeof(struct udphdr)); |
Craig Gallek | e32ea7e | 2016-01-04 17:41:46 -0500 | [diff] [blame] | 278 | if (sk2) { |
| 279 | result = sk2; |
| 280 | goto found; |
| 281 | } |
Tom Herbert | 72289b9 | 2013-01-22 09:50:44 +0000 | [diff] [blame] | 282 | matches = 1; |
Eric Dumazet | 70da268 | 2015-10-08 19:33:21 -0700 | [diff] [blame] | 283 | } |
Tom Herbert | 72289b9 | 2013-01-22 09:50:44 +0000 | [diff] [blame] | 284 | } else if (score == badness && reuseport) { |
| 285 | matches++; |
Daniel Borkmann | 8fc54f6 | 2014-08-23 20:58:54 +0200 | [diff] [blame] | 286 | if (reciprocal_scale(hash, matches) == 0) |
Tom Herbert | 72289b9 | 2013-01-22 09:50:44 +0000 | [diff] [blame] | 287 | result = sk; |
| 288 | hash = next_pseudo_random32(hash); |
Eric Dumazet | fddc17d | 2009-11-08 10:18:30 +0000 | [diff] [blame] | 289 | } |
| 290 | } |
| 291 | /* |
| 292 | * if the nulls value we got at the end of this lookup is |
| 293 | * not the expected one, we must restart lookup. |
| 294 | * We probably met an item that was moved to another chain. |
| 295 | */ |
| 296 | if (get_nulls_value(node) != slot2) |
| 297 | goto begin; |
| 298 | |
| 299 | if (result) { |
Craig Gallek | e32ea7e | 2016-01-04 17:41:46 -0500 | [diff] [blame] | 300 | found: |
Eric Dumazet | c31504d | 2010-11-15 19:58:26 +0000 | [diff] [blame] | 301 | if (unlikely(!atomic_inc_not_zero_hint(&result->sk_refcnt, 2))) |
Eric Dumazet | fddc17d | 2009-11-08 10:18:30 +0000 | [diff] [blame] | 302 | result = NULL; |
| 303 | else if (unlikely(compute_score2(result, net, saddr, sport, |
| 304 | daddr, hnum, dif) < badness)) { |
| 305 | sock_put(result); |
| 306 | goto begin; |
| 307 | } |
| 308 | } |
| 309 | return result; |
| 310 | } |
| 311 | |
Pavel Emelyanov | fce8233 | 2011-12-09 06:23:34 +0000 | [diff] [blame] | 312 | struct sock *__udp6_lib_lookup(struct net *net, |
Balazs Scheidler | 88440ae | 2010-10-21 16:04:33 +0200 | [diff] [blame] | 313 | const struct in6_addr *saddr, __be16 sport, |
| 314 | const struct in6_addr *daddr, __be16 dport, |
Craig Gallek | 538950a | 2016-01-04 17:41:47 -0500 | [diff] [blame] | 315 | int dif, struct udp_table *udptable, |
| 316 | struct sk_buff *skb) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 317 | { |
Eric Dumazet | 271b72c | 2008-10-29 02:11:14 -0700 | [diff] [blame] | 318 | struct sock *sk, *result; |
Eric Dumazet | 88ab193 | 2008-11-16 19:39:21 -0800 | [diff] [blame] | 319 | struct hlist_nulls_node *node; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 320 | unsigned short hnum = ntohs(dport); |
Eric Dumazet | fddc17d | 2009-11-08 10:18:30 +0000 | [diff] [blame] | 321 | unsigned int hash2, slot2, slot = udp_hashfn(net, hnum, udptable->mask); |
| 322 | struct udp_hslot *hslot2, *hslot = &udptable->hash[slot]; |
Tom Herbert | 72289b9 | 2013-01-22 09:50:44 +0000 | [diff] [blame] | 323 | int score, badness, matches = 0, reuseport = 0; |
| 324 | u32 hash = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 325 | |
Eric Dumazet | 271b72c | 2008-10-29 02:11:14 -0700 | [diff] [blame] | 326 | rcu_read_lock(); |
Eric Dumazet | fddc17d | 2009-11-08 10:18:30 +0000 | [diff] [blame] | 327 | if (hslot->count > 10) { |
| 328 | hash2 = udp6_portaddr_hash(net, daddr, hnum); |
| 329 | slot2 = hash2 & udptable->mask; |
| 330 | hslot2 = &udptable->hash2[slot2]; |
| 331 | if (hslot->count < hslot2->count) |
| 332 | goto begin; |
| 333 | |
| 334 | result = udp6_lib_lookup2(net, saddr, sport, |
| 335 | daddr, hnum, dif, |
Craig Gallek | 1134158 | 2016-01-05 15:08:07 -0500 | [diff] [blame] | 336 | hslot2, slot2, skb); |
Eric Dumazet | fddc17d | 2009-11-08 10:18:30 +0000 | [diff] [blame] | 337 | if (!result) { |
| 338 | hash2 = udp6_portaddr_hash(net, &in6addr_any, hnum); |
| 339 | slot2 = hash2 & udptable->mask; |
| 340 | hslot2 = &udptable->hash2[slot2]; |
| 341 | if (hslot->count < hslot2->count) |
| 342 | goto begin; |
| 343 | |
Jorge Boncompte [DTI2] | 1223c67 | 2010-04-08 04:56:48 +0000 | [diff] [blame] | 344 | result = udp6_lib_lookup2(net, saddr, sport, |
| 345 | &in6addr_any, hnum, dif, |
Craig Gallek | 1134158 | 2016-01-05 15:08:07 -0500 | [diff] [blame] | 346 | hslot2, slot2, skb); |
Eric Dumazet | fddc17d | 2009-11-08 10:18:30 +0000 | [diff] [blame] | 347 | } |
| 348 | rcu_read_unlock(); |
| 349 | return result; |
| 350 | } |
Eric Dumazet | 271b72c | 2008-10-29 02:11:14 -0700 | [diff] [blame] | 351 | begin: |
| 352 | result = NULL; |
| 353 | badness = -1; |
Eric Dumazet | 88ab193 | 2008-11-16 19:39:21 -0800 | [diff] [blame] | 354 | sk_nulls_for_each_rcu(sk, node, &hslot->head) { |
Eric Dumazet | 645ca70 | 2008-10-29 01:41:45 -0700 | [diff] [blame] | 355 | score = compute_score(sk, net, hnum, saddr, sport, daddr, dport, dif); |
| 356 | if (score > badness) { |
| 357 | result = sk; |
| 358 | badness = score; |
Tom Herbert | 72289b9 | 2013-01-22 09:50:44 +0000 | [diff] [blame] | 359 | reuseport = sk->sk_reuseport; |
| 360 | if (reuseport) { |
Craig Gallek | e32ea7e | 2016-01-04 17:41:46 -0500 | [diff] [blame] | 361 | struct sock *sk2; |
Hannes Frederic Sowa | b50026b | 2013-10-19 21:48:52 +0200 | [diff] [blame] | 362 | hash = udp6_ehashfn(net, daddr, hnum, |
| 363 | saddr, sport); |
Craig Gallek | 538950a | 2016-01-04 17:41:47 -0500 | [diff] [blame] | 364 | sk2 = reuseport_select_sock(sk, hash, skb, |
| 365 | sizeof(struct udphdr)); |
Craig Gallek | e32ea7e | 2016-01-04 17:41:46 -0500 | [diff] [blame] | 366 | if (sk2) { |
| 367 | result = sk2; |
| 368 | goto found; |
| 369 | } |
Tom Herbert | 72289b9 | 2013-01-22 09:50:44 +0000 | [diff] [blame] | 370 | matches = 1; |
| 371 | } |
| 372 | } else if (score == badness && reuseport) { |
| 373 | matches++; |
Daniel Borkmann | 8fc54f6 | 2014-08-23 20:58:54 +0200 | [diff] [blame] | 374 | if (reciprocal_scale(hash, matches) == 0) |
Tom Herbert | 72289b9 | 2013-01-22 09:50:44 +0000 | [diff] [blame] | 375 | result = sk; |
| 376 | hash = next_pseudo_random32(hash); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 377 | } |
| 378 | } |
Eric Dumazet | 88ab193 | 2008-11-16 19:39:21 -0800 | [diff] [blame] | 379 | /* |
| 380 | * if the nulls value we got at the end of this lookup is |
| 381 | * not the expected one, we must restart lookup. |
| 382 | * We probably met an item that was moved to another chain. |
| 383 | */ |
Eric Dumazet | fddc17d | 2009-11-08 10:18:30 +0000 | [diff] [blame] | 384 | if (get_nulls_value(node) != slot) |
Eric Dumazet | 88ab193 | 2008-11-16 19:39:21 -0800 | [diff] [blame] | 385 | goto begin; |
| 386 | |
Eric Dumazet | 271b72c | 2008-10-29 02:11:14 -0700 | [diff] [blame] | 387 | if (result) { |
Craig Gallek | e32ea7e | 2016-01-04 17:41:46 -0500 | [diff] [blame] | 388 | found: |
Eric Dumazet | c31504d | 2010-11-15 19:58:26 +0000 | [diff] [blame] | 389 | if (unlikely(!atomic_inc_not_zero_hint(&result->sk_refcnt, 2))) |
Eric Dumazet | 271b72c | 2008-10-29 02:11:14 -0700 | [diff] [blame] | 390 | result = NULL; |
| 391 | else if (unlikely(compute_score(result, net, hnum, saddr, sport, |
| 392 | daddr, dport, dif) < badness)) { |
| 393 | sock_put(result); |
| 394 | goto begin; |
| 395 | } |
| 396 | } |
| 397 | rcu_read_unlock(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 398 | return result; |
| 399 | } |
Pavel Emelyanov | fce8233 | 2011-12-09 06:23:34 +0000 | [diff] [blame] | 400 | EXPORT_SYMBOL_GPL(__udp6_lib_lookup); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 401 | |
KOVACS Krisztian | 607c4aa | 2008-10-07 12:38:32 -0700 | [diff] [blame] | 402 | static struct sock *__udp6_lib_lookup_skb(struct sk_buff *skb, |
| 403 | __be16 sport, __be16 dport, |
Eric Dumazet | 645ca70 | 2008-10-29 01:41:45 -0700 | [diff] [blame] | 404 | struct udp_table *udptable) |
KOVACS Krisztian | 607c4aa | 2008-10-07 12:38:32 -0700 | [diff] [blame] | 405 | { |
KOVACS Krisztian | 2354261 | 2008-10-07 12:41:01 -0700 | [diff] [blame] | 406 | struct sock *sk; |
Eric Dumazet | b71d1d4 | 2011-04-22 04:53:02 +0000 | [diff] [blame] | 407 | const struct ipv6hdr *iph = ipv6_hdr(skb); |
KOVACS Krisztian | 607c4aa | 2008-10-07 12:38:32 -0700 | [diff] [blame] | 408 | |
Ian Morris | e5d08d7 | 2014-11-23 21:28:43 +0000 | [diff] [blame] | 409 | sk = skb_steal_sock(skb); |
| 410 | if (unlikely(sk)) |
KOVACS Krisztian | 2354261 | 2008-10-07 12:41:01 -0700 | [diff] [blame] | 411 | return sk; |
Eric Dumazet | adf3090 | 2009-06-02 05:19:30 +0000 | [diff] [blame] | 412 | return __udp6_lib_lookup(dev_net(skb_dst(skb)->dev), &iph->saddr, sport, |
| 413 | &iph->daddr, dport, inet6_iif(skb), |
Craig Gallek | 538950a | 2016-01-04 17:41:47 -0500 | [diff] [blame] | 414 | udptable, skb); |
KOVACS Krisztian | 607c4aa | 2008-10-07 12:38:32 -0700 | [diff] [blame] | 415 | } |
| 416 | |
Balazs Scheidler | aa976fc | 2010-10-21 16:05:41 +0200 | [diff] [blame] | 417 | struct sock *udp6_lib_lookup(struct net *net, const struct in6_addr *saddr, __be16 sport, |
| 418 | const struct in6_addr *daddr, __be16 dport, int dif) |
| 419 | { |
Craig Gallek | 538950a | 2016-01-04 17:41:47 -0500 | [diff] [blame] | 420 | return __udp6_lib_lookup(net, saddr, sport, daddr, dport, dif, &udp_table, NULL); |
Balazs Scheidler | aa976fc | 2010-10-21 16:05:41 +0200 | [diff] [blame] | 421 | } |
| 422 | EXPORT_SYMBOL_GPL(udp6_lib_lookup); |
| 423 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 424 | /* |
Ian Morris | 67ba415 | 2014-08-24 21:53:10 +0100 | [diff] [blame] | 425 | * This should be easy, if there is something there we |
| 426 | * return it, otherwise we block. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 427 | */ |
| 428 | |
Ying Xue | 1b78414 | 2015-03-02 15:37:48 +0800 | [diff] [blame] | 429 | int udpv6_recvmsg(struct sock *sk, struct msghdr *msg, size_t len, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 430 | int noblock, int flags, int *addr_len) |
| 431 | { |
| 432 | struct ipv6_pinfo *np = inet6_sk(sk); |
| 433 | struct inet_sock *inet = inet_sk(sk); |
YOSHIFUJI Hideaki | 1ab1457 | 2007-02-09 23:24:49 +0900 | [diff] [blame] | 434 | struct sk_buff *skb; |
David S. Miller | 59c2cda | 2011-12-01 14:12:55 -0500 | [diff] [blame] | 435 | unsigned int ulen, copied; |
Pavel Emelyanov | 3f518bf | 2012-02-21 07:30:58 +0000 | [diff] [blame] | 436 | int peeked, off = 0; |
Herbert Xu | 759e5d0 | 2007-03-25 20:10:56 -0700 | [diff] [blame] | 437 | int err; |
| 438 | int is_udplite = IS_UDPLITE(sk); |
Eric Dumazet | 197c949 | 2015-12-30 08:51:12 -0500 | [diff] [blame] | 439 | bool checksum_valid = false; |
Wei Yongjun | f26ba17 | 2008-11-02 16:11:01 +0000 | [diff] [blame] | 440 | int is_udp4; |
Eric Dumazet | 8a74ad6 | 2010-05-26 19:20:18 +0000 | [diff] [blame] | 441 | bool slow; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 442 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 443 | if (flags & MSG_ERRQUEUE) |
Hannes Frederic Sowa | 85fbaa7 | 2013-11-23 00:46:12 +0100 | [diff] [blame] | 444 | return ipv6_recv_error(sk, msg, len, addr_len); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 445 | |
Brian Haley | 4b340ae | 2010-04-23 11:26:09 +0000 | [diff] [blame] | 446 | if (np->rxpmtu && np->rxopt.bits.rxpmtu) |
Hannes Frederic Sowa | 85fbaa7 | 2013-11-23 00:46:12 +0100 | [diff] [blame] | 447 | return ipv6_recv_rxpmtu(sk, msg, len, addr_len); |
Brian Haley | 4b340ae | 2010-04-23 11:26:09 +0000 | [diff] [blame] | 448 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 449 | try_again: |
Herbert Xu | a59322b | 2007-12-05 01:53:40 -0800 | [diff] [blame] | 450 | skb = __skb_recv_datagram(sk, flags | (noblock ? MSG_DONTWAIT : 0), |
Pavel Emelyanov | 3f518bf | 2012-02-21 07:30:58 +0000 | [diff] [blame] | 451 | &peeked, &off, &err); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 452 | if (!skb) |
| 453 | goto out; |
| 454 | |
Herbert Xu | 759e5d0 | 2007-03-25 20:10:56 -0700 | [diff] [blame] | 455 | ulen = skb->len - sizeof(struct udphdr); |
David S. Miller | 59c2cda | 2011-12-01 14:12:55 -0500 | [diff] [blame] | 456 | copied = len; |
| 457 | if (copied > ulen) |
| 458 | copied = ulen; |
| 459 | else if (copied < ulen) |
YOSHIFUJI Hideaki | 1ab1457 | 2007-02-09 23:24:49 +0900 | [diff] [blame] | 460 | msg->msg_flags |= MSG_TRUNC; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 461 | |
Wei Yongjun | f26ba17 | 2008-11-02 16:11:01 +0000 | [diff] [blame] | 462 | is_udp4 = (skb->protocol == htons(ETH_P_IP)); |
| 463 | |
Gerrit Renker | ba4e58e | 2006-11-27 11:10:57 -0800 | [diff] [blame] | 464 | /* |
Herbert Xu | 759e5d0 | 2007-03-25 20:10:56 -0700 | [diff] [blame] | 465 | * If checksum is needed at all, try to do it while copying the |
| 466 | * data. If the data is truncated, or if we only want a partial |
| 467 | * coverage checksum (UDP-Lite), do it before the copy. |
Gerrit Renker | ba4e58e | 2006-11-27 11:10:57 -0800 | [diff] [blame] | 468 | */ |
Gerrit Renker | ba4e58e | 2006-11-27 11:10:57 -0800 | [diff] [blame] | 469 | |
David S. Miller | 59c2cda | 2011-12-01 14:12:55 -0500 | [diff] [blame] | 470 | if (copied < ulen || UDP_SKB_CB(skb)->partial_cov) { |
Eric Dumazet | 197c949 | 2015-12-30 08:51:12 -0500 | [diff] [blame] | 471 | checksum_valid = !udp_lib_checksum_complete(skb); |
| 472 | if (!checksum_valid) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 473 | goto csum_copy_err; |
Gerrit Renker | ba4e58e | 2006-11-27 11:10:57 -0800 | [diff] [blame] | 474 | } |
| 475 | |
Eric Dumazet | 197c949 | 2015-12-30 08:51:12 -0500 | [diff] [blame] | 476 | if (checksum_valid || skb_csum_unnecessary(skb)) |
David S. Miller | 51f3d02 | 2014-11-05 16:46:40 -0500 | [diff] [blame] | 477 | err = skb_copy_datagram_msg(skb, sizeof(struct udphdr), |
| 478 | msg, copied); |
Gerrit Renker | ba4e58e | 2006-11-27 11:10:57 -0800 | [diff] [blame] | 479 | else { |
Al Viro | 227158d | 2014-04-06 18:47:38 -0400 | [diff] [blame] | 480 | err = skb_copy_and_csum_datagram_msg(skb, sizeof(struct udphdr), msg); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 481 | if (err == -EINVAL) |
| 482 | goto csum_copy_err; |
| 483 | } |
Eric Dumazet | 22911fc | 2012-06-27 00:23:44 +0000 | [diff] [blame] | 484 | if (unlikely(err)) { |
| 485 | trace_kfree_skb(skb, udpv6_recvmsg); |
Eric Dumazet | 979402b | 2012-09-05 23:34:44 +0000 | [diff] [blame] | 486 | if (!peeked) { |
| 487 | atomic_inc(&sk->sk_drops); |
| 488 | if (is_udp4) |
| 489 | UDP_INC_STATS_USER(sock_net(sk), |
| 490 | UDP_MIB_INERRORS, |
| 491 | is_udplite); |
| 492 | else |
| 493 | UDP6_INC_STATS_USER(sock_net(sk), |
| 494 | UDP_MIB_INERRORS, |
| 495 | is_udplite); |
| 496 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 497 | goto out_free; |
Eric Dumazet | 22911fc | 2012-06-27 00:23:44 +0000 | [diff] [blame] | 498 | } |
Wei Yongjun | f26ba17 | 2008-11-02 16:11:01 +0000 | [diff] [blame] | 499 | if (!peeked) { |
| 500 | if (is_udp4) |
| 501 | UDP_INC_STATS_USER(sock_net(sk), |
| 502 | UDP_MIB_INDATAGRAMS, is_udplite); |
| 503 | else |
| 504 | UDP6_INC_STATS_USER(sock_net(sk), |
| 505 | UDP_MIB_INDATAGRAMS, is_udplite); |
| 506 | } |
Wang Chen | cb75994 | 2007-12-03 22:33:28 +1100 | [diff] [blame] | 507 | |
Neil Horman | 3b88578 | 2009-10-12 13:26:31 -0700 | [diff] [blame] | 508 | sock_recv_ts_and_drops(msg, sk, skb); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 509 | |
| 510 | /* Copy the address. */ |
| 511 | if (msg->msg_name) { |
Steffen Hurrle | 342dfc3 | 2014-01-17 22:53:15 +0100 | [diff] [blame] | 512 | DECLARE_SOCKADDR(struct sockaddr_in6 *, sin6, msg->msg_name); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 513 | sin6->sin6_family = AF_INET6; |
Arnaldo Carvalho de Melo | 4bedb45 | 2007-03-13 14:28:48 -0300 | [diff] [blame] | 514 | sin6->sin6_port = udp_hdr(skb)->source; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 515 | sin6->sin6_flowinfo = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 516 | |
Hannes Frederic Sowa | 842df07 | 2013-03-08 02:07:19 +0000 | [diff] [blame] | 517 | if (is_udp4) { |
Brian Haley | b301e82 | 2009-10-07 13:58:25 -0700 | [diff] [blame] | 518 | ipv6_addr_set_v4mapped(ip_hdr(skb)->saddr, |
| 519 | &sin6->sin6_addr); |
Hannes Frederic Sowa | 842df07 | 2013-03-08 02:07:19 +0000 | [diff] [blame] | 520 | sin6->sin6_scope_id = 0; |
| 521 | } else { |
Alexey Dobriyan | 4e3fd7a | 2011-11-21 03:39:03 +0000 | [diff] [blame] | 522 | sin6->sin6_addr = ipv6_hdr(skb)->saddr; |
Hannes Frederic Sowa | 842df07 | 2013-03-08 02:07:19 +0000 | [diff] [blame] | 523 | sin6->sin6_scope_id = |
| 524 | ipv6_iface_scope_id(&sin6->sin6_addr, |
Duan Jiong | 4330487 | 2014-08-01 09:52:58 +0800 | [diff] [blame] | 525 | inet6_iif(skb)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 526 | } |
Hannes Frederic Sowa | bceaa90 | 2013-11-18 04:20:45 +0100 | [diff] [blame] | 527 | *addr_len = sizeof(*sin6); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 528 | } |
Hannes Frederic Sowa | 4b261c7 | 2014-01-20 03:43:08 +0100 | [diff] [blame] | 529 | |
| 530 | if (np->rxopt.all) |
| 531 | ip6_datagram_recv_common_ctl(sk, msg, skb); |
| 532 | |
Wei Yongjun | f26ba17 | 2008-11-02 16:11:01 +0000 | [diff] [blame] | 533 | if (is_udp4) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 534 | if (inet->cmsg_flags) |
| 535 | ip_cmsg_recv(msg, skb); |
| 536 | } else { |
| 537 | if (np->rxopt.all) |
Hannes Frederic Sowa | 4b261c7 | 2014-01-20 03:43:08 +0100 | [diff] [blame] | 538 | ip6_datagram_recv_specific_ctl(sk, msg, skb); |
YOSHIFUJI Hideaki | 1ab1457 | 2007-02-09 23:24:49 +0900 | [diff] [blame] | 539 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 540 | |
David S. Miller | 59c2cda | 2011-12-01 14:12:55 -0500 | [diff] [blame] | 541 | err = copied; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 542 | if (flags & MSG_TRUNC) |
Herbert Xu | 759e5d0 | 2007-03-25 20:10:56 -0700 | [diff] [blame] | 543 | err = ulen; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 544 | |
| 545 | out_free: |
Eric Dumazet | 9d410c7 | 2009-10-30 05:03:53 +0000 | [diff] [blame] | 546 | skb_free_datagram_locked(sk, skb); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 547 | out: |
| 548 | return err; |
| 549 | |
| 550 | csum_copy_err: |
Eric Dumazet | 8a74ad6 | 2010-05-26 19:20:18 +0000 | [diff] [blame] | 551 | slow = lock_sock_fast(sk); |
Wei Yongjun | 0856f93 | 2008-11-02 16:14:27 +0000 | [diff] [blame] | 552 | if (!skb_kill_datagram(sk, skb, flags)) { |
Eric Dumazet | 6a5dc9e | 2013-04-29 08:39:56 +0000 | [diff] [blame] | 553 | if (is_udp4) { |
| 554 | UDP_INC_STATS_USER(sock_net(sk), |
| 555 | UDP_MIB_CSUMERRORS, is_udplite); |
Wei Yongjun | 0856f93 | 2008-11-02 16:14:27 +0000 | [diff] [blame] | 556 | UDP_INC_STATS_USER(sock_net(sk), |
| 557 | UDP_MIB_INERRORS, is_udplite); |
Eric Dumazet | 6a5dc9e | 2013-04-29 08:39:56 +0000 | [diff] [blame] | 558 | } else { |
| 559 | UDP6_INC_STATS_USER(sock_net(sk), |
| 560 | UDP_MIB_CSUMERRORS, is_udplite); |
Wei Yongjun | 0856f93 | 2008-11-02 16:14:27 +0000 | [diff] [blame] | 561 | UDP6_INC_STATS_USER(sock_net(sk), |
| 562 | UDP_MIB_INERRORS, is_udplite); |
Eric Dumazet | 6a5dc9e | 2013-04-29 08:39:56 +0000 | [diff] [blame] | 563 | } |
Wei Yongjun | 0856f93 | 2008-11-02 16:14:27 +0000 | [diff] [blame] | 564 | } |
Eric Dumazet | 8a74ad6 | 2010-05-26 19:20:18 +0000 | [diff] [blame] | 565 | unlock_sock_fast(sk, slow); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 566 | |
Eric Dumazet | beb39db | 2015-05-30 09:16:53 -0700 | [diff] [blame] | 567 | /* starting over for a new packet, but check if we need to yield */ |
| 568 | cond_resched(); |
Xufeng Zhang | 9cfaa8d | 2011-06-21 10:43:40 +0000 | [diff] [blame] | 569 | msg->msg_flags &= ~MSG_TRUNC; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 570 | goto try_again; |
| 571 | } |
| 572 | |
Gerrit Renker | ba4e58e | 2006-11-27 11:10:57 -0800 | [diff] [blame] | 573 | void __udp6_lib_err(struct sk_buff *skb, struct inet6_skb_parm *opt, |
Brian Haley | d5fdd6b | 2009-06-23 04:31:07 -0700 | [diff] [blame] | 574 | u8 type, u8 code, int offset, __be32 info, |
Eric Dumazet | 645ca70 | 2008-10-29 01:41:45 -0700 | [diff] [blame] | 575 | struct udp_table *udptable) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 576 | { |
| 577 | struct ipv6_pinfo *np; |
Eric Dumazet | b71d1d4 | 2011-04-22 04:53:02 +0000 | [diff] [blame] | 578 | const struct ipv6hdr *hdr = (const struct ipv6hdr *)skb->data; |
| 579 | const struct in6_addr *saddr = &hdr->saddr; |
| 580 | const struct in6_addr *daddr = &hdr->daddr; |
Ian Morris | 67ba415 | 2014-08-24 21:53:10 +0100 | [diff] [blame] | 581 | struct udphdr *uh = (struct udphdr *)(skb->data+offset); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 582 | struct sock *sk; |
| 583 | int err; |
Duan Jiong | 7304fe4 | 2014-07-31 17:54:32 +0800 | [diff] [blame] | 584 | struct net *net = dev_net(skb->dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 585 | |
Craig Gallek | e32ea7e | 2016-01-04 17:41:46 -0500 | [diff] [blame] | 586 | sk = __udp6_lib_lookup(net, daddr, uh->dest, saddr, uh->source, |
Craig Gallek | 538950a | 2016-01-04 17:41:47 -0500 | [diff] [blame] | 587 | inet6_iif(skb), udptable, skb); |
Ian Morris | 63159f2 | 2015-03-29 14:00:04 +0100 | [diff] [blame] | 588 | if (!sk) { |
Duan Jiong | 7304fe4 | 2014-07-31 17:54:32 +0800 | [diff] [blame] | 589 | ICMP6_INC_STATS_BH(net, __in6_dev_get(skb->dev), |
| 590 | ICMP6_MIB_INERRORS); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 591 | return; |
Duan Jiong | 7304fe4 | 2014-07-31 17:54:32 +0800 | [diff] [blame] | 592 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 593 | |
Hannes Frederic Sowa | 93b36cf | 2013-12-15 03:41:14 +0100 | [diff] [blame] | 594 | if (type == ICMPV6_PKT_TOOBIG) { |
| 595 | if (!ip6_sk_accept_pmtu(sk)) |
| 596 | goto out; |
David S. Miller | 81aded2 | 2012-06-15 14:54:11 -0700 | [diff] [blame] | 597 | ip6_sk_update_pmtu(skb, sk, info); |
Hannes Frederic Sowa | 93b36cf | 2013-12-15 03:41:14 +0100 | [diff] [blame] | 598 | } |
Duan Jiong | 1a462d1 | 2013-09-20 18:20:28 +0800 | [diff] [blame] | 599 | if (type == NDISC_REDIRECT) { |
David S. Miller | ec18d9a | 2012-07-12 00:25:15 -0700 | [diff] [blame] | 600 | ip6_sk_redirect(skb, sk); |
Duan Jiong | 1a462d1 | 2013-09-20 18:20:28 +0800 | [diff] [blame] | 601 | goto out; |
| 602 | } |
David S. Miller | 81aded2 | 2012-06-15 14:54:11 -0700 | [diff] [blame] | 603 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 604 | np = inet6_sk(sk); |
| 605 | |
| 606 | if (!icmpv6_err_convert(type, code, &err) && !np->recverr) |
| 607 | goto out; |
| 608 | |
| 609 | if (sk->sk_state != TCP_ESTABLISHED && !np->recverr) |
| 610 | goto out; |
| 611 | |
Eric Dumazet | b1faf56 | 2010-05-31 23:44:05 -0700 | [diff] [blame] | 612 | if (np->recverr) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 613 | ipv6_icmp_error(sk, skb, err, uh->dest, ntohl(info), (u8 *)(uh+1)); |
Eric Dumazet | b1faf56 | 2010-05-31 23:44:05 -0700 | [diff] [blame] | 614 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 615 | sk->sk_err = err; |
| 616 | sk->sk_error_report(sk); |
| 617 | out: |
| 618 | sock_put(sk); |
| 619 | } |
| 620 | |
Benjamin LaHaise | f7ad74f | 2012-04-27 08:23:21 +0000 | [diff] [blame] | 621 | static int __udpv6_queue_rcv_skb(struct sock *sk, struct sk_buff *skb) |
| 622 | { |
| 623 | int rc; |
| 624 | |
Eric Dumazet | efe4208 | 2013-10-03 15:42:29 -0700 | [diff] [blame] | 625 | if (!ipv6_addr_any(&sk->sk_v6_daddr)) { |
Benjamin LaHaise | f7ad74f | 2012-04-27 08:23:21 +0000 | [diff] [blame] | 626 | sock_rps_save_rxhash(sk, skb); |
Shawn Bohrer | 005ec97 | 2013-10-07 11:01:38 -0500 | [diff] [blame] | 627 | sk_mark_napi_id(sk, skb); |
Eric Dumazet | 2c8c56e | 2014-11-11 05:54:28 -0800 | [diff] [blame] | 628 | sk_incoming_cpu_update(sk); |
Shawn Bohrer | 005ec97 | 2013-10-07 11:01:38 -0500 | [diff] [blame] | 629 | } |
Benjamin LaHaise | f7ad74f | 2012-04-27 08:23:21 +0000 | [diff] [blame] | 630 | |
| 631 | rc = sock_queue_rcv_skb(sk, skb); |
| 632 | if (rc < 0) { |
| 633 | int is_udplite = IS_UDPLITE(sk); |
| 634 | |
| 635 | /* Note that an ENOMEM error is charged twice */ |
| 636 | if (rc == -ENOMEM) |
| 637 | UDP6_INC_STATS_BH(sock_net(sk), |
| 638 | UDP_MIB_RCVBUFERRORS, is_udplite); |
| 639 | UDP6_INC_STATS_BH(sock_net(sk), UDP_MIB_INERRORS, is_udplite); |
| 640 | kfree_skb(skb); |
| 641 | return -1; |
| 642 | } |
| 643 | return 0; |
| 644 | } |
| 645 | |
Gerrit Renker | ba4e58e | 2006-11-27 11:10:57 -0800 | [diff] [blame] | 646 | static __inline__ void udpv6_err(struct sk_buff *skb, |
Brian Haley | d5fdd6b | 2009-06-23 04:31:07 -0700 | [diff] [blame] | 647 | struct inet6_skb_parm *opt, u8 type, |
Ian Morris | 67ba415 | 2014-08-24 21:53:10 +0100 | [diff] [blame] | 648 | u8 code, int offset, __be32 info) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 649 | { |
Eric Dumazet | 645ca70 | 2008-10-29 01:41:45 -0700 | [diff] [blame] | 650 | __udp6_lib_err(skb, opt, type, code, offset, info, &udp_table); |
Gerrit Renker | ba4e58e | 2006-11-27 11:10:57 -0800 | [diff] [blame] | 651 | } |
| 652 | |
Benjamin LaHaise | d7f3f62 | 2012-04-27 08:24:08 +0000 | [diff] [blame] | 653 | static struct static_key udpv6_encap_needed __read_mostly; |
| 654 | void udpv6_encap_enable(void) |
| 655 | { |
| 656 | if (!static_key_enabled(&udpv6_encap_needed)) |
| 657 | static_key_slow_inc(&udpv6_encap_needed); |
| 658 | } |
| 659 | EXPORT_SYMBOL(udpv6_encap_enable); |
| 660 | |
Benjamin LaHaise | f7ad74f | 2012-04-27 08:23:21 +0000 | [diff] [blame] | 661 | int udpv6_queue_rcv_skb(struct sock *sk, struct sk_buff *skb) |
Gerrit Renker | ba4e58e | 2006-11-27 11:10:57 -0800 | [diff] [blame] | 662 | { |
| 663 | struct udp_sock *up = udp_sk(sk); |
David S. Miller | a18135e | 2006-08-15 00:00:09 -0700 | [diff] [blame] | 664 | int rc; |
Wang Chen | b2bf1e2 | 2007-12-03 22:34:16 +1100 | [diff] [blame] | 665 | int is_udplite = IS_UDPLITE(sk); |
David S. Miller | a18135e | 2006-08-15 00:00:09 -0700 | [diff] [blame] | 666 | |
Gerrit Renker | ba4e58e | 2006-11-27 11:10:57 -0800 | [diff] [blame] | 667 | if (!xfrm6_policy_check(sk, XFRM_POLICY_IN, skb)) |
| 668 | goto drop; |
| 669 | |
Benjamin LaHaise | d7f3f62 | 2012-04-27 08:24:08 +0000 | [diff] [blame] | 670 | if (static_key_false(&udpv6_encap_needed) && up->encap_type) { |
| 671 | int (*encap_rcv)(struct sock *sk, struct sk_buff *skb); |
| 672 | |
| 673 | /* |
| 674 | * This is an encapsulation socket so pass the skb to |
| 675 | * the socket's udp_encap_rcv() hook. Otherwise, just |
| 676 | * fall through and pass this up the UDP socket. |
| 677 | * up->encap_rcv() returns the following value: |
| 678 | * =0 if skb was successfully passed to the encap |
| 679 | * handler or was discarded by it. |
| 680 | * >0 if skb should be passed on to UDP. |
| 681 | * <0 if skb should be resubmitted as proto -N |
| 682 | */ |
| 683 | |
| 684 | /* if we're overly short, let UDP handle it */ |
| 685 | encap_rcv = ACCESS_ONCE(up->encap_rcv); |
Ian Morris | 53b24b8 | 2015-03-29 14:00:05 +0100 | [diff] [blame] | 686 | if (skb->len > sizeof(struct udphdr) && encap_rcv) { |
Benjamin LaHaise | d7f3f62 | 2012-04-27 08:24:08 +0000 | [diff] [blame] | 687 | int ret; |
| 688 | |
Tom Herbert | 0a80966 | 2014-05-07 16:52:39 -0700 | [diff] [blame] | 689 | /* Verify checksum before giving to encap */ |
| 690 | if (udp_lib_checksum_complete(skb)) |
| 691 | goto csum_error; |
| 692 | |
Benjamin LaHaise | d7f3f62 | 2012-04-27 08:24:08 +0000 | [diff] [blame] | 693 | ret = encap_rcv(sk, skb); |
| 694 | if (ret <= 0) { |
| 695 | UDP_INC_STATS_BH(sock_net(sk), |
| 696 | UDP_MIB_INDATAGRAMS, |
| 697 | is_udplite); |
| 698 | return -ret; |
| 699 | } |
| 700 | } |
| 701 | |
| 702 | /* FALLTHROUGH -- it's a UDP Packet */ |
| 703 | } |
| 704 | |
Gerrit Renker | ba4e58e | 2006-11-27 11:10:57 -0800 | [diff] [blame] | 705 | /* |
| 706 | * UDP-Lite specific tests, ignored on UDP sockets (see net/ipv4/udp.c). |
| 707 | */ |
Wang Chen | b2bf1e2 | 2007-12-03 22:34:16 +1100 | [diff] [blame] | 708 | if ((is_udplite & UDPLITE_RECV_CC) && UDP_SKB_CB(skb)->partial_cov) { |
Gerrit Renker | ba4e58e | 2006-11-27 11:10:57 -0800 | [diff] [blame] | 709 | |
| 710 | if (up->pcrlen == 0) { /* full coverage was set */ |
Joe Perches | ba7a46f | 2014-11-11 10:59:17 -0800 | [diff] [blame] | 711 | net_dbg_ratelimited("UDPLITE6: partial coverage %d while full coverage %d requested\n", |
| 712 | UDP_SKB_CB(skb)->cscov, skb->len); |
Gerrit Renker | ba4e58e | 2006-11-27 11:10:57 -0800 | [diff] [blame] | 713 | goto drop; |
| 714 | } |
| 715 | if (UDP_SKB_CB(skb)->cscov < up->pcrlen) { |
Joe Perches | ba7a46f | 2014-11-11 10:59:17 -0800 | [diff] [blame] | 716 | net_dbg_ratelimited("UDPLITE6: coverage %d too small, need min %d\n", |
| 717 | UDP_SKB_CB(skb)->cscov, up->pcrlen); |
Gerrit Renker | ba4e58e | 2006-11-27 11:10:57 -0800 | [diff] [blame] | 718 | goto drop; |
| 719 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 720 | } |
| 721 | |
Eric Dumazet | 33d480c | 2011-08-11 19:30:52 +0000 | [diff] [blame] | 722 | if (rcu_access_pointer(sk->sk_filter)) { |
Herbert Xu | 1ab6eb6 | 2007-03-06 20:29:58 -0800 | [diff] [blame] | 723 | if (udp_lib_checksum_complete(skb)) |
Eric Dumazet | 6a5dc9e | 2013-04-29 08:39:56 +0000 | [diff] [blame] | 724 | goto csum_error; |
Herbert Xu | 1ab6eb6 | 2007-03-06 20:29:58 -0800 | [diff] [blame] | 725 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 726 | |
Sorin Dumitru | 274f482 | 2014-07-22 21:16:51 +0300 | [diff] [blame] | 727 | if (sk_rcvqueues_full(sk, sk->sk_rcvbuf)) { |
James M Leddy | 3e215c8 | 2014-06-25 17:38:13 -0400 | [diff] [blame] | 728 | UDP6_INC_STATS_BH(sock_net(sk), |
| 729 | UDP_MIB_RCVBUFERRORS, is_udplite); |
Benjamin LaHaise | cb80ef4 | 2012-04-27 08:23:59 +0000 | [diff] [blame] | 730 | goto drop; |
James M Leddy | 3e215c8 | 2014-06-25 17:38:13 -0400 | [diff] [blame] | 731 | } |
Benjamin LaHaise | cb80ef4 | 2012-04-27 08:23:59 +0000 | [diff] [blame] | 732 | |
Eric Dumazet | d826eb1 | 2011-11-09 07:24:35 +0000 | [diff] [blame] | 733 | skb_dst_drop(skb); |
Wang Chen | cb75994 | 2007-12-03 22:33:28 +1100 | [diff] [blame] | 734 | |
Benjamin LaHaise | cb80ef4 | 2012-04-27 08:23:59 +0000 | [diff] [blame] | 735 | bh_lock_sock(sk); |
| 736 | rc = 0; |
| 737 | if (!sock_owned_by_user(sk)) |
| 738 | rc = __udpv6_queue_rcv_skb(sk, skb); |
| 739 | else if (sk_add_backlog(sk, skb, sk->sk_rcvbuf)) { |
| 740 | bh_unlock_sock(sk); |
| 741 | goto drop; |
| 742 | } |
| 743 | bh_unlock_sock(sk); |
Benjamin LaHaise | f7ad74f | 2012-04-27 08:23:21 +0000 | [diff] [blame] | 744 | |
| 745 | return rc; |
James M Leddy | 3e215c8 | 2014-06-25 17:38:13 -0400 | [diff] [blame] | 746 | |
Eric Dumazet | 6a5dc9e | 2013-04-29 08:39:56 +0000 | [diff] [blame] | 747 | csum_error: |
| 748 | UDP6_INC_STATS_BH(sock_net(sk), UDP_MIB_CSUMERRORS, is_udplite); |
Gerrit Renker | ba4e58e | 2006-11-27 11:10:57 -0800 | [diff] [blame] | 749 | drop: |
Pavel Emelyanov | ef28d1a | 2008-07-05 21:19:40 -0700 | [diff] [blame] | 750 | UDP6_INC_STATS_BH(sock_net(sk), UDP_MIB_INERRORS, is_udplite); |
Benjamin LaHaise | cb80ef4 | 2012-04-27 08:23:59 +0000 | [diff] [blame] | 751 | atomic_inc(&sk->sk_drops); |
Gerrit Renker | ba4e58e | 2006-11-27 11:10:57 -0800 | [diff] [blame] | 752 | kfree_skb(skb); |
| 753 | return -1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 754 | } |
| 755 | |
David Held | 5cf3d46 | 2014-07-15 23:28:31 -0400 | [diff] [blame] | 756 | static bool __udp_v6_is_mcast_sock(struct net *net, struct sock *sk, |
| 757 | __be16 loc_port, const struct in6_addr *loc_addr, |
| 758 | __be16 rmt_port, const struct in6_addr *rmt_addr, |
| 759 | int dif, unsigned short hnum) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 760 | { |
David Held | 5cf3d46 | 2014-07-15 23:28:31 -0400 | [diff] [blame] | 761 | struct inet_sock *inet = inet_sk(sk); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 762 | |
David Held | 5cf3d46 | 2014-07-15 23:28:31 -0400 | [diff] [blame] | 763 | if (!net_eq(sock_net(sk), net)) |
| 764 | return false; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 765 | |
David Held | 5cf3d46 | 2014-07-15 23:28:31 -0400 | [diff] [blame] | 766 | if (udp_sk(sk)->udp_port_hash != hnum || |
| 767 | sk->sk_family != PF_INET6 || |
| 768 | (inet->inet_dport && inet->inet_dport != rmt_port) || |
| 769 | (!ipv6_addr_any(&sk->sk_v6_daddr) && |
| 770 | !ipv6_addr_equal(&sk->sk_v6_daddr, rmt_addr)) || |
Henning Rogge | 33b4b01 | 2015-05-18 21:08:49 +0200 | [diff] [blame] | 771 | (sk->sk_bound_dev_if && sk->sk_bound_dev_if != dif) || |
| 772 | (!ipv6_addr_any(&sk->sk_v6_rcv_saddr) && |
| 773 | !ipv6_addr_equal(&sk->sk_v6_rcv_saddr, loc_addr))) |
David Held | 5cf3d46 | 2014-07-15 23:28:31 -0400 | [diff] [blame] | 774 | return false; |
| 775 | if (!inet6_mc_check(sk, loc_addr, rmt_addr)) |
| 776 | return false; |
| 777 | return true; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 778 | } |
| 779 | |
Eric Dumazet | a1ab77f | 2009-11-08 10:18:52 +0000 | [diff] [blame] | 780 | static void flush_stack(struct sock **stack, unsigned int count, |
| 781 | struct sk_buff *skb, unsigned int final) |
| 782 | { |
Benjamin LaHaise | cb80ef4 | 2012-04-27 08:23:59 +0000 | [diff] [blame] | 783 | struct sk_buff *skb1 = NULL; |
Eric Dumazet | a1ab77f | 2009-11-08 10:18:52 +0000 | [diff] [blame] | 784 | struct sock *sk; |
Benjamin LaHaise | cb80ef4 | 2012-04-27 08:23:59 +0000 | [diff] [blame] | 785 | unsigned int i; |
Eric Dumazet | a1ab77f | 2009-11-08 10:18:52 +0000 | [diff] [blame] | 786 | |
| 787 | for (i = 0; i < count; i++) { |
Eric Dumazet | f6b8f32 | 2009-11-08 10:20:19 +0000 | [diff] [blame] | 788 | sk = stack[i]; |
Ian Morris | 63159f2 | 2015-03-29 14:00:04 +0100 | [diff] [blame] | 789 | if (likely(!skb1)) |
Benjamin LaHaise | cb80ef4 | 2012-04-27 08:23:59 +0000 | [diff] [blame] | 790 | skb1 = (i == final) ? skb : skb_clone(skb, GFP_ATOMIC); |
| 791 | if (!skb1) { |
| 792 | atomic_inc(&sk->sk_drops); |
| 793 | UDP6_INC_STATS_BH(sock_net(sk), UDP_MIB_RCVBUFERRORS, |
| 794 | IS_UDPLITE(sk)); |
| 795 | UDP6_INC_STATS_BH(sock_net(sk), UDP_MIB_INERRORS, |
| 796 | IS_UDPLITE(sk)); |
Eric Dumazet | a1ab77f | 2009-11-08 10:18:52 +0000 | [diff] [blame] | 797 | } |
Benjamin LaHaise | cb80ef4 | 2012-04-27 08:23:59 +0000 | [diff] [blame] | 798 | |
| 799 | if (skb1 && udpv6_queue_rcv_skb(sk, skb1) <= 0) |
| 800 | skb1 = NULL; |
David Held | 2dc41cf | 2014-07-15 23:28:32 -0400 | [diff] [blame] | 801 | sock_put(sk); |
Eric Dumazet | a1ab77f | 2009-11-08 10:18:52 +0000 | [diff] [blame] | 802 | } |
Benjamin LaHaise | cb80ef4 | 2012-04-27 08:23:59 +0000 | [diff] [blame] | 803 | if (unlikely(skb1)) |
| 804 | kfree_skb(skb1); |
Eric Dumazet | a1ab77f | 2009-11-08 10:18:52 +0000 | [diff] [blame] | 805 | } |
Tom Herbert | 4068579 | 2014-05-02 16:29:58 -0700 | [diff] [blame] | 806 | |
| 807 | static void udp6_csum_zero_error(struct sk_buff *skb) |
| 808 | { |
| 809 | /* RFC 2460 section 8.1 says that we SHOULD log |
| 810 | * this error. Well, it is reasonable. |
| 811 | */ |
Joe Perches | ba7a46f | 2014-11-11 10:59:17 -0800 | [diff] [blame] | 812 | net_dbg_ratelimited("IPv6: udp checksum is 0 for [%pI6c]:%u->[%pI6c]:%u\n", |
| 813 | &ipv6_hdr(skb)->saddr, ntohs(udp_hdr(skb)->source), |
| 814 | &ipv6_hdr(skb)->daddr, ntohs(udp_hdr(skb)->dest)); |
Tom Herbert | 4068579 | 2014-05-02 16:29:58 -0700 | [diff] [blame] | 815 | } |
| 816 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 817 | /* |
| 818 | * Note: called only from the BH handler context, |
| 819 | * so we don't need to lock the hashes. |
| 820 | */ |
Pavel Emelyanov | e316349 | 2008-06-16 17:12:11 -0700 | [diff] [blame] | 821 | static int __udp6_lib_mcast_deliver(struct net *net, struct sk_buff *skb, |
Eric Dumazet | b71d1d4 | 2011-04-22 04:53:02 +0000 | [diff] [blame] | 822 | const struct in6_addr *saddr, const struct in6_addr *daddr, |
Rick Jones | 36cbb24 | 2014-11-06 10:37:54 -0800 | [diff] [blame] | 823 | struct udp_table *udptable, int proto) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 824 | { |
Eric Dumazet | a1ab77f | 2009-11-08 10:18:52 +0000 | [diff] [blame] | 825 | struct sock *sk, *stack[256 / sizeof(struct sock *)]; |
Arnaldo Carvalho de Melo | 4bedb45 | 2007-03-13 14:28:48 -0300 | [diff] [blame] | 826 | const struct udphdr *uh = udp_hdr(skb); |
David Held | 5cf3d46 | 2014-07-15 23:28:31 -0400 | [diff] [blame] | 827 | struct hlist_nulls_node *node; |
| 828 | unsigned short hnum = ntohs(uh->dest); |
| 829 | struct udp_hslot *hslot = udp_hashslot(udptable, net, hnum); |
| 830 | int dif = inet6_iif(skb); |
David Held | 2dc41cf | 2014-07-15 23:28:32 -0400 | [diff] [blame] | 831 | unsigned int count = 0, offset = offsetof(typeof(*sk), sk_nulls_node); |
| 832 | unsigned int hash2 = 0, hash2_any = 0, use_hash2 = (hslot->count > 10); |
Rick Jones | 36cbb24 | 2014-11-06 10:37:54 -0800 | [diff] [blame] | 833 | bool inner_flushed = false; |
David Held | 2dc41cf | 2014-07-15 23:28:32 -0400 | [diff] [blame] | 834 | |
| 835 | if (use_hash2) { |
| 836 | hash2_any = udp6_portaddr_hash(net, &in6addr_any, hnum) & |
| 837 | udp_table.mask; |
| 838 | hash2 = udp6_portaddr_hash(net, daddr, hnum) & udp_table.mask; |
| 839 | start_lookup: |
| 840 | hslot = &udp_table.hash2[hash2]; |
| 841 | offset = offsetof(typeof(*sk), __sk_common.skc_portaddr_node); |
| 842 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 843 | |
Eric Dumazet | 645ca70 | 2008-10-29 01:41:45 -0700 | [diff] [blame] | 844 | spin_lock(&hslot->lock); |
David Held | 2dc41cf | 2014-07-15 23:28:32 -0400 | [diff] [blame] | 845 | sk_nulls_for_each_entry_offset(sk, node, &hslot->head, offset) { |
David Held | 5cf3d46 | 2014-07-15 23:28:31 -0400 | [diff] [blame] | 846 | if (__udp_v6_is_mcast_sock(net, sk, |
| 847 | uh->dest, daddr, |
| 848 | uh->source, saddr, |
| 849 | dif, hnum) && |
| 850 | /* If zero checksum and no_check is not on for |
| 851 | * the socket then skip it. |
| 852 | */ |
| 853 | (uh->check || udp_sk(sk)->no_check6_rx)) { |
| 854 | if (unlikely(count == ARRAY_SIZE(stack))) { |
| 855 | flush_stack(stack, count, skb, ~0); |
Rick Jones | 36cbb24 | 2014-11-06 10:37:54 -0800 | [diff] [blame] | 856 | inner_flushed = true; |
David Held | 5cf3d46 | 2014-07-15 23:28:31 -0400 | [diff] [blame] | 857 | count = 0; |
| 858 | } |
Tom Herbert | 4068579 | 2014-05-02 16:29:58 -0700 | [diff] [blame] | 859 | stack[count++] = sk; |
David Held | 2dc41cf | 2014-07-15 23:28:32 -0400 | [diff] [blame] | 860 | sock_hold(sk); |
Hideo Aoki | 95766ff | 2007-12-31 00:29:24 -0800 | [diff] [blame] | 861 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 862 | } |
Eric Dumazet | a1ab77f | 2009-11-08 10:18:52 +0000 | [diff] [blame] | 863 | |
Eric Dumazet | 645ca70 | 2008-10-29 01:41:45 -0700 | [diff] [blame] | 864 | spin_unlock(&hslot->lock); |
Eric Dumazet | a1ab77f | 2009-11-08 10:18:52 +0000 | [diff] [blame] | 865 | |
David Held | 2dc41cf | 2014-07-15 23:28:32 -0400 | [diff] [blame] | 866 | /* Also lookup *:port if we are using hash2 and haven't done so yet. */ |
| 867 | if (use_hash2 && hash2 != hash2_any) { |
| 868 | hash2 = hash2_any; |
| 869 | goto start_lookup; |
| 870 | } |
| 871 | |
Eric Dumazet | a1ab77f | 2009-11-08 10:18:52 +0000 | [diff] [blame] | 872 | if (count) { |
| 873 | flush_stack(stack, count, skb, count - 1); |
Eric Dumazet | a1ab77f | 2009-11-08 10:18:52 +0000 | [diff] [blame] | 874 | } else { |
Rick Jones | 36cbb24 | 2014-11-06 10:37:54 -0800 | [diff] [blame] | 875 | if (!inner_flushed) |
| 876 | UDP_INC_STATS_BH(net, UDP_MIB_IGNOREDMULTI, |
| 877 | proto == IPPROTO_UDPLITE); |
| 878 | consume_skb(skb); |
Eric Dumazet | a1ab77f | 2009-11-08 10:18:52 +0000 | [diff] [blame] | 879 | } |
Gerrit Renker | ba4e58e | 2006-11-27 11:10:57 -0800 | [diff] [blame] | 880 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 881 | } |
| 882 | |
Eric Dumazet | 645ca70 | 2008-10-29 01:41:45 -0700 | [diff] [blame] | 883 | int __udp6_lib_rcv(struct sk_buff *skb, struct udp_table *udptable, |
Herbert Xu | 759e5d0 | 2007-03-25 20:10:56 -0700 | [diff] [blame] | 884 | int proto) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 885 | { |
Alexey Dobriyan | 3ffe533 | 2010-02-18 08:25:24 +0000 | [diff] [blame] | 886 | struct net *net = dev_net(skb->dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 887 | struct sock *sk; |
YOSHIFUJI Hideaki | 1ab1457 | 2007-02-09 23:24:49 +0900 | [diff] [blame] | 888 | struct udphdr *uh; |
Eric Dumazet | b71d1d4 | 2011-04-22 04:53:02 +0000 | [diff] [blame] | 889 | const struct in6_addr *saddr, *daddr; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 890 | u32 ulen = 0; |
| 891 | |
| 892 | if (!pskb_may_pull(skb, sizeof(struct udphdr))) |
Bjørn Mork | d6bc014 | 2010-05-06 03:44:35 +0000 | [diff] [blame] | 893 | goto discard; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 894 | |
Arnaldo Carvalho de Melo | 0660e03 | 2007-04-25 17:54:47 -0700 | [diff] [blame] | 895 | saddr = &ipv6_hdr(skb)->saddr; |
| 896 | daddr = &ipv6_hdr(skb)->daddr; |
Arnaldo Carvalho de Melo | 4bedb45 | 2007-03-13 14:28:48 -0300 | [diff] [blame] | 897 | uh = udp_hdr(skb); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 898 | |
| 899 | ulen = ntohs(uh->len); |
Gerrit Renker | ba4e58e | 2006-11-27 11:10:57 -0800 | [diff] [blame] | 900 | if (ulen > skb->len) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 901 | goto short_packet; |
| 902 | |
Herbert Xu | 759e5d0 | 2007-03-25 20:10:56 -0700 | [diff] [blame] | 903 | if (proto == IPPROTO_UDP) { |
| 904 | /* UDP validates ulen. */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 905 | |
Gerrit Renker | ba4e58e | 2006-11-27 11:10:57 -0800 | [diff] [blame] | 906 | /* Check for jumbo payload */ |
| 907 | if (ulen == 0) |
| 908 | ulen = skb->len; |
| 909 | |
| 910 | if (ulen < sizeof(*uh)) |
| 911 | goto short_packet; |
| 912 | |
| 913 | if (ulen < skb->len) { |
| 914 | if (pskb_trim_rcsum(skb, ulen)) |
| 915 | goto short_packet; |
Arnaldo Carvalho de Melo | 0660e03 | 2007-04-25 17:54:47 -0700 | [diff] [blame] | 916 | saddr = &ipv6_hdr(skb)->saddr; |
| 917 | daddr = &ipv6_hdr(skb)->daddr; |
Arnaldo Carvalho de Melo | 4bedb45 | 2007-03-13 14:28:48 -0300 | [diff] [blame] | 918 | uh = udp_hdr(skb); |
Gerrit Renker | ba4e58e | 2006-11-27 11:10:57 -0800 | [diff] [blame] | 919 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 920 | } |
| 921 | |
Herbert Xu | 759e5d0 | 2007-03-25 20:10:56 -0700 | [diff] [blame] | 922 | if (udp6_csum_init(skb, uh, proto)) |
Eric Dumazet | 6a5dc9e | 2013-04-29 08:39:56 +0000 | [diff] [blame] | 923 | goto csum_error; |
Herbert Xu | 759e5d0 | 2007-03-25 20:10:56 -0700 | [diff] [blame] | 924 | |
YOSHIFUJI Hideaki | 1ab1457 | 2007-02-09 23:24:49 +0900 | [diff] [blame] | 925 | /* |
| 926 | * Multicast receive code |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 927 | */ |
Gerrit Renker | ba4e58e | 2006-11-27 11:10:57 -0800 | [diff] [blame] | 928 | if (ipv6_addr_is_multicast(daddr)) |
Pavel Emelyanov | e316349 | 2008-06-16 17:12:11 -0700 | [diff] [blame] | 929 | return __udp6_lib_mcast_deliver(net, skb, |
Rick Jones | 36cbb24 | 2014-11-06 10:37:54 -0800 | [diff] [blame] | 930 | saddr, daddr, udptable, proto); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 931 | |
| 932 | /* Unicast */ |
| 933 | |
YOSHIFUJI Hideaki | 1ab1457 | 2007-02-09 23:24:49 +0900 | [diff] [blame] | 934 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 935 | * check socket cache ... must talk to Alan about his plans |
| 936 | * for sock caches... i'll skip this for now. |
| 937 | */ |
KOVACS Krisztian | 607c4aa | 2008-10-07 12:38:32 -0700 | [diff] [blame] | 938 | sk = __udp6_lib_lookup_skb(skb, uh->source, uh->dest, udptable); |
Ian Morris | 53b24b8 | 2015-03-29 14:00:05 +0100 | [diff] [blame] | 939 | if (sk) { |
Eliezer Tamir | a5b5047 | 2013-06-10 11:40:00 +0300 | [diff] [blame] | 940 | int ret; |
| 941 | |
Tom Herbert | 1c19448 | 2014-05-23 08:47:32 -0700 | [diff] [blame] | 942 | if (!uh->check && !udp_sk(sk)->no_check6_rx) { |
Tom Herbert | 79e0f1c | 2014-05-05 16:43:58 -0700 | [diff] [blame] | 943 | sock_put(sk); |
Tom Herbert | 4068579 | 2014-05-02 16:29:58 -0700 | [diff] [blame] | 944 | udp6_csum_zero_error(skb); |
| 945 | goto csum_error; |
| 946 | } |
| 947 | |
Tom Herbert | 224d019 | 2015-01-05 13:56:14 -0800 | [diff] [blame] | 948 | if (inet_get_convert_csum(sk) && uh->check && !IS_UDPLITE(sk)) |
Tom Herbert | 2abb7cd | 2014-08-31 15:12:43 -0700 | [diff] [blame] | 949 | skb_checksum_try_convert(skb, IPPROTO_UDP, uh->check, |
| 950 | ip6_compute_pseudo); |
| 951 | |
Eliezer Tamir | a5b5047 | 2013-06-10 11:40:00 +0300 | [diff] [blame] | 952 | ret = udpv6_queue_rcv_skb(sk, skb); |
Benjamin LaHaise | cb80ef4 | 2012-04-27 08:23:59 +0000 | [diff] [blame] | 953 | sock_put(sk); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 954 | |
Benjamin LaHaise | cb80ef4 | 2012-04-27 08:23:59 +0000 | [diff] [blame] | 955 | /* a return value > 0 means to resubmit the input, but |
| 956 | * it wants the return to be -protocol, or 0 |
| 957 | */ |
| 958 | if (ret > 0) |
| 959 | return -ret; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 960 | |
Stephen Hemminger | add459a | 2007-03-08 20:42:35 -0800 | [diff] [blame] | 961 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 962 | } |
YOSHIFUJI Hideaki | 1ab1457 | 2007-02-09 23:24:49 +0900 | [diff] [blame] | 963 | |
Tom Herbert | 4068579 | 2014-05-02 16:29:58 -0700 | [diff] [blame] | 964 | if (!uh->check) { |
| 965 | udp6_csum_zero_error(skb); |
| 966 | goto csum_error; |
| 967 | } |
| 968 | |
Benjamin LaHaise | cb80ef4 | 2012-04-27 08:23:59 +0000 | [diff] [blame] | 969 | if (!xfrm6_policy_check(NULL, XFRM_POLICY_IN, skb)) |
| 970 | goto discard; |
YOSHIFUJI Hideaki | 1ab1457 | 2007-02-09 23:24:49 +0900 | [diff] [blame] | 971 | |
Benjamin LaHaise | cb80ef4 | 2012-04-27 08:23:59 +0000 | [diff] [blame] | 972 | if (udp_lib_checksum_complete(skb)) |
Eric Dumazet | 6a5dc9e | 2013-04-29 08:39:56 +0000 | [diff] [blame] | 973 | goto csum_error; |
Benjamin LaHaise | cb80ef4 | 2012-04-27 08:23:59 +0000 | [diff] [blame] | 974 | |
| 975 | UDP6_INC_STATS_BH(net, UDP_MIB_NOPORTS, proto == IPPROTO_UDPLITE); |
| 976 | icmpv6_send(skb, ICMPV6_DEST_UNREACH, ICMPV6_PORT_UNREACH, 0); |
| 977 | |
| 978 | kfree_skb(skb); |
Stephen Hemminger | add459a | 2007-03-08 20:42:35 -0800 | [diff] [blame] | 979 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 980 | |
YOSHIFUJI Hideaki | 1ab1457 | 2007-02-09 23:24:49 +0900 | [diff] [blame] | 981 | short_packet: |
Joe Perches | ba7a46f | 2014-11-11 10:59:17 -0800 | [diff] [blame] | 982 | net_dbg_ratelimited("UDP%sv6: short packet: From [%pI6c]:%u %d/%d to [%pI6c]:%u\n", |
| 983 | proto == IPPROTO_UDPLITE ? "-Lite" : "", |
| 984 | saddr, ntohs(uh->source), |
| 985 | ulen, skb->len, |
| 986 | daddr, ntohs(uh->dest)); |
Eric Dumazet | 6a5dc9e | 2013-04-29 08:39:56 +0000 | [diff] [blame] | 987 | goto discard; |
| 988 | csum_error: |
| 989 | UDP6_INC_STATS_BH(net, UDP_MIB_CSUMERRORS, proto == IPPROTO_UDPLITE); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 990 | discard: |
Pavel Emelyanov | ef28d1a | 2008-07-05 21:19:40 -0700 | [diff] [blame] | 991 | UDP6_INC_STATS_BH(net, UDP_MIB_INERRORS, proto == IPPROTO_UDPLITE); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 992 | kfree_skb(skb); |
Stephen Hemminger | add459a | 2007-03-08 20:42:35 -0800 | [diff] [blame] | 993 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 994 | } |
Gerrit Renker | ba4e58e | 2006-11-27 11:10:57 -0800 | [diff] [blame] | 995 | |
Herbert Xu | e5bbef2 | 2007-10-15 12:50:28 -0700 | [diff] [blame] | 996 | static __inline__ int udpv6_rcv(struct sk_buff *skb) |
Gerrit Renker | ba4e58e | 2006-11-27 11:10:57 -0800 | [diff] [blame] | 997 | { |
Eric Dumazet | 645ca70 | 2008-10-29 01:41:45 -0700 | [diff] [blame] | 998 | return __udp6_lib_rcv(skb, &udp_table, IPPROTO_UDP); |
Gerrit Renker | ba4e58e | 2006-11-27 11:10:57 -0800 | [diff] [blame] | 999 | } |
| 1000 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1001 | /* |
| 1002 | * Throw away all pending data and cancel the corking. Socket is locked. |
| 1003 | */ |
| 1004 | static void udp_v6_flush_pending_frames(struct sock *sk) |
| 1005 | { |
| 1006 | struct udp_sock *up = udp_sk(sk); |
| 1007 | |
Denis V. Lunev | 36d926b | 2008-06-04 15:49:07 +0400 | [diff] [blame] | 1008 | if (up->pending == AF_INET) |
| 1009 | udp_flush_pending_frames(sk); |
| 1010 | else if (up->pending) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1011 | up->len = 0; |
| 1012 | up->pending = 0; |
| 1013 | ip6_flush_pending_frames(sk); |
YOSHIFUJI Hideaki | 1ab1457 | 2007-02-09 23:24:49 +0900 | [diff] [blame] | 1014 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1015 | } |
| 1016 | |
Sridhar Samudrala | 493c6be | 2009-07-09 08:09:54 +0000 | [diff] [blame] | 1017 | /** |
Ian Morris | 67ba415 | 2014-08-24 21:53:10 +0100 | [diff] [blame] | 1018 | * udp6_hwcsum_outgoing - handle outgoing HW checksumming |
| 1019 | * @sk: socket we are sending on |
| 1020 | * @skb: sk_buff containing the filled-in UDP header |
| 1021 | * (checksum field must be zeroed out) |
Sridhar Samudrala | 493c6be | 2009-07-09 08:09:54 +0000 | [diff] [blame] | 1022 | */ |
| 1023 | static void udp6_hwcsum_outgoing(struct sock *sk, struct sk_buff *skb, |
| 1024 | const struct in6_addr *saddr, |
| 1025 | const struct in6_addr *daddr, int len) |
| 1026 | { |
| 1027 | unsigned int offset; |
| 1028 | struct udphdr *uh = udp_hdr(skb); |
Vlad Yasevich | d39d938 | 2015-01-31 10:40:16 -0500 | [diff] [blame] | 1029 | struct sk_buff *frags = skb_shinfo(skb)->frag_list; |
Sridhar Samudrala | 493c6be | 2009-07-09 08:09:54 +0000 | [diff] [blame] | 1030 | __wsum csum = 0; |
| 1031 | |
Vlad Yasevich | d39d938 | 2015-01-31 10:40:16 -0500 | [diff] [blame] | 1032 | if (!frags) { |
Sridhar Samudrala | 493c6be | 2009-07-09 08:09:54 +0000 | [diff] [blame] | 1033 | /* Only one fragment on the socket. */ |
| 1034 | skb->csum_start = skb_transport_header(skb) - skb->head; |
| 1035 | skb->csum_offset = offsetof(struct udphdr, check); |
| 1036 | uh->check = ~csum_ipv6_magic(saddr, daddr, len, IPPROTO_UDP, 0); |
| 1037 | } else { |
| 1038 | /* |
| 1039 | * HW-checksum won't work as there are two or more |
| 1040 | * fragments on the socket so that all csums of sk_buffs |
| 1041 | * should be together |
| 1042 | */ |
| 1043 | offset = skb_transport_offset(skb); |
| 1044 | skb->csum = skb_checksum(skb, offset, skb->len - offset, 0); |
| 1045 | |
| 1046 | skb->ip_summed = CHECKSUM_NONE; |
| 1047 | |
Vlad Yasevich | d39d938 | 2015-01-31 10:40:16 -0500 | [diff] [blame] | 1048 | do { |
| 1049 | csum = csum_add(csum, frags->csum); |
| 1050 | } while ((frags = frags->next)); |
Sridhar Samudrala | 493c6be | 2009-07-09 08:09:54 +0000 | [diff] [blame] | 1051 | |
| 1052 | uh->check = csum_ipv6_magic(saddr, daddr, len, IPPROTO_UDP, |
| 1053 | csum); |
| 1054 | if (uh->check == 0) |
| 1055 | uh->check = CSUM_MANGLED_0; |
| 1056 | } |
| 1057 | } |
| 1058 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1059 | /* |
| 1060 | * Sending |
| 1061 | */ |
| 1062 | |
Vlad Yasevich | d39d938 | 2015-01-31 10:40:16 -0500 | [diff] [blame] | 1063 | static int udp_v6_send_skb(struct sk_buff *skb, struct flowi6 *fl6) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1064 | { |
Vlad Yasevich | d39d938 | 2015-01-31 10:40:16 -0500 | [diff] [blame] | 1065 | struct sock *sk = skb->sk; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1066 | struct udphdr *uh; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1067 | int err = 0; |
Wang Chen | b2bf1e2 | 2007-12-03 22:34:16 +1100 | [diff] [blame] | 1068 | int is_udplite = IS_UDPLITE(sk); |
Al Viro | 868c86b | 2006-11-14 21:35:48 -0800 | [diff] [blame] | 1069 | __wsum csum = 0; |
Vlad Yasevich | d39d938 | 2015-01-31 10:40:16 -0500 | [diff] [blame] | 1070 | int offset = skb_transport_offset(skb); |
| 1071 | int len = skb->len - offset; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1072 | |
| 1073 | /* |
| 1074 | * Create a UDP header |
| 1075 | */ |
Arnaldo Carvalho de Melo | 4bedb45 | 2007-03-13 14:28:48 -0300 | [diff] [blame] | 1076 | uh = udp_hdr(skb); |
David S. Miller | 1958b85 | 2011-03-12 16:36:19 -0500 | [diff] [blame] | 1077 | uh->source = fl6->fl6_sport; |
| 1078 | uh->dest = fl6->fl6_dport; |
Vlad Yasevich | d39d938 | 2015-01-31 10:40:16 -0500 | [diff] [blame] | 1079 | uh->len = htons(len); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1080 | uh->check = 0; |
| 1081 | |
Wang Chen | b2bf1e2 | 2007-12-03 22:34:16 +1100 | [diff] [blame] | 1082 | if (is_udplite) |
Vlad Yasevich | d39d938 | 2015-01-31 10:40:16 -0500 | [diff] [blame] | 1083 | csum = udplite_csum(skb); |
| 1084 | else if (udp_sk(sk)->no_check6_tx) { /* UDP csum disabled */ |
Tom Herbert | 4068579 | 2014-05-02 16:29:58 -0700 | [diff] [blame] | 1085 | skb->ip_summed = CHECKSUM_NONE; |
| 1086 | goto send; |
| 1087 | } else if (skb->ip_summed == CHECKSUM_PARTIAL) { /* UDP hardware csum */ |
Vlad Yasevich | d39d938 | 2015-01-31 10:40:16 -0500 | [diff] [blame] | 1088 | udp6_hwcsum_outgoing(sk, skb, &fl6->saddr, &fl6->daddr, len); |
Sridhar Samudrala | 493c6be | 2009-07-09 08:09:54 +0000 | [diff] [blame] | 1089 | goto send; |
| 1090 | } else |
Vlad Yasevich | d39d938 | 2015-01-31 10:40:16 -0500 | [diff] [blame] | 1091 | csum = udp_csum(skb); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1092 | |
Gerrit Renker | ba4e58e | 2006-11-27 11:10:57 -0800 | [diff] [blame] | 1093 | /* add protocol-dependent pseudo-header */ |
David S. Miller | 4c9483b | 2011-03-12 16:22:43 -0500 | [diff] [blame] | 1094 | uh->check = csum_ipv6_magic(&fl6->saddr, &fl6->daddr, |
Vlad Yasevich | d39d938 | 2015-01-31 10:40:16 -0500 | [diff] [blame] | 1095 | len, fl6->flowi6_proto, csum); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1096 | if (uh->check == 0) |
Al Viro | f6ab028 | 2006-11-16 02:36:50 -0800 | [diff] [blame] | 1097 | uh->check = CSUM_MANGLED_0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1098 | |
Sridhar Samudrala | 493c6be | 2009-07-09 08:09:54 +0000 | [diff] [blame] | 1099 | send: |
Vlad Yasevich | d39d938 | 2015-01-31 10:40:16 -0500 | [diff] [blame] | 1100 | err = ip6_send_skb(skb); |
Eric Dumazet | 6ce9e7b | 2009-09-02 18:05:33 -0700 | [diff] [blame] | 1101 | if (err) { |
| 1102 | if (err == -ENOBUFS && !inet6_sk(sk)->recverr) { |
| 1103 | UDP6_INC_STATS_USER(sock_net(sk), |
| 1104 | UDP_MIB_SNDBUFERRORS, is_udplite); |
| 1105 | err = 0; |
| 1106 | } |
| 1107 | } else |
| 1108 | UDP6_INC_STATS_USER(sock_net(sk), |
| 1109 | UDP_MIB_OUTDATAGRAMS, is_udplite); |
Vlad Yasevich | d39d938 | 2015-01-31 10:40:16 -0500 | [diff] [blame] | 1110 | return err; |
| 1111 | } |
| 1112 | |
| 1113 | static int udp_v6_push_pending_frames(struct sock *sk) |
| 1114 | { |
| 1115 | struct sk_buff *skb; |
| 1116 | struct udp_sock *up = udp_sk(sk); |
| 1117 | struct flowi6 fl6; |
| 1118 | int err = 0; |
| 1119 | |
| 1120 | if (up->pending == AF_INET) |
| 1121 | return udp_push_pending_frames(sk); |
| 1122 | |
| 1123 | /* ip6_finish_skb will release the cork, so make a copy of |
| 1124 | * fl6 here. |
| 1125 | */ |
| 1126 | fl6 = inet_sk(sk)->cork.fl.u.ip6; |
| 1127 | |
| 1128 | skb = ip6_finish_skb(sk); |
| 1129 | if (!skb) |
| 1130 | goto out; |
| 1131 | |
| 1132 | err = udp_v6_send_skb(skb, &fl6); |
| 1133 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1134 | out: |
| 1135 | up->len = 0; |
| 1136 | up->pending = 0; |
| 1137 | return err; |
| 1138 | } |
| 1139 | |
Ying Xue | 1b78414 | 2015-03-02 15:37:48 +0800 | [diff] [blame] | 1140 | int udpv6_sendmsg(struct sock *sk, struct msghdr *msg, size_t len) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1141 | { |
| 1142 | struct ipv6_txoptions opt_space; |
| 1143 | struct udp_sock *up = udp_sk(sk); |
| 1144 | struct inet_sock *inet = inet_sk(sk); |
| 1145 | struct ipv6_pinfo *np = inet6_sk(sk); |
Steffen Hurrle | 342dfc3 | 2014-01-17 22:53:15 +0100 | [diff] [blame] | 1146 | DECLARE_SOCKADDR(struct sockaddr_in6 *, sin6, msg->msg_name); |
Arnaud Ebalard | 20c59de | 2010-06-01 21:35:01 +0000 | [diff] [blame] | 1147 | struct in6_addr *daddr, *final_p, final; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1148 | struct ipv6_txoptions *opt = NULL; |
Eric Dumazet | 45f6fad | 2015-11-29 19:37:57 -0800 | [diff] [blame] | 1149 | struct ipv6_txoptions *opt_to_free = NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1150 | struct ip6_flowlabel *flowlabel = NULL; |
David S. Miller | 4c9483b | 2011-03-12 16:22:43 -0500 | [diff] [blame] | 1151 | struct flowi6 fl6; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1152 | struct dst_entry *dst; |
| 1153 | int addr_len = msg->msg_namelen; |
| 1154 | int ulen = len; |
| 1155 | int hlimit = -1; |
YOSHIFUJI Hideaki | 41a1f8e | 2005-09-08 10:19:03 +0900 | [diff] [blame] | 1156 | int tclass = -1; |
Brian Haley | 13b52cd | 2010-04-23 11:26:08 +0000 | [diff] [blame] | 1157 | int dontfrag = -1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1158 | int corkreq = up->corkflag || msg->msg_flags&MSG_MORE; |
| 1159 | int err; |
Mitsuru KANDA | 987905d | 2005-09-18 00:30:08 -0700 | [diff] [blame] | 1160 | int connected = 0; |
Wang Chen | b2bf1e2 | 2007-12-03 22:34:16 +1100 | [diff] [blame] | 1161 | int is_udplite = IS_UDPLITE(sk); |
Gerrit Renker | ba4e58e | 2006-11-27 11:10:57 -0800 | [diff] [blame] | 1162 | int (*getfrag)(void *, char *, int, int, int, struct sk_buff *); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1163 | |
| 1164 | /* destination address check */ |
| 1165 | if (sin6) { |
| 1166 | if (addr_len < offsetof(struct sockaddr, sa_data)) |
| 1167 | return -EINVAL; |
| 1168 | |
| 1169 | switch (sin6->sin6_family) { |
| 1170 | case AF_INET6: |
| 1171 | if (addr_len < SIN6_LEN_RFC2133) |
| 1172 | return -EINVAL; |
| 1173 | daddr = &sin6->sin6_addr; |
| 1174 | break; |
| 1175 | case AF_INET: |
| 1176 | goto do_udp_sendmsg; |
| 1177 | case AF_UNSPEC: |
| 1178 | msg->msg_name = sin6 = NULL; |
| 1179 | msg->msg_namelen = addr_len = 0; |
| 1180 | daddr = NULL; |
| 1181 | break; |
| 1182 | default: |
| 1183 | return -EINVAL; |
| 1184 | } |
| 1185 | } else if (!up->pending) { |
| 1186 | if (sk->sk_state != TCP_ESTABLISHED) |
| 1187 | return -EDESTADDRREQ; |
Eric Dumazet | efe4208 | 2013-10-03 15:42:29 -0700 | [diff] [blame] | 1188 | daddr = &sk->sk_v6_daddr; |
YOSHIFUJI Hideaki | 1ab1457 | 2007-02-09 23:24:49 +0900 | [diff] [blame] | 1189 | } else |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1190 | daddr = NULL; |
| 1191 | |
| 1192 | if (daddr) { |
Brian Haley | e773e4f | 2007-08-24 23:16:08 -0700 | [diff] [blame] | 1193 | if (ipv6_addr_v4mapped(daddr)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1194 | struct sockaddr_in sin; |
| 1195 | sin.sin_family = AF_INET; |
Eric Dumazet | c720c7e | 2009-10-15 06:30:45 +0000 | [diff] [blame] | 1196 | sin.sin_port = sin6 ? sin6->sin6_port : inet->inet_dport; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1197 | sin.sin_addr.s_addr = daddr->s6_addr32[3]; |
| 1198 | msg->msg_name = &sin; |
| 1199 | msg->msg_namelen = sizeof(sin); |
| 1200 | do_udp_sendmsg: |
| 1201 | if (__ipv6_only_sock(sk)) |
| 1202 | return -ENETUNREACH; |
Ying Xue | 1b78414 | 2015-03-02 15:37:48 +0800 | [diff] [blame] | 1203 | return udp_sendmsg(sk, msg, len); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1204 | } |
| 1205 | } |
| 1206 | |
| 1207 | if (up->pending == AF_INET) |
Ying Xue | 1b78414 | 2015-03-02 15:37:48 +0800 | [diff] [blame] | 1208 | return udp_sendmsg(sk, msg, len); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1209 | |
| 1210 | /* Rough check on arithmetic overflow, |
YOSHIFUJI Hideaki | b59e139 | 2007-03-30 14:45:35 -0700 | [diff] [blame] | 1211 | better check is made in ip6_append_data(). |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1212 | */ |
| 1213 | if (len > INT_MAX - sizeof(struct udphdr)) |
| 1214 | return -EMSGSIZE; |
YOSHIFUJI Hideaki | 1ab1457 | 2007-02-09 23:24:49 +0900 | [diff] [blame] | 1215 | |
Vlad Yasevich | 03485f2 | 2015-01-31 10:40:17 -0500 | [diff] [blame] | 1216 | getfrag = is_udplite ? udplite_getfrag : ip_generic_getfrag; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1217 | if (up->pending) { |
| 1218 | /* |
| 1219 | * There are pending frames. |
| 1220 | * The socket lock must be held while it's corked. |
| 1221 | */ |
| 1222 | lock_sock(sk); |
| 1223 | if (likely(up->pending)) { |
| 1224 | if (unlikely(up->pending != AF_INET6)) { |
| 1225 | release_sock(sk); |
| 1226 | return -EAFNOSUPPORT; |
| 1227 | } |
| 1228 | dst = NULL; |
| 1229 | goto do_append_data; |
| 1230 | } |
| 1231 | release_sock(sk); |
| 1232 | } |
| 1233 | ulen += sizeof(struct udphdr); |
| 1234 | |
David S. Miller | 4c9483b | 2011-03-12 16:22:43 -0500 | [diff] [blame] | 1235 | memset(&fl6, 0, sizeof(fl6)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1236 | |
| 1237 | if (sin6) { |
| 1238 | if (sin6->sin6_port == 0) |
| 1239 | return -EINVAL; |
| 1240 | |
David S. Miller | 1958b85 | 2011-03-12 16:36:19 -0500 | [diff] [blame] | 1241 | fl6.fl6_dport = sin6->sin6_port; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1242 | daddr = &sin6->sin6_addr; |
| 1243 | |
| 1244 | if (np->sndflow) { |
David S. Miller | 4c9483b | 2011-03-12 16:22:43 -0500 | [diff] [blame] | 1245 | fl6.flowlabel = sin6->sin6_flowinfo&IPV6_FLOWINFO_MASK; |
| 1246 | if (fl6.flowlabel&IPV6_FLOWLABEL_MASK) { |
| 1247 | flowlabel = fl6_sock_lookup(sk, fl6.flowlabel); |
Ian Morris | 63159f2 | 2015-03-29 14:00:04 +0100 | [diff] [blame] | 1248 | if (!flowlabel) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1249 | return -EINVAL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1250 | } |
| 1251 | } |
| 1252 | |
| 1253 | /* |
| 1254 | * Otherwise it will be difficult to maintain |
| 1255 | * sk->sk_dst_cache. |
| 1256 | */ |
| 1257 | if (sk->sk_state == TCP_ESTABLISHED && |
Eric Dumazet | efe4208 | 2013-10-03 15:42:29 -0700 | [diff] [blame] | 1258 | ipv6_addr_equal(daddr, &sk->sk_v6_daddr)) |
| 1259 | daddr = &sk->sk_v6_daddr; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1260 | |
| 1261 | if (addr_len >= sizeof(struct sockaddr_in6) && |
| 1262 | sin6->sin6_scope_id && |
Hannes Frederic Sowa | 842df07 | 2013-03-08 02:07:19 +0000 | [diff] [blame] | 1263 | __ipv6_addr_needs_scope_id(__ipv6_addr_type(daddr))) |
David S. Miller | 4c9483b | 2011-03-12 16:22:43 -0500 | [diff] [blame] | 1264 | fl6.flowi6_oif = sin6->sin6_scope_id; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1265 | } else { |
| 1266 | if (sk->sk_state != TCP_ESTABLISHED) |
| 1267 | return -EDESTADDRREQ; |
| 1268 | |
David S. Miller | 1958b85 | 2011-03-12 16:36:19 -0500 | [diff] [blame] | 1269 | fl6.fl6_dport = inet->inet_dport; |
Eric Dumazet | efe4208 | 2013-10-03 15:42:29 -0700 | [diff] [blame] | 1270 | daddr = &sk->sk_v6_daddr; |
David S. Miller | 4c9483b | 2011-03-12 16:22:43 -0500 | [diff] [blame] | 1271 | fl6.flowlabel = np->flow_label; |
Mitsuru KANDA | 987905d | 2005-09-18 00:30:08 -0700 | [diff] [blame] | 1272 | connected = 1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1273 | } |
| 1274 | |
David S. Miller | 4c9483b | 2011-03-12 16:22:43 -0500 | [diff] [blame] | 1275 | if (!fl6.flowi6_oif) |
| 1276 | fl6.flowi6_oif = sk->sk_bound_dev_if; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1277 | |
David S. Miller | 4c9483b | 2011-03-12 16:22:43 -0500 | [diff] [blame] | 1278 | if (!fl6.flowi6_oif) |
| 1279 | fl6.flowi6_oif = np->sticky_pktinfo.ipi6_ifindex; |
Yang Hongyang | 9f690db | 2008-12-16 02:08:29 -0800 | [diff] [blame] | 1280 | |
David S. Miller | 4c9483b | 2011-03-12 16:22:43 -0500 | [diff] [blame] | 1281 | fl6.flowi6_mark = sk->sk_mark; |
Brian Haley | 51953d5 | 2009-10-05 08:24:16 +0000 | [diff] [blame] | 1282 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1283 | if (msg->msg_controllen) { |
| 1284 | opt = &opt_space; |
| 1285 | memset(opt, 0, sizeof(struct ipv6_txoptions)); |
| 1286 | opt->tot_len = sizeof(*opt); |
| 1287 | |
Tom Parkin | 73df66f | 2013-01-31 01:02:24 +0000 | [diff] [blame] | 1288 | err = ip6_datagram_send_ctl(sock_net(sk), sk, msg, &fl6, opt, |
| 1289 | &hlimit, &tclass, &dontfrag); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1290 | if (err < 0) { |
| 1291 | fl6_sock_release(flowlabel); |
| 1292 | return err; |
| 1293 | } |
David S. Miller | 4c9483b | 2011-03-12 16:22:43 -0500 | [diff] [blame] | 1294 | if ((fl6.flowlabel&IPV6_FLOWLABEL_MASK) && !flowlabel) { |
| 1295 | flowlabel = fl6_sock_lookup(sk, fl6.flowlabel); |
Ian Morris | 63159f2 | 2015-03-29 14:00:04 +0100 | [diff] [blame] | 1296 | if (!flowlabel) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1297 | return -EINVAL; |
| 1298 | } |
| 1299 | if (!(opt->opt_nflen|opt->opt_flen)) |
| 1300 | opt = NULL; |
Mitsuru KANDA | 987905d | 2005-09-18 00:30:08 -0700 | [diff] [blame] | 1301 | connected = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1302 | } |
Eric Dumazet | 45f6fad | 2015-11-29 19:37:57 -0800 | [diff] [blame] | 1303 | if (!opt) { |
| 1304 | opt = txopt_get(np); |
| 1305 | opt_to_free = opt; |
| 1306 | } |
YOSHIFUJI Hideaki | df9890c | 2005-11-20 12:23:18 +0900 | [diff] [blame] | 1307 | if (flowlabel) |
| 1308 | opt = fl6_merge_options(&opt_space, flowlabel, opt); |
| 1309 | opt = ipv6_fixup_options(&opt_space, opt); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1310 | |
David S. Miller | 4c9483b | 2011-03-12 16:22:43 -0500 | [diff] [blame] | 1311 | fl6.flowi6_proto = sk->sk_protocol; |
Brian Haley | 876c7f4 | 2008-04-11 00:38:24 -0400 | [diff] [blame] | 1312 | if (!ipv6_addr_any(daddr)) |
Alexey Dobriyan | 4e3fd7a | 2011-11-21 03:39:03 +0000 | [diff] [blame] | 1313 | fl6.daddr = *daddr; |
Brian Haley | 876c7f4 | 2008-04-11 00:38:24 -0400 | [diff] [blame] | 1314 | else |
David S. Miller | 4c9483b | 2011-03-12 16:22:43 -0500 | [diff] [blame] | 1315 | fl6.daddr.s6_addr[15] = 0x1; /* :: means loopback (BSD'ism) */ |
| 1316 | if (ipv6_addr_any(&fl6.saddr) && !ipv6_addr_any(&np->saddr)) |
Alexey Dobriyan | 4e3fd7a | 2011-11-21 03:39:03 +0000 | [diff] [blame] | 1317 | fl6.saddr = np->saddr; |
David S. Miller | 1958b85 | 2011-03-12 16:36:19 -0500 | [diff] [blame] | 1318 | fl6.fl6_sport = inet->inet_sport; |
YOSHIFUJI Hideaki | 1ab1457 | 2007-02-09 23:24:49 +0900 | [diff] [blame] | 1319 | |
David S. Miller | 4c9483b | 2011-03-12 16:22:43 -0500 | [diff] [blame] | 1320 | final_p = fl6_update_dst(&fl6, opt, &final); |
Arnaud Ebalard | 20c59de | 2010-06-01 21:35:01 +0000 | [diff] [blame] | 1321 | if (final_p) |
Mitsuru KANDA | 987905d | 2005-09-18 00:30:08 -0700 | [diff] [blame] | 1322 | connected = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1323 | |
David S. Miller | 4c9483b | 2011-03-12 16:22:43 -0500 | [diff] [blame] | 1324 | if (!fl6.flowi6_oif && ipv6_addr_is_multicast(&fl6.daddr)) { |
| 1325 | fl6.flowi6_oif = np->mcast_oif; |
Mitsuru KANDA | 987905d | 2005-09-18 00:30:08 -0700 | [diff] [blame] | 1326 | connected = 0; |
Erich E. Hoover | c4062df | 2012-02-08 09:11:08 +0000 | [diff] [blame] | 1327 | } else if (!fl6.flowi6_oif) |
| 1328 | fl6.flowi6_oif = np->ucast_oif; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1329 | |
David S. Miller | 4c9483b | 2011-03-12 16:22:43 -0500 | [diff] [blame] | 1330 | security_sk_classify_flow(sk, flowi6_to_flowi(&fl6)); |
Venkat Yekkirala | beb8d13 | 2006-08-04 23:12:42 -0700 | [diff] [blame] | 1331 | |
Steffen Klassert | 0e0d44a | 2013-08-28 08:04:14 +0200 | [diff] [blame] | 1332 | dst = ip6_sk_dst_lookup_flow(sk, &fl6, final_p); |
David S. Miller | 68d0c6d | 2011-03-01 13:19:07 -0800 | [diff] [blame] | 1333 | if (IS_ERR(dst)) { |
| 1334 | err = PTR_ERR(dst); |
| 1335 | dst = NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1336 | goto out; |
David S. Miller | 14e50e5 | 2007-05-24 18:17:54 -0700 | [diff] [blame] | 1337 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1338 | |
Lorenzo Colitti | 5c98631 | 2014-04-29 11:57:34 +0900 | [diff] [blame] | 1339 | if (hlimit < 0) |
| 1340 | hlimit = ip6_sk_dst_hoplimit(np, &fl6, dst); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1341 | |
Gerrit Renker | e651f03 | 2009-08-09 08:12:48 +0000 | [diff] [blame] | 1342 | if (tclass < 0) |
YOSHIFUJI Hideaki | 41a1f8e | 2005-09-08 10:19:03 +0900 | [diff] [blame] | 1343 | tclass = np->tclass; |
YOSHIFUJI Hideaki | 41a1f8e | 2005-09-08 10:19:03 +0900 | [diff] [blame] | 1344 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1345 | if (msg->msg_flags&MSG_CONFIRM) |
| 1346 | goto do_confirm; |
| 1347 | back_from_confirm: |
| 1348 | |
Vlad Yasevich | 03485f2 | 2015-01-31 10:40:17 -0500 | [diff] [blame] | 1349 | /* Lockless fast path for the non-corking case */ |
| 1350 | if (!corkreq) { |
| 1351 | struct sk_buff *skb; |
| 1352 | |
| 1353 | skb = ip6_make_skb(sk, getfrag, msg, ulen, |
| 1354 | sizeof(struct udphdr), hlimit, tclass, opt, |
| 1355 | &fl6, (struct rt6_info *)dst, |
| 1356 | msg->msg_flags, dontfrag); |
| 1357 | err = PTR_ERR(skb); |
| 1358 | if (!IS_ERR_OR_NULL(skb)) |
| 1359 | err = udp_v6_send_skb(skb, &fl6); |
| 1360 | goto release_dst; |
| 1361 | } |
| 1362 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1363 | lock_sock(sk); |
| 1364 | if (unlikely(up->pending)) { |
| 1365 | /* The socket is already corked while preparing it. */ |
| 1366 | /* ... which is an evident application bug. --ANK */ |
| 1367 | release_sock(sk); |
| 1368 | |
Joe Perches | ba7a46f | 2014-11-11 10:59:17 -0800 | [diff] [blame] | 1369 | net_dbg_ratelimited("udp cork app bug 2\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1370 | err = -EINVAL; |
| 1371 | goto out; |
| 1372 | } |
| 1373 | |
| 1374 | up->pending = AF_INET6; |
| 1375 | |
| 1376 | do_append_data: |
Jiri Pirko | e36d3ff | 2013-10-19 12:29:15 +0200 | [diff] [blame] | 1377 | if (dontfrag < 0) |
| 1378 | dontfrag = np->dontfrag; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1379 | up->len += ulen; |
Al Viro | f69e6d1 | 2014-11-24 13:23:40 -0500 | [diff] [blame] | 1380 | err = ip6_append_data(sk, getfrag, msg, ulen, |
David S. Miller | 4c9483b | 2011-03-12 16:22:43 -0500 | [diff] [blame] | 1381 | sizeof(struct udphdr), hlimit, tclass, opt, &fl6, |
Ian Morris | 67ba415 | 2014-08-24 21:53:10 +0100 | [diff] [blame] | 1382 | (struct rt6_info *)dst, |
Brian Haley | 13b52cd | 2010-04-23 11:26:08 +0000 | [diff] [blame] | 1383 | corkreq ? msg->msg_flags|MSG_MORE : msg->msg_flags, dontfrag); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1384 | if (err) |
| 1385 | udp_v6_flush_pending_frames(sk); |
| 1386 | else if (!corkreq) |
Gerrit Renker | 4c0a6cb | 2006-11-27 09:29:59 -0800 | [diff] [blame] | 1387 | err = udp_v6_push_pending_frames(sk); |
Herbert Xu | 1e0c14f | 2006-10-03 14:35:49 -0700 | [diff] [blame] | 1388 | else if (unlikely(skb_queue_empty(&sk->sk_write_queue))) |
| 1389 | up->pending = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1390 | |
Vlad Yasevich | 03485f2 | 2015-01-31 10:40:17 -0500 | [diff] [blame] | 1391 | if (err > 0) |
| 1392 | err = np->recverr ? net_xmit_errno(err) : 0; |
| 1393 | release_sock(sk); |
| 1394 | |
| 1395 | release_dst: |
David S. Miller | a5e7c21 | 2005-10-03 14:21:58 -0700 | [diff] [blame] | 1396 | if (dst) { |
| 1397 | if (connected) { |
| 1398 | ip6_dst_store(sk, dst, |
Eric Dumazet | efe4208 | 2013-10-03 15:42:29 -0700 | [diff] [blame] | 1399 | ipv6_addr_equal(&fl6.daddr, &sk->sk_v6_daddr) ? |
| 1400 | &sk->sk_v6_daddr : NULL, |
YOSHIFUJI Hideaki | 8e1ef0a | 2006-08-29 17:15:09 -0700 | [diff] [blame] | 1401 | #ifdef CONFIG_IPV6_SUBTREES |
David S. Miller | 4c9483b | 2011-03-12 16:22:43 -0500 | [diff] [blame] | 1402 | ipv6_addr_equal(&fl6.saddr, &np->saddr) ? |
YOSHIFUJI Hideaki | 8e1ef0a | 2006-08-29 17:15:09 -0700 | [diff] [blame] | 1403 | &np->saddr : |
| 1404 | #endif |
| 1405 | NULL); |
David S. Miller | a5e7c21 | 2005-10-03 14:21:58 -0700 | [diff] [blame] | 1406 | } else { |
| 1407 | dst_release(dst); |
| 1408 | } |
YOSHIFUJI Hideaki | a3c9608 | 2008-06-04 01:30:25 +0900 | [diff] [blame] | 1409 | dst = NULL; |
David S. Miller | a5e7c21 | 2005-10-03 14:21:58 -0700 | [diff] [blame] | 1410 | } |
| 1411 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1412 | out: |
YOSHIFUJI Hideaki | a3c9608 | 2008-06-04 01:30:25 +0900 | [diff] [blame] | 1413 | dst_release(dst); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1414 | fl6_sock_release(flowlabel); |
Eric Dumazet | 45f6fad | 2015-11-29 19:37:57 -0800 | [diff] [blame] | 1415 | txopt_put(opt_to_free); |
YOSHIFUJI Hideaki | cd562c9 | 2007-09-14 17:15:01 -0700 | [diff] [blame] | 1416 | if (!err) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1417 | return len; |
David S. Miller | a18135e | 2006-08-15 00:00:09 -0700 | [diff] [blame] | 1418 | /* |
| 1419 | * ENOBUFS = no kernel mem, SOCK_NOSPACE = no sndbuf space. Reporting |
| 1420 | * ENOBUFS might not be good (it's not tunable per se), but otherwise |
| 1421 | * we don't have a good statistic (IpOutDiscards but it can be too many |
| 1422 | * things). We could add another new stat but at least for now that |
| 1423 | * seems like overkill. |
| 1424 | */ |
| 1425 | if (err == -ENOBUFS || test_bit(SOCK_NOSPACE, &sk->sk_socket->flags)) { |
Pavel Emelyanov | 235b9f7 | 2008-07-05 21:19:20 -0700 | [diff] [blame] | 1426 | UDP6_INC_STATS_USER(sock_net(sk), |
| 1427 | UDP_MIB_SNDBUFERRORS, is_udplite); |
David S. Miller | a18135e | 2006-08-15 00:00:09 -0700 | [diff] [blame] | 1428 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1429 | return err; |
| 1430 | |
| 1431 | do_confirm: |
| 1432 | dst_confirm(dst); |
| 1433 | if (!(msg->msg_flags&MSG_PROBE) || len) |
| 1434 | goto back_from_confirm; |
| 1435 | err = 0; |
| 1436 | goto out; |
| 1437 | } |
| 1438 | |
Brian Haley | 7d06b2e | 2008-06-14 17:04:49 -0700 | [diff] [blame] | 1439 | void udpv6_destroy_sock(struct sock *sk) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1440 | { |
Tom Parkin | 44046a5 | 2013-03-19 06:11:12 +0000 | [diff] [blame] | 1441 | struct udp_sock *up = udp_sk(sk); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1442 | lock_sock(sk); |
| 1443 | udp_v6_flush_pending_frames(sk); |
| 1444 | release_sock(sk); |
| 1445 | |
Tom Parkin | 44046a5 | 2013-03-19 06:11:12 +0000 | [diff] [blame] | 1446 | if (static_key_false(&udpv6_encap_needed) && up->encap_type) { |
| 1447 | void (*encap_destroy)(struct sock *sk); |
| 1448 | encap_destroy = ACCESS_ONCE(up->encap_destroy); |
| 1449 | if (encap_destroy) |
| 1450 | encap_destroy(sk); |
| 1451 | } |
| 1452 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1453 | inet6_destroy_sock(sk); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1454 | } |
| 1455 | |
| 1456 | /* |
| 1457 | * Socket option code for UDP |
| 1458 | */ |
Gerrit Renker | ba4e58e | 2006-11-27 11:10:57 -0800 | [diff] [blame] | 1459 | int udpv6_setsockopt(struct sock *sk, int level, int optname, |
David S. Miller | b705884 | 2009-09-30 16:12:20 -0700 | [diff] [blame] | 1460 | char __user *optval, unsigned int optlen) |
Dmitry Mishin | 3fdadf7 | 2006-03-20 22:45:21 -0800 | [diff] [blame] | 1461 | { |
David S. Miller | db8dac2 | 2008-03-06 16:22:02 -0800 | [diff] [blame] | 1462 | if (level == SOL_UDP || level == SOL_UDPLITE) |
Gerrit Renker | 4c0a6cb | 2006-11-27 09:29:59 -0800 | [diff] [blame] | 1463 | return udp_lib_setsockopt(sk, level, optname, optval, optlen, |
| 1464 | udp_v6_push_pending_frames); |
Gerrit Renker | ba4e58e | 2006-11-27 11:10:57 -0800 | [diff] [blame] | 1465 | return ipv6_setsockopt(sk, level, optname, optval, optlen); |
Dmitry Mishin | 3fdadf7 | 2006-03-20 22:45:21 -0800 | [diff] [blame] | 1466 | } |
| 1467 | |
| 1468 | #ifdef CONFIG_COMPAT |
Gerrit Renker | ba4e58e | 2006-11-27 11:10:57 -0800 | [diff] [blame] | 1469 | int compat_udpv6_setsockopt(struct sock *sk, int level, int optname, |
David S. Miller | b705884 | 2009-09-30 16:12:20 -0700 | [diff] [blame] | 1470 | char __user *optval, unsigned int optlen) |
Dmitry Mishin | 3fdadf7 | 2006-03-20 22:45:21 -0800 | [diff] [blame] | 1471 | { |
David S. Miller | db8dac2 | 2008-03-06 16:22:02 -0800 | [diff] [blame] | 1472 | if (level == SOL_UDP || level == SOL_UDPLITE) |
Gerrit Renker | 4c0a6cb | 2006-11-27 09:29:59 -0800 | [diff] [blame] | 1473 | return udp_lib_setsockopt(sk, level, optname, optval, optlen, |
| 1474 | udp_v6_push_pending_frames); |
Gerrit Renker | ba4e58e | 2006-11-27 11:10:57 -0800 | [diff] [blame] | 1475 | return compat_ipv6_setsockopt(sk, level, optname, optval, optlen); |
Dmitry Mishin | 3fdadf7 | 2006-03-20 22:45:21 -0800 | [diff] [blame] | 1476 | } |
| 1477 | #endif |
| 1478 | |
Gerrit Renker | ba4e58e | 2006-11-27 11:10:57 -0800 | [diff] [blame] | 1479 | int udpv6_getsockopt(struct sock *sk, int level, int optname, |
| 1480 | char __user *optval, int __user *optlen) |
Dmitry Mishin | 3fdadf7 | 2006-03-20 22:45:21 -0800 | [diff] [blame] | 1481 | { |
David S. Miller | db8dac2 | 2008-03-06 16:22:02 -0800 | [diff] [blame] | 1482 | if (level == SOL_UDP || level == SOL_UDPLITE) |
Gerrit Renker | 4c0a6cb | 2006-11-27 09:29:59 -0800 | [diff] [blame] | 1483 | return udp_lib_getsockopt(sk, level, optname, optval, optlen); |
Gerrit Renker | ba4e58e | 2006-11-27 11:10:57 -0800 | [diff] [blame] | 1484 | return ipv6_getsockopt(sk, level, optname, optval, optlen); |
Dmitry Mishin | 3fdadf7 | 2006-03-20 22:45:21 -0800 | [diff] [blame] | 1485 | } |
| 1486 | |
| 1487 | #ifdef CONFIG_COMPAT |
Gerrit Renker | ba4e58e | 2006-11-27 11:10:57 -0800 | [diff] [blame] | 1488 | int compat_udpv6_getsockopt(struct sock *sk, int level, int optname, |
| 1489 | char __user *optval, int __user *optlen) |
Dmitry Mishin | 3fdadf7 | 2006-03-20 22:45:21 -0800 | [diff] [blame] | 1490 | { |
David S. Miller | db8dac2 | 2008-03-06 16:22:02 -0800 | [diff] [blame] | 1491 | if (level == SOL_UDP || level == SOL_UDPLITE) |
Gerrit Renker | 4c0a6cb | 2006-11-27 09:29:59 -0800 | [diff] [blame] | 1492 | return udp_lib_getsockopt(sk, level, optname, optval, optlen); |
Gerrit Renker | ba4e58e | 2006-11-27 11:10:57 -0800 | [diff] [blame] | 1493 | return compat_ipv6_getsockopt(sk, level, optname, optval, optlen); |
Dmitry Mishin | 3fdadf7 | 2006-03-20 22:45:21 -0800 | [diff] [blame] | 1494 | } |
| 1495 | #endif |
| 1496 | |
Alexey Dobriyan | 41135cc | 2009-09-14 12:22:28 +0000 | [diff] [blame] | 1497 | static const struct inet6_protocol udpv6_protocol = { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1498 | .handler = udpv6_rcv, |
| 1499 | .err_handler = udpv6_err, |
| 1500 | .flags = INET6_PROTO_NOPOLICY|INET6_PROTO_FINAL, |
| 1501 | }; |
| 1502 | |
| 1503 | /* ------------------------------------------------------------------------ */ |
| 1504 | #ifdef CONFIG_PROC_FS |
Gerrit Renker | ba4e58e | 2006-11-27 11:10:57 -0800 | [diff] [blame] | 1505 | int udp6_seq_show(struct seq_file *seq, void *v) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1506 | { |
Lorenzo Colitti | 17ef66af | 2013-05-31 15:05:48 +0000 | [diff] [blame] | 1507 | if (v == SEQ_START_TOKEN) { |
| 1508 | seq_puts(seq, IPV6_SEQ_DGRAM_HEADER); |
| 1509 | } else { |
| 1510 | int bucket = ((struct udp_iter_state *)seq->private)->bucket; |
| 1511 | struct inet_sock *inet = inet_sk(v); |
| 1512 | __u16 srcp = ntohs(inet->inet_sport); |
| 1513 | __u16 destp = ntohs(inet->inet_dport); |
| 1514 | ip6_dgram_sock_seq_show(seq, v, srcp, destp, bucket); |
| 1515 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1516 | return 0; |
| 1517 | } |
| 1518 | |
Arjan van de Ven | 73cb88e | 2011-10-30 06:46:30 +0000 | [diff] [blame] | 1519 | static const struct file_operations udp6_afinfo_seq_fops = { |
| 1520 | .owner = THIS_MODULE, |
| 1521 | .open = udp_seq_open, |
| 1522 | .read = seq_read, |
| 1523 | .llseek = seq_lseek, |
| 1524 | .release = seq_release_net |
| 1525 | }; |
| 1526 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1527 | static struct udp_seq_afinfo udp6_seq_afinfo = { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1528 | .name = "udp6", |
| 1529 | .family = AF_INET6, |
Eric Dumazet | 645ca70 | 2008-10-29 01:41:45 -0700 | [diff] [blame] | 1530 | .udp_table = &udp_table, |
Arjan van de Ven | 73cb88e | 2011-10-30 06:46:30 +0000 | [diff] [blame] | 1531 | .seq_fops = &udp6_afinfo_seq_fops, |
Denis V. Lunev | dda6192 | 2008-03-28 18:24:26 -0700 | [diff] [blame] | 1532 | .seq_ops = { |
| 1533 | .show = udp6_seq_show, |
| 1534 | }, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1535 | }; |
| 1536 | |
Alexey Dobriyan | 2c8c1e7 | 2010-01-17 03:35:32 +0000 | [diff] [blame] | 1537 | int __net_init udp6_proc_init(struct net *net) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1538 | { |
Daniel Lezcano | 0c96d8c | 2008-03-21 04:14:17 -0700 | [diff] [blame] | 1539 | return udp_proc_register(net, &udp6_seq_afinfo); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1540 | } |
| 1541 | |
Ian Morris | ec120da | 2015-08-14 22:43:38 +0100 | [diff] [blame] | 1542 | void udp6_proc_exit(struct net *net) |
| 1543 | { |
Daniel Lezcano | 0c96d8c | 2008-03-21 04:14:17 -0700 | [diff] [blame] | 1544 | udp_proc_unregister(net, &udp6_seq_afinfo); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1545 | } |
| 1546 | #endif /* CONFIG_PROC_FS */ |
| 1547 | |
Eric Dumazet | f77d602 | 2013-05-09 10:28:16 +0000 | [diff] [blame] | 1548 | void udp_v6_clear_sk(struct sock *sk, int size) |
| 1549 | { |
| 1550 | struct inet_sock *inet = inet_sk(sk); |
| 1551 | |
| 1552 | /* we do not want to clear pinet6 field, because of RCU lookups */ |
| 1553 | sk_prot_clear_portaddr_nulls(sk, offsetof(struct inet_sock, pinet6)); |
| 1554 | |
| 1555 | size -= offsetof(struct inet_sock, pinet6) + sizeof(inet->pinet6); |
| 1556 | memset(&inet->pinet6 + 1, 0, size); |
| 1557 | } |
| 1558 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1559 | /* ------------------------------------------------------------------------ */ |
| 1560 | |
| 1561 | struct proto udpv6_prot = { |
Arnaldo Carvalho de Melo | 543d9cf | 2006-03-20 22:48:35 -0800 | [diff] [blame] | 1562 | .name = "UDPv6", |
| 1563 | .owner = THIS_MODULE, |
Gerrit Renker | ba4e58e | 2006-11-27 11:10:57 -0800 | [diff] [blame] | 1564 | .close = udp_lib_close, |
Arnaldo Carvalho de Melo | 543d9cf | 2006-03-20 22:48:35 -0800 | [diff] [blame] | 1565 | .connect = ip6_datagram_connect, |
| 1566 | .disconnect = udp_disconnect, |
| 1567 | .ioctl = udp_ioctl, |
| 1568 | .destroy = udpv6_destroy_sock, |
| 1569 | .setsockopt = udpv6_setsockopt, |
| 1570 | .getsockopt = udpv6_getsockopt, |
| 1571 | .sendmsg = udpv6_sendmsg, |
| 1572 | .recvmsg = udpv6_recvmsg, |
Benjamin LaHaise | f7ad74f | 2012-04-27 08:23:21 +0000 | [diff] [blame] | 1573 | .backlog_rcv = __udpv6_queue_rcv_skb, |
Gerrit Renker | ba4e58e | 2006-11-27 11:10:57 -0800 | [diff] [blame] | 1574 | .hash = udp_lib_hash, |
| 1575 | .unhash = udp_lib_unhash, |
Eric Dumazet | 719f835 | 2010-09-08 05:08:44 +0000 | [diff] [blame] | 1576 | .rehash = udp_v6_rehash, |
Arnaldo Carvalho de Melo | 543d9cf | 2006-03-20 22:48:35 -0800 | [diff] [blame] | 1577 | .get_port = udp_v6_get_port, |
Hideo Aoki | 95766ff | 2007-12-31 00:29:24 -0800 | [diff] [blame] | 1578 | .memory_allocated = &udp_memory_allocated, |
| 1579 | .sysctl_mem = sysctl_udp_mem, |
| 1580 | .sysctl_wmem = &sysctl_udp_wmem_min, |
| 1581 | .sysctl_rmem = &sysctl_udp_rmem_min, |
Arnaldo Carvalho de Melo | 543d9cf | 2006-03-20 22:48:35 -0800 | [diff] [blame] | 1582 | .obj_size = sizeof(struct udp6_sock), |
Eric Dumazet | 271b72c | 2008-10-29 02:11:14 -0700 | [diff] [blame] | 1583 | .slab_flags = SLAB_DESTROY_BY_RCU, |
Eric Dumazet | 645ca70 | 2008-10-29 01:41:45 -0700 | [diff] [blame] | 1584 | .h.udp_table = &udp_table, |
Dmitry Mishin | 3fdadf7 | 2006-03-20 22:45:21 -0800 | [diff] [blame] | 1585 | #ifdef CONFIG_COMPAT |
Arnaldo Carvalho de Melo | 543d9cf | 2006-03-20 22:48:35 -0800 | [diff] [blame] | 1586 | .compat_setsockopt = compat_udpv6_setsockopt, |
| 1587 | .compat_getsockopt = compat_udpv6_getsockopt, |
Dmitry Mishin | 3fdadf7 | 2006-03-20 22:45:21 -0800 | [diff] [blame] | 1588 | #endif |
Eric Dumazet | f77d602 | 2013-05-09 10:28:16 +0000 | [diff] [blame] | 1589 | .clear_sk = udp_v6_clear_sk, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1590 | }; |
| 1591 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1592 | static struct inet_protosw udpv6_protosw = { |
| 1593 | .type = SOCK_DGRAM, |
| 1594 | .protocol = IPPROTO_UDP, |
| 1595 | .prot = &udpv6_prot, |
| 1596 | .ops = &inet6_dgram_ops, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1597 | .flags = INET_PROTOSW_PERMANENT, |
| 1598 | }; |
| 1599 | |
Daniel Lezcano | 7f4e486 | 2007-12-11 02:25:35 -0800 | [diff] [blame] | 1600 | int __init udpv6_init(void) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1601 | { |
Daniel Lezcano | 7f4e486 | 2007-12-11 02:25:35 -0800 | [diff] [blame] | 1602 | int ret; |
| 1603 | |
Vlad Yasevich | 3336288 | 2012-11-15 08:49:15 +0000 | [diff] [blame] | 1604 | ret = inet6_add_protocol(&udpv6_protocol, IPPROTO_UDP); |
| 1605 | if (ret) |
Vlad Yasevich | c6b641a | 2012-11-15 08:49:22 +0000 | [diff] [blame] | 1606 | goto out; |
Vlad Yasevich | 3336288 | 2012-11-15 08:49:15 +0000 | [diff] [blame] | 1607 | |
Daniel Lezcano | 7f4e486 | 2007-12-11 02:25:35 -0800 | [diff] [blame] | 1608 | ret = inet6_register_protosw(&udpv6_protosw); |
| 1609 | if (ret) |
| 1610 | goto out_udpv6_protocol; |
| 1611 | out: |
| 1612 | return ret; |
| 1613 | |
| 1614 | out_udpv6_protocol: |
| 1615 | inet6_del_protocol(&udpv6_protocol, IPPROTO_UDP); |
| 1616 | goto out; |
| 1617 | } |
| 1618 | |
Daniel Lezcano | 09f7709 | 2007-12-13 05:34:58 -0800 | [diff] [blame] | 1619 | void udpv6_exit(void) |
Daniel Lezcano | 7f4e486 | 2007-12-11 02:25:35 -0800 | [diff] [blame] | 1620 | { |
| 1621 | inet6_unregister_protosw(&udpv6_protosw); |
| 1622 | inet6_del_protocol(&udpv6_protocol, IPPROTO_UDP); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1623 | } |