blob: a7af9d68cd6c3c5db4d211cc5f061303b103f7f6 [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
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;
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);
586 else
587 sk_add_backlog(sk, skb1);
588 bh_unlock_sock(sk);
Eric Dumazetf6b8f322009-11-08 10:20:19 +0000589 } else {
590 atomic_inc(&sk->sk_drops);
591 UDP6_INC_STATS_BH(sock_net(sk),
592 UDP_MIB_RCVBUFERRORS, IS_UDPLITE(sk));
593 UDP6_INC_STATS_BH(sock_net(sk),
594 UDP_MIB_INERRORS, IS_UDPLITE(sk));
Eric Dumazeta1ab77f2009-11-08 10:18:52 +0000595 }
596 }
597}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700598/*
599 * Note: called only from the BH handler context,
600 * so we don't need to lock the hashes.
601 */
Pavel Emelyanove3163492008-06-16 17:12:11 -0700602static int __udp6_lib_mcast_deliver(struct net *net, struct sk_buff *skb,
603 struct in6_addr *saddr, struct in6_addr *daddr,
Eric Dumazet645ca702008-10-29 01:41:45 -0700604 struct udp_table *udptable)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700605{
Eric Dumazeta1ab77f2009-11-08 10:18:52 +0000606 struct sock *sk, *stack[256 / sizeof(struct sock *)];
Arnaldo Carvalho de Melo4bedb452007-03-13 14:28:48 -0300607 const struct udphdr *uh = udp_hdr(skb);
Eric Dumazetf86dcc52009-10-07 00:37:59 +0000608 struct udp_hslot *hslot = udp_hashslot(udptable, net, ntohs(uh->dest));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700609 int dif;
Eric Dumazeta1ab77f2009-11-08 10:18:52 +0000610 unsigned int i, count = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700611
Eric Dumazet645ca702008-10-29 01:41:45 -0700612 spin_lock(&hslot->lock);
Eric Dumazet88ab1932008-11-16 19:39:21 -0800613 sk = sk_nulls_head(&hslot->head);
YOSHIFUJI Hideakif2776ff2006-11-21 17:41:56 -0800614 dif = inet6_iif(skb);
Eric Dumazet920a4612008-11-01 21:22:23 -0700615 sk = udp_v6_mcast_next(net, sk, uh->dest, daddr, uh->source, saddr, dif);
Eric Dumazeta1ab77f2009-11-08 10:18:52 +0000616 while (sk) {
617 stack[count++] = sk;
618 sk = udp_v6_mcast_next(net, sk_nulls_next(sk), uh->dest, daddr,
619 uh->source, saddr, dif);
620 if (unlikely(count == ARRAY_SIZE(stack))) {
621 if (!sk)
622 break;
623 flush_stack(stack, count, skb, ~0);
624 count = 0;
Hideo Aoki95766ff2007-12-31 00:29:24 -0800625 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700626 }
Eric Dumazeta1ab77f2009-11-08 10:18:52 +0000627 /*
628 * before releasing the lock, we must take reference on sockets
629 */
630 for (i = 0; i < count; i++)
631 sock_hold(stack[i]);
632
Eric Dumazet645ca702008-10-29 01:41:45 -0700633 spin_unlock(&hslot->lock);
Eric Dumazeta1ab77f2009-11-08 10:18:52 +0000634
635 if (count) {
636 flush_stack(stack, count, skb, count - 1);
637
638 for (i = 0; i < count; i++)
639 sock_put(stack[i]);
640 } else {
641 kfree_skb(skb);
642 }
Gerrit Renkerba4e58e2006-11-27 11:10:57 -0800643 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700644}
645
Herbert Xu759e5d02007-03-25 20:10:56 -0700646static inline int udp6_csum_init(struct sk_buff *skb, struct udphdr *uh,
647 int proto)
Gerrit Renkerba4e58e2006-11-27 11:10:57 -0800648{
Herbert Xu759e5d02007-03-25 20:10:56 -0700649 int err;
650
651 UDP_SKB_CB(skb)->partial_cov = 0;
652 UDP_SKB_CB(skb)->cscov = skb->len;
653
David S. Millerdb8dac22008-03-06 16:22:02 -0800654 if (proto == IPPROTO_UDPLITE) {
Herbert Xu759e5d02007-03-25 20:10:56 -0700655 err = udplite_checksum_init(skb, uh);
656 if (err)
657 return err;
658 }
659
Gerrit Renkerba4e58e2006-11-27 11:10:57 -0800660 if (uh->check == 0) {
661 /* RFC 2460 section 8.1 says that we SHOULD log
662 this error. Well, it is reasonable.
663 */
664 LIMIT_NETDEBUG(KERN_INFO "IPv6: udp checksum is 0\n");
665 return 1;
666 }
667 if (skb->ip_summed == CHECKSUM_COMPLETE &&
Arnaldo Carvalho de Melo0660e032007-04-25 17:54:47 -0700668 !csum_ipv6_magic(&ipv6_hdr(skb)->saddr, &ipv6_hdr(skb)->daddr,
Herbert Xu759e5d02007-03-25 20:10:56 -0700669 skb->len, proto, skb->csum))
Gerrit Renkerba4e58e2006-11-27 11:10:57 -0800670 skb->ip_summed = CHECKSUM_UNNECESSARY;
671
Herbert Xu60476372007-04-09 11:59:39 -0700672 if (!skb_csum_unnecessary(skb))
Arnaldo Carvalho de Melo0660e032007-04-25 17:54:47 -0700673 skb->csum = ~csum_unfold(csum_ipv6_magic(&ipv6_hdr(skb)->saddr,
674 &ipv6_hdr(skb)->daddr,
Herbert Xu759e5d02007-03-25 20:10:56 -0700675 skb->len, proto, 0));
Gerrit Renkerba4e58e2006-11-27 11:10:57 -0800676
Herbert Xu759e5d02007-03-25 20:10:56 -0700677 return 0;
Gerrit Renkerba4e58e2006-11-27 11:10:57 -0800678}
679
Eric Dumazet645ca702008-10-29 01:41:45 -0700680int __udp6_lib_rcv(struct sk_buff *skb, struct udp_table *udptable,
Herbert Xu759e5d02007-03-25 20:10:56 -0700681 int proto)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700682{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700683 struct sock *sk;
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900684 struct udphdr *uh;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700685 struct net_device *dev = skb->dev;
686 struct in6_addr *saddr, *daddr;
687 u32 ulen = 0;
Pavel Emelyanovef28d1a2008-07-05 21:19:40 -0700688 struct net *net = dev_net(skb->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700689
690 if (!pskb_may_pull(skb, sizeof(struct udphdr)))
691 goto short_packet;
692
Arnaldo Carvalho de Melo0660e032007-04-25 17:54:47 -0700693 saddr = &ipv6_hdr(skb)->saddr;
694 daddr = &ipv6_hdr(skb)->daddr;
Arnaldo Carvalho de Melo4bedb452007-03-13 14:28:48 -0300695 uh = udp_hdr(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700696
697 ulen = ntohs(uh->len);
Gerrit Renkerba4e58e2006-11-27 11:10:57 -0800698 if (ulen > skb->len)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700699 goto short_packet;
700
Herbert Xu759e5d02007-03-25 20:10:56 -0700701 if (proto == IPPROTO_UDP) {
702 /* UDP validates ulen. */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700703
Gerrit Renkerba4e58e2006-11-27 11:10:57 -0800704 /* Check for jumbo payload */
705 if (ulen == 0)
706 ulen = skb->len;
707
708 if (ulen < sizeof(*uh))
709 goto short_packet;
710
711 if (ulen < skb->len) {
712 if (pskb_trim_rcsum(skb, ulen))
713 goto short_packet;
Arnaldo Carvalho de Melo0660e032007-04-25 17:54:47 -0700714 saddr = &ipv6_hdr(skb)->saddr;
715 daddr = &ipv6_hdr(skb)->daddr;
Arnaldo Carvalho de Melo4bedb452007-03-13 14:28:48 -0300716 uh = udp_hdr(skb);
Gerrit Renkerba4e58e2006-11-27 11:10:57 -0800717 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700718 }
719
Herbert Xu759e5d02007-03-25 20:10:56 -0700720 if (udp6_csum_init(skb, uh, proto))
721 goto discard;
722
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900723 /*
724 * Multicast receive code
Linus Torvalds1da177e2005-04-16 15:20:36 -0700725 */
Gerrit Renkerba4e58e2006-11-27 11:10:57 -0800726 if (ipv6_addr_is_multicast(daddr))
Pavel Emelyanove3163492008-06-16 17:12:11 -0700727 return __udp6_lib_mcast_deliver(net, skb,
728 saddr, daddr, udptable);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700729
730 /* Unicast */
731
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900732 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700733 * check socket cache ... must talk to Alan about his plans
734 * for sock caches... i'll skip this for now.
735 */
KOVACS Krisztian607c4aa2008-10-07 12:38:32 -0700736 sk = __udp6_lib_lookup_skb(skb, uh->source, uh->dest, udptable);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700737
738 if (sk == NULL) {
739 if (!xfrm6_policy_check(NULL, XFRM_POLICY_IN, skb))
740 goto discard;
741
Gerrit Renkerba4e58e2006-11-27 11:10:57 -0800742 if (udp_lib_checksum_complete(skb))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700743 goto discard;
Pavel Emelyanovef28d1a2008-07-05 21:19:40 -0700744 UDP6_INC_STATS_BH(net, UDP_MIB_NOPORTS,
745 proto == IPPROTO_UDPLITE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700746
747 icmpv6_send(skb, ICMPV6_DEST_UNREACH, ICMPV6_PORT_UNREACH, 0, dev);
748
749 kfree_skb(skb);
Stephen Hemmingeradd459a2007-03-08 20:42:35 -0800750 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700751 }
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900752
Linus Torvalds1da177e2005-04-16 15:20:36 -0700753 /* deliver */
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900754
Herbert Xud97106e2008-08-09 00:35:05 -0700755 bh_lock_sock(sk);
Hideo Aoki95766ff2007-12-31 00:29:24 -0800756 if (!sock_owned_by_user(sk))
757 udpv6_queue_rcv_skb(sk, skb);
758 else
759 sk_add_backlog(sk, skb);
760 bh_unlock_sock(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700761 sock_put(sk);
Stephen Hemmingeradd459a2007-03-08 20:42:35 -0800762 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700763
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900764short_packet:
Gerrit Renkerba4e58e2006-11-27 11:10:57 -0800765 LIMIT_NETDEBUG(KERN_DEBUG "UDP%sv6: short packet: %d/%u\n",
David S. Millerdb8dac22008-03-06 16:22:02 -0800766 proto == IPPROTO_UDPLITE ? "-Lite" : "",
Herbert Xu759e5d02007-03-25 20:10:56 -0700767 ulen, skb->len);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700768
769discard:
Pavel Emelyanovef28d1a2008-07-05 21:19:40 -0700770 UDP6_INC_STATS_BH(net, UDP_MIB_INERRORS, proto == IPPROTO_UDPLITE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700771 kfree_skb(skb);
Stephen Hemmingeradd459a2007-03-08 20:42:35 -0800772 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700773}
Gerrit Renkerba4e58e2006-11-27 11:10:57 -0800774
Herbert Xue5bbef22007-10-15 12:50:28 -0700775static __inline__ int udpv6_rcv(struct sk_buff *skb)
Gerrit Renkerba4e58e2006-11-27 11:10:57 -0800776{
Eric Dumazet645ca702008-10-29 01:41:45 -0700777 return __udp6_lib_rcv(skb, &udp_table, IPPROTO_UDP);
Gerrit Renkerba4e58e2006-11-27 11:10:57 -0800778}
779
Linus Torvalds1da177e2005-04-16 15:20:36 -0700780/*
781 * Throw away all pending data and cancel the corking. Socket is locked.
782 */
783static void udp_v6_flush_pending_frames(struct sock *sk)
784{
785 struct udp_sock *up = udp_sk(sk);
786
Denis V. Lunev36d926b2008-06-04 15:49:07 +0400787 if (up->pending == AF_INET)
788 udp_flush_pending_frames(sk);
789 else if (up->pending) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700790 up->len = 0;
791 up->pending = 0;
792 ip6_flush_pending_frames(sk);
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900793 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700794}
795
Sridhar Samudrala493c6be2009-07-09 08:09:54 +0000796/**
797 * udp6_hwcsum_outgoing - handle outgoing HW checksumming
798 * @sk: socket we are sending on
799 * @skb: sk_buff containing the filled-in UDP header
800 * (checksum field must be zeroed out)
801 */
802static void udp6_hwcsum_outgoing(struct sock *sk, struct sk_buff *skb,
803 const struct in6_addr *saddr,
804 const struct in6_addr *daddr, int len)
805{
806 unsigned int offset;
807 struct udphdr *uh = udp_hdr(skb);
808 __wsum csum = 0;
809
810 if (skb_queue_len(&sk->sk_write_queue) == 1) {
811 /* Only one fragment on the socket. */
812 skb->csum_start = skb_transport_header(skb) - skb->head;
813 skb->csum_offset = offsetof(struct udphdr, check);
814 uh->check = ~csum_ipv6_magic(saddr, daddr, len, IPPROTO_UDP, 0);
815 } else {
816 /*
817 * HW-checksum won't work as there are two or more
818 * fragments on the socket so that all csums of sk_buffs
819 * should be together
820 */
821 offset = skb_transport_offset(skb);
822 skb->csum = skb_checksum(skb, offset, skb->len - offset, 0);
823
824 skb->ip_summed = CHECKSUM_NONE;
825
826 skb_queue_walk(&sk->sk_write_queue, skb) {
827 csum = csum_add(csum, skb->csum);
828 }
829
830 uh->check = csum_ipv6_magic(saddr, daddr, len, IPPROTO_UDP,
831 csum);
832 if (uh->check == 0)
833 uh->check = CSUM_MANGLED_0;
834 }
835}
836
Linus Torvalds1da177e2005-04-16 15:20:36 -0700837/*
838 * Sending
839 */
840
Gerrit Renker4c0a6cb2006-11-27 09:29:59 -0800841static int udp_v6_push_pending_frames(struct sock *sk)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700842{
843 struct sk_buff *skb;
844 struct udphdr *uh;
Gerrit Renker4c0a6cb2006-11-27 09:29:59 -0800845 struct udp_sock *up = udp_sk(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700846 struct inet_sock *inet = inet_sk(sk);
847 struct flowi *fl = &inet->cork.fl;
848 int err = 0;
Wang Chenb2bf1e22007-12-03 22:34:16 +1100849 int is_udplite = IS_UDPLITE(sk);
Al Viro868c86b2006-11-14 21:35:48 -0800850 __wsum csum = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700851
852 /* Grab the skbuff where UDP header space exists. */
853 if ((skb = skb_peek(&sk->sk_write_queue)) == NULL)
854 goto out;
855
856 /*
857 * Create a UDP header
858 */
Arnaldo Carvalho de Melo4bedb452007-03-13 14:28:48 -0300859 uh = udp_hdr(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700860 uh->source = fl->fl_ip_sport;
861 uh->dest = fl->fl_ip_dport;
862 uh->len = htons(up->len);
863 uh->check = 0;
864
Wang Chenb2bf1e22007-12-03 22:34:16 +1100865 if (is_udplite)
Gerrit Renkerba4e58e2006-11-27 11:10:57 -0800866 csum = udplite_csum_outgoing(sk, skb);
Sridhar Samudrala493c6be2009-07-09 08:09:54 +0000867 else if (skb->ip_summed == CHECKSUM_PARTIAL) { /* UDP hardware csum */
868 udp6_hwcsum_outgoing(sk, skb, &fl->fl6_src, &fl->fl6_dst,
869 up->len);
870 goto send;
871 } else
Gerrit Renkerba4e58e2006-11-27 11:10:57 -0800872 csum = udp_csum_outgoing(sk, skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700873
Gerrit Renkerba4e58e2006-11-27 11:10:57 -0800874 /* add protocol-dependent pseudo-header */
875 uh->check = csum_ipv6_magic(&fl->fl6_src, &fl->fl6_dst,
876 up->len, fl->proto, csum );
Linus Torvalds1da177e2005-04-16 15:20:36 -0700877 if (uh->check == 0)
Al Virof6ab0282006-11-16 02:36:50 -0800878 uh->check = CSUM_MANGLED_0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700879
Sridhar Samudrala493c6be2009-07-09 08:09:54 +0000880send:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700881 err = ip6_push_pending_frames(sk);
Eric Dumazet6ce9e7b2009-09-02 18:05:33 -0700882 if (err) {
883 if (err == -ENOBUFS && !inet6_sk(sk)->recverr) {
884 UDP6_INC_STATS_USER(sock_net(sk),
885 UDP_MIB_SNDBUFERRORS, is_udplite);
886 err = 0;
887 }
888 } else
889 UDP6_INC_STATS_USER(sock_net(sk),
890 UDP_MIB_OUTDATAGRAMS, is_udplite);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700891out:
892 up->len = 0;
893 up->pending = 0;
894 return err;
895}
896
Gerrit Renkerba4e58e2006-11-27 11:10:57 -0800897int udpv6_sendmsg(struct kiocb *iocb, struct sock *sk,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700898 struct msghdr *msg, size_t len)
899{
900 struct ipv6_txoptions opt_space;
901 struct udp_sock *up = udp_sk(sk);
902 struct inet_sock *inet = inet_sk(sk);
903 struct ipv6_pinfo *np = inet6_sk(sk);
904 struct sockaddr_in6 *sin6 = (struct sockaddr_in6 *) msg->msg_name;
905 struct in6_addr *daddr, *final_p = NULL, final;
906 struct ipv6_txoptions *opt = NULL;
907 struct ip6_flowlabel *flowlabel = NULL;
Herbert Xu132a55f2006-10-03 14:34:00 -0700908 struct flowi fl;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700909 struct dst_entry *dst;
910 int addr_len = msg->msg_namelen;
911 int ulen = len;
912 int hlimit = -1;
YOSHIFUJI Hideaki41a1f8e2005-09-08 10:19:03 +0900913 int tclass = -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700914 int corkreq = up->corkflag || msg->msg_flags&MSG_MORE;
915 int err;
Mitsuru KANDA987905d2005-09-18 00:30:08 -0700916 int connected = 0;
Wang Chenb2bf1e22007-12-03 22:34:16 +1100917 int is_udplite = IS_UDPLITE(sk);
Gerrit Renkerba4e58e2006-11-27 11:10:57 -0800918 int (*getfrag)(void *, char *, int, int, int, struct sk_buff *);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700919
920 /* destination address check */
921 if (sin6) {
922 if (addr_len < offsetof(struct sockaddr, sa_data))
923 return -EINVAL;
924
925 switch (sin6->sin6_family) {
926 case AF_INET6:
927 if (addr_len < SIN6_LEN_RFC2133)
928 return -EINVAL;
929 daddr = &sin6->sin6_addr;
930 break;
931 case AF_INET:
932 goto do_udp_sendmsg;
933 case AF_UNSPEC:
934 msg->msg_name = sin6 = NULL;
935 msg->msg_namelen = addr_len = 0;
936 daddr = NULL;
937 break;
938 default:
939 return -EINVAL;
940 }
941 } else if (!up->pending) {
942 if (sk->sk_state != TCP_ESTABLISHED)
943 return -EDESTADDRREQ;
944 daddr = &np->daddr;
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900945 } else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700946 daddr = NULL;
947
948 if (daddr) {
Brian Haleye773e4f2007-08-24 23:16:08 -0700949 if (ipv6_addr_v4mapped(daddr)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700950 struct sockaddr_in sin;
951 sin.sin_family = AF_INET;
Eric Dumazetc720c7e2009-10-15 06:30:45 +0000952 sin.sin_port = sin6 ? sin6->sin6_port : inet->inet_dport;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700953 sin.sin_addr.s_addr = daddr->s6_addr32[3];
954 msg->msg_name = &sin;
955 msg->msg_namelen = sizeof(sin);
956do_udp_sendmsg:
957 if (__ipv6_only_sock(sk))
958 return -ENETUNREACH;
959 return udp_sendmsg(iocb, sk, msg, len);
960 }
961 }
962
963 if (up->pending == AF_INET)
964 return udp_sendmsg(iocb, sk, msg, len);
965
966 /* Rough check on arithmetic overflow,
YOSHIFUJI Hideakib59e1392007-03-30 14:45:35 -0700967 better check is made in ip6_append_data().
Linus Torvalds1da177e2005-04-16 15:20:36 -0700968 */
969 if (len > INT_MAX - sizeof(struct udphdr))
970 return -EMSGSIZE;
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900971
Linus Torvalds1da177e2005-04-16 15:20:36 -0700972 if (up->pending) {
973 /*
974 * There are pending frames.
975 * The socket lock must be held while it's corked.
976 */
977 lock_sock(sk);
978 if (likely(up->pending)) {
979 if (unlikely(up->pending != AF_INET6)) {
980 release_sock(sk);
981 return -EAFNOSUPPORT;
982 }
983 dst = NULL;
984 goto do_append_data;
985 }
986 release_sock(sk);
987 }
988 ulen += sizeof(struct udphdr);
989
Herbert Xu132a55f2006-10-03 14:34:00 -0700990 memset(&fl, 0, sizeof(fl));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700991
992 if (sin6) {
993 if (sin6->sin6_port == 0)
994 return -EINVAL;
995
Herbert Xu132a55f2006-10-03 14:34:00 -0700996 fl.fl_ip_dport = sin6->sin6_port;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700997 daddr = &sin6->sin6_addr;
998
999 if (np->sndflow) {
Herbert Xu132a55f2006-10-03 14:34:00 -07001000 fl.fl6_flowlabel = sin6->sin6_flowinfo&IPV6_FLOWINFO_MASK;
1001 if (fl.fl6_flowlabel&IPV6_FLOWLABEL_MASK) {
1002 flowlabel = fl6_sock_lookup(sk, fl.fl6_flowlabel);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001003 if (flowlabel == NULL)
1004 return -EINVAL;
1005 daddr = &flowlabel->dst;
1006 }
1007 }
1008
1009 /*
1010 * Otherwise it will be difficult to maintain
1011 * sk->sk_dst_cache.
1012 */
1013 if (sk->sk_state == TCP_ESTABLISHED &&
1014 ipv6_addr_equal(daddr, &np->daddr))
1015 daddr = &np->daddr;
1016
1017 if (addr_len >= sizeof(struct sockaddr_in6) &&
1018 sin6->sin6_scope_id &&
1019 ipv6_addr_type(daddr)&IPV6_ADDR_LINKLOCAL)
Herbert Xu132a55f2006-10-03 14:34:00 -07001020 fl.oif = sin6->sin6_scope_id;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001021 } else {
1022 if (sk->sk_state != TCP_ESTABLISHED)
1023 return -EDESTADDRREQ;
1024
Eric Dumazetc720c7e2009-10-15 06:30:45 +00001025 fl.fl_ip_dport = inet->inet_dport;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001026 daddr = &np->daddr;
Herbert Xu132a55f2006-10-03 14:34:00 -07001027 fl.fl6_flowlabel = np->flow_label;
Mitsuru KANDA987905d2005-09-18 00:30:08 -07001028 connected = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001029 }
1030
Herbert Xu132a55f2006-10-03 14:34:00 -07001031 if (!fl.oif)
1032 fl.oif = sk->sk_bound_dev_if;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001033
Yang Hongyang9f690db2008-12-16 02:08:29 -08001034 if (!fl.oif)
1035 fl.oif = np->sticky_pktinfo.ipi6_ifindex;
1036
Brian Haley51953d52009-10-05 08:24:16 +00001037 fl.mark = sk->sk_mark;
1038
Linus Torvalds1da177e2005-04-16 15:20:36 -07001039 if (msg->msg_controllen) {
1040 opt = &opt_space;
1041 memset(opt, 0, sizeof(struct ipv6_txoptions));
1042 opt->tot_len = sizeof(*opt);
1043
YOSHIFUJI Hideaki91e19082008-06-04 13:02:49 +09001044 err = datagram_send_ctl(sock_net(sk), msg, &fl, opt, &hlimit, &tclass);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001045 if (err < 0) {
1046 fl6_sock_release(flowlabel);
1047 return err;
1048 }
Herbert Xu132a55f2006-10-03 14:34:00 -07001049 if ((fl.fl6_flowlabel&IPV6_FLOWLABEL_MASK) && !flowlabel) {
1050 flowlabel = fl6_sock_lookup(sk, fl.fl6_flowlabel);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001051 if (flowlabel == NULL)
1052 return -EINVAL;
1053 }
1054 if (!(opt->opt_nflen|opt->opt_flen))
1055 opt = NULL;
Mitsuru KANDA987905d2005-09-18 00:30:08 -07001056 connected = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001057 }
1058 if (opt == NULL)
1059 opt = np->opt;
YOSHIFUJI Hideakidf9890c2005-11-20 12:23:18 +09001060 if (flowlabel)
1061 opt = fl6_merge_options(&opt_space, flowlabel, opt);
1062 opt = ipv6_fixup_options(&opt_space, opt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001063
Gerrit Renkerba4e58e2006-11-27 11:10:57 -08001064 fl.proto = sk->sk_protocol;
Brian Haley876c7f42008-04-11 00:38:24 -04001065 if (!ipv6_addr_any(daddr))
1066 ipv6_addr_copy(&fl.fl6_dst, daddr);
1067 else
1068 fl.fl6_dst.s6_addr[15] = 0x1; /* :: means loopback (BSD'ism) */
Herbert Xu132a55f2006-10-03 14:34:00 -07001069 if (ipv6_addr_any(&fl.fl6_src) && !ipv6_addr_any(&np->saddr))
1070 ipv6_addr_copy(&fl.fl6_src, &np->saddr);
Eric Dumazetc720c7e2009-10-15 06:30:45 +00001071 fl.fl_ip_sport = inet->inet_sport;
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09001072
Linus Torvalds1da177e2005-04-16 15:20:36 -07001073 /* merge ip6_build_xmit from ip6_output */
1074 if (opt && opt->srcrt) {
1075 struct rt0_hdr *rt0 = (struct rt0_hdr *) opt->srcrt;
Herbert Xu132a55f2006-10-03 14:34:00 -07001076 ipv6_addr_copy(&final, &fl.fl6_dst);
1077 ipv6_addr_copy(&fl.fl6_dst, rt0->addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001078 final_p = &final;
Mitsuru KANDA987905d2005-09-18 00:30:08 -07001079 connected = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001080 }
1081
Herbert Xu132a55f2006-10-03 14:34:00 -07001082 if (!fl.oif && ipv6_addr_is_multicast(&fl.fl6_dst)) {
1083 fl.oif = np->mcast_oif;
Mitsuru KANDA987905d2005-09-18 00:30:08 -07001084 connected = 0;
1085 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001086
Herbert Xu132a55f2006-10-03 14:34:00 -07001087 security_sk_classify_flow(sk, &fl);
Venkat Yekkiralabeb8d132006-08-04 23:12:42 -07001088
Herbert Xu132a55f2006-10-03 14:34:00 -07001089 err = ip6_sk_dst_lookup(sk, &dst, &fl);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001090 if (err)
1091 goto out;
1092 if (final_p)
Herbert Xu132a55f2006-10-03 14:34:00 -07001093 ipv6_addr_copy(&fl.fl6_dst, final_p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001094
Alexey Dobriyan52479b62008-11-25 17:35:18 -08001095 err = __xfrm_lookup(sock_net(sk), &dst, &fl, sk, XFRM_LOOKUP_WAIT);
1096 if (err < 0) {
David S. Miller14e50e52007-05-24 18:17:54 -07001097 if (err == -EREMOTE)
1098 err = ip6_dst_blackhole(sk, &dst, &fl);
1099 if (err < 0)
1100 goto out;
1101 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001102
1103 if (hlimit < 0) {
Herbert Xu132a55f2006-10-03 14:34:00 -07001104 if (ipv6_addr_is_multicast(&fl.fl6_dst))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001105 hlimit = np->mcast_hops;
1106 else
1107 hlimit = np->hop_limit;
1108 if (hlimit < 0)
YOSHIFUJI Hideaki6b75d092008-03-10 06:00:30 -04001109 hlimit = ip6_dst_hoplimit(dst);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001110 }
1111
Gerrit Renkere651f032009-08-09 08:12:48 +00001112 if (tclass < 0)
YOSHIFUJI Hideaki41a1f8e2005-09-08 10:19:03 +09001113 tclass = np->tclass;
YOSHIFUJI Hideaki41a1f8e2005-09-08 10:19:03 +09001114
Linus Torvalds1da177e2005-04-16 15:20:36 -07001115 if (msg->msg_flags&MSG_CONFIRM)
1116 goto do_confirm;
1117back_from_confirm:
1118
1119 lock_sock(sk);
1120 if (unlikely(up->pending)) {
1121 /* The socket is already corked while preparing it. */
1122 /* ... which is an evident application bug. --ANK */
1123 release_sock(sk);
1124
Patrick McHardy64ce2072005-08-09 20:50:53 -07001125 LIMIT_NETDEBUG(KERN_DEBUG "udp cork app bug 2\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001126 err = -EINVAL;
1127 goto out;
1128 }
1129
1130 up->pending = AF_INET6;
1131
1132do_append_data:
1133 up->len += ulen;
Gerrit Renkerba4e58e2006-11-27 11:10:57 -08001134 getfrag = is_udplite ? udplite_getfrag : ip_generic_getfrag;
1135 err = ip6_append_data(sk, getfrag, msg->msg_iov, ulen,
Herbert Xu132a55f2006-10-03 14:34:00 -07001136 sizeof(struct udphdr), hlimit, tclass, opt, &fl,
YOSHIFUJI Hideaki41a1f8e2005-09-08 10:19:03 +09001137 (struct rt6_info*)dst,
1138 corkreq ? msg->msg_flags|MSG_MORE : msg->msg_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001139 if (err)
1140 udp_v6_flush_pending_frames(sk);
1141 else if (!corkreq)
Gerrit Renker4c0a6cb2006-11-27 09:29:59 -08001142 err = udp_v6_push_pending_frames(sk);
Herbert Xu1e0c14f2006-10-03 14:35:49 -07001143 else if (unlikely(skb_queue_empty(&sk->sk_write_queue)))
1144 up->pending = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001145
David S. Millera5e7c212005-10-03 14:21:58 -07001146 if (dst) {
1147 if (connected) {
1148 ip6_dst_store(sk, dst,
Herbert Xu132a55f2006-10-03 14:34:00 -07001149 ipv6_addr_equal(&fl.fl6_dst, &np->daddr) ?
YOSHIFUJI Hideaki8e1ef0a2006-08-29 17:15:09 -07001150 &np->daddr : NULL,
1151#ifdef CONFIG_IPV6_SUBTREES
Herbert Xu132a55f2006-10-03 14:34:00 -07001152 ipv6_addr_equal(&fl.fl6_src, &np->saddr) ?
YOSHIFUJI Hideaki8e1ef0a2006-08-29 17:15:09 -07001153 &np->saddr :
1154#endif
1155 NULL);
David S. Millera5e7c212005-10-03 14:21:58 -07001156 } else {
1157 dst_release(dst);
1158 }
YOSHIFUJI Hideakia3c96082008-06-04 01:30:25 +09001159 dst = NULL;
David S. Millera5e7c212005-10-03 14:21:58 -07001160 }
1161
Linus Torvalds1da177e2005-04-16 15:20:36 -07001162 if (err > 0)
1163 err = np->recverr ? net_xmit_errno(err) : 0;
1164 release_sock(sk);
1165out:
YOSHIFUJI Hideakia3c96082008-06-04 01:30:25 +09001166 dst_release(dst);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001167 fl6_sock_release(flowlabel);
YOSHIFUJI Hideakicd562c92007-09-14 17:15:01 -07001168 if (!err)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001169 return len;
David S. Millera18135e2006-08-15 00:00:09 -07001170 /*
1171 * ENOBUFS = no kernel mem, SOCK_NOSPACE = no sndbuf space. Reporting
1172 * ENOBUFS might not be good (it's not tunable per se), but otherwise
1173 * we don't have a good statistic (IpOutDiscards but it can be too many
1174 * things). We could add another new stat but at least for now that
1175 * seems like overkill.
1176 */
1177 if (err == -ENOBUFS || test_bit(SOCK_NOSPACE, &sk->sk_socket->flags)) {
Pavel Emelyanov235b9f72008-07-05 21:19:20 -07001178 UDP6_INC_STATS_USER(sock_net(sk),
1179 UDP_MIB_SNDBUFERRORS, is_udplite);
David S. Millera18135e2006-08-15 00:00:09 -07001180 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001181 return err;
1182
1183do_confirm:
1184 dst_confirm(dst);
1185 if (!(msg->msg_flags&MSG_PROBE) || len)
1186 goto back_from_confirm;
1187 err = 0;
1188 goto out;
1189}
1190
Brian Haley7d06b2e2008-06-14 17:04:49 -07001191void udpv6_destroy_sock(struct sock *sk)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001192{
1193 lock_sock(sk);
1194 udp_v6_flush_pending_frames(sk);
1195 release_sock(sk);
1196
1197 inet6_destroy_sock(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001198}
1199
1200/*
1201 * Socket option code for UDP
1202 */
Gerrit Renkerba4e58e2006-11-27 11:10:57 -08001203int udpv6_setsockopt(struct sock *sk, int level, int optname,
David S. Millerb7058842009-09-30 16:12:20 -07001204 char __user *optval, unsigned int optlen)
Dmitry Mishin3fdadf72006-03-20 22:45:21 -08001205{
David S. Millerdb8dac22008-03-06 16:22:02 -08001206 if (level == SOL_UDP || level == SOL_UDPLITE)
Gerrit Renker4c0a6cb2006-11-27 09:29:59 -08001207 return udp_lib_setsockopt(sk, level, optname, optval, optlen,
1208 udp_v6_push_pending_frames);
Gerrit Renkerba4e58e2006-11-27 11:10:57 -08001209 return ipv6_setsockopt(sk, level, optname, optval, optlen);
Dmitry Mishin3fdadf72006-03-20 22:45:21 -08001210}
1211
1212#ifdef CONFIG_COMPAT
Gerrit Renkerba4e58e2006-11-27 11:10:57 -08001213int compat_udpv6_setsockopt(struct sock *sk, int level, int optname,
David S. Millerb7058842009-09-30 16:12:20 -07001214 char __user *optval, unsigned int optlen)
Dmitry Mishin3fdadf72006-03-20 22:45:21 -08001215{
David S. Millerdb8dac22008-03-06 16:22:02 -08001216 if (level == SOL_UDP || level == SOL_UDPLITE)
Gerrit Renker4c0a6cb2006-11-27 09:29:59 -08001217 return udp_lib_setsockopt(sk, level, optname, optval, optlen,
1218 udp_v6_push_pending_frames);
Gerrit Renkerba4e58e2006-11-27 11:10:57 -08001219 return compat_ipv6_setsockopt(sk, level, optname, optval, optlen);
Dmitry Mishin3fdadf72006-03-20 22:45:21 -08001220}
1221#endif
1222
Gerrit Renkerba4e58e2006-11-27 11:10:57 -08001223int udpv6_getsockopt(struct sock *sk, int level, int optname,
1224 char __user *optval, int __user *optlen)
Dmitry Mishin3fdadf72006-03-20 22:45:21 -08001225{
David S. Millerdb8dac22008-03-06 16:22:02 -08001226 if (level == SOL_UDP || level == SOL_UDPLITE)
Gerrit Renker4c0a6cb2006-11-27 09:29:59 -08001227 return udp_lib_getsockopt(sk, level, optname, optval, optlen);
Gerrit Renkerba4e58e2006-11-27 11:10:57 -08001228 return ipv6_getsockopt(sk, level, optname, optval, optlen);
Dmitry Mishin3fdadf72006-03-20 22:45:21 -08001229}
1230
1231#ifdef CONFIG_COMPAT
Gerrit Renkerba4e58e2006-11-27 11:10:57 -08001232int compat_udpv6_getsockopt(struct sock *sk, int level, int optname,
1233 char __user *optval, int __user *optlen)
Dmitry Mishin3fdadf72006-03-20 22:45:21 -08001234{
David S. Millerdb8dac22008-03-06 16:22:02 -08001235 if (level == SOL_UDP || level == SOL_UDPLITE)
Gerrit Renker4c0a6cb2006-11-27 09:29:59 -08001236 return udp_lib_getsockopt(sk, level, optname, optval, optlen);
Gerrit Renkerba4e58e2006-11-27 11:10:57 -08001237 return compat_ipv6_getsockopt(sk, level, optname, optval, optlen);
Dmitry Mishin3fdadf72006-03-20 22:45:21 -08001238}
1239#endif
1240
Sridhar Samudralaba735422009-07-09 08:10:04 +00001241static int udp6_ufo_send_check(struct sk_buff *skb)
1242{
1243 struct ipv6hdr *ipv6h;
1244 struct udphdr *uh;
1245
1246 if (!pskb_may_pull(skb, sizeof(*uh)))
1247 return -EINVAL;
1248
1249 ipv6h = ipv6_hdr(skb);
1250 uh = udp_hdr(skb);
1251
1252 uh->check = ~csum_ipv6_magic(&ipv6h->saddr, &ipv6h->daddr, skb->len,
1253 IPPROTO_UDP, 0);
1254 skb->csum_start = skb_transport_header(skb) - skb->head;
1255 skb->csum_offset = offsetof(struct udphdr, check);
1256 skb->ip_summed = CHECKSUM_PARTIAL;
1257 return 0;
1258}
1259
1260static struct sk_buff *udp6_ufo_fragment(struct sk_buff *skb, int features)
1261{
1262 struct sk_buff *segs = ERR_PTR(-EINVAL);
1263 unsigned int mss;
1264 unsigned int unfrag_ip6hlen, unfrag_len;
1265 struct frag_hdr *fptr;
1266 u8 *mac_start, *prevhdr;
1267 u8 nexthdr;
1268 u8 frag_hdr_sz = sizeof(struct frag_hdr);
1269 int offset;
1270 __wsum csum;
1271
1272 mss = skb_shinfo(skb)->gso_size;
1273 if (unlikely(skb->len <= mss))
1274 goto out;
1275
1276 if (skb_gso_ok(skb, features | NETIF_F_GSO_ROBUST)) {
1277 /* Packet is from an untrusted source, reset gso_segs. */
1278 int type = skb_shinfo(skb)->gso_type;
1279
1280 if (unlikely(type & ~(SKB_GSO_UDP | SKB_GSO_DODGY) ||
1281 !(type & (SKB_GSO_UDP))))
1282 goto out;
1283
1284 skb_shinfo(skb)->gso_segs = DIV_ROUND_UP(skb->len, mss);
1285
1286 segs = NULL;
1287 goto out;
1288 }
1289
1290 /* Do software UFO. Complete and fill in the UDP checksum as HW cannot
1291 * do checksum of UDP packets sent as multiple IP fragments.
1292 */
1293 offset = skb->csum_start - skb_headroom(skb);
1294 csum = skb_checksum(skb, offset, skb->len- offset, 0);
1295 offset += skb->csum_offset;
1296 *(__sum16 *)(skb->data + offset) = csum_fold(csum);
1297 skb->ip_summed = CHECKSUM_NONE;
1298
1299 /* Check if there is enough headroom to insert fragment header. */
1300 if ((skb_headroom(skb) < frag_hdr_sz) &&
1301 pskb_expand_head(skb, frag_hdr_sz, 0, GFP_ATOMIC))
1302 goto out;
1303
1304 /* Find the unfragmentable header and shift it left by frag_hdr_sz
1305 * bytes to insert fragment header.
1306 */
1307 unfrag_ip6hlen = ip6_find_1stfragopt(skb, &prevhdr);
1308 nexthdr = *prevhdr;
1309 *prevhdr = NEXTHDR_FRAGMENT;
1310 unfrag_len = skb_network_header(skb) - skb_mac_header(skb) +
1311 unfrag_ip6hlen;
1312 mac_start = skb_mac_header(skb);
1313 memmove(mac_start-frag_hdr_sz, mac_start, unfrag_len);
1314
1315 skb->mac_header -= frag_hdr_sz;
1316 skb->network_header -= frag_hdr_sz;
1317
1318 fptr = (struct frag_hdr *)(skb_network_header(skb) + unfrag_ip6hlen);
1319 fptr->nexthdr = nexthdr;
1320 fptr->reserved = 0;
1321 ipv6_select_ident(fptr);
1322
1323 /* Fragment the skb. ipv6 header and the remaining fields of the
1324 * fragment header are updated in ipv6_gso_segment()
1325 */
1326 segs = skb_segment(skb, features);
1327
1328out:
1329 return segs;
1330}
1331
Alexey Dobriyan41135cc2009-09-14 12:22:28 +00001332static const struct inet6_protocol udpv6_protocol = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001333 .handler = udpv6_rcv,
1334 .err_handler = udpv6_err,
Sridhar Samudralaba735422009-07-09 08:10:04 +00001335 .gso_send_check = udp6_ufo_send_check,
1336 .gso_segment = udp6_ufo_fragment,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001337 .flags = INET6_PROTO_NOPOLICY|INET6_PROTO_FINAL,
1338};
1339
1340/* ------------------------------------------------------------------------ */
1341#ifdef CONFIG_PROC_FS
1342
1343static void udp6_sock_seq_show(struct seq_file *seq, struct sock *sp, int bucket)
1344{
1345 struct inet_sock *inet = inet_sk(sp);
1346 struct ipv6_pinfo *np = inet6_sk(sp);
1347 struct in6_addr *dest, *src;
1348 __u16 destp, srcp;
1349
1350 dest = &np->daddr;
1351 src = &np->rcv_saddr;
Eric Dumazetc720c7e2009-10-15 06:30:45 +00001352 destp = ntohs(inet->inet_dport);
1353 srcp = ntohs(inet->inet_sport);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001354 seq_printf(seq,
Eric Dumazetf86dcc52009-10-07 00:37:59 +00001355 "%5d: %08X%08X%08X%08X:%04X %08X%08X%08X%08X:%04X "
Eric Dumazetcb61cb92008-06-17 21:04:56 -07001356 "%02X %08X:%08X %02X:%08lX %08X %5d %8d %lu %d %p %d\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001357 bucket,
1358 src->s6_addr32[0], src->s6_addr32[1],
1359 src->s6_addr32[2], src->s6_addr32[3], srcp,
1360 dest->s6_addr32[0], dest->s6_addr32[1],
1361 dest->s6_addr32[2], dest->s6_addr32[3], destp,
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09001362 sp->sk_state,
Eric Dumazet31e6d362009-06-17 19:05:41 -07001363 sk_wmem_alloc_get(sp),
1364 sk_rmem_alloc_get(sp),
Linus Torvalds1da177e2005-04-16 15:20:36 -07001365 0, 0L, 0,
1366 sock_i_uid(sp), 0,
1367 sock_i_ino(sp),
Eric Dumazetcb61cb92008-06-17 21:04:56 -07001368 atomic_read(&sp->sk_refcnt), sp,
1369 atomic_read(&sp->sk_drops));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001370}
1371
Gerrit Renkerba4e58e2006-11-27 11:10:57 -08001372int udp6_seq_show(struct seq_file *seq, void *v)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001373{
1374 if (v == SEQ_START_TOKEN)
1375 seq_printf(seq,
1376 " sl "
1377 "local_address "
1378 "remote_address "
1379 "st tx_queue rx_queue tr tm->when retrnsmt"
Eric Dumazetcb61cb92008-06-17 21:04:56 -07001380 " uid timeout inode ref pointer drops\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001381 else
1382 udp6_sock_seq_show(seq, v, ((struct udp_iter_state *)seq->private)->bucket);
1383 return 0;
1384}
1385
Linus Torvalds1da177e2005-04-16 15:20:36 -07001386static struct udp_seq_afinfo udp6_seq_afinfo = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001387 .name = "udp6",
1388 .family = AF_INET6,
Eric Dumazet645ca702008-10-29 01:41:45 -07001389 .udp_table = &udp_table,
Denis V. Lunev4ad96d32008-03-28 18:25:53 -07001390 .seq_fops = {
1391 .owner = THIS_MODULE,
1392 },
Denis V. Lunevdda61922008-03-28 18:24:26 -07001393 .seq_ops = {
1394 .show = udp6_seq_show,
1395 },
Linus Torvalds1da177e2005-04-16 15:20:36 -07001396};
1397
Alexey Dobriyan2c8c1e72010-01-17 03:35:32 +00001398int __net_init udp6_proc_init(struct net *net)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001399{
Daniel Lezcano0c96d8c2008-03-21 04:14:17 -07001400 return udp_proc_register(net, &udp6_seq_afinfo);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001401}
1402
Daniel Lezcano0c96d8c2008-03-21 04:14:17 -07001403void udp6_proc_exit(struct net *net) {
1404 udp_proc_unregister(net, &udp6_seq_afinfo);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001405}
1406#endif /* CONFIG_PROC_FS */
1407
1408/* ------------------------------------------------------------------------ */
1409
1410struct proto udpv6_prot = {
Arnaldo Carvalho de Melo543d9cf2006-03-20 22:48:35 -08001411 .name = "UDPv6",
1412 .owner = THIS_MODULE,
Gerrit Renkerba4e58e2006-11-27 11:10:57 -08001413 .close = udp_lib_close,
Arnaldo Carvalho de Melo543d9cf2006-03-20 22:48:35 -08001414 .connect = ip6_datagram_connect,
1415 .disconnect = udp_disconnect,
1416 .ioctl = udp_ioctl,
1417 .destroy = udpv6_destroy_sock,
1418 .setsockopt = udpv6_setsockopt,
1419 .getsockopt = udpv6_getsockopt,
1420 .sendmsg = udpv6_sendmsg,
1421 .recvmsg = udpv6_recvmsg,
1422 .backlog_rcv = udpv6_queue_rcv_skb,
Gerrit Renkerba4e58e2006-11-27 11:10:57 -08001423 .hash = udp_lib_hash,
1424 .unhash = udp_lib_unhash,
Arnaldo Carvalho de Melo543d9cf2006-03-20 22:48:35 -08001425 .get_port = udp_v6_get_port,
Hideo Aoki95766ff2007-12-31 00:29:24 -08001426 .memory_allocated = &udp_memory_allocated,
1427 .sysctl_mem = sysctl_udp_mem,
1428 .sysctl_wmem = &sysctl_udp_wmem_min,
1429 .sysctl_rmem = &sysctl_udp_rmem_min,
Arnaldo Carvalho de Melo543d9cf2006-03-20 22:48:35 -08001430 .obj_size = sizeof(struct udp6_sock),
Eric Dumazet271b72c2008-10-29 02:11:14 -07001431 .slab_flags = SLAB_DESTROY_BY_RCU,
Eric Dumazet645ca702008-10-29 01:41:45 -07001432 .h.udp_table = &udp_table,
Dmitry Mishin3fdadf72006-03-20 22:45:21 -08001433#ifdef CONFIG_COMPAT
Arnaldo Carvalho de Melo543d9cf2006-03-20 22:48:35 -08001434 .compat_setsockopt = compat_udpv6_setsockopt,
1435 .compat_getsockopt = compat_udpv6_getsockopt,
Dmitry Mishin3fdadf72006-03-20 22:45:21 -08001436#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001437};
1438
Linus Torvalds1da177e2005-04-16 15:20:36 -07001439static struct inet_protosw udpv6_protosw = {
1440 .type = SOCK_DGRAM,
1441 .protocol = IPPROTO_UDP,
1442 .prot = &udpv6_prot,
1443 .ops = &inet6_dgram_ops,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001444 .no_check = UDP_CSUM_DEFAULT,
1445 .flags = INET_PROTOSW_PERMANENT,
1446};
1447
1448
Daniel Lezcano7f4e4862007-12-11 02:25:35 -08001449int __init udpv6_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001450{
Daniel Lezcano7f4e4862007-12-11 02:25:35 -08001451 int ret;
1452
1453 ret = inet6_add_protocol(&udpv6_protocol, IPPROTO_UDP);
1454 if (ret)
1455 goto out;
1456
1457 ret = inet6_register_protosw(&udpv6_protosw);
1458 if (ret)
1459 goto out_udpv6_protocol;
1460out:
1461 return ret;
1462
1463out_udpv6_protocol:
1464 inet6_del_protocol(&udpv6_protocol, IPPROTO_UDP);
1465 goto out;
1466}
1467
Daniel Lezcano09f77092007-12-13 05:34:58 -08001468void udpv6_exit(void)
Daniel Lezcano7f4e4862007-12-11 02:25:35 -08001469{
1470 inet6_unregister_protosw(&udpv6_protosw);
1471 inet6_del_protocol(&udpv6_protocol, IPPROTO_UDP);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001472}