blob: f580cf9251122f0e56b3c5df8ac505fab056431e [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);
92 else if (ipv6_addr_type(addr6) == IPV6_ADDR_MAPPED)
93 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 Dumazetd4cada42009-11-08 10:17:30 +0000103 /* precompute partial secondary hash */
104 udp_sk(sk)->udp_portaddr_hash =
105 udp6_portaddr_hash(sock_net(sk),
106 &inet6_sk(sk)->rcv_saddr,
107 0);
Pavel Emelyanov6ba5a3c2008-03-22 16:51:21 -0700108 return udp_lib_get_port(sk, snum, ipv6_rcv_saddr_equal);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700109}
110
Eric Dumazet645ca702008-10-29 01:41:45 -0700111static inline int compute_score(struct sock *sk, struct net *net,
112 unsigned short hnum,
113 struct in6_addr *saddr, __be16 sport,
114 struct in6_addr *daddr, __be16 dport,
115 int dif)
116{
117 int score = -1;
118
Eric Dumazetd4cada42009-11-08 10:17:30 +0000119 if (net_eq(sock_net(sk), net) && udp_sk(sk)->udp_port_hash == hnum &&
Eric Dumazet645ca702008-10-29 01:41:45 -0700120 sk->sk_family == PF_INET6) {
121 struct ipv6_pinfo *np = inet6_sk(sk);
122 struct inet_sock *inet = inet_sk(sk);
123
124 score = 0;
Eric Dumazetc720c7e2009-10-15 06:30:45 +0000125 if (inet->inet_dport) {
126 if (inet->inet_dport != sport)
Eric Dumazet645ca702008-10-29 01:41:45 -0700127 return -1;
128 score++;
129 }
130 if (!ipv6_addr_any(&np->rcv_saddr)) {
131 if (!ipv6_addr_equal(&np->rcv_saddr, daddr))
132 return -1;
133 score++;
134 }
135 if (!ipv6_addr_any(&np->daddr)) {
136 if (!ipv6_addr_equal(&np->daddr, saddr))
137 return -1;
138 score++;
139 }
140 if (sk->sk_bound_dev_if) {
141 if (sk->sk_bound_dev_if != dif)
142 return -1;
143 score++;
144 }
145 }
146 return score;
147}
148
Eric Dumazetfddc17d2009-11-08 10:18:30 +0000149#define SCORE2_MAX (1 + 1 + 1)
150static inline int compute_score2(struct sock *sk, struct net *net,
151 const struct in6_addr *saddr, __be16 sport,
152 const struct in6_addr *daddr, unsigned short hnum,
153 int dif)
154{
155 int score = -1;
156
157 if (net_eq(sock_net(sk), net) && udp_sk(sk)->udp_port_hash == hnum &&
158 sk->sk_family == PF_INET6) {
159 struct ipv6_pinfo *np = inet6_sk(sk);
160 struct inet_sock *inet = inet_sk(sk);
161
162 if (!ipv6_addr_equal(&np->rcv_saddr, daddr))
163 return -1;
164 score = 0;
165 if (inet->inet_dport) {
166 if (inet->inet_dport != sport)
167 return -1;
168 score++;
169 }
170 if (!ipv6_addr_any(&np->daddr)) {
171 if (!ipv6_addr_equal(&np->daddr, saddr))
172 return -1;
173 score++;
174 }
175 if (sk->sk_bound_dev_if) {
176 if (sk->sk_bound_dev_if != dif)
177 return -1;
178 score++;
179 }
180 }
181 return score;
182}
183
184#define udp_portaddr_for_each_entry_rcu(__sk, node, list) \
185 hlist_nulls_for_each_entry_rcu(__sk, node, list, __sk_common.skc_portaddr_node)
186
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
261 result = udp6_lib_lookup2(net, &in6addr_any, sport,
262 daddr, hnum, dif,
263 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;
Herbert Xu759e5d02007-03-25 20:10:56 -0700325 unsigned int ulen, copied;
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);
344 copied = len;
345 if (copied > ulen)
346 copied = ulen;
347 else if (copied < ulen)
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900348 msg->msg_flags |= MSG_TRUNC;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700349
Wei Yongjunf26ba172008-11-02 16:11:01 +0000350 is_udp4 = (skb->protocol == htons(ETH_P_IP));
351
Gerrit Renkerba4e58e2006-11-27 11:10:57 -0800352 /*
Herbert Xu759e5d02007-03-25 20:10:56 -0700353 * If checksum is needed at all, try to do it while copying the
354 * data. If the data is truncated, or if we only want a partial
355 * coverage checksum (UDP-Lite), do it before the copy.
Gerrit Renkerba4e58e2006-11-27 11:10:57 -0800356 */
Gerrit Renkerba4e58e2006-11-27 11:10:57 -0800357
Herbert Xu759e5d02007-03-25 20:10:56 -0700358 if (copied < ulen || UDP_SKB_CB(skb)->partial_cov) {
359 if (udp_lib_checksum_complete(skb))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700360 goto csum_copy_err;
Gerrit Renkerba4e58e2006-11-27 11:10:57 -0800361 }
362
Herbert Xu60476372007-04-09 11:59:39 -0700363 if (skb_csum_unnecessary(skb))
Gerrit Renkerba4e58e2006-11-27 11:10:57 -0800364 err = skb_copy_datagram_iovec(skb, sizeof(struct udphdr),
365 msg->msg_iov, copied );
366 else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700367 err = skb_copy_and_csum_datagram_iovec(skb, sizeof(struct udphdr), msg->msg_iov);
368 if (err == -EINVAL)
369 goto csum_copy_err;
370 }
371 if (err)
372 goto out_free;
373
Wei Yongjunf26ba172008-11-02 16:11:01 +0000374 if (!peeked) {
375 if (is_udp4)
376 UDP_INC_STATS_USER(sock_net(sk),
377 UDP_MIB_INDATAGRAMS, is_udplite);
378 else
379 UDP6_INC_STATS_USER(sock_net(sk),
380 UDP_MIB_INDATAGRAMS, is_udplite);
381 }
Wang Chencb759942007-12-03 22:33:28 +1100382
Neil Horman3b885782009-10-12 13:26:31 -0700383 sock_recv_ts_and_drops(msg, sk, skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700384
385 /* Copy the address. */
386 if (msg->msg_name) {
387 struct sockaddr_in6 *sin6;
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900388
Linus Torvalds1da177e2005-04-16 15:20:36 -0700389 sin6 = (struct sockaddr_in6 *) msg->msg_name;
390 sin6->sin6_family = AF_INET6;
Arnaldo Carvalho de Melo4bedb452007-03-13 14:28:48 -0300391 sin6->sin6_port = udp_hdr(skb)->source;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700392 sin6->sin6_flowinfo = 0;
393 sin6->sin6_scope_id = 0;
394
Wei Yongjunf26ba172008-11-02 16:11:01 +0000395 if (is_udp4)
Brian Haleyb301e822009-10-07 13:58:25 -0700396 ipv6_addr_set_v4mapped(ip_hdr(skb)->saddr,
397 &sin6->sin6_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700398 else {
Arnaldo Carvalho de Melo0660e032007-04-25 17:54:47 -0700399 ipv6_addr_copy(&sin6->sin6_addr,
400 &ipv6_hdr(skb)->saddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700401 if (ipv6_addr_type(&sin6->sin6_addr) & IPV6_ADDR_LINKLOCAL)
402 sin6->sin6_scope_id = IP6CB(skb)->iif;
403 }
404
405 }
Wei Yongjunf26ba172008-11-02 16:11:01 +0000406 if (is_udp4) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700407 if (inet->cmsg_flags)
408 ip_cmsg_recv(msg, skb);
409 } else {
410 if (np->rxopt.all)
411 datagram_recv_ctl(sk, msg, skb);
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900412 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700413
414 err = copied;
415 if (flags & MSG_TRUNC)
Herbert Xu759e5d02007-03-25 20:10:56 -0700416 err = ulen;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700417
418out_free:
Eric Dumazet9d410c72009-10-30 05:03:53 +0000419 skb_free_datagram_locked(sk, skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700420out:
421 return err;
422
423csum_copy_err:
Hideo Aoki95766ff2007-12-31 00:29:24 -0800424 lock_sock(sk);
Wei Yongjun0856f932008-11-02 16:14:27 +0000425 if (!skb_kill_datagram(sk, skb, flags)) {
426 if (is_udp4)
427 UDP_INC_STATS_USER(sock_net(sk),
428 UDP_MIB_INERRORS, is_udplite);
429 else
430 UDP6_INC_STATS_USER(sock_net(sk),
431 UDP_MIB_INERRORS, is_udplite);
432 }
Hideo Aoki95766ff2007-12-31 00:29:24 -0800433 release_sock(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700434
Mitsuru Chinen7a0ff7162007-11-05 21:29:17 -0800435 if (flags & MSG_DONTWAIT)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700436 return -EAGAIN;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700437 goto try_again;
438}
439
Gerrit Renkerba4e58e2006-11-27 11:10:57 -0800440void __udp6_lib_err(struct sk_buff *skb, struct inet6_skb_parm *opt,
Brian Haleyd5fdd6b2009-06-23 04:31:07 -0700441 u8 type, u8 code, int offset, __be32 info,
Eric Dumazet645ca702008-10-29 01:41:45 -0700442 struct udp_table *udptable)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700443{
444 struct ipv6_pinfo *np;
445 struct ipv6hdr *hdr = (struct ipv6hdr*)skb->data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700446 struct in6_addr *saddr = &hdr->saddr;
447 struct in6_addr *daddr = &hdr->daddr;
448 struct udphdr *uh = (struct udphdr*)(skb->data+offset);
449 struct sock *sk;
450 int err;
451
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +0900452 sk = __udp6_lib_lookup(dev_net(skb->dev), daddr, uh->dest,
Gerrit Renkerba4e58e2006-11-27 11:10:57 -0800453 saddr, uh->source, inet6_iif(skb), udptable);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700454 if (sk == NULL)
455 return;
456
457 np = inet6_sk(sk);
458
459 if (!icmpv6_err_convert(type, code, &err) && !np->recverr)
460 goto out;
461
462 if (sk->sk_state != TCP_ESTABLISHED && !np->recverr)
463 goto out;
464
465 if (np->recverr)
466 ipv6_icmp_error(sk, skb, err, uh->dest, ntohl(info), (u8 *)(uh+1));
467
468 sk->sk_err = err;
469 sk->sk_error_report(sk);
470out:
471 sock_put(sk);
472}
473
Gerrit Renkerba4e58e2006-11-27 11:10:57 -0800474static __inline__ void udpv6_err(struct sk_buff *skb,
Brian Haleyd5fdd6b2009-06-23 04:31:07 -0700475 struct inet6_skb_parm *opt, u8 type,
476 u8 code, int offset, __be32 info )
Linus Torvalds1da177e2005-04-16 15:20:36 -0700477{
Eric Dumazet645ca702008-10-29 01:41:45 -0700478 __udp6_lib_err(skb, opt, type, code, offset, info, &udp_table);
Gerrit Renkerba4e58e2006-11-27 11:10:57 -0800479}
480
481int udpv6_queue_rcv_skb(struct sock * sk, struct sk_buff *skb)
482{
483 struct udp_sock *up = udp_sk(sk);
David S. Millera18135e2006-08-15 00:00:09 -0700484 int rc;
Wang Chenb2bf1e22007-12-03 22:34:16 +1100485 int is_udplite = IS_UDPLITE(sk);
David S. Millera18135e2006-08-15 00:00:09 -0700486
Gerrit Renkerba4e58e2006-11-27 11:10:57 -0800487 if (!xfrm6_policy_check(sk, XFRM_POLICY_IN, skb))
488 goto drop;
489
490 /*
491 * UDP-Lite specific tests, ignored on UDP sockets (see net/ipv4/udp.c).
492 */
Wang Chenb2bf1e22007-12-03 22:34:16 +1100493 if ((is_udplite & UDPLITE_RECV_CC) && UDP_SKB_CB(skb)->partial_cov) {
Gerrit Renkerba4e58e2006-11-27 11:10:57 -0800494
495 if (up->pcrlen == 0) { /* full coverage was set */
496 LIMIT_NETDEBUG(KERN_WARNING "UDPLITE6: partial coverage"
497 " %d while full coverage %d requested\n",
498 UDP_SKB_CB(skb)->cscov, skb->len);
499 goto drop;
500 }
501 if (UDP_SKB_CB(skb)->cscov < up->pcrlen) {
502 LIMIT_NETDEBUG(KERN_WARNING "UDPLITE6: coverage %d "
503 "too small, need min %d\n",
504 UDP_SKB_CB(skb)->cscov, up->pcrlen);
505 goto drop;
506 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700507 }
508
Herbert Xu1ab6eb62007-03-06 20:29:58 -0800509 if (sk->sk_filter) {
510 if (udp_lib_checksum_complete(skb))
511 goto drop;
512 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700513
Eric Dumazet766e90372009-10-14 20:40:11 -0700514 if ((rc = sock_queue_rcv_skb(sk, skb)) < 0) {
David S. Millera18135e2006-08-15 00:00:09 -0700515 /* Note that an ENOMEM error is charged twice */
Eric Dumazet766e90372009-10-14 20:40:11 -0700516 if (rc == -ENOMEM)
Pavel Emelyanovef28d1a2008-07-05 21:19:40 -0700517 UDP6_INC_STATS_BH(sock_net(sk),
518 UDP_MIB_RCVBUFERRORS, is_udplite);
Eric Dumazet8edf19c2009-10-15 00:12:40 +0000519 goto drop_no_sk_drops_inc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700520 }
Wang Chencb759942007-12-03 22:33:28 +1100521
Linus Torvalds1da177e2005-04-16 15:20:36 -0700522 return 0;
Gerrit Renkerba4e58e2006-11-27 11:10:57 -0800523drop:
Eric Dumazet8edf19c2009-10-15 00:12:40 +0000524 atomic_inc(&sk->sk_drops);
525drop_no_sk_drops_inc:
Pavel Emelyanovef28d1a2008-07-05 21:19:40 -0700526 UDP6_INC_STATS_BH(sock_net(sk), UDP_MIB_INERRORS, is_udplite);
Gerrit Renkerba4e58e2006-11-27 11:10:57 -0800527 kfree_skb(skb);
528 return -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700529}
530
Eric Dumazet920a4612008-11-01 21:22:23 -0700531static struct sock *udp_v6_mcast_next(struct net *net, struct sock *sk,
Al Viroe69a4adc2006-11-14 20:56:00 -0800532 __be16 loc_port, struct in6_addr *loc_addr,
533 __be16 rmt_port, struct in6_addr *rmt_addr,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700534 int dif)
535{
Eric Dumazet88ab1932008-11-16 19:39:21 -0800536 struct hlist_nulls_node *node;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700537 struct sock *s = sk;
538 unsigned short num = ntohs(loc_port);
539
Eric Dumazet88ab1932008-11-16 19:39:21 -0800540 sk_nulls_for_each_from(s, node) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700541 struct inet_sock *inet = inet_sk(s);
542
Eric Dumazet920a4612008-11-01 21:22:23 -0700543 if (!net_eq(sock_net(s), net))
Daniel Lezcanob8ad0cb2008-03-07 11:16:55 -0800544 continue;
545
Eric Dumazetd4cada42009-11-08 10:17:30 +0000546 if (udp_sk(s)->udp_port_hash == num &&
547 s->sk_family == PF_INET6) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700548 struct ipv6_pinfo *np = inet6_sk(s);
Eric Dumazetc720c7e2009-10-15 06:30:45 +0000549 if (inet->inet_dport) {
550 if (inet->inet_dport != rmt_port)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700551 continue;
552 }
553 if (!ipv6_addr_any(&np->daddr) &&
554 !ipv6_addr_equal(&np->daddr, rmt_addr))
555 continue;
556
557 if (s->sk_bound_dev_if && s->sk_bound_dev_if != dif)
558 continue;
559
560 if (!ipv6_addr_any(&np->rcv_saddr)) {
David L Stevens40796c52005-09-14 21:10:20 -0700561 if (!ipv6_addr_equal(&np->rcv_saddr, loc_addr))
562 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700563 }
Stephen Hemmingeradd459a2007-03-08 20:42:35 -0800564 if (!inet6_mc_check(s, loc_addr, rmt_addr))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700565 continue;
566 return s;
567 }
568 }
569 return NULL;
570}
571
572/*
573 * Note: called only from the BH handler context,
574 * so we don't need to lock the hashes.
575 */
Pavel Emelyanove3163492008-06-16 17:12:11 -0700576static int __udp6_lib_mcast_deliver(struct net *net, struct sk_buff *skb,
577 struct in6_addr *saddr, struct in6_addr *daddr,
Eric Dumazet645ca702008-10-29 01:41:45 -0700578 struct udp_table *udptable)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700579{
580 struct sock *sk, *sk2;
Arnaldo Carvalho de Melo4bedb452007-03-13 14:28:48 -0300581 const struct udphdr *uh = udp_hdr(skb);
Eric Dumazetf86dcc52009-10-07 00:37:59 +0000582 struct udp_hslot *hslot = udp_hashslot(udptable, net, ntohs(uh->dest));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700583 int dif;
584
Eric Dumazet645ca702008-10-29 01:41:45 -0700585 spin_lock(&hslot->lock);
Eric Dumazet88ab1932008-11-16 19:39:21 -0800586 sk = sk_nulls_head(&hslot->head);
YOSHIFUJI Hideakif2776ff2006-11-21 17:41:56 -0800587 dif = inet6_iif(skb);
Eric Dumazet920a4612008-11-01 21:22:23 -0700588 sk = udp_v6_mcast_next(net, sk, uh->dest, daddr, uh->source, saddr, dif);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700589 if (!sk) {
590 kfree_skb(skb);
591 goto out;
592 }
593
594 sk2 = sk;
Eric Dumazet88ab1932008-11-16 19:39:21 -0800595 while ((sk2 = udp_v6_mcast_next(net, sk_nulls_next(sk2), uh->dest, daddr,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700596 uh->source, saddr, dif))) {
597 struct sk_buff *buff = skb_clone(skb, GFP_ATOMIC);
Hideo Aoki95766ff2007-12-31 00:29:24 -0800598 if (buff) {
Herbert Xud97106e2008-08-09 00:35:05 -0700599 bh_lock_sock(sk2);
Hideo Aoki95766ff2007-12-31 00:29:24 -0800600 if (!sock_owned_by_user(sk2))
601 udpv6_queue_rcv_skb(sk2, buff);
602 else
603 sk_add_backlog(sk2, buff);
604 bh_unlock_sock(sk2);
605 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700606 }
Herbert Xud97106e2008-08-09 00:35:05 -0700607 bh_lock_sock(sk);
Hideo Aoki95766ff2007-12-31 00:29:24 -0800608 if (!sock_owned_by_user(sk))
609 udpv6_queue_rcv_skb(sk, skb);
610 else
611 sk_add_backlog(sk, skb);
612 bh_unlock_sock(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700613out:
Eric Dumazet645ca702008-10-29 01:41:45 -0700614 spin_unlock(&hslot->lock);
Gerrit Renkerba4e58e2006-11-27 11:10:57 -0800615 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700616}
617
Herbert Xu759e5d02007-03-25 20:10:56 -0700618static inline int udp6_csum_init(struct sk_buff *skb, struct udphdr *uh,
619 int proto)
Gerrit Renkerba4e58e2006-11-27 11:10:57 -0800620{
Herbert Xu759e5d02007-03-25 20:10:56 -0700621 int err;
622
623 UDP_SKB_CB(skb)->partial_cov = 0;
624 UDP_SKB_CB(skb)->cscov = skb->len;
625
David S. Millerdb8dac22008-03-06 16:22:02 -0800626 if (proto == IPPROTO_UDPLITE) {
Herbert Xu759e5d02007-03-25 20:10:56 -0700627 err = udplite_checksum_init(skb, uh);
628 if (err)
629 return err;
630 }
631
Gerrit Renkerba4e58e2006-11-27 11:10:57 -0800632 if (uh->check == 0) {
633 /* RFC 2460 section 8.1 says that we SHOULD log
634 this error. Well, it is reasonable.
635 */
636 LIMIT_NETDEBUG(KERN_INFO "IPv6: udp checksum is 0\n");
637 return 1;
638 }
639 if (skb->ip_summed == CHECKSUM_COMPLETE &&
Arnaldo Carvalho de Melo0660e032007-04-25 17:54:47 -0700640 !csum_ipv6_magic(&ipv6_hdr(skb)->saddr, &ipv6_hdr(skb)->daddr,
Herbert Xu759e5d02007-03-25 20:10:56 -0700641 skb->len, proto, skb->csum))
Gerrit Renkerba4e58e2006-11-27 11:10:57 -0800642 skb->ip_summed = CHECKSUM_UNNECESSARY;
643
Herbert Xu60476372007-04-09 11:59:39 -0700644 if (!skb_csum_unnecessary(skb))
Arnaldo Carvalho de Melo0660e032007-04-25 17:54:47 -0700645 skb->csum = ~csum_unfold(csum_ipv6_magic(&ipv6_hdr(skb)->saddr,
646 &ipv6_hdr(skb)->daddr,
Herbert Xu759e5d02007-03-25 20:10:56 -0700647 skb->len, proto, 0));
Gerrit Renkerba4e58e2006-11-27 11:10:57 -0800648
Herbert Xu759e5d02007-03-25 20:10:56 -0700649 return 0;
Gerrit Renkerba4e58e2006-11-27 11:10:57 -0800650}
651
Eric Dumazet645ca702008-10-29 01:41:45 -0700652int __udp6_lib_rcv(struct sk_buff *skb, struct udp_table *udptable,
Herbert Xu759e5d02007-03-25 20:10:56 -0700653 int proto)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700654{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700655 struct sock *sk;
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900656 struct udphdr *uh;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700657 struct net_device *dev = skb->dev;
658 struct in6_addr *saddr, *daddr;
659 u32 ulen = 0;
Pavel Emelyanovef28d1a2008-07-05 21:19:40 -0700660 struct net *net = dev_net(skb->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700661
662 if (!pskb_may_pull(skb, sizeof(struct udphdr)))
663 goto short_packet;
664
Arnaldo Carvalho de Melo0660e032007-04-25 17:54:47 -0700665 saddr = &ipv6_hdr(skb)->saddr;
666 daddr = &ipv6_hdr(skb)->daddr;
Arnaldo Carvalho de Melo4bedb452007-03-13 14:28:48 -0300667 uh = udp_hdr(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700668
669 ulen = ntohs(uh->len);
Gerrit Renkerba4e58e2006-11-27 11:10:57 -0800670 if (ulen > skb->len)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700671 goto short_packet;
672
Herbert Xu759e5d02007-03-25 20:10:56 -0700673 if (proto == IPPROTO_UDP) {
674 /* UDP validates ulen. */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700675
Gerrit Renkerba4e58e2006-11-27 11:10:57 -0800676 /* Check for jumbo payload */
677 if (ulen == 0)
678 ulen = skb->len;
679
680 if (ulen < sizeof(*uh))
681 goto short_packet;
682
683 if (ulen < skb->len) {
684 if (pskb_trim_rcsum(skb, ulen))
685 goto short_packet;
Arnaldo Carvalho de Melo0660e032007-04-25 17:54:47 -0700686 saddr = &ipv6_hdr(skb)->saddr;
687 daddr = &ipv6_hdr(skb)->daddr;
Arnaldo Carvalho de Melo4bedb452007-03-13 14:28:48 -0300688 uh = udp_hdr(skb);
Gerrit Renkerba4e58e2006-11-27 11:10:57 -0800689 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700690 }
691
Herbert Xu759e5d02007-03-25 20:10:56 -0700692 if (udp6_csum_init(skb, uh, proto))
693 goto discard;
694
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900695 /*
696 * Multicast receive code
Linus Torvalds1da177e2005-04-16 15:20:36 -0700697 */
Gerrit Renkerba4e58e2006-11-27 11:10:57 -0800698 if (ipv6_addr_is_multicast(daddr))
Pavel Emelyanove3163492008-06-16 17:12:11 -0700699 return __udp6_lib_mcast_deliver(net, skb,
700 saddr, daddr, udptable);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700701
702 /* Unicast */
703
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900704 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700705 * check socket cache ... must talk to Alan about his plans
706 * for sock caches... i'll skip this for now.
707 */
KOVACS Krisztian607c4aa2008-10-07 12:38:32 -0700708 sk = __udp6_lib_lookup_skb(skb, uh->source, uh->dest, udptable);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700709
710 if (sk == NULL) {
711 if (!xfrm6_policy_check(NULL, XFRM_POLICY_IN, skb))
712 goto discard;
713
Gerrit Renkerba4e58e2006-11-27 11:10:57 -0800714 if (udp_lib_checksum_complete(skb))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700715 goto discard;
Pavel Emelyanovef28d1a2008-07-05 21:19:40 -0700716 UDP6_INC_STATS_BH(net, UDP_MIB_NOPORTS,
717 proto == IPPROTO_UDPLITE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700718
719 icmpv6_send(skb, ICMPV6_DEST_UNREACH, ICMPV6_PORT_UNREACH, 0, dev);
720
721 kfree_skb(skb);
Stephen Hemmingeradd459a2007-03-08 20:42:35 -0800722 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700723 }
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900724
Linus Torvalds1da177e2005-04-16 15:20:36 -0700725 /* deliver */
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900726
Herbert Xud97106e2008-08-09 00:35:05 -0700727 bh_lock_sock(sk);
Hideo Aoki95766ff2007-12-31 00:29:24 -0800728 if (!sock_owned_by_user(sk))
729 udpv6_queue_rcv_skb(sk, skb);
730 else
731 sk_add_backlog(sk, skb);
732 bh_unlock_sock(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700733 sock_put(sk);
Stephen Hemmingeradd459a2007-03-08 20:42:35 -0800734 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700735
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900736short_packet:
Gerrit Renkerba4e58e2006-11-27 11:10:57 -0800737 LIMIT_NETDEBUG(KERN_DEBUG "UDP%sv6: short packet: %d/%u\n",
David S. Millerdb8dac22008-03-06 16:22:02 -0800738 proto == IPPROTO_UDPLITE ? "-Lite" : "",
Herbert Xu759e5d02007-03-25 20:10:56 -0700739 ulen, skb->len);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700740
741discard:
Pavel Emelyanovef28d1a2008-07-05 21:19:40 -0700742 UDP6_INC_STATS_BH(net, UDP_MIB_INERRORS, proto == IPPROTO_UDPLITE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700743 kfree_skb(skb);
Stephen Hemmingeradd459a2007-03-08 20:42:35 -0800744 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700745}
Gerrit Renkerba4e58e2006-11-27 11:10:57 -0800746
Herbert Xue5bbef22007-10-15 12:50:28 -0700747static __inline__ int udpv6_rcv(struct sk_buff *skb)
Gerrit Renkerba4e58e2006-11-27 11:10:57 -0800748{
Eric Dumazet645ca702008-10-29 01:41:45 -0700749 return __udp6_lib_rcv(skb, &udp_table, IPPROTO_UDP);
Gerrit Renkerba4e58e2006-11-27 11:10:57 -0800750}
751
Linus Torvalds1da177e2005-04-16 15:20:36 -0700752/*
753 * Throw away all pending data and cancel the corking. Socket is locked.
754 */
755static void udp_v6_flush_pending_frames(struct sock *sk)
756{
757 struct udp_sock *up = udp_sk(sk);
758
Denis V. Lunev36d926b2008-06-04 15:49:07 +0400759 if (up->pending == AF_INET)
760 udp_flush_pending_frames(sk);
761 else if (up->pending) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700762 up->len = 0;
763 up->pending = 0;
764 ip6_flush_pending_frames(sk);
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900765 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700766}
767
Sridhar Samudrala493c6be2009-07-09 08:09:54 +0000768/**
769 * udp6_hwcsum_outgoing - handle outgoing HW checksumming
770 * @sk: socket we are sending on
771 * @skb: sk_buff containing the filled-in UDP header
772 * (checksum field must be zeroed out)
773 */
774static void udp6_hwcsum_outgoing(struct sock *sk, struct sk_buff *skb,
775 const struct in6_addr *saddr,
776 const struct in6_addr *daddr, int len)
777{
778 unsigned int offset;
779 struct udphdr *uh = udp_hdr(skb);
780 __wsum csum = 0;
781
782 if (skb_queue_len(&sk->sk_write_queue) == 1) {
783 /* Only one fragment on the socket. */
784 skb->csum_start = skb_transport_header(skb) - skb->head;
785 skb->csum_offset = offsetof(struct udphdr, check);
786 uh->check = ~csum_ipv6_magic(saddr, daddr, len, IPPROTO_UDP, 0);
787 } else {
788 /*
789 * HW-checksum won't work as there are two or more
790 * fragments on the socket so that all csums of sk_buffs
791 * should be together
792 */
793 offset = skb_transport_offset(skb);
794 skb->csum = skb_checksum(skb, offset, skb->len - offset, 0);
795
796 skb->ip_summed = CHECKSUM_NONE;
797
798 skb_queue_walk(&sk->sk_write_queue, skb) {
799 csum = csum_add(csum, skb->csum);
800 }
801
802 uh->check = csum_ipv6_magic(saddr, daddr, len, IPPROTO_UDP,
803 csum);
804 if (uh->check == 0)
805 uh->check = CSUM_MANGLED_0;
806 }
807}
808
Linus Torvalds1da177e2005-04-16 15:20:36 -0700809/*
810 * Sending
811 */
812
Gerrit Renker4c0a6cb2006-11-27 09:29:59 -0800813static int udp_v6_push_pending_frames(struct sock *sk)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700814{
815 struct sk_buff *skb;
816 struct udphdr *uh;
Gerrit Renker4c0a6cb2006-11-27 09:29:59 -0800817 struct udp_sock *up = udp_sk(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700818 struct inet_sock *inet = inet_sk(sk);
819 struct flowi *fl = &inet->cork.fl;
820 int err = 0;
Wang Chenb2bf1e22007-12-03 22:34:16 +1100821 int is_udplite = IS_UDPLITE(sk);
Al Viro868c86b2006-11-14 21:35:48 -0800822 __wsum csum = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700823
824 /* Grab the skbuff where UDP header space exists. */
825 if ((skb = skb_peek(&sk->sk_write_queue)) == NULL)
826 goto out;
827
828 /*
829 * Create a UDP header
830 */
Arnaldo Carvalho de Melo4bedb452007-03-13 14:28:48 -0300831 uh = udp_hdr(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700832 uh->source = fl->fl_ip_sport;
833 uh->dest = fl->fl_ip_dport;
834 uh->len = htons(up->len);
835 uh->check = 0;
836
Wang Chenb2bf1e22007-12-03 22:34:16 +1100837 if (is_udplite)
Gerrit Renkerba4e58e2006-11-27 11:10:57 -0800838 csum = udplite_csum_outgoing(sk, skb);
Sridhar Samudrala493c6be2009-07-09 08:09:54 +0000839 else if (skb->ip_summed == CHECKSUM_PARTIAL) { /* UDP hardware csum */
840 udp6_hwcsum_outgoing(sk, skb, &fl->fl6_src, &fl->fl6_dst,
841 up->len);
842 goto send;
843 } else
Gerrit Renkerba4e58e2006-11-27 11:10:57 -0800844 csum = udp_csum_outgoing(sk, skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700845
Gerrit Renkerba4e58e2006-11-27 11:10:57 -0800846 /* add protocol-dependent pseudo-header */
847 uh->check = csum_ipv6_magic(&fl->fl6_src, &fl->fl6_dst,
848 up->len, fl->proto, csum );
Linus Torvalds1da177e2005-04-16 15:20:36 -0700849 if (uh->check == 0)
Al Virof6ab0282006-11-16 02:36:50 -0800850 uh->check = CSUM_MANGLED_0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700851
Sridhar Samudrala493c6be2009-07-09 08:09:54 +0000852send:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700853 err = ip6_push_pending_frames(sk);
Eric Dumazet6ce9e7b2009-09-02 18:05:33 -0700854 if (err) {
855 if (err == -ENOBUFS && !inet6_sk(sk)->recverr) {
856 UDP6_INC_STATS_USER(sock_net(sk),
857 UDP_MIB_SNDBUFERRORS, is_udplite);
858 err = 0;
859 }
860 } else
861 UDP6_INC_STATS_USER(sock_net(sk),
862 UDP_MIB_OUTDATAGRAMS, is_udplite);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700863out:
864 up->len = 0;
865 up->pending = 0;
866 return err;
867}
868
Gerrit Renkerba4e58e2006-11-27 11:10:57 -0800869int udpv6_sendmsg(struct kiocb *iocb, struct sock *sk,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700870 struct msghdr *msg, size_t len)
871{
872 struct ipv6_txoptions opt_space;
873 struct udp_sock *up = udp_sk(sk);
874 struct inet_sock *inet = inet_sk(sk);
875 struct ipv6_pinfo *np = inet6_sk(sk);
876 struct sockaddr_in6 *sin6 = (struct sockaddr_in6 *) msg->msg_name;
877 struct in6_addr *daddr, *final_p = NULL, final;
878 struct ipv6_txoptions *opt = NULL;
879 struct ip6_flowlabel *flowlabel = NULL;
Herbert Xu132a55f2006-10-03 14:34:00 -0700880 struct flowi fl;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700881 struct dst_entry *dst;
882 int addr_len = msg->msg_namelen;
883 int ulen = len;
884 int hlimit = -1;
YOSHIFUJI Hideaki41a1f8e2005-09-08 10:19:03 +0900885 int tclass = -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700886 int corkreq = up->corkflag || msg->msg_flags&MSG_MORE;
887 int err;
Mitsuru KANDA987905d2005-09-18 00:30:08 -0700888 int connected = 0;
Wang Chenb2bf1e22007-12-03 22:34:16 +1100889 int is_udplite = IS_UDPLITE(sk);
Gerrit Renkerba4e58e2006-11-27 11:10:57 -0800890 int (*getfrag)(void *, char *, int, int, int, struct sk_buff *);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700891
892 /* destination address check */
893 if (sin6) {
894 if (addr_len < offsetof(struct sockaddr, sa_data))
895 return -EINVAL;
896
897 switch (sin6->sin6_family) {
898 case AF_INET6:
899 if (addr_len < SIN6_LEN_RFC2133)
900 return -EINVAL;
901 daddr = &sin6->sin6_addr;
902 break;
903 case AF_INET:
904 goto do_udp_sendmsg;
905 case AF_UNSPEC:
906 msg->msg_name = sin6 = NULL;
907 msg->msg_namelen = addr_len = 0;
908 daddr = NULL;
909 break;
910 default:
911 return -EINVAL;
912 }
913 } else if (!up->pending) {
914 if (sk->sk_state != TCP_ESTABLISHED)
915 return -EDESTADDRREQ;
916 daddr = &np->daddr;
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900917 } else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700918 daddr = NULL;
919
920 if (daddr) {
Brian Haleye773e4f2007-08-24 23:16:08 -0700921 if (ipv6_addr_v4mapped(daddr)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700922 struct sockaddr_in sin;
923 sin.sin_family = AF_INET;
Eric Dumazetc720c7e2009-10-15 06:30:45 +0000924 sin.sin_port = sin6 ? sin6->sin6_port : inet->inet_dport;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700925 sin.sin_addr.s_addr = daddr->s6_addr32[3];
926 msg->msg_name = &sin;
927 msg->msg_namelen = sizeof(sin);
928do_udp_sendmsg:
929 if (__ipv6_only_sock(sk))
930 return -ENETUNREACH;
931 return udp_sendmsg(iocb, sk, msg, len);
932 }
933 }
934
935 if (up->pending == AF_INET)
936 return udp_sendmsg(iocb, sk, msg, len);
937
938 /* Rough check on arithmetic overflow,
YOSHIFUJI Hideakib59e1392007-03-30 14:45:35 -0700939 better check is made in ip6_append_data().
Linus Torvalds1da177e2005-04-16 15:20:36 -0700940 */
941 if (len > INT_MAX - sizeof(struct udphdr))
942 return -EMSGSIZE;
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900943
Linus Torvalds1da177e2005-04-16 15:20:36 -0700944 if (up->pending) {
945 /*
946 * There are pending frames.
947 * The socket lock must be held while it's corked.
948 */
949 lock_sock(sk);
950 if (likely(up->pending)) {
951 if (unlikely(up->pending != AF_INET6)) {
952 release_sock(sk);
953 return -EAFNOSUPPORT;
954 }
955 dst = NULL;
956 goto do_append_data;
957 }
958 release_sock(sk);
959 }
960 ulen += sizeof(struct udphdr);
961
Herbert Xu132a55f2006-10-03 14:34:00 -0700962 memset(&fl, 0, sizeof(fl));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700963
964 if (sin6) {
965 if (sin6->sin6_port == 0)
966 return -EINVAL;
967
Herbert Xu132a55f2006-10-03 14:34:00 -0700968 fl.fl_ip_dport = sin6->sin6_port;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700969 daddr = &sin6->sin6_addr;
970
971 if (np->sndflow) {
Herbert Xu132a55f2006-10-03 14:34:00 -0700972 fl.fl6_flowlabel = sin6->sin6_flowinfo&IPV6_FLOWINFO_MASK;
973 if (fl.fl6_flowlabel&IPV6_FLOWLABEL_MASK) {
974 flowlabel = fl6_sock_lookup(sk, fl.fl6_flowlabel);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700975 if (flowlabel == NULL)
976 return -EINVAL;
977 daddr = &flowlabel->dst;
978 }
979 }
980
981 /*
982 * Otherwise it will be difficult to maintain
983 * sk->sk_dst_cache.
984 */
985 if (sk->sk_state == TCP_ESTABLISHED &&
986 ipv6_addr_equal(daddr, &np->daddr))
987 daddr = &np->daddr;
988
989 if (addr_len >= sizeof(struct sockaddr_in6) &&
990 sin6->sin6_scope_id &&
991 ipv6_addr_type(daddr)&IPV6_ADDR_LINKLOCAL)
Herbert Xu132a55f2006-10-03 14:34:00 -0700992 fl.oif = sin6->sin6_scope_id;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700993 } else {
994 if (sk->sk_state != TCP_ESTABLISHED)
995 return -EDESTADDRREQ;
996
Eric Dumazetc720c7e2009-10-15 06:30:45 +0000997 fl.fl_ip_dport = inet->inet_dport;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700998 daddr = &np->daddr;
Herbert Xu132a55f2006-10-03 14:34:00 -0700999 fl.fl6_flowlabel = np->flow_label;
Mitsuru KANDA987905d2005-09-18 00:30:08 -07001000 connected = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001001 }
1002
Herbert Xu132a55f2006-10-03 14:34:00 -07001003 if (!fl.oif)
1004 fl.oif = sk->sk_bound_dev_if;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001005
Yang Hongyang9f690db2008-12-16 02:08:29 -08001006 if (!fl.oif)
1007 fl.oif = np->sticky_pktinfo.ipi6_ifindex;
1008
Brian Haley51953d52009-10-05 08:24:16 +00001009 fl.mark = sk->sk_mark;
1010
Linus Torvalds1da177e2005-04-16 15:20:36 -07001011 if (msg->msg_controllen) {
1012 opt = &opt_space;
1013 memset(opt, 0, sizeof(struct ipv6_txoptions));
1014 opt->tot_len = sizeof(*opt);
1015
YOSHIFUJI Hideaki91e19082008-06-04 13:02:49 +09001016 err = datagram_send_ctl(sock_net(sk), msg, &fl, opt, &hlimit, &tclass);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001017 if (err < 0) {
1018 fl6_sock_release(flowlabel);
1019 return err;
1020 }
Herbert Xu132a55f2006-10-03 14:34:00 -07001021 if ((fl.fl6_flowlabel&IPV6_FLOWLABEL_MASK) && !flowlabel) {
1022 flowlabel = fl6_sock_lookup(sk, fl.fl6_flowlabel);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001023 if (flowlabel == NULL)
1024 return -EINVAL;
1025 }
1026 if (!(opt->opt_nflen|opt->opt_flen))
1027 opt = NULL;
Mitsuru KANDA987905d2005-09-18 00:30:08 -07001028 connected = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001029 }
1030 if (opt == NULL)
1031 opt = np->opt;
YOSHIFUJI Hideakidf9890c2005-11-20 12:23:18 +09001032 if (flowlabel)
1033 opt = fl6_merge_options(&opt_space, flowlabel, opt);
1034 opt = ipv6_fixup_options(&opt_space, opt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001035
Gerrit Renkerba4e58e2006-11-27 11:10:57 -08001036 fl.proto = sk->sk_protocol;
Brian Haley876c7f42008-04-11 00:38:24 -04001037 if (!ipv6_addr_any(daddr))
1038 ipv6_addr_copy(&fl.fl6_dst, daddr);
1039 else
1040 fl.fl6_dst.s6_addr[15] = 0x1; /* :: means loopback (BSD'ism) */
Herbert Xu132a55f2006-10-03 14:34:00 -07001041 if (ipv6_addr_any(&fl.fl6_src) && !ipv6_addr_any(&np->saddr))
1042 ipv6_addr_copy(&fl.fl6_src, &np->saddr);
Eric Dumazetc720c7e2009-10-15 06:30:45 +00001043 fl.fl_ip_sport = inet->inet_sport;
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09001044
Linus Torvalds1da177e2005-04-16 15:20:36 -07001045 /* merge ip6_build_xmit from ip6_output */
1046 if (opt && opt->srcrt) {
1047 struct rt0_hdr *rt0 = (struct rt0_hdr *) opt->srcrt;
Herbert Xu132a55f2006-10-03 14:34:00 -07001048 ipv6_addr_copy(&final, &fl.fl6_dst);
1049 ipv6_addr_copy(&fl.fl6_dst, rt0->addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001050 final_p = &final;
Mitsuru KANDA987905d2005-09-18 00:30:08 -07001051 connected = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001052 }
1053
Herbert Xu132a55f2006-10-03 14:34:00 -07001054 if (!fl.oif && ipv6_addr_is_multicast(&fl.fl6_dst)) {
1055 fl.oif = np->mcast_oif;
Mitsuru KANDA987905d2005-09-18 00:30:08 -07001056 connected = 0;
1057 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001058
Herbert Xu132a55f2006-10-03 14:34:00 -07001059 security_sk_classify_flow(sk, &fl);
Venkat Yekkiralabeb8d132006-08-04 23:12:42 -07001060
Herbert Xu132a55f2006-10-03 14:34:00 -07001061 err = ip6_sk_dst_lookup(sk, &dst, &fl);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001062 if (err)
1063 goto out;
1064 if (final_p)
Herbert Xu132a55f2006-10-03 14:34:00 -07001065 ipv6_addr_copy(&fl.fl6_dst, final_p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001066
Alexey Dobriyan52479b62008-11-25 17:35:18 -08001067 err = __xfrm_lookup(sock_net(sk), &dst, &fl, sk, XFRM_LOOKUP_WAIT);
1068 if (err < 0) {
David S. Miller14e50e52007-05-24 18:17:54 -07001069 if (err == -EREMOTE)
1070 err = ip6_dst_blackhole(sk, &dst, &fl);
1071 if (err < 0)
1072 goto out;
1073 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001074
1075 if (hlimit < 0) {
Herbert Xu132a55f2006-10-03 14:34:00 -07001076 if (ipv6_addr_is_multicast(&fl.fl6_dst))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001077 hlimit = np->mcast_hops;
1078 else
1079 hlimit = np->hop_limit;
1080 if (hlimit < 0)
YOSHIFUJI Hideaki6b75d092008-03-10 06:00:30 -04001081 hlimit = ip6_dst_hoplimit(dst);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001082 }
1083
Gerrit Renkere651f032009-08-09 08:12:48 +00001084 if (tclass < 0)
YOSHIFUJI Hideaki41a1f8e2005-09-08 10:19:03 +09001085 tclass = np->tclass;
YOSHIFUJI Hideaki41a1f8e2005-09-08 10:19:03 +09001086
Linus Torvalds1da177e2005-04-16 15:20:36 -07001087 if (msg->msg_flags&MSG_CONFIRM)
1088 goto do_confirm;
1089back_from_confirm:
1090
1091 lock_sock(sk);
1092 if (unlikely(up->pending)) {
1093 /* The socket is already corked while preparing it. */
1094 /* ... which is an evident application bug. --ANK */
1095 release_sock(sk);
1096
Patrick McHardy64ce2072005-08-09 20:50:53 -07001097 LIMIT_NETDEBUG(KERN_DEBUG "udp cork app bug 2\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001098 err = -EINVAL;
1099 goto out;
1100 }
1101
1102 up->pending = AF_INET6;
1103
1104do_append_data:
1105 up->len += ulen;
Gerrit Renkerba4e58e2006-11-27 11:10:57 -08001106 getfrag = is_udplite ? udplite_getfrag : ip_generic_getfrag;
1107 err = ip6_append_data(sk, getfrag, msg->msg_iov, ulen,
Herbert Xu132a55f2006-10-03 14:34:00 -07001108 sizeof(struct udphdr), hlimit, tclass, opt, &fl,
YOSHIFUJI Hideaki41a1f8e2005-09-08 10:19:03 +09001109 (struct rt6_info*)dst,
1110 corkreq ? msg->msg_flags|MSG_MORE : msg->msg_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001111 if (err)
1112 udp_v6_flush_pending_frames(sk);
1113 else if (!corkreq)
Gerrit Renker4c0a6cb2006-11-27 09:29:59 -08001114 err = udp_v6_push_pending_frames(sk);
Herbert Xu1e0c14f2006-10-03 14:35:49 -07001115 else if (unlikely(skb_queue_empty(&sk->sk_write_queue)))
1116 up->pending = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001117
David S. Millera5e7c212005-10-03 14:21:58 -07001118 if (dst) {
1119 if (connected) {
1120 ip6_dst_store(sk, dst,
Herbert Xu132a55f2006-10-03 14:34:00 -07001121 ipv6_addr_equal(&fl.fl6_dst, &np->daddr) ?
YOSHIFUJI Hideaki8e1ef0a2006-08-29 17:15:09 -07001122 &np->daddr : NULL,
1123#ifdef CONFIG_IPV6_SUBTREES
Herbert Xu132a55f2006-10-03 14:34:00 -07001124 ipv6_addr_equal(&fl.fl6_src, &np->saddr) ?
YOSHIFUJI Hideaki8e1ef0a2006-08-29 17:15:09 -07001125 &np->saddr :
1126#endif
1127 NULL);
David S. Millera5e7c212005-10-03 14:21:58 -07001128 } else {
1129 dst_release(dst);
1130 }
YOSHIFUJI Hideakia3c96082008-06-04 01:30:25 +09001131 dst = NULL;
David S. Millera5e7c212005-10-03 14:21:58 -07001132 }
1133
Linus Torvalds1da177e2005-04-16 15:20:36 -07001134 if (err > 0)
1135 err = np->recverr ? net_xmit_errno(err) : 0;
1136 release_sock(sk);
1137out:
YOSHIFUJI Hideakia3c96082008-06-04 01:30:25 +09001138 dst_release(dst);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001139 fl6_sock_release(flowlabel);
YOSHIFUJI Hideakicd562c92007-09-14 17:15:01 -07001140 if (!err)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001141 return len;
David S. Millera18135e2006-08-15 00:00:09 -07001142 /*
1143 * ENOBUFS = no kernel mem, SOCK_NOSPACE = no sndbuf space. Reporting
1144 * ENOBUFS might not be good (it's not tunable per se), but otherwise
1145 * we don't have a good statistic (IpOutDiscards but it can be too many
1146 * things). We could add another new stat but at least for now that
1147 * seems like overkill.
1148 */
1149 if (err == -ENOBUFS || test_bit(SOCK_NOSPACE, &sk->sk_socket->flags)) {
Pavel Emelyanov235b9f72008-07-05 21:19:20 -07001150 UDP6_INC_STATS_USER(sock_net(sk),
1151 UDP_MIB_SNDBUFERRORS, is_udplite);
David S. Millera18135e2006-08-15 00:00:09 -07001152 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001153 return err;
1154
1155do_confirm:
1156 dst_confirm(dst);
1157 if (!(msg->msg_flags&MSG_PROBE) || len)
1158 goto back_from_confirm;
1159 err = 0;
1160 goto out;
1161}
1162
Brian Haley7d06b2e2008-06-14 17:04:49 -07001163void udpv6_destroy_sock(struct sock *sk)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001164{
1165 lock_sock(sk);
1166 udp_v6_flush_pending_frames(sk);
1167 release_sock(sk);
1168
1169 inet6_destroy_sock(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001170}
1171
1172/*
1173 * Socket option code for UDP
1174 */
Gerrit Renkerba4e58e2006-11-27 11:10:57 -08001175int udpv6_setsockopt(struct sock *sk, int level, int optname,
David S. Millerb7058842009-09-30 16:12:20 -07001176 char __user *optval, unsigned int optlen)
Dmitry Mishin3fdadf72006-03-20 22:45:21 -08001177{
David S. Millerdb8dac22008-03-06 16:22:02 -08001178 if (level == SOL_UDP || level == SOL_UDPLITE)
Gerrit Renker4c0a6cb2006-11-27 09:29:59 -08001179 return udp_lib_setsockopt(sk, level, optname, optval, optlen,
1180 udp_v6_push_pending_frames);
Gerrit Renkerba4e58e2006-11-27 11:10:57 -08001181 return ipv6_setsockopt(sk, level, optname, optval, optlen);
Dmitry Mishin3fdadf72006-03-20 22:45:21 -08001182}
1183
1184#ifdef CONFIG_COMPAT
Gerrit Renkerba4e58e2006-11-27 11:10:57 -08001185int compat_udpv6_setsockopt(struct sock *sk, int level, int optname,
David S. Millerb7058842009-09-30 16:12:20 -07001186 char __user *optval, unsigned int optlen)
Dmitry Mishin3fdadf72006-03-20 22:45:21 -08001187{
David S. Millerdb8dac22008-03-06 16:22:02 -08001188 if (level == SOL_UDP || level == SOL_UDPLITE)
Gerrit Renker4c0a6cb2006-11-27 09:29:59 -08001189 return udp_lib_setsockopt(sk, level, optname, optval, optlen,
1190 udp_v6_push_pending_frames);
Gerrit Renkerba4e58e2006-11-27 11:10:57 -08001191 return compat_ipv6_setsockopt(sk, level, optname, optval, optlen);
Dmitry Mishin3fdadf72006-03-20 22:45:21 -08001192}
1193#endif
1194
Gerrit Renkerba4e58e2006-11-27 11:10:57 -08001195int udpv6_getsockopt(struct sock *sk, int level, int optname,
1196 char __user *optval, int __user *optlen)
Dmitry Mishin3fdadf72006-03-20 22:45:21 -08001197{
David S. Millerdb8dac22008-03-06 16:22:02 -08001198 if (level == SOL_UDP || level == SOL_UDPLITE)
Gerrit Renker4c0a6cb2006-11-27 09:29:59 -08001199 return udp_lib_getsockopt(sk, level, optname, optval, optlen);
Gerrit Renkerba4e58e2006-11-27 11:10:57 -08001200 return ipv6_getsockopt(sk, level, optname, optval, optlen);
Dmitry Mishin3fdadf72006-03-20 22:45:21 -08001201}
1202
1203#ifdef CONFIG_COMPAT
Gerrit Renkerba4e58e2006-11-27 11:10:57 -08001204int compat_udpv6_getsockopt(struct sock *sk, int level, int optname,
1205 char __user *optval, int __user *optlen)
Dmitry Mishin3fdadf72006-03-20 22:45:21 -08001206{
David S. Millerdb8dac22008-03-06 16:22:02 -08001207 if (level == SOL_UDP || level == SOL_UDPLITE)
Gerrit Renker4c0a6cb2006-11-27 09:29:59 -08001208 return udp_lib_getsockopt(sk, level, optname, optval, optlen);
Gerrit Renkerba4e58e2006-11-27 11:10:57 -08001209 return compat_ipv6_getsockopt(sk, level, optname, optval, optlen);
Dmitry Mishin3fdadf72006-03-20 22:45:21 -08001210}
1211#endif
1212
Sridhar Samudralaba735422009-07-09 08:10:04 +00001213static int udp6_ufo_send_check(struct sk_buff *skb)
1214{
1215 struct ipv6hdr *ipv6h;
1216 struct udphdr *uh;
1217
1218 if (!pskb_may_pull(skb, sizeof(*uh)))
1219 return -EINVAL;
1220
1221 ipv6h = ipv6_hdr(skb);
1222 uh = udp_hdr(skb);
1223
1224 uh->check = ~csum_ipv6_magic(&ipv6h->saddr, &ipv6h->daddr, skb->len,
1225 IPPROTO_UDP, 0);
1226 skb->csum_start = skb_transport_header(skb) - skb->head;
1227 skb->csum_offset = offsetof(struct udphdr, check);
1228 skb->ip_summed = CHECKSUM_PARTIAL;
1229 return 0;
1230}
1231
1232static struct sk_buff *udp6_ufo_fragment(struct sk_buff *skb, int features)
1233{
1234 struct sk_buff *segs = ERR_PTR(-EINVAL);
1235 unsigned int mss;
1236 unsigned int unfrag_ip6hlen, unfrag_len;
1237 struct frag_hdr *fptr;
1238 u8 *mac_start, *prevhdr;
1239 u8 nexthdr;
1240 u8 frag_hdr_sz = sizeof(struct frag_hdr);
1241 int offset;
1242 __wsum csum;
1243
1244 mss = skb_shinfo(skb)->gso_size;
1245 if (unlikely(skb->len <= mss))
1246 goto out;
1247
1248 if (skb_gso_ok(skb, features | NETIF_F_GSO_ROBUST)) {
1249 /* Packet is from an untrusted source, reset gso_segs. */
1250 int type = skb_shinfo(skb)->gso_type;
1251
1252 if (unlikely(type & ~(SKB_GSO_UDP | SKB_GSO_DODGY) ||
1253 !(type & (SKB_GSO_UDP))))
1254 goto out;
1255
1256 skb_shinfo(skb)->gso_segs = DIV_ROUND_UP(skb->len, mss);
1257
1258 segs = NULL;
1259 goto out;
1260 }
1261
1262 /* Do software UFO. Complete and fill in the UDP checksum as HW cannot
1263 * do checksum of UDP packets sent as multiple IP fragments.
1264 */
1265 offset = skb->csum_start - skb_headroom(skb);
1266 csum = skb_checksum(skb, offset, skb->len- offset, 0);
1267 offset += skb->csum_offset;
1268 *(__sum16 *)(skb->data + offset) = csum_fold(csum);
1269 skb->ip_summed = CHECKSUM_NONE;
1270
1271 /* Check if there is enough headroom to insert fragment header. */
1272 if ((skb_headroom(skb) < frag_hdr_sz) &&
1273 pskb_expand_head(skb, frag_hdr_sz, 0, GFP_ATOMIC))
1274 goto out;
1275
1276 /* Find the unfragmentable header and shift it left by frag_hdr_sz
1277 * bytes to insert fragment header.
1278 */
1279 unfrag_ip6hlen = ip6_find_1stfragopt(skb, &prevhdr);
1280 nexthdr = *prevhdr;
1281 *prevhdr = NEXTHDR_FRAGMENT;
1282 unfrag_len = skb_network_header(skb) - skb_mac_header(skb) +
1283 unfrag_ip6hlen;
1284 mac_start = skb_mac_header(skb);
1285 memmove(mac_start-frag_hdr_sz, mac_start, unfrag_len);
1286
1287 skb->mac_header -= frag_hdr_sz;
1288 skb->network_header -= frag_hdr_sz;
1289
1290 fptr = (struct frag_hdr *)(skb_network_header(skb) + unfrag_ip6hlen);
1291 fptr->nexthdr = nexthdr;
1292 fptr->reserved = 0;
1293 ipv6_select_ident(fptr);
1294
1295 /* Fragment the skb. ipv6 header and the remaining fields of the
1296 * fragment header are updated in ipv6_gso_segment()
1297 */
1298 segs = skb_segment(skb, features);
1299
1300out:
1301 return segs;
1302}
1303
Alexey Dobriyan41135cc2009-09-14 12:22:28 +00001304static const struct inet6_protocol udpv6_protocol = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001305 .handler = udpv6_rcv,
1306 .err_handler = udpv6_err,
Sridhar Samudralaba735422009-07-09 08:10:04 +00001307 .gso_send_check = udp6_ufo_send_check,
1308 .gso_segment = udp6_ufo_fragment,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001309 .flags = INET6_PROTO_NOPOLICY|INET6_PROTO_FINAL,
1310};
1311
1312/* ------------------------------------------------------------------------ */
1313#ifdef CONFIG_PROC_FS
1314
1315static void udp6_sock_seq_show(struct seq_file *seq, struct sock *sp, int bucket)
1316{
1317 struct inet_sock *inet = inet_sk(sp);
1318 struct ipv6_pinfo *np = inet6_sk(sp);
1319 struct in6_addr *dest, *src;
1320 __u16 destp, srcp;
1321
1322 dest = &np->daddr;
1323 src = &np->rcv_saddr;
Eric Dumazetc720c7e2009-10-15 06:30:45 +00001324 destp = ntohs(inet->inet_dport);
1325 srcp = ntohs(inet->inet_sport);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001326 seq_printf(seq,
Eric Dumazetf86dcc52009-10-07 00:37:59 +00001327 "%5d: %08X%08X%08X%08X:%04X %08X%08X%08X%08X:%04X "
Eric Dumazetcb61cb92008-06-17 21:04:56 -07001328 "%02X %08X:%08X %02X:%08lX %08X %5d %8d %lu %d %p %d\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001329 bucket,
1330 src->s6_addr32[0], src->s6_addr32[1],
1331 src->s6_addr32[2], src->s6_addr32[3], srcp,
1332 dest->s6_addr32[0], dest->s6_addr32[1],
1333 dest->s6_addr32[2], dest->s6_addr32[3], destp,
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09001334 sp->sk_state,
Eric Dumazet31e6d362009-06-17 19:05:41 -07001335 sk_wmem_alloc_get(sp),
1336 sk_rmem_alloc_get(sp),
Linus Torvalds1da177e2005-04-16 15:20:36 -07001337 0, 0L, 0,
1338 sock_i_uid(sp), 0,
1339 sock_i_ino(sp),
Eric Dumazetcb61cb92008-06-17 21:04:56 -07001340 atomic_read(&sp->sk_refcnt), sp,
1341 atomic_read(&sp->sk_drops));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001342}
1343
Gerrit Renkerba4e58e2006-11-27 11:10:57 -08001344int udp6_seq_show(struct seq_file *seq, void *v)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001345{
1346 if (v == SEQ_START_TOKEN)
1347 seq_printf(seq,
1348 " sl "
1349 "local_address "
1350 "remote_address "
1351 "st tx_queue rx_queue tr tm->when retrnsmt"
Eric Dumazetcb61cb92008-06-17 21:04:56 -07001352 " uid timeout inode ref pointer drops\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001353 else
1354 udp6_sock_seq_show(seq, v, ((struct udp_iter_state *)seq->private)->bucket);
1355 return 0;
1356}
1357
Linus Torvalds1da177e2005-04-16 15:20:36 -07001358static struct udp_seq_afinfo udp6_seq_afinfo = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001359 .name = "udp6",
1360 .family = AF_INET6,
Eric Dumazet645ca702008-10-29 01:41:45 -07001361 .udp_table = &udp_table,
Denis V. Lunev4ad96d32008-03-28 18:25:53 -07001362 .seq_fops = {
1363 .owner = THIS_MODULE,
1364 },
Denis V. Lunevdda61922008-03-28 18:24:26 -07001365 .seq_ops = {
1366 .show = udp6_seq_show,
1367 },
Linus Torvalds1da177e2005-04-16 15:20:36 -07001368};
1369
Daniel Lezcano0c96d8c2008-03-21 04:14:17 -07001370int udp6_proc_init(struct net *net)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001371{
Daniel Lezcano0c96d8c2008-03-21 04:14:17 -07001372 return udp_proc_register(net, &udp6_seq_afinfo);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001373}
1374
Daniel Lezcano0c96d8c2008-03-21 04:14:17 -07001375void udp6_proc_exit(struct net *net) {
1376 udp_proc_unregister(net, &udp6_seq_afinfo);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001377}
1378#endif /* CONFIG_PROC_FS */
1379
1380/* ------------------------------------------------------------------------ */
1381
1382struct proto udpv6_prot = {
Arnaldo Carvalho de Melo543d9cf2006-03-20 22:48:35 -08001383 .name = "UDPv6",
1384 .owner = THIS_MODULE,
Gerrit Renkerba4e58e2006-11-27 11:10:57 -08001385 .close = udp_lib_close,
Arnaldo Carvalho de Melo543d9cf2006-03-20 22:48:35 -08001386 .connect = ip6_datagram_connect,
1387 .disconnect = udp_disconnect,
1388 .ioctl = udp_ioctl,
1389 .destroy = udpv6_destroy_sock,
1390 .setsockopt = udpv6_setsockopt,
1391 .getsockopt = udpv6_getsockopt,
1392 .sendmsg = udpv6_sendmsg,
1393 .recvmsg = udpv6_recvmsg,
1394 .backlog_rcv = udpv6_queue_rcv_skb,
Gerrit Renkerba4e58e2006-11-27 11:10:57 -08001395 .hash = udp_lib_hash,
1396 .unhash = udp_lib_unhash,
Arnaldo Carvalho de Melo543d9cf2006-03-20 22:48:35 -08001397 .get_port = udp_v6_get_port,
Hideo Aoki95766ff2007-12-31 00:29:24 -08001398 .memory_allocated = &udp_memory_allocated,
1399 .sysctl_mem = sysctl_udp_mem,
1400 .sysctl_wmem = &sysctl_udp_wmem_min,
1401 .sysctl_rmem = &sysctl_udp_rmem_min,
Arnaldo Carvalho de Melo543d9cf2006-03-20 22:48:35 -08001402 .obj_size = sizeof(struct udp6_sock),
Eric Dumazet271b72c2008-10-29 02:11:14 -07001403 .slab_flags = SLAB_DESTROY_BY_RCU,
Eric Dumazet645ca702008-10-29 01:41:45 -07001404 .h.udp_table = &udp_table,
Dmitry Mishin3fdadf72006-03-20 22:45:21 -08001405#ifdef CONFIG_COMPAT
Arnaldo Carvalho de Melo543d9cf2006-03-20 22:48:35 -08001406 .compat_setsockopt = compat_udpv6_setsockopt,
1407 .compat_getsockopt = compat_udpv6_getsockopt,
Dmitry Mishin3fdadf72006-03-20 22:45:21 -08001408#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001409};
1410
Linus Torvalds1da177e2005-04-16 15:20:36 -07001411static struct inet_protosw udpv6_protosw = {
1412 .type = SOCK_DGRAM,
1413 .protocol = IPPROTO_UDP,
1414 .prot = &udpv6_prot,
1415 .ops = &inet6_dgram_ops,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001416 .no_check = UDP_CSUM_DEFAULT,
1417 .flags = INET_PROTOSW_PERMANENT,
1418};
1419
1420
Daniel Lezcano7f4e4862007-12-11 02:25:35 -08001421int __init udpv6_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001422{
Daniel Lezcano7f4e4862007-12-11 02:25:35 -08001423 int ret;
1424
1425 ret = inet6_add_protocol(&udpv6_protocol, IPPROTO_UDP);
1426 if (ret)
1427 goto out;
1428
1429 ret = inet6_register_protosw(&udpv6_protosw);
1430 if (ret)
1431 goto out_udpv6_protocol;
1432out:
1433 return ret;
1434
1435out_udpv6_protocol:
1436 inet6_del_protocol(&udpv6_protocol, IPPROTO_UDP);
1437 goto out;
1438}
1439
Daniel Lezcano09f77092007-12-13 05:34:58 -08001440void udpv6_exit(void)
Daniel Lezcano7f4e4862007-12-11 02:25:35 -08001441{
1442 inet6_unregister_protosw(&udpv6_protosw);
1443 inet6_del_protocol(&udpv6_protocol, IPPROTO_UDP);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001444}