blob: 787e480cc09638f0dfc04cc61f44576727c40395 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * UDP over IPv6
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09003 * Linux INET6 implementation
Linus Torvalds1da177e2005-04-16 15:20:36 -07004 *
5 * Authors:
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09006 * Pedro Roque <roque@di.fc.ul.pt>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007 *
8 * Based on linux/ipv4/udp.c
9 *
Linus Torvalds1da177e2005-04-16 15:20:36 -070010 * Fixes:
11 * Hideaki YOSHIFUJI : sin6_scope_id support
12 * YOSHIFUJI Hideaki @USAGI and: Support IPV6_V6ONLY socket option, which
13 * Alexey Kuznetsov allow both IPv4 and IPv6 sockets to bind
14 * a single port at the same time.
15 * Kazunori MIYAZAWA @USAGI: change process style to use ip6_append_data
16 * YOSHIFUJI Hideaki @USAGI: convert /proc/net/udp6 to seq_file.
17 *
18 * This program is free software; you can redistribute it and/or
19 * modify it under the terms of the GNU General Public License
20 * as published by the Free Software Foundation; either version
21 * 2 of the License, or (at your option) any later version.
22 */
23
Linus Torvalds1da177e2005-04-16 15:20:36 -070024#include <linux/errno.h>
25#include <linux/types.h>
26#include <linux/socket.h>
27#include <linux/sockios.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070028#include <linux/net.h>
29#include <linux/in6.h>
30#include <linux/netdevice.h>
31#include <linux/if_arp.h>
32#include <linux/ipv6.h>
33#include <linux/icmpv6.h>
34#include <linux/init.h>
Herbert Xu1781f7f2007-12-11 11:30:32 -080035#include <linux/module.h>
Herbert Xu3305b802005-12-13 23:16:37 -080036#include <linux/skbuff.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070037#include <asm/uaccess.h>
38
Linus Torvalds1da177e2005-04-16 15:20:36 -070039#include <net/ndisc.h>
40#include <net/protocol.h>
41#include <net/transp_v6.h>
42#include <net/ip6_route.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070043#include <net/raw.h>
Arnaldo Carvalho de Meloc752f072005-08-09 20:08:28 -070044#include <net/tcp_states.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070045#include <net/ip6_checksum.h>
46#include <net/xfrm.h>
47
48#include <linux/proc_fs.h>
49#include <linux/seq_file.h>
Gerrit Renkerba4e58e2006-11-27 11:10:57 -080050#include "udp_impl.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070051
Vlad Yasevichb2f5e7c2009-03-24 16:24:51 +000052int ipv6_rcv_saddr_equal(const struct sock *sk, const struct sock *sk2)
53{
54 const struct in6_addr *sk_rcv_saddr6 = &inet6_sk(sk)->rcv_saddr;
55 const struct in6_addr *sk2_rcv_saddr6 = inet6_rcv_saddr(sk2);
Eric Dumazetc720c7e2009-10-15 06:30:45 +000056 __be32 sk1_rcv_saddr = inet_sk(sk)->inet_rcv_saddr;
Vlad Yasevich499923c2009-04-09 17:37:33 +000057 __be32 sk2_rcv_saddr = inet_rcv_saddr(sk2);
Vlad Yasevichb2f5e7c2009-03-24 16:24:51 +000058 int sk_ipv6only = ipv6_only_sock(sk);
59 int sk2_ipv6only = inet_v6_ipv6only(sk2);
60 int addr_type = ipv6_addr_type(sk_rcv_saddr6);
61 int addr_type2 = sk2_rcv_saddr6 ? ipv6_addr_type(sk2_rcv_saddr6) : IPV6_ADDR_MAPPED;
62
63 /* if both are mapped, treat as IPv4 */
64 if (addr_type == IPV6_ADDR_MAPPED && addr_type2 == IPV6_ADDR_MAPPED)
Vlad Yasevich499923c2009-04-09 17:37:33 +000065 return (!sk2_ipv6only &&
Eric Dumazetc720c7e2009-10-15 06:30:45 +000066 (!sk1_rcv_saddr || !sk2_rcv_saddr ||
67 sk1_rcv_saddr == sk2_rcv_saddr));
Vlad Yasevichb2f5e7c2009-03-24 16:24:51 +000068
69 if (addr_type2 == IPV6_ADDR_ANY &&
70 !(sk2_ipv6only && addr_type == IPV6_ADDR_MAPPED))
71 return 1;
72
73 if (addr_type == IPV6_ADDR_ANY &&
74 !(sk_ipv6only && addr_type2 == IPV6_ADDR_MAPPED))
75 return 1;
76
77 if (sk2_rcv_saddr6 &&
78 ipv6_addr_equal(sk_rcv_saddr6, sk2_rcv_saddr6))
79 return 1;
80
81 return 0;
82}
83
Eric Dumazetd4cada42009-11-08 10:17:30 +000084static unsigned int udp6_portaddr_hash(struct net *net,
85 const struct in6_addr *addr6,
86 unsigned int port)
87{
88 unsigned int hash, mix = net_hash_mix(net);
89
90 if (ipv6_addr_any(addr6))
91 hash = jhash_1word(0, mix);
Brian Haley856540e2009-11-09 12:05:53 +000092 else if (ipv6_addr_v4mapped(addr6))
Eric Dumazetd4cada42009-11-08 10:17:30 +000093 hash = jhash_1word(addr6->s6_addr32[3], mix);
94 else
95 hash = jhash2(addr6->s6_addr32, 4, mix);
96
97 return hash ^ port;
98}
99
100
Pavel Emelyanov6ba5a3c2008-03-22 16:51:21 -0700101int udp_v6_get_port(struct sock *sk, unsigned short snum)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700102{
Eric Dumazet30fff922009-11-09 05:26:33 +0000103 unsigned int hash2_nulladdr =
104 udp6_portaddr_hash(sock_net(sk), &in6addr_any, snum);
105 unsigned int hash2_partial =
106 udp6_portaddr_hash(sock_net(sk), &inet6_sk(sk)->rcv_saddr, 0);
107
Eric Dumazetd4cada42009-11-08 10:17:30 +0000108 /* precompute partial secondary hash */
Eric Dumazet30fff922009-11-09 05:26:33 +0000109 udp_sk(sk)->udp_portaddr_hash = hash2_partial;
110 return udp_lib_get_port(sk, snum, ipv6_rcv_saddr_equal, hash2_nulladdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700111}
112
Eric Dumazet645ca702008-10-29 01:41:45 -0700113static inline int compute_score(struct sock *sk, struct net *net,
114 unsigned short hnum,
115 struct in6_addr *saddr, __be16 sport,
116 struct in6_addr *daddr, __be16 dport,
117 int dif)
118{
119 int score = -1;
120
Eric Dumazetd4cada42009-11-08 10:17:30 +0000121 if (net_eq(sock_net(sk), net) && udp_sk(sk)->udp_port_hash == hnum &&
Eric Dumazet645ca702008-10-29 01:41:45 -0700122 sk->sk_family == PF_INET6) {
123 struct ipv6_pinfo *np = inet6_sk(sk);
124 struct inet_sock *inet = inet_sk(sk);
125
126 score = 0;
Eric Dumazetc720c7e2009-10-15 06:30:45 +0000127 if (inet->inet_dport) {
128 if (inet->inet_dport != sport)
Eric Dumazet645ca702008-10-29 01:41:45 -0700129 return -1;
130 score++;
131 }
132 if (!ipv6_addr_any(&np->rcv_saddr)) {
133 if (!ipv6_addr_equal(&np->rcv_saddr, daddr))
134 return -1;
135 score++;
136 }
137 if (!ipv6_addr_any(&np->daddr)) {
138 if (!ipv6_addr_equal(&np->daddr, saddr))
139 return -1;
140 score++;
141 }
142 if (sk->sk_bound_dev_if) {
143 if (sk->sk_bound_dev_if != dif)
144 return -1;
145 score++;
146 }
147 }
148 return score;
149}
150
Eric Dumazetfddc17d2009-11-08 10:18:30 +0000151#define SCORE2_MAX (1 + 1 + 1)
152static inline int compute_score2(struct sock *sk, struct net *net,
153 const struct in6_addr *saddr, __be16 sport,
154 const struct in6_addr *daddr, unsigned short hnum,
155 int dif)
156{
157 int score = -1;
158
159 if (net_eq(sock_net(sk), net) && udp_sk(sk)->udp_port_hash == hnum &&
160 sk->sk_family == PF_INET6) {
161 struct ipv6_pinfo *np = inet6_sk(sk);
162 struct inet_sock *inet = inet_sk(sk);
163
164 if (!ipv6_addr_equal(&np->rcv_saddr, daddr))
165 return -1;
166 score = 0;
167 if (inet->inet_dport) {
168 if (inet->inet_dport != sport)
169 return -1;
170 score++;
171 }
172 if (!ipv6_addr_any(&np->daddr)) {
173 if (!ipv6_addr_equal(&np->daddr, saddr))
174 return -1;
175 score++;
176 }
177 if (sk->sk_bound_dev_if) {
178 if (sk->sk_bound_dev_if != dif)
179 return -1;
180 score++;
181 }
182 }
183 return score;
184}
185
Eric Dumazetfddc17d2009-11-08 10:18:30 +0000186
187/* called with read_rcu_lock() */
188static struct sock *udp6_lib_lookup2(struct net *net,
189 const struct in6_addr *saddr, __be16 sport,
190 const struct in6_addr *daddr, unsigned int hnum, int dif,
191 struct udp_hslot *hslot2, unsigned int slot2)
192{
193 struct sock *sk, *result;
194 struct hlist_nulls_node *node;
195 int score, badness;
196
197begin:
198 result = NULL;
199 badness = -1;
200 udp_portaddr_for_each_entry_rcu(sk, node, &hslot2->head) {
201 score = compute_score2(sk, net, saddr, sport,
202 daddr, hnum, dif);
203 if (score > badness) {
204 result = sk;
205 badness = score;
206 if (score == SCORE2_MAX)
207 goto exact_match;
208 }
209 }
210 /*
211 * if the nulls value we got at the end of this lookup is
212 * not the expected one, we must restart lookup.
213 * We probably met an item that was moved to another chain.
214 */
215 if (get_nulls_value(node) != slot2)
216 goto begin;
217
218 if (result) {
219exact_match:
220 if (unlikely(!atomic_inc_not_zero(&result->sk_refcnt)))
221 result = NULL;
222 else if (unlikely(compute_score2(result, net, saddr, sport,
223 daddr, hnum, dif) < badness)) {
224 sock_put(result);
225 goto begin;
226 }
227 }
228 return result;
229}
230
Pavel Emelyanovfa4d3c62008-01-31 05:07:57 -0800231static struct sock *__udp6_lib_lookup(struct net *net,
232 struct in6_addr *saddr, __be16 sport,
Gerrit Renkerba4e58e2006-11-27 11:10:57 -0800233 struct in6_addr *daddr, __be16 dport,
Eric Dumazet645ca702008-10-29 01:41:45 -0700234 int dif, struct udp_table *udptable)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700235{
Eric Dumazet271b72c2008-10-29 02:11:14 -0700236 struct sock *sk, *result;
Eric Dumazet88ab1932008-11-16 19:39:21 -0800237 struct hlist_nulls_node *node;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700238 unsigned short hnum = ntohs(dport);
Eric Dumazetfddc17d2009-11-08 10:18:30 +0000239 unsigned int hash2, slot2, slot = udp_hashfn(net, hnum, udptable->mask);
240 struct udp_hslot *hslot2, *hslot = &udptable->hash[slot];
Eric Dumazet271b72c2008-10-29 02:11:14 -0700241 int score, badness;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700242
Eric Dumazet271b72c2008-10-29 02:11:14 -0700243 rcu_read_lock();
Eric Dumazetfddc17d2009-11-08 10:18:30 +0000244 if (hslot->count > 10) {
245 hash2 = udp6_portaddr_hash(net, daddr, hnum);
246 slot2 = hash2 & udptable->mask;
247 hslot2 = &udptable->hash2[slot2];
248 if (hslot->count < hslot2->count)
249 goto begin;
250
251 result = udp6_lib_lookup2(net, saddr, sport,
252 daddr, hnum, dif,
253 hslot2, slot2);
254 if (!result) {
255 hash2 = udp6_portaddr_hash(net, &in6addr_any, hnum);
256 slot2 = hash2 & udptable->mask;
257 hslot2 = &udptable->hash2[slot2];
258 if (hslot->count < hslot2->count)
259 goto begin;
260
Jorge Boncompte [DTI2]1223c672010-04-08 04:56:48 +0000261 result = udp6_lib_lookup2(net, saddr, sport,
262 &in6addr_any, hnum, dif,
Eric Dumazetfddc17d2009-11-08 10:18:30 +0000263 hslot2, slot2);
264 }
265 rcu_read_unlock();
266 return result;
267 }
Eric Dumazet271b72c2008-10-29 02:11:14 -0700268begin:
269 result = NULL;
270 badness = -1;
Eric Dumazet88ab1932008-11-16 19:39:21 -0800271 sk_nulls_for_each_rcu(sk, node, &hslot->head) {
Eric Dumazet645ca702008-10-29 01:41:45 -0700272 score = compute_score(sk, net, hnum, saddr, sport, daddr, dport, dif);
273 if (score > badness) {
274 result = sk;
275 badness = score;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700276 }
277 }
Eric Dumazet88ab1932008-11-16 19:39:21 -0800278 /*
279 * if the nulls value we got at the end of this lookup is
280 * not the expected one, we must restart lookup.
281 * We probably met an item that was moved to another chain.
282 */
Eric Dumazetfddc17d2009-11-08 10:18:30 +0000283 if (get_nulls_value(node) != slot)
Eric Dumazet88ab1932008-11-16 19:39:21 -0800284 goto begin;
285
Eric Dumazet271b72c2008-10-29 02:11:14 -0700286 if (result) {
287 if (unlikely(!atomic_inc_not_zero(&result->sk_refcnt)))
288 result = NULL;
289 else if (unlikely(compute_score(result, net, hnum, saddr, sport,
290 daddr, dport, dif) < badness)) {
291 sock_put(result);
292 goto begin;
293 }
294 }
295 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700296 return result;
297}
298
KOVACS Krisztian607c4aa2008-10-07 12:38:32 -0700299static struct sock *__udp6_lib_lookup_skb(struct sk_buff *skb,
300 __be16 sport, __be16 dport,
Eric Dumazet645ca702008-10-29 01:41:45 -0700301 struct udp_table *udptable)
KOVACS Krisztian607c4aa2008-10-07 12:38:32 -0700302{
KOVACS Krisztian23542612008-10-07 12:41:01 -0700303 struct sock *sk;
KOVACS Krisztian607c4aa2008-10-07 12:38:32 -0700304 struct ipv6hdr *iph = ipv6_hdr(skb);
305
KOVACS Krisztian23542612008-10-07 12:41:01 -0700306 if (unlikely(sk = skb_steal_sock(skb)))
307 return sk;
Eric Dumazetadf30902009-06-02 05:19:30 +0000308 return __udp6_lib_lookup(dev_net(skb_dst(skb)->dev), &iph->saddr, sport,
309 &iph->daddr, dport, inet6_iif(skb),
310 udptable);
KOVACS Krisztian607c4aa2008-10-07 12:38:32 -0700311}
312
Linus Torvalds1da177e2005-04-16 15:20:36 -0700313/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700314 * This should be easy, if there is something there we
315 * return it, otherwise we block.
316 */
317
Gerrit Renkerba4e58e2006-11-27 11:10:57 -0800318int udpv6_recvmsg(struct kiocb *iocb, struct sock *sk,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700319 struct msghdr *msg, size_t len,
320 int noblock, int flags, int *addr_len)
321{
322 struct ipv6_pinfo *np = inet6_sk(sk);
323 struct inet_sock *inet = inet_sk(sk);
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900324 struct sk_buff *skb;
Gerrit Renker81d54ec2010-02-10 20:26:19 +0000325 unsigned int ulen;
Herbert Xua59322b2007-12-05 01:53:40 -0800326 int peeked;
Herbert Xu759e5d02007-03-25 20:10:56 -0700327 int err;
328 int is_udplite = IS_UDPLITE(sk);
Wei Yongjunf26ba172008-11-02 16:11:01 +0000329 int is_udp4;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700330
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900331 if (addr_len)
332 *addr_len=sizeof(struct sockaddr_in6);
333
Linus Torvalds1da177e2005-04-16 15:20:36 -0700334 if (flags & MSG_ERRQUEUE)
335 return ipv6_recv_error(sk, msg, len);
336
337try_again:
Herbert Xua59322b2007-12-05 01:53:40 -0800338 skb = __skb_recv_datagram(sk, flags | (noblock ? MSG_DONTWAIT : 0),
339 &peeked, &err);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700340 if (!skb)
341 goto out;
342
Herbert Xu759e5d02007-03-25 20:10:56 -0700343 ulen = skb->len - sizeof(struct udphdr);
Gerrit Renker81d54ec2010-02-10 20:26:19 +0000344 if (len > ulen)
345 len = ulen;
346 else if (len < ulen)
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900347 msg->msg_flags |= MSG_TRUNC;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700348
Wei Yongjunf26ba172008-11-02 16:11:01 +0000349 is_udp4 = (skb->protocol == htons(ETH_P_IP));
350
Gerrit Renkerba4e58e2006-11-27 11:10:57 -0800351 /*
Herbert Xu759e5d02007-03-25 20:10:56 -0700352 * If checksum is needed at all, try to do it while copying the
353 * data. If the data is truncated, or if we only want a partial
354 * coverage checksum (UDP-Lite), do it before the copy.
Gerrit Renkerba4e58e2006-11-27 11:10:57 -0800355 */
Gerrit Renkerba4e58e2006-11-27 11:10:57 -0800356
Gerrit Renker81d54ec2010-02-10 20:26:19 +0000357 if (len < ulen || UDP_SKB_CB(skb)->partial_cov) {
Herbert Xu759e5d02007-03-25 20:10:56 -0700358 if (udp_lib_checksum_complete(skb))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700359 goto csum_copy_err;
Gerrit Renkerba4e58e2006-11-27 11:10:57 -0800360 }
361
Herbert Xu60476372007-04-09 11:59:39 -0700362 if (skb_csum_unnecessary(skb))
Gerrit Renkerba4e58e2006-11-27 11:10:57 -0800363 err = skb_copy_datagram_iovec(skb, sizeof(struct udphdr),
Gerrit Renker81d54ec2010-02-10 20:26:19 +0000364 msg->msg_iov,len);
Gerrit Renkerba4e58e2006-11-27 11:10:57 -0800365 else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700366 err = skb_copy_and_csum_datagram_iovec(skb, sizeof(struct udphdr), msg->msg_iov);
367 if (err == -EINVAL)
368 goto csum_copy_err;
369 }
370 if (err)
371 goto out_free;
372
Wei Yongjunf26ba172008-11-02 16:11:01 +0000373 if (!peeked) {
374 if (is_udp4)
375 UDP_INC_STATS_USER(sock_net(sk),
376 UDP_MIB_INDATAGRAMS, is_udplite);
377 else
378 UDP6_INC_STATS_USER(sock_net(sk),
379 UDP_MIB_INDATAGRAMS, is_udplite);
380 }
Wang Chencb759942007-12-03 22:33:28 +1100381
Neil Horman3b885782009-10-12 13:26:31 -0700382 sock_recv_ts_and_drops(msg, sk, skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700383
384 /* Copy the address. */
385 if (msg->msg_name) {
386 struct sockaddr_in6 *sin6;
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900387
Linus Torvalds1da177e2005-04-16 15:20:36 -0700388 sin6 = (struct sockaddr_in6 *) msg->msg_name;
389 sin6->sin6_family = AF_INET6;
Arnaldo Carvalho de Melo4bedb452007-03-13 14:28:48 -0300390 sin6->sin6_port = udp_hdr(skb)->source;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700391 sin6->sin6_flowinfo = 0;
392 sin6->sin6_scope_id = 0;
393
Wei Yongjunf26ba172008-11-02 16:11:01 +0000394 if (is_udp4)
Brian Haleyb301e822009-10-07 13:58:25 -0700395 ipv6_addr_set_v4mapped(ip_hdr(skb)->saddr,
396 &sin6->sin6_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700397 else {
Arnaldo Carvalho de Melo0660e032007-04-25 17:54:47 -0700398 ipv6_addr_copy(&sin6->sin6_addr,
399 &ipv6_hdr(skb)->saddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700400 if (ipv6_addr_type(&sin6->sin6_addr) & IPV6_ADDR_LINKLOCAL)
401 sin6->sin6_scope_id = IP6CB(skb)->iif;
402 }
403
404 }
Wei Yongjunf26ba172008-11-02 16:11:01 +0000405 if (is_udp4) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700406 if (inet->cmsg_flags)
407 ip_cmsg_recv(msg, skb);
408 } else {
409 if (np->rxopt.all)
410 datagram_recv_ctl(sk, msg, skb);
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900411 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700412
Gerrit Renker81d54ec2010-02-10 20:26:19 +0000413 err = len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700414 if (flags & MSG_TRUNC)
Herbert Xu759e5d02007-03-25 20:10:56 -0700415 err = ulen;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700416
417out_free:
Eric Dumazet9d410c72009-10-30 05:03:53 +0000418 skb_free_datagram_locked(sk, skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700419out:
420 return err;
421
422csum_copy_err:
Hideo Aoki95766ff2007-12-31 00:29:24 -0800423 lock_sock(sk);
Wei Yongjun0856f932008-11-02 16:14:27 +0000424 if (!skb_kill_datagram(sk, skb, flags)) {
425 if (is_udp4)
426 UDP_INC_STATS_USER(sock_net(sk),
427 UDP_MIB_INERRORS, is_udplite);
428 else
429 UDP6_INC_STATS_USER(sock_net(sk),
430 UDP_MIB_INERRORS, is_udplite);
431 }
Hideo Aoki95766ff2007-12-31 00:29:24 -0800432 release_sock(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700433
Mitsuru Chinen7a0ff7162007-11-05 21:29:17 -0800434 if (flags & MSG_DONTWAIT)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700435 return -EAGAIN;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700436 goto try_again;
437}
438
Gerrit Renkerba4e58e2006-11-27 11:10:57 -0800439void __udp6_lib_err(struct sk_buff *skb, struct inet6_skb_parm *opt,
Brian Haleyd5fdd6b2009-06-23 04:31:07 -0700440 u8 type, u8 code, int offset, __be32 info,
Eric Dumazet645ca702008-10-29 01:41:45 -0700441 struct udp_table *udptable)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700442{
443 struct ipv6_pinfo *np;
444 struct ipv6hdr *hdr = (struct ipv6hdr*)skb->data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700445 struct in6_addr *saddr = &hdr->saddr;
446 struct in6_addr *daddr = &hdr->daddr;
447 struct udphdr *uh = (struct udphdr*)(skb->data+offset);
448 struct sock *sk;
449 int err;
450
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +0900451 sk = __udp6_lib_lookup(dev_net(skb->dev), daddr, uh->dest,
Gerrit Renkerba4e58e2006-11-27 11:10:57 -0800452 saddr, uh->source, inet6_iif(skb), udptable);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700453 if (sk == NULL)
454 return;
455
456 np = inet6_sk(sk);
457
458 if (!icmpv6_err_convert(type, code, &err) && !np->recverr)
459 goto out;
460
461 if (sk->sk_state != TCP_ESTABLISHED && !np->recverr)
462 goto out;
463
464 if (np->recverr)
465 ipv6_icmp_error(sk, skb, err, uh->dest, ntohl(info), (u8 *)(uh+1));
466
467 sk->sk_err = err;
468 sk->sk_error_report(sk);
469out:
470 sock_put(sk);
471}
472
Gerrit Renkerba4e58e2006-11-27 11:10:57 -0800473static __inline__ void udpv6_err(struct sk_buff *skb,
Brian Haleyd5fdd6b2009-06-23 04:31:07 -0700474 struct inet6_skb_parm *opt, u8 type,
475 u8 code, int offset, __be32 info )
Linus Torvalds1da177e2005-04-16 15:20:36 -0700476{
Eric Dumazet645ca702008-10-29 01:41:45 -0700477 __udp6_lib_err(skb, opt, type, code, offset, info, &udp_table);
Gerrit Renkerba4e58e2006-11-27 11:10:57 -0800478}
479
480int udpv6_queue_rcv_skb(struct sock * sk, struct sk_buff *skb)
481{
482 struct udp_sock *up = udp_sk(sk);
David S. Millera18135e2006-08-15 00:00:09 -0700483 int rc;
Wang Chenb2bf1e22007-12-03 22:34:16 +1100484 int is_udplite = IS_UDPLITE(sk);
David S. Millera18135e2006-08-15 00:00:09 -0700485
Gerrit Renkerba4e58e2006-11-27 11:10:57 -0800486 if (!xfrm6_policy_check(sk, XFRM_POLICY_IN, skb))
487 goto drop;
488
489 /*
490 * UDP-Lite specific tests, ignored on UDP sockets (see net/ipv4/udp.c).
491 */
Wang Chenb2bf1e22007-12-03 22:34:16 +1100492 if ((is_udplite & UDPLITE_RECV_CC) && UDP_SKB_CB(skb)->partial_cov) {
Gerrit Renkerba4e58e2006-11-27 11:10:57 -0800493
494 if (up->pcrlen == 0) { /* full coverage was set */
495 LIMIT_NETDEBUG(KERN_WARNING "UDPLITE6: partial coverage"
496 " %d while full coverage %d requested\n",
497 UDP_SKB_CB(skb)->cscov, skb->len);
498 goto drop;
499 }
500 if (UDP_SKB_CB(skb)->cscov < up->pcrlen) {
501 LIMIT_NETDEBUG(KERN_WARNING "UDPLITE6: coverage %d "
502 "too small, need min %d\n",
503 UDP_SKB_CB(skb)->cscov, up->pcrlen);
504 goto drop;
505 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700506 }
507
Herbert Xu1ab6eb62007-03-06 20:29:58 -0800508 if (sk->sk_filter) {
509 if (udp_lib_checksum_complete(skb))
510 goto drop;
511 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700512
Eric Dumazet766e90372009-10-14 20:40:11 -0700513 if ((rc = sock_queue_rcv_skb(sk, skb)) < 0) {
David S. Millera18135e2006-08-15 00:00:09 -0700514 /* Note that an ENOMEM error is charged twice */
Eric Dumazet766e90372009-10-14 20:40:11 -0700515 if (rc == -ENOMEM)
Pavel Emelyanovef28d1a2008-07-05 21:19:40 -0700516 UDP6_INC_STATS_BH(sock_net(sk),
517 UDP_MIB_RCVBUFERRORS, is_udplite);
Eric Dumazet8edf19c2009-10-15 00:12:40 +0000518 goto drop_no_sk_drops_inc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700519 }
Wang Chencb759942007-12-03 22:33:28 +1100520
Linus Torvalds1da177e2005-04-16 15:20:36 -0700521 return 0;
Gerrit Renkerba4e58e2006-11-27 11:10:57 -0800522drop:
Eric Dumazet8edf19c2009-10-15 00:12:40 +0000523 atomic_inc(&sk->sk_drops);
524drop_no_sk_drops_inc:
Pavel Emelyanovef28d1a2008-07-05 21:19:40 -0700525 UDP6_INC_STATS_BH(sock_net(sk), UDP_MIB_INERRORS, is_udplite);
Gerrit Renkerba4e58e2006-11-27 11:10:57 -0800526 kfree_skb(skb);
527 return -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700528}
529
Eric Dumazet920a4612008-11-01 21:22:23 -0700530static struct sock *udp_v6_mcast_next(struct net *net, struct sock *sk,
Al Viroe69a4adc2006-11-14 20:56:00 -0800531 __be16 loc_port, struct in6_addr *loc_addr,
532 __be16 rmt_port, struct in6_addr *rmt_addr,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700533 int dif)
534{
Eric Dumazet88ab1932008-11-16 19:39:21 -0800535 struct hlist_nulls_node *node;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700536 struct sock *s = sk;
537 unsigned short num = ntohs(loc_port);
538
Eric Dumazet88ab1932008-11-16 19:39:21 -0800539 sk_nulls_for_each_from(s, node) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700540 struct inet_sock *inet = inet_sk(s);
541
Eric Dumazet920a4612008-11-01 21:22:23 -0700542 if (!net_eq(sock_net(s), net))
Daniel Lezcanob8ad0cb2008-03-07 11:16:55 -0800543 continue;
544
Eric Dumazetd4cada42009-11-08 10:17:30 +0000545 if (udp_sk(s)->udp_port_hash == num &&
546 s->sk_family == PF_INET6) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700547 struct ipv6_pinfo *np = inet6_sk(s);
Eric Dumazetc720c7e2009-10-15 06:30:45 +0000548 if (inet->inet_dport) {
549 if (inet->inet_dport != rmt_port)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700550 continue;
551 }
552 if (!ipv6_addr_any(&np->daddr) &&
553 !ipv6_addr_equal(&np->daddr, rmt_addr))
554 continue;
555
556 if (s->sk_bound_dev_if && s->sk_bound_dev_if != dif)
557 continue;
558
559 if (!ipv6_addr_any(&np->rcv_saddr)) {
David L Stevens40796c52005-09-14 21:10:20 -0700560 if (!ipv6_addr_equal(&np->rcv_saddr, loc_addr))
561 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700562 }
Stephen Hemmingeradd459a2007-03-08 20:42:35 -0800563 if (!inet6_mc_check(s, loc_addr, rmt_addr))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700564 continue;
565 return s;
566 }
567 }
568 return NULL;
569}
570
Eric Dumazeta1ab77f2009-11-08 10:18:52 +0000571static void flush_stack(struct sock **stack, unsigned int count,
572 struct sk_buff *skb, unsigned int final)
573{
574 unsigned int i;
575 struct sock *sk;
576 struct sk_buff *skb1;
577
578 for (i = 0; i < count; i++) {
579 skb1 = (i == final) ? skb : skb_clone(skb, GFP_ATOMIC);
580
Eric Dumazetf6b8f322009-11-08 10:20:19 +0000581 sk = stack[i];
Eric Dumazeta1ab77f2009-11-08 10:18:52 +0000582 if (skb1) {
Eric Dumazeta1ab77f2009-11-08 10:18:52 +0000583 bh_lock_sock(sk);
584 if (!sock_owned_by_user(sk))
585 udpv6_queue_rcv_skb(sk, skb1);
Zhu Yia3a858f2010-03-04 18:01:47 +0000586 else if (sk_add_backlog(sk, skb1)) {
Zhu Yi55349792010-03-04 18:01:42 +0000587 kfree_skb(skb1);
588 bh_unlock_sock(sk);
589 goto drop;
590 }
Eric Dumazeta1ab77f2009-11-08 10:18:52 +0000591 bh_unlock_sock(sk);
Zhu Yi55349792010-03-04 18:01:42 +0000592 continue;
Eric Dumazeta1ab77f2009-11-08 10:18:52 +0000593 }
Zhu Yi55349792010-03-04 18:01:42 +0000594drop:
595 atomic_inc(&sk->sk_drops);
596 UDP6_INC_STATS_BH(sock_net(sk),
597 UDP_MIB_RCVBUFERRORS, IS_UDPLITE(sk));
598 UDP6_INC_STATS_BH(sock_net(sk),
599 UDP_MIB_INERRORS, IS_UDPLITE(sk));
Eric Dumazeta1ab77f2009-11-08 10:18:52 +0000600 }
601}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700602/*
603 * Note: called only from the BH handler context,
604 * so we don't need to lock the hashes.
605 */
Pavel Emelyanove3163492008-06-16 17:12:11 -0700606static int __udp6_lib_mcast_deliver(struct net *net, struct sk_buff *skb,
607 struct in6_addr *saddr, struct in6_addr *daddr,
Eric Dumazet645ca702008-10-29 01:41:45 -0700608 struct udp_table *udptable)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700609{
Eric Dumazeta1ab77f2009-11-08 10:18:52 +0000610 struct sock *sk, *stack[256 / sizeof(struct sock *)];
Arnaldo Carvalho de Melo4bedb452007-03-13 14:28:48 -0300611 const struct udphdr *uh = udp_hdr(skb);
Eric Dumazetf86dcc52009-10-07 00:37:59 +0000612 struct udp_hslot *hslot = udp_hashslot(udptable, net, ntohs(uh->dest));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700613 int dif;
Eric Dumazeta1ab77f2009-11-08 10:18:52 +0000614 unsigned int i, count = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700615
Eric Dumazet645ca702008-10-29 01:41:45 -0700616 spin_lock(&hslot->lock);
Eric Dumazet88ab1932008-11-16 19:39:21 -0800617 sk = sk_nulls_head(&hslot->head);
YOSHIFUJI Hideakif2776ff2006-11-21 17:41:56 -0800618 dif = inet6_iif(skb);
Eric Dumazet920a4612008-11-01 21:22:23 -0700619 sk = udp_v6_mcast_next(net, sk, uh->dest, daddr, uh->source, saddr, dif);
Eric Dumazeta1ab77f2009-11-08 10:18:52 +0000620 while (sk) {
621 stack[count++] = sk;
622 sk = udp_v6_mcast_next(net, sk_nulls_next(sk), uh->dest, daddr,
623 uh->source, saddr, dif);
624 if (unlikely(count == ARRAY_SIZE(stack))) {
625 if (!sk)
626 break;
627 flush_stack(stack, count, skb, ~0);
628 count = 0;
Hideo Aoki95766ff2007-12-31 00:29:24 -0800629 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700630 }
Eric Dumazeta1ab77f2009-11-08 10:18:52 +0000631 /*
632 * before releasing the lock, we must take reference on sockets
633 */
634 for (i = 0; i < count; i++)
635 sock_hold(stack[i]);
636
Eric Dumazet645ca702008-10-29 01:41:45 -0700637 spin_unlock(&hslot->lock);
Eric Dumazeta1ab77f2009-11-08 10:18:52 +0000638
639 if (count) {
640 flush_stack(stack, count, skb, count - 1);
641
642 for (i = 0; i < count; i++)
643 sock_put(stack[i]);
644 } else {
645 kfree_skb(skb);
646 }
Gerrit Renkerba4e58e2006-11-27 11:10:57 -0800647 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700648}
649
Herbert Xu759e5d02007-03-25 20:10:56 -0700650static inline int udp6_csum_init(struct sk_buff *skb, struct udphdr *uh,
651 int proto)
Gerrit Renkerba4e58e2006-11-27 11:10:57 -0800652{
Herbert Xu759e5d02007-03-25 20:10:56 -0700653 int err;
654
655 UDP_SKB_CB(skb)->partial_cov = 0;
656 UDP_SKB_CB(skb)->cscov = skb->len;
657
David S. Millerdb8dac22008-03-06 16:22:02 -0800658 if (proto == IPPROTO_UDPLITE) {
Herbert Xu759e5d02007-03-25 20:10:56 -0700659 err = udplite_checksum_init(skb, uh);
660 if (err)
661 return err;
662 }
663
Gerrit Renkerba4e58e2006-11-27 11:10:57 -0800664 if (uh->check == 0) {
665 /* RFC 2460 section 8.1 says that we SHOULD log
666 this error. Well, it is reasonable.
667 */
668 LIMIT_NETDEBUG(KERN_INFO "IPv6: udp checksum is 0\n");
669 return 1;
670 }
671 if (skb->ip_summed == CHECKSUM_COMPLETE &&
Arnaldo Carvalho de Melo0660e032007-04-25 17:54:47 -0700672 !csum_ipv6_magic(&ipv6_hdr(skb)->saddr, &ipv6_hdr(skb)->daddr,
Herbert Xu759e5d02007-03-25 20:10:56 -0700673 skb->len, proto, skb->csum))
Gerrit Renkerba4e58e2006-11-27 11:10:57 -0800674 skb->ip_summed = CHECKSUM_UNNECESSARY;
675
Herbert Xu60476372007-04-09 11:59:39 -0700676 if (!skb_csum_unnecessary(skb))
Arnaldo Carvalho de Melo0660e032007-04-25 17:54:47 -0700677 skb->csum = ~csum_unfold(csum_ipv6_magic(&ipv6_hdr(skb)->saddr,
678 &ipv6_hdr(skb)->daddr,
Herbert Xu759e5d02007-03-25 20:10:56 -0700679 skb->len, proto, 0));
Gerrit Renkerba4e58e2006-11-27 11:10:57 -0800680
Herbert Xu759e5d02007-03-25 20:10:56 -0700681 return 0;
Gerrit Renkerba4e58e2006-11-27 11:10:57 -0800682}
683
Eric Dumazet645ca702008-10-29 01:41:45 -0700684int __udp6_lib_rcv(struct sk_buff *skb, struct udp_table *udptable,
Herbert Xu759e5d02007-03-25 20:10:56 -0700685 int proto)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700686{
Alexey Dobriyan3ffe5332010-02-18 08:25:24 +0000687 struct net *net = dev_net(skb->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700688 struct sock *sk;
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900689 struct udphdr *uh;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700690 struct in6_addr *saddr, *daddr;
691 u32 ulen = 0;
692
693 if (!pskb_may_pull(skb, sizeof(struct udphdr)))
694 goto short_packet;
695
Arnaldo Carvalho de Melo0660e032007-04-25 17:54:47 -0700696 saddr = &ipv6_hdr(skb)->saddr;
697 daddr = &ipv6_hdr(skb)->daddr;
Arnaldo Carvalho de Melo4bedb452007-03-13 14:28:48 -0300698 uh = udp_hdr(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700699
700 ulen = ntohs(uh->len);
Gerrit Renkerba4e58e2006-11-27 11:10:57 -0800701 if (ulen > skb->len)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700702 goto short_packet;
703
Herbert Xu759e5d02007-03-25 20:10:56 -0700704 if (proto == IPPROTO_UDP) {
705 /* UDP validates ulen. */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700706
Gerrit Renkerba4e58e2006-11-27 11:10:57 -0800707 /* Check for jumbo payload */
708 if (ulen == 0)
709 ulen = skb->len;
710
711 if (ulen < sizeof(*uh))
712 goto short_packet;
713
714 if (ulen < skb->len) {
715 if (pskb_trim_rcsum(skb, ulen))
716 goto short_packet;
Arnaldo Carvalho de Melo0660e032007-04-25 17:54:47 -0700717 saddr = &ipv6_hdr(skb)->saddr;
718 daddr = &ipv6_hdr(skb)->daddr;
Arnaldo Carvalho de Melo4bedb452007-03-13 14:28:48 -0300719 uh = udp_hdr(skb);
Gerrit Renkerba4e58e2006-11-27 11:10:57 -0800720 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700721 }
722
Herbert Xu759e5d02007-03-25 20:10:56 -0700723 if (udp6_csum_init(skb, uh, proto))
724 goto discard;
725
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900726 /*
727 * Multicast receive code
Linus Torvalds1da177e2005-04-16 15:20:36 -0700728 */
Gerrit Renkerba4e58e2006-11-27 11:10:57 -0800729 if (ipv6_addr_is_multicast(daddr))
Pavel Emelyanove3163492008-06-16 17:12:11 -0700730 return __udp6_lib_mcast_deliver(net, skb,
731 saddr, daddr, udptable);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700732
733 /* Unicast */
734
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900735 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700736 * check socket cache ... must talk to Alan about his plans
737 * for sock caches... i'll skip this for now.
738 */
KOVACS Krisztian607c4aa2008-10-07 12:38:32 -0700739 sk = __udp6_lib_lookup_skb(skb, uh->source, uh->dest, udptable);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700740
741 if (sk == NULL) {
742 if (!xfrm6_policy_check(NULL, XFRM_POLICY_IN, skb))
743 goto discard;
744
Gerrit Renkerba4e58e2006-11-27 11:10:57 -0800745 if (udp_lib_checksum_complete(skb))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700746 goto discard;
Pavel Emelyanovef28d1a2008-07-05 21:19:40 -0700747 UDP6_INC_STATS_BH(net, UDP_MIB_NOPORTS,
748 proto == IPPROTO_UDPLITE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700749
Alexey Dobriyan3ffe5332010-02-18 08:25:24 +0000750 icmpv6_send(skb, ICMPV6_DEST_UNREACH, ICMPV6_PORT_UNREACH, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700751
752 kfree_skb(skb);
Stephen Hemmingeradd459a2007-03-08 20:42:35 -0800753 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700754 }
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900755
Linus Torvalds1da177e2005-04-16 15:20:36 -0700756 /* deliver */
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900757
Herbert Xud97106e2008-08-09 00:35:05 -0700758 bh_lock_sock(sk);
Hideo Aoki95766ff2007-12-31 00:29:24 -0800759 if (!sock_owned_by_user(sk))
760 udpv6_queue_rcv_skb(sk, skb);
Zhu Yia3a858f2010-03-04 18:01:47 +0000761 else if (sk_add_backlog(sk, skb)) {
Zhu Yi55349792010-03-04 18:01:42 +0000762 atomic_inc(&sk->sk_drops);
763 bh_unlock_sock(sk);
764 sock_put(sk);
765 goto discard;
766 }
Hideo Aoki95766ff2007-12-31 00:29:24 -0800767 bh_unlock_sock(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700768 sock_put(sk);
Stephen Hemmingeradd459a2007-03-08 20:42:35 -0800769 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700770
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900771short_packet:
Gerrit Renkerba4e58e2006-11-27 11:10:57 -0800772 LIMIT_NETDEBUG(KERN_DEBUG "UDP%sv6: short packet: %d/%u\n",
David S. Millerdb8dac22008-03-06 16:22:02 -0800773 proto == IPPROTO_UDPLITE ? "-Lite" : "",
Herbert Xu759e5d02007-03-25 20:10:56 -0700774 ulen, skb->len);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700775
776discard:
Pavel Emelyanovef28d1a2008-07-05 21:19:40 -0700777 UDP6_INC_STATS_BH(net, UDP_MIB_INERRORS, proto == IPPROTO_UDPLITE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700778 kfree_skb(skb);
Stephen Hemmingeradd459a2007-03-08 20:42:35 -0800779 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700780}
Gerrit Renkerba4e58e2006-11-27 11:10:57 -0800781
Herbert Xue5bbef22007-10-15 12:50:28 -0700782static __inline__ int udpv6_rcv(struct sk_buff *skb)
Gerrit Renkerba4e58e2006-11-27 11:10:57 -0800783{
Eric Dumazet645ca702008-10-29 01:41:45 -0700784 return __udp6_lib_rcv(skb, &udp_table, IPPROTO_UDP);
Gerrit Renkerba4e58e2006-11-27 11:10:57 -0800785}
786
Linus Torvalds1da177e2005-04-16 15:20:36 -0700787/*
788 * Throw away all pending data and cancel the corking. Socket is locked.
789 */
790static void udp_v6_flush_pending_frames(struct sock *sk)
791{
792 struct udp_sock *up = udp_sk(sk);
793
Denis V. Lunev36d926b2008-06-04 15:49:07 +0400794 if (up->pending == AF_INET)
795 udp_flush_pending_frames(sk);
796 else if (up->pending) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700797 up->len = 0;
798 up->pending = 0;
799 ip6_flush_pending_frames(sk);
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900800 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700801}
802
Sridhar Samudrala493c6be2009-07-09 08:09:54 +0000803/**
804 * udp6_hwcsum_outgoing - handle outgoing HW checksumming
805 * @sk: socket we are sending on
806 * @skb: sk_buff containing the filled-in UDP header
807 * (checksum field must be zeroed out)
808 */
809static void udp6_hwcsum_outgoing(struct sock *sk, struct sk_buff *skb,
810 const struct in6_addr *saddr,
811 const struct in6_addr *daddr, int len)
812{
813 unsigned int offset;
814 struct udphdr *uh = udp_hdr(skb);
815 __wsum csum = 0;
816
817 if (skb_queue_len(&sk->sk_write_queue) == 1) {
818 /* Only one fragment on the socket. */
819 skb->csum_start = skb_transport_header(skb) - skb->head;
820 skb->csum_offset = offsetof(struct udphdr, check);
821 uh->check = ~csum_ipv6_magic(saddr, daddr, len, IPPROTO_UDP, 0);
822 } else {
823 /*
824 * HW-checksum won't work as there are two or more
825 * fragments on the socket so that all csums of sk_buffs
826 * should be together
827 */
828 offset = skb_transport_offset(skb);
829 skb->csum = skb_checksum(skb, offset, skb->len - offset, 0);
830
831 skb->ip_summed = CHECKSUM_NONE;
832
833 skb_queue_walk(&sk->sk_write_queue, skb) {
834 csum = csum_add(csum, skb->csum);
835 }
836
837 uh->check = csum_ipv6_magic(saddr, daddr, len, IPPROTO_UDP,
838 csum);
839 if (uh->check == 0)
840 uh->check = CSUM_MANGLED_0;
841 }
842}
843
Linus Torvalds1da177e2005-04-16 15:20:36 -0700844/*
845 * Sending
846 */
847
Gerrit Renker4c0a6cb2006-11-27 09:29:59 -0800848static int udp_v6_push_pending_frames(struct sock *sk)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700849{
850 struct sk_buff *skb;
851 struct udphdr *uh;
Gerrit Renker4c0a6cb2006-11-27 09:29:59 -0800852 struct udp_sock *up = udp_sk(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700853 struct inet_sock *inet = inet_sk(sk);
854 struct flowi *fl = &inet->cork.fl;
855 int err = 0;
Wang Chenb2bf1e22007-12-03 22:34:16 +1100856 int is_udplite = IS_UDPLITE(sk);
Al Viro868c86b2006-11-14 21:35:48 -0800857 __wsum csum = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700858
859 /* Grab the skbuff where UDP header space exists. */
860 if ((skb = skb_peek(&sk->sk_write_queue)) == NULL)
861 goto out;
862
863 /*
864 * Create a UDP header
865 */
Arnaldo Carvalho de Melo4bedb452007-03-13 14:28:48 -0300866 uh = udp_hdr(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700867 uh->source = fl->fl_ip_sport;
868 uh->dest = fl->fl_ip_dport;
869 uh->len = htons(up->len);
870 uh->check = 0;
871
Wang Chenb2bf1e22007-12-03 22:34:16 +1100872 if (is_udplite)
Gerrit Renkerba4e58e2006-11-27 11:10:57 -0800873 csum = udplite_csum_outgoing(sk, skb);
Sridhar Samudrala493c6be2009-07-09 08:09:54 +0000874 else if (skb->ip_summed == CHECKSUM_PARTIAL) { /* UDP hardware csum */
875 udp6_hwcsum_outgoing(sk, skb, &fl->fl6_src, &fl->fl6_dst,
876 up->len);
877 goto send;
878 } else
Gerrit Renkerba4e58e2006-11-27 11:10:57 -0800879 csum = udp_csum_outgoing(sk, skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700880
Gerrit Renkerba4e58e2006-11-27 11:10:57 -0800881 /* add protocol-dependent pseudo-header */
882 uh->check = csum_ipv6_magic(&fl->fl6_src, &fl->fl6_dst,
883 up->len, fl->proto, csum );
Linus Torvalds1da177e2005-04-16 15:20:36 -0700884 if (uh->check == 0)
Al Virof6ab0282006-11-16 02:36:50 -0800885 uh->check = CSUM_MANGLED_0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700886
Sridhar Samudrala493c6be2009-07-09 08:09:54 +0000887send:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700888 err = ip6_push_pending_frames(sk);
Eric Dumazet6ce9e7b2009-09-02 18:05:33 -0700889 if (err) {
890 if (err == -ENOBUFS && !inet6_sk(sk)->recverr) {
891 UDP6_INC_STATS_USER(sock_net(sk),
892 UDP_MIB_SNDBUFERRORS, is_udplite);
893 err = 0;
894 }
895 } else
896 UDP6_INC_STATS_USER(sock_net(sk),
897 UDP_MIB_OUTDATAGRAMS, is_udplite);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700898out:
899 up->len = 0;
900 up->pending = 0;
901 return err;
902}
903
Gerrit Renkerba4e58e2006-11-27 11:10:57 -0800904int udpv6_sendmsg(struct kiocb *iocb, struct sock *sk,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700905 struct msghdr *msg, size_t len)
906{
907 struct ipv6_txoptions opt_space;
908 struct udp_sock *up = udp_sk(sk);
909 struct inet_sock *inet = inet_sk(sk);
910 struct ipv6_pinfo *np = inet6_sk(sk);
911 struct sockaddr_in6 *sin6 = (struct sockaddr_in6 *) msg->msg_name;
912 struct in6_addr *daddr, *final_p = NULL, final;
913 struct ipv6_txoptions *opt = NULL;
914 struct ip6_flowlabel *flowlabel = NULL;
Herbert Xu132a55f2006-10-03 14:34:00 -0700915 struct flowi fl;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700916 struct dst_entry *dst;
917 int addr_len = msg->msg_namelen;
918 int ulen = len;
919 int hlimit = -1;
YOSHIFUJI Hideaki41a1f8e2005-09-08 10:19:03 +0900920 int tclass = -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700921 int corkreq = up->corkflag || msg->msg_flags&MSG_MORE;
922 int err;
Mitsuru KANDA987905d2005-09-18 00:30:08 -0700923 int connected = 0;
Wang Chenb2bf1e22007-12-03 22:34:16 +1100924 int is_udplite = IS_UDPLITE(sk);
Gerrit Renkerba4e58e2006-11-27 11:10:57 -0800925 int (*getfrag)(void *, char *, int, int, int, struct sk_buff *);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700926
927 /* destination address check */
928 if (sin6) {
929 if (addr_len < offsetof(struct sockaddr, sa_data))
930 return -EINVAL;
931
932 switch (sin6->sin6_family) {
933 case AF_INET6:
934 if (addr_len < SIN6_LEN_RFC2133)
935 return -EINVAL;
936 daddr = &sin6->sin6_addr;
937 break;
938 case AF_INET:
939 goto do_udp_sendmsg;
940 case AF_UNSPEC:
941 msg->msg_name = sin6 = NULL;
942 msg->msg_namelen = addr_len = 0;
943 daddr = NULL;
944 break;
945 default:
946 return -EINVAL;
947 }
948 } else if (!up->pending) {
949 if (sk->sk_state != TCP_ESTABLISHED)
950 return -EDESTADDRREQ;
951 daddr = &np->daddr;
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900952 } else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700953 daddr = NULL;
954
955 if (daddr) {
Brian Haleye773e4f2007-08-24 23:16:08 -0700956 if (ipv6_addr_v4mapped(daddr)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700957 struct sockaddr_in sin;
958 sin.sin_family = AF_INET;
Eric Dumazetc720c7e2009-10-15 06:30:45 +0000959 sin.sin_port = sin6 ? sin6->sin6_port : inet->inet_dport;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700960 sin.sin_addr.s_addr = daddr->s6_addr32[3];
961 msg->msg_name = &sin;
962 msg->msg_namelen = sizeof(sin);
963do_udp_sendmsg:
964 if (__ipv6_only_sock(sk))
965 return -ENETUNREACH;
966 return udp_sendmsg(iocb, sk, msg, len);
967 }
968 }
969
970 if (up->pending == AF_INET)
971 return udp_sendmsg(iocb, sk, msg, len);
972
973 /* Rough check on arithmetic overflow,
YOSHIFUJI Hideakib59e1392007-03-30 14:45:35 -0700974 better check is made in ip6_append_data().
Linus Torvalds1da177e2005-04-16 15:20:36 -0700975 */
976 if (len > INT_MAX - sizeof(struct udphdr))
977 return -EMSGSIZE;
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900978
Linus Torvalds1da177e2005-04-16 15:20:36 -0700979 if (up->pending) {
980 /*
981 * There are pending frames.
982 * The socket lock must be held while it's corked.
983 */
984 lock_sock(sk);
985 if (likely(up->pending)) {
986 if (unlikely(up->pending != AF_INET6)) {
987 release_sock(sk);
988 return -EAFNOSUPPORT;
989 }
990 dst = NULL;
991 goto do_append_data;
992 }
993 release_sock(sk);
994 }
995 ulen += sizeof(struct udphdr);
996
Herbert Xu132a55f2006-10-03 14:34:00 -0700997 memset(&fl, 0, sizeof(fl));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700998
999 if (sin6) {
1000 if (sin6->sin6_port == 0)
1001 return -EINVAL;
1002
Herbert Xu132a55f2006-10-03 14:34:00 -07001003 fl.fl_ip_dport = sin6->sin6_port;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001004 daddr = &sin6->sin6_addr;
1005
1006 if (np->sndflow) {
Herbert Xu132a55f2006-10-03 14:34:00 -07001007 fl.fl6_flowlabel = sin6->sin6_flowinfo&IPV6_FLOWINFO_MASK;
1008 if (fl.fl6_flowlabel&IPV6_FLOWLABEL_MASK) {
1009 flowlabel = fl6_sock_lookup(sk, fl.fl6_flowlabel);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001010 if (flowlabel == NULL)
1011 return -EINVAL;
1012 daddr = &flowlabel->dst;
1013 }
1014 }
1015
1016 /*
1017 * Otherwise it will be difficult to maintain
1018 * sk->sk_dst_cache.
1019 */
1020 if (sk->sk_state == TCP_ESTABLISHED &&
1021 ipv6_addr_equal(daddr, &np->daddr))
1022 daddr = &np->daddr;
1023
1024 if (addr_len >= sizeof(struct sockaddr_in6) &&
1025 sin6->sin6_scope_id &&
1026 ipv6_addr_type(daddr)&IPV6_ADDR_LINKLOCAL)
Herbert Xu132a55f2006-10-03 14:34:00 -07001027 fl.oif = sin6->sin6_scope_id;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001028 } else {
1029 if (sk->sk_state != TCP_ESTABLISHED)
1030 return -EDESTADDRREQ;
1031
Eric Dumazetc720c7e2009-10-15 06:30:45 +00001032 fl.fl_ip_dport = inet->inet_dport;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001033 daddr = &np->daddr;
Herbert Xu132a55f2006-10-03 14:34:00 -07001034 fl.fl6_flowlabel = np->flow_label;
Mitsuru KANDA987905d2005-09-18 00:30:08 -07001035 connected = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001036 }
1037
Herbert Xu132a55f2006-10-03 14:34:00 -07001038 if (!fl.oif)
1039 fl.oif = sk->sk_bound_dev_if;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001040
Yang Hongyang9f690db2008-12-16 02:08:29 -08001041 if (!fl.oif)
1042 fl.oif = np->sticky_pktinfo.ipi6_ifindex;
1043
Brian Haley51953d52009-10-05 08:24:16 +00001044 fl.mark = sk->sk_mark;
1045
Linus Torvalds1da177e2005-04-16 15:20:36 -07001046 if (msg->msg_controllen) {
1047 opt = &opt_space;
1048 memset(opt, 0, sizeof(struct ipv6_txoptions));
1049 opt->tot_len = sizeof(*opt);
1050
YOSHIFUJI Hideaki91e19082008-06-04 13:02:49 +09001051 err = datagram_send_ctl(sock_net(sk), msg, &fl, opt, &hlimit, &tclass);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001052 if (err < 0) {
1053 fl6_sock_release(flowlabel);
1054 return err;
1055 }
Herbert Xu132a55f2006-10-03 14:34:00 -07001056 if ((fl.fl6_flowlabel&IPV6_FLOWLABEL_MASK) && !flowlabel) {
1057 flowlabel = fl6_sock_lookup(sk, fl.fl6_flowlabel);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001058 if (flowlabel == NULL)
1059 return -EINVAL;
1060 }
1061 if (!(opt->opt_nflen|opt->opt_flen))
1062 opt = NULL;
Mitsuru KANDA987905d2005-09-18 00:30:08 -07001063 connected = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001064 }
1065 if (opt == NULL)
1066 opt = np->opt;
YOSHIFUJI Hideakidf9890c2005-11-20 12:23:18 +09001067 if (flowlabel)
1068 opt = fl6_merge_options(&opt_space, flowlabel, opt);
1069 opt = ipv6_fixup_options(&opt_space, opt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001070
Gerrit Renkerba4e58e2006-11-27 11:10:57 -08001071 fl.proto = sk->sk_protocol;
Brian Haley876c7f42008-04-11 00:38:24 -04001072 if (!ipv6_addr_any(daddr))
1073 ipv6_addr_copy(&fl.fl6_dst, daddr);
1074 else
1075 fl.fl6_dst.s6_addr[15] = 0x1; /* :: means loopback (BSD'ism) */
Herbert Xu132a55f2006-10-03 14:34:00 -07001076 if (ipv6_addr_any(&fl.fl6_src) && !ipv6_addr_any(&np->saddr))
1077 ipv6_addr_copy(&fl.fl6_src, &np->saddr);
Eric Dumazetc720c7e2009-10-15 06:30:45 +00001078 fl.fl_ip_sport = inet->inet_sport;
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09001079
Linus Torvalds1da177e2005-04-16 15:20:36 -07001080 /* merge ip6_build_xmit from ip6_output */
1081 if (opt && opt->srcrt) {
1082 struct rt0_hdr *rt0 = (struct rt0_hdr *) opt->srcrt;
Herbert Xu132a55f2006-10-03 14:34:00 -07001083 ipv6_addr_copy(&final, &fl.fl6_dst);
1084 ipv6_addr_copy(&fl.fl6_dst, rt0->addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001085 final_p = &final;
Mitsuru KANDA987905d2005-09-18 00:30:08 -07001086 connected = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001087 }
1088
Herbert Xu132a55f2006-10-03 14:34:00 -07001089 if (!fl.oif && ipv6_addr_is_multicast(&fl.fl6_dst)) {
1090 fl.oif = np->mcast_oif;
Mitsuru KANDA987905d2005-09-18 00:30:08 -07001091 connected = 0;
1092 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001093
Herbert Xu132a55f2006-10-03 14:34:00 -07001094 security_sk_classify_flow(sk, &fl);
Venkat Yekkiralabeb8d132006-08-04 23:12:42 -07001095
Herbert Xu132a55f2006-10-03 14:34:00 -07001096 err = ip6_sk_dst_lookup(sk, &dst, &fl);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001097 if (err)
1098 goto out;
1099 if (final_p)
Herbert Xu132a55f2006-10-03 14:34:00 -07001100 ipv6_addr_copy(&fl.fl6_dst, final_p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001101
Alexey Dobriyan52479b62008-11-25 17:35:18 -08001102 err = __xfrm_lookup(sock_net(sk), &dst, &fl, sk, XFRM_LOOKUP_WAIT);
1103 if (err < 0) {
David S. Miller14e50e52007-05-24 18:17:54 -07001104 if (err == -EREMOTE)
1105 err = ip6_dst_blackhole(sk, &dst, &fl);
1106 if (err < 0)
1107 goto out;
1108 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001109
1110 if (hlimit < 0) {
Herbert Xu132a55f2006-10-03 14:34:00 -07001111 if (ipv6_addr_is_multicast(&fl.fl6_dst))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001112 hlimit = np->mcast_hops;
1113 else
1114 hlimit = np->hop_limit;
1115 if (hlimit < 0)
YOSHIFUJI Hideaki6b75d092008-03-10 06:00:30 -04001116 hlimit = ip6_dst_hoplimit(dst);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001117 }
1118
Gerrit Renkere651f032009-08-09 08:12:48 +00001119 if (tclass < 0)
YOSHIFUJI Hideaki41a1f8e2005-09-08 10:19:03 +09001120 tclass = np->tclass;
YOSHIFUJI Hideaki41a1f8e2005-09-08 10:19:03 +09001121
Linus Torvalds1da177e2005-04-16 15:20:36 -07001122 if (msg->msg_flags&MSG_CONFIRM)
1123 goto do_confirm;
1124back_from_confirm:
1125
1126 lock_sock(sk);
1127 if (unlikely(up->pending)) {
1128 /* The socket is already corked while preparing it. */
1129 /* ... which is an evident application bug. --ANK */
1130 release_sock(sk);
1131
Patrick McHardy64ce2072005-08-09 20:50:53 -07001132 LIMIT_NETDEBUG(KERN_DEBUG "udp cork app bug 2\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001133 err = -EINVAL;
1134 goto out;
1135 }
1136
1137 up->pending = AF_INET6;
1138
1139do_append_data:
1140 up->len += ulen;
Gerrit Renkerba4e58e2006-11-27 11:10:57 -08001141 getfrag = is_udplite ? udplite_getfrag : ip_generic_getfrag;
1142 err = ip6_append_data(sk, getfrag, msg->msg_iov, ulen,
Herbert Xu132a55f2006-10-03 14:34:00 -07001143 sizeof(struct udphdr), hlimit, tclass, opt, &fl,
YOSHIFUJI Hideaki41a1f8e2005-09-08 10:19:03 +09001144 (struct rt6_info*)dst,
1145 corkreq ? msg->msg_flags|MSG_MORE : msg->msg_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001146 if (err)
1147 udp_v6_flush_pending_frames(sk);
1148 else if (!corkreq)
Gerrit Renker4c0a6cb2006-11-27 09:29:59 -08001149 err = udp_v6_push_pending_frames(sk);
Herbert Xu1e0c14f2006-10-03 14:35:49 -07001150 else if (unlikely(skb_queue_empty(&sk->sk_write_queue)))
1151 up->pending = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001152
David S. Millera5e7c212005-10-03 14:21:58 -07001153 if (dst) {
1154 if (connected) {
1155 ip6_dst_store(sk, dst,
Herbert Xu132a55f2006-10-03 14:34:00 -07001156 ipv6_addr_equal(&fl.fl6_dst, &np->daddr) ?
YOSHIFUJI Hideaki8e1ef0a2006-08-29 17:15:09 -07001157 &np->daddr : NULL,
1158#ifdef CONFIG_IPV6_SUBTREES
Herbert Xu132a55f2006-10-03 14:34:00 -07001159 ipv6_addr_equal(&fl.fl6_src, &np->saddr) ?
YOSHIFUJI Hideaki8e1ef0a2006-08-29 17:15:09 -07001160 &np->saddr :
1161#endif
1162 NULL);
David S. Millera5e7c212005-10-03 14:21:58 -07001163 } else {
1164 dst_release(dst);
1165 }
YOSHIFUJI Hideakia3c96082008-06-04 01:30:25 +09001166 dst = NULL;
David S. Millera5e7c212005-10-03 14:21:58 -07001167 }
1168
Linus Torvalds1da177e2005-04-16 15:20:36 -07001169 if (err > 0)
1170 err = np->recverr ? net_xmit_errno(err) : 0;
1171 release_sock(sk);
1172out:
YOSHIFUJI Hideakia3c96082008-06-04 01:30:25 +09001173 dst_release(dst);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001174 fl6_sock_release(flowlabel);
YOSHIFUJI Hideakicd562c92007-09-14 17:15:01 -07001175 if (!err)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001176 return len;
David S. Millera18135e2006-08-15 00:00:09 -07001177 /*
1178 * ENOBUFS = no kernel mem, SOCK_NOSPACE = no sndbuf space. Reporting
1179 * ENOBUFS might not be good (it's not tunable per se), but otherwise
1180 * we don't have a good statistic (IpOutDiscards but it can be too many
1181 * things). We could add another new stat but at least for now that
1182 * seems like overkill.
1183 */
1184 if (err == -ENOBUFS || test_bit(SOCK_NOSPACE, &sk->sk_socket->flags)) {
Pavel Emelyanov235b9f72008-07-05 21:19:20 -07001185 UDP6_INC_STATS_USER(sock_net(sk),
1186 UDP_MIB_SNDBUFERRORS, is_udplite);
David S. Millera18135e2006-08-15 00:00:09 -07001187 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001188 return err;
1189
1190do_confirm:
1191 dst_confirm(dst);
1192 if (!(msg->msg_flags&MSG_PROBE) || len)
1193 goto back_from_confirm;
1194 err = 0;
1195 goto out;
1196}
1197
Brian Haley7d06b2e2008-06-14 17:04:49 -07001198void udpv6_destroy_sock(struct sock *sk)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001199{
1200 lock_sock(sk);
1201 udp_v6_flush_pending_frames(sk);
1202 release_sock(sk);
1203
1204 inet6_destroy_sock(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001205}
1206
1207/*
1208 * Socket option code for UDP
1209 */
Gerrit Renkerba4e58e2006-11-27 11:10:57 -08001210int udpv6_setsockopt(struct sock *sk, int level, int optname,
David S. Millerb7058842009-09-30 16:12:20 -07001211 char __user *optval, unsigned int optlen)
Dmitry Mishin3fdadf72006-03-20 22:45:21 -08001212{
David S. Millerdb8dac22008-03-06 16:22:02 -08001213 if (level == SOL_UDP || level == SOL_UDPLITE)
Gerrit Renker4c0a6cb2006-11-27 09:29:59 -08001214 return udp_lib_setsockopt(sk, level, optname, optval, optlen,
1215 udp_v6_push_pending_frames);
Gerrit Renkerba4e58e2006-11-27 11:10:57 -08001216 return ipv6_setsockopt(sk, level, optname, optval, optlen);
Dmitry Mishin3fdadf72006-03-20 22:45:21 -08001217}
1218
1219#ifdef CONFIG_COMPAT
Gerrit Renkerba4e58e2006-11-27 11:10:57 -08001220int compat_udpv6_setsockopt(struct sock *sk, int level, int optname,
David S. Millerb7058842009-09-30 16:12:20 -07001221 char __user *optval, unsigned int optlen)
Dmitry Mishin3fdadf72006-03-20 22:45:21 -08001222{
David S. Millerdb8dac22008-03-06 16:22:02 -08001223 if (level == SOL_UDP || level == SOL_UDPLITE)
Gerrit Renker4c0a6cb2006-11-27 09:29:59 -08001224 return udp_lib_setsockopt(sk, level, optname, optval, optlen,
1225 udp_v6_push_pending_frames);
Gerrit Renkerba4e58e2006-11-27 11:10:57 -08001226 return compat_ipv6_setsockopt(sk, level, optname, optval, optlen);
Dmitry Mishin3fdadf72006-03-20 22:45:21 -08001227}
1228#endif
1229
Gerrit Renkerba4e58e2006-11-27 11:10:57 -08001230int udpv6_getsockopt(struct sock *sk, int level, int optname,
1231 char __user *optval, int __user *optlen)
Dmitry Mishin3fdadf72006-03-20 22:45:21 -08001232{
David S. Millerdb8dac22008-03-06 16:22:02 -08001233 if (level == SOL_UDP || level == SOL_UDPLITE)
Gerrit Renker4c0a6cb2006-11-27 09:29:59 -08001234 return udp_lib_getsockopt(sk, level, optname, optval, optlen);
Gerrit Renkerba4e58e2006-11-27 11:10:57 -08001235 return ipv6_getsockopt(sk, level, optname, optval, optlen);
Dmitry Mishin3fdadf72006-03-20 22:45:21 -08001236}
1237
1238#ifdef CONFIG_COMPAT
Gerrit Renkerba4e58e2006-11-27 11:10:57 -08001239int compat_udpv6_getsockopt(struct sock *sk, int level, int optname,
1240 char __user *optval, int __user *optlen)
Dmitry Mishin3fdadf72006-03-20 22:45:21 -08001241{
David S. Millerdb8dac22008-03-06 16:22:02 -08001242 if (level == SOL_UDP || level == SOL_UDPLITE)
Gerrit Renker4c0a6cb2006-11-27 09:29:59 -08001243 return udp_lib_getsockopt(sk, level, optname, optval, optlen);
Gerrit Renkerba4e58e2006-11-27 11:10:57 -08001244 return compat_ipv6_getsockopt(sk, level, optname, optval, optlen);
Dmitry Mishin3fdadf72006-03-20 22:45:21 -08001245}
1246#endif
1247
Sridhar Samudralaba735422009-07-09 08:10:04 +00001248static int udp6_ufo_send_check(struct sk_buff *skb)
1249{
1250 struct ipv6hdr *ipv6h;
1251 struct udphdr *uh;
1252
1253 if (!pskb_may_pull(skb, sizeof(*uh)))
1254 return -EINVAL;
1255
1256 ipv6h = ipv6_hdr(skb);
1257 uh = udp_hdr(skb);
1258
1259 uh->check = ~csum_ipv6_magic(&ipv6h->saddr, &ipv6h->daddr, skb->len,
1260 IPPROTO_UDP, 0);
1261 skb->csum_start = skb_transport_header(skb) - skb->head;
1262 skb->csum_offset = offsetof(struct udphdr, check);
1263 skb->ip_summed = CHECKSUM_PARTIAL;
1264 return 0;
1265}
1266
1267static struct sk_buff *udp6_ufo_fragment(struct sk_buff *skb, int features)
1268{
1269 struct sk_buff *segs = ERR_PTR(-EINVAL);
1270 unsigned int mss;
1271 unsigned int unfrag_ip6hlen, unfrag_len;
1272 struct frag_hdr *fptr;
1273 u8 *mac_start, *prevhdr;
1274 u8 nexthdr;
1275 u8 frag_hdr_sz = sizeof(struct frag_hdr);
1276 int offset;
1277 __wsum csum;
1278
1279 mss = skb_shinfo(skb)->gso_size;
1280 if (unlikely(skb->len <= mss))
1281 goto out;
1282
1283 if (skb_gso_ok(skb, features | NETIF_F_GSO_ROBUST)) {
1284 /* Packet is from an untrusted source, reset gso_segs. */
1285 int type = skb_shinfo(skb)->gso_type;
1286
1287 if (unlikely(type & ~(SKB_GSO_UDP | SKB_GSO_DODGY) ||
1288 !(type & (SKB_GSO_UDP))))
1289 goto out;
1290
1291 skb_shinfo(skb)->gso_segs = DIV_ROUND_UP(skb->len, mss);
1292
1293 segs = NULL;
1294 goto out;
1295 }
1296
1297 /* Do software UFO. Complete and fill in the UDP checksum as HW cannot
1298 * do checksum of UDP packets sent as multiple IP fragments.
1299 */
1300 offset = skb->csum_start - skb_headroom(skb);
1301 csum = skb_checksum(skb, offset, skb->len- offset, 0);
1302 offset += skb->csum_offset;
1303 *(__sum16 *)(skb->data + offset) = csum_fold(csum);
1304 skb->ip_summed = CHECKSUM_NONE;
1305
1306 /* Check if there is enough headroom to insert fragment header. */
1307 if ((skb_headroom(skb) < frag_hdr_sz) &&
1308 pskb_expand_head(skb, frag_hdr_sz, 0, GFP_ATOMIC))
1309 goto out;
1310
1311 /* Find the unfragmentable header and shift it left by frag_hdr_sz
1312 * bytes to insert fragment header.
1313 */
1314 unfrag_ip6hlen = ip6_find_1stfragopt(skb, &prevhdr);
1315 nexthdr = *prevhdr;
1316 *prevhdr = NEXTHDR_FRAGMENT;
1317 unfrag_len = skb_network_header(skb) - skb_mac_header(skb) +
1318 unfrag_ip6hlen;
1319 mac_start = skb_mac_header(skb);
1320 memmove(mac_start-frag_hdr_sz, mac_start, unfrag_len);
1321
1322 skb->mac_header -= frag_hdr_sz;
1323 skb->network_header -= frag_hdr_sz;
1324
1325 fptr = (struct frag_hdr *)(skb_network_header(skb) + unfrag_ip6hlen);
1326 fptr->nexthdr = nexthdr;
1327 fptr->reserved = 0;
1328 ipv6_select_ident(fptr);
1329
1330 /* Fragment the skb. ipv6 header and the remaining fields of the
1331 * fragment header are updated in ipv6_gso_segment()
1332 */
1333 segs = skb_segment(skb, features);
1334
1335out:
1336 return segs;
1337}
1338
Alexey Dobriyan41135cc2009-09-14 12:22:28 +00001339static const struct inet6_protocol udpv6_protocol = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001340 .handler = udpv6_rcv,
1341 .err_handler = udpv6_err,
Sridhar Samudralaba735422009-07-09 08:10:04 +00001342 .gso_send_check = udp6_ufo_send_check,
1343 .gso_segment = udp6_ufo_fragment,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001344 .flags = INET6_PROTO_NOPOLICY|INET6_PROTO_FINAL,
1345};
1346
1347/* ------------------------------------------------------------------------ */
1348#ifdef CONFIG_PROC_FS
1349
1350static void udp6_sock_seq_show(struct seq_file *seq, struct sock *sp, int bucket)
1351{
1352 struct inet_sock *inet = inet_sk(sp);
1353 struct ipv6_pinfo *np = inet6_sk(sp);
1354 struct in6_addr *dest, *src;
1355 __u16 destp, srcp;
1356
1357 dest = &np->daddr;
1358 src = &np->rcv_saddr;
Eric Dumazetc720c7e2009-10-15 06:30:45 +00001359 destp = ntohs(inet->inet_dport);
1360 srcp = ntohs(inet->inet_sport);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001361 seq_printf(seq,
Eric Dumazetf86dcc52009-10-07 00:37:59 +00001362 "%5d: %08X%08X%08X%08X:%04X %08X%08X%08X%08X:%04X "
Eric Dumazetcb61cb92008-06-17 21:04:56 -07001363 "%02X %08X:%08X %02X:%08lX %08X %5d %8d %lu %d %p %d\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001364 bucket,
1365 src->s6_addr32[0], src->s6_addr32[1],
1366 src->s6_addr32[2], src->s6_addr32[3], srcp,
1367 dest->s6_addr32[0], dest->s6_addr32[1],
1368 dest->s6_addr32[2], dest->s6_addr32[3], destp,
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09001369 sp->sk_state,
Eric Dumazet31e6d362009-06-17 19:05:41 -07001370 sk_wmem_alloc_get(sp),
1371 sk_rmem_alloc_get(sp),
Linus Torvalds1da177e2005-04-16 15:20:36 -07001372 0, 0L, 0,
1373 sock_i_uid(sp), 0,
1374 sock_i_ino(sp),
Eric Dumazetcb61cb92008-06-17 21:04:56 -07001375 atomic_read(&sp->sk_refcnt), sp,
1376 atomic_read(&sp->sk_drops));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001377}
1378
Gerrit Renkerba4e58e2006-11-27 11:10:57 -08001379int udp6_seq_show(struct seq_file *seq, void *v)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001380{
1381 if (v == SEQ_START_TOKEN)
1382 seq_printf(seq,
1383 " sl "
1384 "local_address "
1385 "remote_address "
1386 "st tx_queue rx_queue tr tm->when retrnsmt"
Eric Dumazetcb61cb92008-06-17 21:04:56 -07001387 " uid timeout inode ref pointer drops\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001388 else
1389 udp6_sock_seq_show(seq, v, ((struct udp_iter_state *)seq->private)->bucket);
1390 return 0;
1391}
1392
Linus Torvalds1da177e2005-04-16 15:20:36 -07001393static struct udp_seq_afinfo udp6_seq_afinfo = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001394 .name = "udp6",
1395 .family = AF_INET6,
Eric Dumazet645ca702008-10-29 01:41:45 -07001396 .udp_table = &udp_table,
Denis V. Lunev4ad96d32008-03-28 18:25:53 -07001397 .seq_fops = {
1398 .owner = THIS_MODULE,
1399 },
Denis V. Lunevdda61922008-03-28 18:24:26 -07001400 .seq_ops = {
1401 .show = udp6_seq_show,
1402 },
Linus Torvalds1da177e2005-04-16 15:20:36 -07001403};
1404
Alexey Dobriyan2c8c1e72010-01-17 03:35:32 +00001405int __net_init udp6_proc_init(struct net *net)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001406{
Daniel Lezcano0c96d8c2008-03-21 04:14:17 -07001407 return udp_proc_register(net, &udp6_seq_afinfo);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001408}
1409
Daniel Lezcano0c96d8c2008-03-21 04:14:17 -07001410void udp6_proc_exit(struct net *net) {
1411 udp_proc_unregister(net, &udp6_seq_afinfo);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001412}
1413#endif /* CONFIG_PROC_FS */
1414
1415/* ------------------------------------------------------------------------ */
1416
1417struct proto udpv6_prot = {
Arnaldo Carvalho de Melo543d9cf2006-03-20 22:48:35 -08001418 .name = "UDPv6",
1419 .owner = THIS_MODULE,
Gerrit Renkerba4e58e2006-11-27 11:10:57 -08001420 .close = udp_lib_close,
Arnaldo Carvalho de Melo543d9cf2006-03-20 22:48:35 -08001421 .connect = ip6_datagram_connect,
1422 .disconnect = udp_disconnect,
1423 .ioctl = udp_ioctl,
1424 .destroy = udpv6_destroy_sock,
1425 .setsockopt = udpv6_setsockopt,
1426 .getsockopt = udpv6_getsockopt,
1427 .sendmsg = udpv6_sendmsg,
1428 .recvmsg = udpv6_recvmsg,
1429 .backlog_rcv = udpv6_queue_rcv_skb,
Gerrit Renkerba4e58e2006-11-27 11:10:57 -08001430 .hash = udp_lib_hash,
1431 .unhash = udp_lib_unhash,
Arnaldo Carvalho de Melo543d9cf2006-03-20 22:48:35 -08001432 .get_port = udp_v6_get_port,
Hideo Aoki95766ff2007-12-31 00:29:24 -08001433 .memory_allocated = &udp_memory_allocated,
1434 .sysctl_mem = sysctl_udp_mem,
1435 .sysctl_wmem = &sysctl_udp_wmem_min,
1436 .sysctl_rmem = &sysctl_udp_rmem_min,
Arnaldo Carvalho de Melo543d9cf2006-03-20 22:48:35 -08001437 .obj_size = sizeof(struct udp6_sock),
Eric Dumazet271b72c2008-10-29 02:11:14 -07001438 .slab_flags = SLAB_DESTROY_BY_RCU,
Eric Dumazet645ca702008-10-29 01:41:45 -07001439 .h.udp_table = &udp_table,
Dmitry Mishin3fdadf72006-03-20 22:45:21 -08001440#ifdef CONFIG_COMPAT
Arnaldo Carvalho de Melo543d9cf2006-03-20 22:48:35 -08001441 .compat_setsockopt = compat_udpv6_setsockopt,
1442 .compat_getsockopt = compat_udpv6_getsockopt,
Dmitry Mishin3fdadf72006-03-20 22:45:21 -08001443#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001444};
1445
Linus Torvalds1da177e2005-04-16 15:20:36 -07001446static struct inet_protosw udpv6_protosw = {
1447 .type = SOCK_DGRAM,
1448 .protocol = IPPROTO_UDP,
1449 .prot = &udpv6_prot,
1450 .ops = &inet6_dgram_ops,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001451 .no_check = UDP_CSUM_DEFAULT,
1452 .flags = INET_PROTOSW_PERMANENT,
1453};
1454
1455
Daniel Lezcano7f4e4862007-12-11 02:25:35 -08001456int __init udpv6_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001457{
Daniel Lezcano7f4e4862007-12-11 02:25:35 -08001458 int ret;
1459
1460 ret = inet6_add_protocol(&udpv6_protocol, IPPROTO_UDP);
1461 if (ret)
1462 goto out;
1463
1464 ret = inet6_register_protosw(&udpv6_protosw);
1465 if (ret)
1466 goto out_udpv6_protocol;
1467out:
1468 return ret;
1469
1470out_udpv6_protocol:
1471 inet6_del_protocol(&udpv6_protocol, IPPROTO_UDP);
1472 goto out;
1473}
1474
Daniel Lezcano09f77092007-12-13 05:34:58 -08001475void udpv6_exit(void)
Daniel Lezcano7f4e4862007-12-11 02:25:35 -08001476{
1477 inet6_unregister_protosw(&udpv6_protosw);
1478 inet6_del_protocol(&udpv6_protocol, IPPROTO_UDP);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001479}