blob: d3b59d73f507869f569c4fdfd201875a06ccf2a1 [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
Pavel Emelyanov6ba5a3c2008-03-22 16:51:21 -070084int udp_v6_get_port(struct sock *sk, unsigned short snum)
Linus Torvalds1da177e2005-04-16 15:20:36 -070085{
Pavel Emelyanov6ba5a3c2008-03-22 16:51:21 -070086 return udp_lib_get_port(sk, snum, ipv6_rcv_saddr_equal);
Linus Torvalds1da177e2005-04-16 15:20:36 -070087}
88
Eric Dumazet645ca702008-10-29 01:41:45 -070089static inline int compute_score(struct sock *sk, struct net *net,
90 unsigned short hnum,
91 struct in6_addr *saddr, __be16 sport,
92 struct in6_addr *daddr, __be16 dport,
93 int dif)
94{
95 int score = -1;
96
97 if (net_eq(sock_net(sk), net) && sk->sk_hash == hnum &&
98 sk->sk_family == PF_INET6) {
99 struct ipv6_pinfo *np = inet6_sk(sk);
100 struct inet_sock *inet = inet_sk(sk);
101
102 score = 0;
Eric Dumazetc720c7e2009-10-15 06:30:45 +0000103 if (inet->inet_dport) {
104 if (inet->inet_dport != sport)
Eric Dumazet645ca702008-10-29 01:41:45 -0700105 return -1;
106 score++;
107 }
108 if (!ipv6_addr_any(&np->rcv_saddr)) {
109 if (!ipv6_addr_equal(&np->rcv_saddr, daddr))
110 return -1;
111 score++;
112 }
113 if (!ipv6_addr_any(&np->daddr)) {
114 if (!ipv6_addr_equal(&np->daddr, saddr))
115 return -1;
116 score++;
117 }
118 if (sk->sk_bound_dev_if) {
119 if (sk->sk_bound_dev_if != dif)
120 return -1;
121 score++;
122 }
123 }
124 return score;
125}
126
Pavel Emelyanovfa4d3c62008-01-31 05:07:57 -0800127static struct sock *__udp6_lib_lookup(struct net *net,
128 struct in6_addr *saddr, __be16 sport,
Gerrit Renkerba4e58e2006-11-27 11:10:57 -0800129 struct in6_addr *daddr, __be16 dport,
Eric Dumazet645ca702008-10-29 01:41:45 -0700130 int dif, struct udp_table *udptable)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700131{
Eric Dumazet271b72c2008-10-29 02:11:14 -0700132 struct sock *sk, *result;
Eric Dumazet88ab1932008-11-16 19:39:21 -0800133 struct hlist_nulls_node *node;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700134 unsigned short hnum = ntohs(dport);
Eric Dumazetf86dcc52009-10-07 00:37:59 +0000135 unsigned int hash = udp_hashfn(net, hnum, udptable->mask);
Eric Dumazet645ca702008-10-29 01:41:45 -0700136 struct udp_hslot *hslot = &udptable->hash[hash];
Eric Dumazet271b72c2008-10-29 02:11:14 -0700137 int score, badness;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700138
Eric Dumazet271b72c2008-10-29 02:11:14 -0700139 rcu_read_lock();
140begin:
141 result = NULL;
142 badness = -1;
Eric Dumazet88ab1932008-11-16 19:39:21 -0800143 sk_nulls_for_each_rcu(sk, node, &hslot->head) {
Eric Dumazet645ca702008-10-29 01:41:45 -0700144 score = compute_score(sk, net, hnum, saddr, sport, daddr, dport, dif);
145 if (score > badness) {
146 result = sk;
147 badness = score;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700148 }
149 }
Eric Dumazet88ab1932008-11-16 19:39:21 -0800150 /*
151 * if the nulls value we got at the end of this lookup is
152 * not the expected one, we must restart lookup.
153 * We probably met an item that was moved to another chain.
154 */
155 if (get_nulls_value(node) != hash)
156 goto begin;
157
Eric Dumazet271b72c2008-10-29 02:11:14 -0700158 if (result) {
159 if (unlikely(!atomic_inc_not_zero(&result->sk_refcnt)))
160 result = NULL;
161 else if (unlikely(compute_score(result, net, hnum, saddr, sport,
162 daddr, dport, dif) < badness)) {
163 sock_put(result);
164 goto begin;
165 }
166 }
167 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700168 return result;
169}
170
KOVACS Krisztian607c4aa2008-10-07 12:38:32 -0700171static struct sock *__udp6_lib_lookup_skb(struct sk_buff *skb,
172 __be16 sport, __be16 dport,
Eric Dumazet645ca702008-10-29 01:41:45 -0700173 struct udp_table *udptable)
KOVACS Krisztian607c4aa2008-10-07 12:38:32 -0700174{
KOVACS Krisztian23542612008-10-07 12:41:01 -0700175 struct sock *sk;
KOVACS Krisztian607c4aa2008-10-07 12:38:32 -0700176 struct ipv6hdr *iph = ipv6_hdr(skb);
177
KOVACS Krisztian23542612008-10-07 12:41:01 -0700178 if (unlikely(sk = skb_steal_sock(skb)))
179 return sk;
Eric Dumazetadf30902009-06-02 05:19:30 +0000180 return __udp6_lib_lookup(dev_net(skb_dst(skb)->dev), &iph->saddr, sport,
181 &iph->daddr, dport, inet6_iif(skb),
182 udptable);
KOVACS Krisztian607c4aa2008-10-07 12:38:32 -0700183}
184
Linus Torvalds1da177e2005-04-16 15:20:36 -0700185/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700186 * This should be easy, if there is something there we
187 * return it, otherwise we block.
188 */
189
Gerrit Renkerba4e58e2006-11-27 11:10:57 -0800190int udpv6_recvmsg(struct kiocb *iocb, struct sock *sk,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700191 struct msghdr *msg, size_t len,
192 int noblock, int flags, int *addr_len)
193{
194 struct ipv6_pinfo *np = inet6_sk(sk);
195 struct inet_sock *inet = inet_sk(sk);
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900196 struct sk_buff *skb;
Herbert Xu759e5d02007-03-25 20:10:56 -0700197 unsigned int ulen, copied;
Herbert Xua59322b2007-12-05 01:53:40 -0800198 int peeked;
Herbert Xu759e5d02007-03-25 20:10:56 -0700199 int err;
200 int is_udplite = IS_UDPLITE(sk);
Wei Yongjunf26ba172008-11-02 16:11:01 +0000201 int is_udp4;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700202
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900203 if (addr_len)
204 *addr_len=sizeof(struct sockaddr_in6);
205
Linus Torvalds1da177e2005-04-16 15:20:36 -0700206 if (flags & MSG_ERRQUEUE)
207 return ipv6_recv_error(sk, msg, len);
208
209try_again:
Herbert Xua59322b2007-12-05 01:53:40 -0800210 skb = __skb_recv_datagram(sk, flags | (noblock ? MSG_DONTWAIT : 0),
211 &peeked, &err);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700212 if (!skb)
213 goto out;
214
Herbert Xu759e5d02007-03-25 20:10:56 -0700215 ulen = skb->len - sizeof(struct udphdr);
216 copied = len;
217 if (copied > ulen)
218 copied = ulen;
219 else if (copied < ulen)
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900220 msg->msg_flags |= MSG_TRUNC;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700221
Wei Yongjunf26ba172008-11-02 16:11:01 +0000222 is_udp4 = (skb->protocol == htons(ETH_P_IP));
223
Gerrit Renkerba4e58e2006-11-27 11:10:57 -0800224 /*
Herbert Xu759e5d02007-03-25 20:10:56 -0700225 * If checksum is needed at all, try to do it while copying the
226 * data. If the data is truncated, or if we only want a partial
227 * coverage checksum (UDP-Lite), do it before the copy.
Gerrit Renkerba4e58e2006-11-27 11:10:57 -0800228 */
Gerrit Renkerba4e58e2006-11-27 11:10:57 -0800229
Herbert Xu759e5d02007-03-25 20:10:56 -0700230 if (copied < ulen || UDP_SKB_CB(skb)->partial_cov) {
231 if (udp_lib_checksum_complete(skb))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700232 goto csum_copy_err;
Gerrit Renkerba4e58e2006-11-27 11:10:57 -0800233 }
234
Herbert Xu60476372007-04-09 11:59:39 -0700235 if (skb_csum_unnecessary(skb))
Gerrit Renkerba4e58e2006-11-27 11:10:57 -0800236 err = skb_copy_datagram_iovec(skb, sizeof(struct udphdr),
237 msg->msg_iov, copied );
238 else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700239 err = skb_copy_and_csum_datagram_iovec(skb, sizeof(struct udphdr), msg->msg_iov);
240 if (err == -EINVAL)
241 goto csum_copy_err;
242 }
243 if (err)
244 goto out_free;
245
Wei Yongjunf26ba172008-11-02 16:11:01 +0000246 if (!peeked) {
247 if (is_udp4)
248 UDP_INC_STATS_USER(sock_net(sk),
249 UDP_MIB_INDATAGRAMS, is_udplite);
250 else
251 UDP6_INC_STATS_USER(sock_net(sk),
252 UDP_MIB_INDATAGRAMS, is_udplite);
253 }
Wang Chencb759942007-12-03 22:33:28 +1100254
Neil Horman3b885782009-10-12 13:26:31 -0700255 sock_recv_ts_and_drops(msg, sk, skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700256
257 /* Copy the address. */
258 if (msg->msg_name) {
259 struct sockaddr_in6 *sin6;
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900260
Linus Torvalds1da177e2005-04-16 15:20:36 -0700261 sin6 = (struct sockaddr_in6 *) msg->msg_name;
262 sin6->sin6_family = AF_INET6;
Arnaldo Carvalho de Melo4bedb452007-03-13 14:28:48 -0300263 sin6->sin6_port = udp_hdr(skb)->source;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700264 sin6->sin6_flowinfo = 0;
265 sin6->sin6_scope_id = 0;
266
Wei Yongjunf26ba172008-11-02 16:11:01 +0000267 if (is_udp4)
Brian Haleyb301e822009-10-07 13:58:25 -0700268 ipv6_addr_set_v4mapped(ip_hdr(skb)->saddr,
269 &sin6->sin6_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700270 else {
Arnaldo Carvalho de Melo0660e032007-04-25 17:54:47 -0700271 ipv6_addr_copy(&sin6->sin6_addr,
272 &ipv6_hdr(skb)->saddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700273 if (ipv6_addr_type(&sin6->sin6_addr) & IPV6_ADDR_LINKLOCAL)
274 sin6->sin6_scope_id = IP6CB(skb)->iif;
275 }
276
277 }
Wei Yongjunf26ba172008-11-02 16:11:01 +0000278 if (is_udp4) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700279 if (inet->cmsg_flags)
280 ip_cmsg_recv(msg, skb);
281 } else {
282 if (np->rxopt.all)
283 datagram_recv_ctl(sk, msg, skb);
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900284 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700285
286 err = copied;
287 if (flags & MSG_TRUNC)
Herbert Xu759e5d02007-03-25 20:10:56 -0700288 err = ulen;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700289
290out_free:
Hideo Aoki95766ff2007-12-31 00:29:24 -0800291 lock_sock(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700292 skb_free_datagram(sk, skb);
Hideo Aoki95766ff2007-12-31 00:29:24 -0800293 release_sock(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700294out:
295 return err;
296
297csum_copy_err:
Hideo Aoki95766ff2007-12-31 00:29:24 -0800298 lock_sock(sk);
Wei Yongjun0856f932008-11-02 16:14:27 +0000299 if (!skb_kill_datagram(sk, skb, flags)) {
300 if (is_udp4)
301 UDP_INC_STATS_USER(sock_net(sk),
302 UDP_MIB_INERRORS, is_udplite);
303 else
304 UDP6_INC_STATS_USER(sock_net(sk),
305 UDP_MIB_INERRORS, is_udplite);
306 }
Hideo Aoki95766ff2007-12-31 00:29:24 -0800307 release_sock(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700308
Mitsuru Chinen7a0ff7162007-11-05 21:29:17 -0800309 if (flags & MSG_DONTWAIT)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700310 return -EAGAIN;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700311 goto try_again;
312}
313
Gerrit Renkerba4e58e2006-11-27 11:10:57 -0800314void __udp6_lib_err(struct sk_buff *skb, struct inet6_skb_parm *opt,
Brian Haleyd5fdd6b2009-06-23 04:31:07 -0700315 u8 type, u8 code, int offset, __be32 info,
Eric Dumazet645ca702008-10-29 01:41:45 -0700316 struct udp_table *udptable)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700317{
318 struct ipv6_pinfo *np;
319 struct ipv6hdr *hdr = (struct ipv6hdr*)skb->data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700320 struct in6_addr *saddr = &hdr->saddr;
321 struct in6_addr *daddr = &hdr->daddr;
322 struct udphdr *uh = (struct udphdr*)(skb->data+offset);
323 struct sock *sk;
324 int err;
325
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +0900326 sk = __udp6_lib_lookup(dev_net(skb->dev), daddr, uh->dest,
Gerrit Renkerba4e58e2006-11-27 11:10:57 -0800327 saddr, uh->source, inet6_iif(skb), udptable);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700328 if (sk == NULL)
329 return;
330
331 np = inet6_sk(sk);
332
333 if (!icmpv6_err_convert(type, code, &err) && !np->recverr)
334 goto out;
335
336 if (sk->sk_state != TCP_ESTABLISHED && !np->recverr)
337 goto out;
338
339 if (np->recverr)
340 ipv6_icmp_error(sk, skb, err, uh->dest, ntohl(info), (u8 *)(uh+1));
341
342 sk->sk_err = err;
343 sk->sk_error_report(sk);
344out:
345 sock_put(sk);
346}
347
Gerrit Renkerba4e58e2006-11-27 11:10:57 -0800348static __inline__ void udpv6_err(struct sk_buff *skb,
Brian Haleyd5fdd6b2009-06-23 04:31:07 -0700349 struct inet6_skb_parm *opt, u8 type,
350 u8 code, int offset, __be32 info )
Linus Torvalds1da177e2005-04-16 15:20:36 -0700351{
Eric Dumazet645ca702008-10-29 01:41:45 -0700352 __udp6_lib_err(skb, opt, type, code, offset, info, &udp_table);
Gerrit Renkerba4e58e2006-11-27 11:10:57 -0800353}
354
355int udpv6_queue_rcv_skb(struct sock * sk, struct sk_buff *skb)
356{
357 struct udp_sock *up = udp_sk(sk);
David S. Millera18135e2006-08-15 00:00:09 -0700358 int rc;
Wang Chenb2bf1e22007-12-03 22:34:16 +1100359 int is_udplite = IS_UDPLITE(sk);
David S. Millera18135e2006-08-15 00:00:09 -0700360
Gerrit Renkerba4e58e2006-11-27 11:10:57 -0800361 if (!xfrm6_policy_check(sk, XFRM_POLICY_IN, skb))
362 goto drop;
363
364 /*
365 * UDP-Lite specific tests, ignored on UDP sockets (see net/ipv4/udp.c).
366 */
Wang Chenb2bf1e22007-12-03 22:34:16 +1100367 if ((is_udplite & UDPLITE_RECV_CC) && UDP_SKB_CB(skb)->partial_cov) {
Gerrit Renkerba4e58e2006-11-27 11:10:57 -0800368
369 if (up->pcrlen == 0) { /* full coverage was set */
370 LIMIT_NETDEBUG(KERN_WARNING "UDPLITE6: partial coverage"
371 " %d while full coverage %d requested\n",
372 UDP_SKB_CB(skb)->cscov, skb->len);
373 goto drop;
374 }
375 if (UDP_SKB_CB(skb)->cscov < up->pcrlen) {
376 LIMIT_NETDEBUG(KERN_WARNING "UDPLITE6: coverage %d "
377 "too small, need min %d\n",
378 UDP_SKB_CB(skb)->cscov, up->pcrlen);
379 goto drop;
380 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700381 }
382
Herbert Xu1ab6eb62007-03-06 20:29:58 -0800383 if (sk->sk_filter) {
384 if (udp_lib_checksum_complete(skb))
385 goto drop;
386 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700387
Eric Dumazet766e90372009-10-14 20:40:11 -0700388 if ((rc = sock_queue_rcv_skb(sk, skb)) < 0) {
David S. Millera18135e2006-08-15 00:00:09 -0700389 /* Note that an ENOMEM error is charged twice */
Eric Dumazet766e90372009-10-14 20:40:11 -0700390 if (rc == -ENOMEM)
Pavel Emelyanovef28d1a2008-07-05 21:19:40 -0700391 UDP6_INC_STATS_BH(sock_net(sk),
392 UDP_MIB_RCVBUFERRORS, is_udplite);
Eric Dumazet8edf19c2009-10-15 00:12:40 +0000393 goto drop_no_sk_drops_inc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700394 }
Wang Chencb759942007-12-03 22:33:28 +1100395
Linus Torvalds1da177e2005-04-16 15:20:36 -0700396 return 0;
Gerrit Renkerba4e58e2006-11-27 11:10:57 -0800397drop:
Eric Dumazet8edf19c2009-10-15 00:12:40 +0000398 atomic_inc(&sk->sk_drops);
399drop_no_sk_drops_inc:
Pavel Emelyanovef28d1a2008-07-05 21:19:40 -0700400 UDP6_INC_STATS_BH(sock_net(sk), UDP_MIB_INERRORS, is_udplite);
Gerrit Renkerba4e58e2006-11-27 11:10:57 -0800401 kfree_skb(skb);
402 return -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700403}
404
Eric Dumazet920a4612008-11-01 21:22:23 -0700405static struct sock *udp_v6_mcast_next(struct net *net, struct sock *sk,
Al Viroe69a4adc2006-11-14 20:56:00 -0800406 __be16 loc_port, struct in6_addr *loc_addr,
407 __be16 rmt_port, struct in6_addr *rmt_addr,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700408 int dif)
409{
Eric Dumazet88ab1932008-11-16 19:39:21 -0800410 struct hlist_nulls_node *node;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700411 struct sock *s = sk;
412 unsigned short num = ntohs(loc_port);
413
Eric Dumazet88ab1932008-11-16 19:39:21 -0800414 sk_nulls_for_each_from(s, node) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700415 struct inet_sock *inet = inet_sk(s);
416
Eric Dumazet920a4612008-11-01 21:22:23 -0700417 if (!net_eq(sock_net(s), net))
Daniel Lezcanob8ad0cb2008-03-07 11:16:55 -0800418 continue;
419
Eric Dumazet95f30b32007-02-09 15:44:52 -0800420 if (s->sk_hash == num && s->sk_family == PF_INET6) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700421 struct ipv6_pinfo *np = inet6_sk(s);
Eric Dumazetc720c7e2009-10-15 06:30:45 +0000422 if (inet->inet_dport) {
423 if (inet->inet_dport != rmt_port)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700424 continue;
425 }
426 if (!ipv6_addr_any(&np->daddr) &&
427 !ipv6_addr_equal(&np->daddr, rmt_addr))
428 continue;
429
430 if (s->sk_bound_dev_if && s->sk_bound_dev_if != dif)
431 continue;
432
433 if (!ipv6_addr_any(&np->rcv_saddr)) {
David L Stevens40796c52005-09-14 21:10:20 -0700434 if (!ipv6_addr_equal(&np->rcv_saddr, loc_addr))
435 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700436 }
Stephen Hemmingeradd459a2007-03-08 20:42:35 -0800437 if (!inet6_mc_check(s, loc_addr, rmt_addr))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700438 continue;
439 return s;
440 }
441 }
442 return NULL;
443}
444
445/*
446 * Note: called only from the BH handler context,
447 * so we don't need to lock the hashes.
448 */
Pavel Emelyanove3163492008-06-16 17:12:11 -0700449static int __udp6_lib_mcast_deliver(struct net *net, struct sk_buff *skb,
450 struct in6_addr *saddr, struct in6_addr *daddr,
Eric Dumazet645ca702008-10-29 01:41:45 -0700451 struct udp_table *udptable)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700452{
453 struct sock *sk, *sk2;
Arnaldo Carvalho de Melo4bedb452007-03-13 14:28:48 -0300454 const struct udphdr *uh = udp_hdr(skb);
Eric Dumazetf86dcc52009-10-07 00:37:59 +0000455 struct udp_hslot *hslot = udp_hashslot(udptable, net, ntohs(uh->dest));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700456 int dif;
457
Eric Dumazet645ca702008-10-29 01:41:45 -0700458 spin_lock(&hslot->lock);
Eric Dumazet88ab1932008-11-16 19:39:21 -0800459 sk = sk_nulls_head(&hslot->head);
YOSHIFUJI Hideakif2776ff2006-11-21 17:41:56 -0800460 dif = inet6_iif(skb);
Eric Dumazet920a4612008-11-01 21:22:23 -0700461 sk = udp_v6_mcast_next(net, sk, uh->dest, daddr, uh->source, saddr, dif);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700462 if (!sk) {
463 kfree_skb(skb);
464 goto out;
465 }
466
467 sk2 = sk;
Eric Dumazet88ab1932008-11-16 19:39:21 -0800468 while ((sk2 = udp_v6_mcast_next(net, sk_nulls_next(sk2), uh->dest, daddr,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700469 uh->source, saddr, dif))) {
470 struct sk_buff *buff = skb_clone(skb, GFP_ATOMIC);
Hideo Aoki95766ff2007-12-31 00:29:24 -0800471 if (buff) {
Herbert Xud97106e2008-08-09 00:35:05 -0700472 bh_lock_sock(sk2);
Hideo Aoki95766ff2007-12-31 00:29:24 -0800473 if (!sock_owned_by_user(sk2))
474 udpv6_queue_rcv_skb(sk2, buff);
475 else
476 sk_add_backlog(sk2, buff);
477 bh_unlock_sock(sk2);
478 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700479 }
Herbert Xud97106e2008-08-09 00:35:05 -0700480 bh_lock_sock(sk);
Hideo Aoki95766ff2007-12-31 00:29:24 -0800481 if (!sock_owned_by_user(sk))
482 udpv6_queue_rcv_skb(sk, skb);
483 else
484 sk_add_backlog(sk, skb);
485 bh_unlock_sock(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700486out:
Eric Dumazet645ca702008-10-29 01:41:45 -0700487 spin_unlock(&hslot->lock);
Gerrit Renkerba4e58e2006-11-27 11:10:57 -0800488 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700489}
490
Herbert Xu759e5d02007-03-25 20:10:56 -0700491static inline int udp6_csum_init(struct sk_buff *skb, struct udphdr *uh,
492 int proto)
Gerrit Renkerba4e58e2006-11-27 11:10:57 -0800493{
Herbert Xu759e5d02007-03-25 20:10:56 -0700494 int err;
495
496 UDP_SKB_CB(skb)->partial_cov = 0;
497 UDP_SKB_CB(skb)->cscov = skb->len;
498
David S. Millerdb8dac22008-03-06 16:22:02 -0800499 if (proto == IPPROTO_UDPLITE) {
Herbert Xu759e5d02007-03-25 20:10:56 -0700500 err = udplite_checksum_init(skb, uh);
501 if (err)
502 return err;
503 }
504
Gerrit Renkerba4e58e2006-11-27 11:10:57 -0800505 if (uh->check == 0) {
506 /* RFC 2460 section 8.1 says that we SHOULD log
507 this error. Well, it is reasonable.
508 */
509 LIMIT_NETDEBUG(KERN_INFO "IPv6: udp checksum is 0\n");
510 return 1;
511 }
512 if (skb->ip_summed == CHECKSUM_COMPLETE &&
Arnaldo Carvalho de Melo0660e032007-04-25 17:54:47 -0700513 !csum_ipv6_magic(&ipv6_hdr(skb)->saddr, &ipv6_hdr(skb)->daddr,
Herbert Xu759e5d02007-03-25 20:10:56 -0700514 skb->len, proto, skb->csum))
Gerrit Renkerba4e58e2006-11-27 11:10:57 -0800515 skb->ip_summed = CHECKSUM_UNNECESSARY;
516
Herbert Xu60476372007-04-09 11:59:39 -0700517 if (!skb_csum_unnecessary(skb))
Arnaldo Carvalho de Melo0660e032007-04-25 17:54:47 -0700518 skb->csum = ~csum_unfold(csum_ipv6_magic(&ipv6_hdr(skb)->saddr,
519 &ipv6_hdr(skb)->daddr,
Herbert Xu759e5d02007-03-25 20:10:56 -0700520 skb->len, proto, 0));
Gerrit Renkerba4e58e2006-11-27 11:10:57 -0800521
Herbert Xu759e5d02007-03-25 20:10:56 -0700522 return 0;
Gerrit Renkerba4e58e2006-11-27 11:10:57 -0800523}
524
Eric Dumazet645ca702008-10-29 01:41:45 -0700525int __udp6_lib_rcv(struct sk_buff *skb, struct udp_table *udptable,
Herbert Xu759e5d02007-03-25 20:10:56 -0700526 int proto)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700527{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700528 struct sock *sk;
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900529 struct udphdr *uh;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700530 struct net_device *dev = skb->dev;
531 struct in6_addr *saddr, *daddr;
532 u32 ulen = 0;
Pavel Emelyanovef28d1a2008-07-05 21:19:40 -0700533 struct net *net = dev_net(skb->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700534
535 if (!pskb_may_pull(skb, sizeof(struct udphdr)))
536 goto short_packet;
537
Arnaldo Carvalho de Melo0660e032007-04-25 17:54:47 -0700538 saddr = &ipv6_hdr(skb)->saddr;
539 daddr = &ipv6_hdr(skb)->daddr;
Arnaldo Carvalho de Melo4bedb452007-03-13 14:28:48 -0300540 uh = udp_hdr(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700541
542 ulen = ntohs(uh->len);
Gerrit Renkerba4e58e2006-11-27 11:10:57 -0800543 if (ulen > skb->len)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700544 goto short_packet;
545
Herbert Xu759e5d02007-03-25 20:10:56 -0700546 if (proto == IPPROTO_UDP) {
547 /* UDP validates ulen. */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700548
Gerrit Renkerba4e58e2006-11-27 11:10:57 -0800549 /* Check for jumbo payload */
550 if (ulen == 0)
551 ulen = skb->len;
552
553 if (ulen < sizeof(*uh))
554 goto short_packet;
555
556 if (ulen < skb->len) {
557 if (pskb_trim_rcsum(skb, ulen))
558 goto short_packet;
Arnaldo Carvalho de Melo0660e032007-04-25 17:54:47 -0700559 saddr = &ipv6_hdr(skb)->saddr;
560 daddr = &ipv6_hdr(skb)->daddr;
Arnaldo Carvalho de Melo4bedb452007-03-13 14:28:48 -0300561 uh = udp_hdr(skb);
Gerrit Renkerba4e58e2006-11-27 11:10:57 -0800562 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700563 }
564
Herbert Xu759e5d02007-03-25 20:10:56 -0700565 if (udp6_csum_init(skb, uh, proto))
566 goto discard;
567
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900568 /*
569 * Multicast receive code
Linus Torvalds1da177e2005-04-16 15:20:36 -0700570 */
Gerrit Renkerba4e58e2006-11-27 11:10:57 -0800571 if (ipv6_addr_is_multicast(daddr))
Pavel Emelyanove3163492008-06-16 17:12:11 -0700572 return __udp6_lib_mcast_deliver(net, skb,
573 saddr, daddr, udptable);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700574
575 /* Unicast */
576
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900577 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700578 * check socket cache ... must talk to Alan about his plans
579 * for sock caches... i'll skip this for now.
580 */
KOVACS Krisztian607c4aa2008-10-07 12:38:32 -0700581 sk = __udp6_lib_lookup_skb(skb, uh->source, uh->dest, udptable);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700582
583 if (sk == NULL) {
584 if (!xfrm6_policy_check(NULL, XFRM_POLICY_IN, skb))
585 goto discard;
586
Gerrit Renkerba4e58e2006-11-27 11:10:57 -0800587 if (udp_lib_checksum_complete(skb))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700588 goto discard;
Pavel Emelyanovef28d1a2008-07-05 21:19:40 -0700589 UDP6_INC_STATS_BH(net, UDP_MIB_NOPORTS,
590 proto == IPPROTO_UDPLITE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700591
592 icmpv6_send(skb, ICMPV6_DEST_UNREACH, ICMPV6_PORT_UNREACH, 0, dev);
593
594 kfree_skb(skb);
Stephen Hemmingeradd459a2007-03-08 20:42:35 -0800595 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700596 }
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900597
Linus Torvalds1da177e2005-04-16 15:20:36 -0700598 /* deliver */
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900599
Herbert Xud97106e2008-08-09 00:35:05 -0700600 bh_lock_sock(sk);
Hideo Aoki95766ff2007-12-31 00:29:24 -0800601 if (!sock_owned_by_user(sk))
602 udpv6_queue_rcv_skb(sk, skb);
603 else
604 sk_add_backlog(sk, skb);
605 bh_unlock_sock(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700606 sock_put(sk);
Stephen Hemmingeradd459a2007-03-08 20:42:35 -0800607 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700608
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900609short_packet:
Gerrit Renkerba4e58e2006-11-27 11:10:57 -0800610 LIMIT_NETDEBUG(KERN_DEBUG "UDP%sv6: short packet: %d/%u\n",
David S. Millerdb8dac22008-03-06 16:22:02 -0800611 proto == IPPROTO_UDPLITE ? "-Lite" : "",
Herbert Xu759e5d02007-03-25 20:10:56 -0700612 ulen, skb->len);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700613
614discard:
Pavel Emelyanovef28d1a2008-07-05 21:19:40 -0700615 UDP6_INC_STATS_BH(net, UDP_MIB_INERRORS, proto == IPPROTO_UDPLITE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700616 kfree_skb(skb);
Stephen Hemmingeradd459a2007-03-08 20:42:35 -0800617 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700618}
Gerrit Renkerba4e58e2006-11-27 11:10:57 -0800619
Herbert Xue5bbef22007-10-15 12:50:28 -0700620static __inline__ int udpv6_rcv(struct sk_buff *skb)
Gerrit Renkerba4e58e2006-11-27 11:10:57 -0800621{
Eric Dumazet645ca702008-10-29 01:41:45 -0700622 return __udp6_lib_rcv(skb, &udp_table, IPPROTO_UDP);
Gerrit Renkerba4e58e2006-11-27 11:10:57 -0800623}
624
Linus Torvalds1da177e2005-04-16 15:20:36 -0700625/*
626 * Throw away all pending data and cancel the corking. Socket is locked.
627 */
628static void udp_v6_flush_pending_frames(struct sock *sk)
629{
630 struct udp_sock *up = udp_sk(sk);
631
Denis V. Lunev36d926b2008-06-04 15:49:07 +0400632 if (up->pending == AF_INET)
633 udp_flush_pending_frames(sk);
634 else if (up->pending) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700635 up->len = 0;
636 up->pending = 0;
637 ip6_flush_pending_frames(sk);
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900638 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700639}
640
Sridhar Samudrala493c6be2009-07-09 08:09:54 +0000641/**
642 * udp6_hwcsum_outgoing - handle outgoing HW checksumming
643 * @sk: socket we are sending on
644 * @skb: sk_buff containing the filled-in UDP header
645 * (checksum field must be zeroed out)
646 */
647static void udp6_hwcsum_outgoing(struct sock *sk, struct sk_buff *skb,
648 const struct in6_addr *saddr,
649 const struct in6_addr *daddr, int len)
650{
651 unsigned int offset;
652 struct udphdr *uh = udp_hdr(skb);
653 __wsum csum = 0;
654
655 if (skb_queue_len(&sk->sk_write_queue) == 1) {
656 /* Only one fragment on the socket. */
657 skb->csum_start = skb_transport_header(skb) - skb->head;
658 skb->csum_offset = offsetof(struct udphdr, check);
659 uh->check = ~csum_ipv6_magic(saddr, daddr, len, IPPROTO_UDP, 0);
660 } else {
661 /*
662 * HW-checksum won't work as there are two or more
663 * fragments on the socket so that all csums of sk_buffs
664 * should be together
665 */
666 offset = skb_transport_offset(skb);
667 skb->csum = skb_checksum(skb, offset, skb->len - offset, 0);
668
669 skb->ip_summed = CHECKSUM_NONE;
670
671 skb_queue_walk(&sk->sk_write_queue, skb) {
672 csum = csum_add(csum, skb->csum);
673 }
674
675 uh->check = csum_ipv6_magic(saddr, daddr, len, IPPROTO_UDP,
676 csum);
677 if (uh->check == 0)
678 uh->check = CSUM_MANGLED_0;
679 }
680}
681
Linus Torvalds1da177e2005-04-16 15:20:36 -0700682/*
683 * Sending
684 */
685
Gerrit Renker4c0a6cb2006-11-27 09:29:59 -0800686static int udp_v6_push_pending_frames(struct sock *sk)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700687{
688 struct sk_buff *skb;
689 struct udphdr *uh;
Gerrit Renker4c0a6cb2006-11-27 09:29:59 -0800690 struct udp_sock *up = udp_sk(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700691 struct inet_sock *inet = inet_sk(sk);
692 struct flowi *fl = &inet->cork.fl;
693 int err = 0;
Wang Chenb2bf1e22007-12-03 22:34:16 +1100694 int is_udplite = IS_UDPLITE(sk);
Al Viro868c86b2006-11-14 21:35:48 -0800695 __wsum csum = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700696
697 /* Grab the skbuff where UDP header space exists. */
698 if ((skb = skb_peek(&sk->sk_write_queue)) == NULL)
699 goto out;
700
701 /*
702 * Create a UDP header
703 */
Arnaldo Carvalho de Melo4bedb452007-03-13 14:28:48 -0300704 uh = udp_hdr(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700705 uh->source = fl->fl_ip_sport;
706 uh->dest = fl->fl_ip_dport;
707 uh->len = htons(up->len);
708 uh->check = 0;
709
Wang Chenb2bf1e22007-12-03 22:34:16 +1100710 if (is_udplite)
Gerrit Renkerba4e58e2006-11-27 11:10:57 -0800711 csum = udplite_csum_outgoing(sk, skb);
Sridhar Samudrala493c6be2009-07-09 08:09:54 +0000712 else if (skb->ip_summed == CHECKSUM_PARTIAL) { /* UDP hardware csum */
713 udp6_hwcsum_outgoing(sk, skb, &fl->fl6_src, &fl->fl6_dst,
714 up->len);
715 goto send;
716 } else
Gerrit Renkerba4e58e2006-11-27 11:10:57 -0800717 csum = udp_csum_outgoing(sk, skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700718
Gerrit Renkerba4e58e2006-11-27 11:10:57 -0800719 /* add protocol-dependent pseudo-header */
720 uh->check = csum_ipv6_magic(&fl->fl6_src, &fl->fl6_dst,
721 up->len, fl->proto, csum );
Linus Torvalds1da177e2005-04-16 15:20:36 -0700722 if (uh->check == 0)
Al Virof6ab0282006-11-16 02:36:50 -0800723 uh->check = CSUM_MANGLED_0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700724
Sridhar Samudrala493c6be2009-07-09 08:09:54 +0000725send:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700726 err = ip6_push_pending_frames(sk);
Eric Dumazet6ce9e7b2009-09-02 18:05:33 -0700727 if (err) {
728 if (err == -ENOBUFS && !inet6_sk(sk)->recverr) {
729 UDP6_INC_STATS_USER(sock_net(sk),
730 UDP_MIB_SNDBUFERRORS, is_udplite);
731 err = 0;
732 }
733 } else
734 UDP6_INC_STATS_USER(sock_net(sk),
735 UDP_MIB_OUTDATAGRAMS, is_udplite);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700736out:
737 up->len = 0;
738 up->pending = 0;
739 return err;
740}
741
Gerrit Renkerba4e58e2006-11-27 11:10:57 -0800742int udpv6_sendmsg(struct kiocb *iocb, struct sock *sk,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700743 struct msghdr *msg, size_t len)
744{
745 struct ipv6_txoptions opt_space;
746 struct udp_sock *up = udp_sk(sk);
747 struct inet_sock *inet = inet_sk(sk);
748 struct ipv6_pinfo *np = inet6_sk(sk);
749 struct sockaddr_in6 *sin6 = (struct sockaddr_in6 *) msg->msg_name;
750 struct in6_addr *daddr, *final_p = NULL, final;
751 struct ipv6_txoptions *opt = NULL;
752 struct ip6_flowlabel *flowlabel = NULL;
Herbert Xu132a55f2006-10-03 14:34:00 -0700753 struct flowi fl;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700754 struct dst_entry *dst;
755 int addr_len = msg->msg_namelen;
756 int ulen = len;
757 int hlimit = -1;
YOSHIFUJI Hideaki41a1f8e2005-09-08 10:19:03 +0900758 int tclass = -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700759 int corkreq = up->corkflag || msg->msg_flags&MSG_MORE;
760 int err;
Mitsuru KANDA987905d2005-09-18 00:30:08 -0700761 int connected = 0;
Wang Chenb2bf1e22007-12-03 22:34:16 +1100762 int is_udplite = IS_UDPLITE(sk);
Gerrit Renkerba4e58e2006-11-27 11:10:57 -0800763 int (*getfrag)(void *, char *, int, int, int, struct sk_buff *);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700764
765 /* destination address check */
766 if (sin6) {
767 if (addr_len < offsetof(struct sockaddr, sa_data))
768 return -EINVAL;
769
770 switch (sin6->sin6_family) {
771 case AF_INET6:
772 if (addr_len < SIN6_LEN_RFC2133)
773 return -EINVAL;
774 daddr = &sin6->sin6_addr;
775 break;
776 case AF_INET:
777 goto do_udp_sendmsg;
778 case AF_UNSPEC:
779 msg->msg_name = sin6 = NULL;
780 msg->msg_namelen = addr_len = 0;
781 daddr = NULL;
782 break;
783 default:
784 return -EINVAL;
785 }
786 } else if (!up->pending) {
787 if (sk->sk_state != TCP_ESTABLISHED)
788 return -EDESTADDRREQ;
789 daddr = &np->daddr;
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900790 } else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700791 daddr = NULL;
792
793 if (daddr) {
Brian Haleye773e4f2007-08-24 23:16:08 -0700794 if (ipv6_addr_v4mapped(daddr)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700795 struct sockaddr_in sin;
796 sin.sin_family = AF_INET;
Eric Dumazetc720c7e2009-10-15 06:30:45 +0000797 sin.sin_port = sin6 ? sin6->sin6_port : inet->inet_dport;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700798 sin.sin_addr.s_addr = daddr->s6_addr32[3];
799 msg->msg_name = &sin;
800 msg->msg_namelen = sizeof(sin);
801do_udp_sendmsg:
802 if (__ipv6_only_sock(sk))
803 return -ENETUNREACH;
804 return udp_sendmsg(iocb, sk, msg, len);
805 }
806 }
807
808 if (up->pending == AF_INET)
809 return udp_sendmsg(iocb, sk, msg, len);
810
811 /* Rough check on arithmetic overflow,
YOSHIFUJI Hideakib59e1392007-03-30 14:45:35 -0700812 better check is made in ip6_append_data().
Linus Torvalds1da177e2005-04-16 15:20:36 -0700813 */
814 if (len > INT_MAX - sizeof(struct udphdr))
815 return -EMSGSIZE;
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900816
Linus Torvalds1da177e2005-04-16 15:20:36 -0700817 if (up->pending) {
818 /*
819 * There are pending frames.
820 * The socket lock must be held while it's corked.
821 */
822 lock_sock(sk);
823 if (likely(up->pending)) {
824 if (unlikely(up->pending != AF_INET6)) {
825 release_sock(sk);
826 return -EAFNOSUPPORT;
827 }
828 dst = NULL;
829 goto do_append_data;
830 }
831 release_sock(sk);
832 }
833 ulen += sizeof(struct udphdr);
834
Herbert Xu132a55f2006-10-03 14:34:00 -0700835 memset(&fl, 0, sizeof(fl));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700836
837 if (sin6) {
838 if (sin6->sin6_port == 0)
839 return -EINVAL;
840
Herbert Xu132a55f2006-10-03 14:34:00 -0700841 fl.fl_ip_dport = sin6->sin6_port;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700842 daddr = &sin6->sin6_addr;
843
844 if (np->sndflow) {
Herbert Xu132a55f2006-10-03 14:34:00 -0700845 fl.fl6_flowlabel = sin6->sin6_flowinfo&IPV6_FLOWINFO_MASK;
846 if (fl.fl6_flowlabel&IPV6_FLOWLABEL_MASK) {
847 flowlabel = fl6_sock_lookup(sk, fl.fl6_flowlabel);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700848 if (flowlabel == NULL)
849 return -EINVAL;
850 daddr = &flowlabel->dst;
851 }
852 }
853
854 /*
855 * Otherwise it will be difficult to maintain
856 * sk->sk_dst_cache.
857 */
858 if (sk->sk_state == TCP_ESTABLISHED &&
859 ipv6_addr_equal(daddr, &np->daddr))
860 daddr = &np->daddr;
861
862 if (addr_len >= sizeof(struct sockaddr_in6) &&
863 sin6->sin6_scope_id &&
864 ipv6_addr_type(daddr)&IPV6_ADDR_LINKLOCAL)
Herbert Xu132a55f2006-10-03 14:34:00 -0700865 fl.oif = sin6->sin6_scope_id;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700866 } else {
867 if (sk->sk_state != TCP_ESTABLISHED)
868 return -EDESTADDRREQ;
869
Eric Dumazetc720c7e2009-10-15 06:30:45 +0000870 fl.fl_ip_dport = inet->inet_dport;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700871 daddr = &np->daddr;
Herbert Xu132a55f2006-10-03 14:34:00 -0700872 fl.fl6_flowlabel = np->flow_label;
Mitsuru KANDA987905d2005-09-18 00:30:08 -0700873 connected = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700874 }
875
Herbert Xu132a55f2006-10-03 14:34:00 -0700876 if (!fl.oif)
877 fl.oif = sk->sk_bound_dev_if;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700878
Yang Hongyang9f690db2008-12-16 02:08:29 -0800879 if (!fl.oif)
880 fl.oif = np->sticky_pktinfo.ipi6_ifindex;
881
Brian Haley51953d52009-10-05 08:24:16 +0000882 fl.mark = sk->sk_mark;
883
Linus Torvalds1da177e2005-04-16 15:20:36 -0700884 if (msg->msg_controllen) {
885 opt = &opt_space;
886 memset(opt, 0, sizeof(struct ipv6_txoptions));
887 opt->tot_len = sizeof(*opt);
888
YOSHIFUJI Hideaki91e19082008-06-04 13:02:49 +0900889 err = datagram_send_ctl(sock_net(sk), msg, &fl, opt, &hlimit, &tclass);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700890 if (err < 0) {
891 fl6_sock_release(flowlabel);
892 return err;
893 }
Herbert Xu132a55f2006-10-03 14:34:00 -0700894 if ((fl.fl6_flowlabel&IPV6_FLOWLABEL_MASK) && !flowlabel) {
895 flowlabel = fl6_sock_lookup(sk, fl.fl6_flowlabel);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700896 if (flowlabel == NULL)
897 return -EINVAL;
898 }
899 if (!(opt->opt_nflen|opt->opt_flen))
900 opt = NULL;
Mitsuru KANDA987905d2005-09-18 00:30:08 -0700901 connected = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700902 }
903 if (opt == NULL)
904 opt = np->opt;
YOSHIFUJI Hideakidf9890c2005-11-20 12:23:18 +0900905 if (flowlabel)
906 opt = fl6_merge_options(&opt_space, flowlabel, opt);
907 opt = ipv6_fixup_options(&opt_space, opt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700908
Gerrit Renkerba4e58e2006-11-27 11:10:57 -0800909 fl.proto = sk->sk_protocol;
Brian Haley876c7f42008-04-11 00:38:24 -0400910 if (!ipv6_addr_any(daddr))
911 ipv6_addr_copy(&fl.fl6_dst, daddr);
912 else
913 fl.fl6_dst.s6_addr[15] = 0x1; /* :: means loopback (BSD'ism) */
Herbert Xu132a55f2006-10-03 14:34:00 -0700914 if (ipv6_addr_any(&fl.fl6_src) && !ipv6_addr_any(&np->saddr))
915 ipv6_addr_copy(&fl.fl6_src, &np->saddr);
Eric Dumazetc720c7e2009-10-15 06:30:45 +0000916 fl.fl_ip_sport = inet->inet_sport;
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900917
Linus Torvalds1da177e2005-04-16 15:20:36 -0700918 /* merge ip6_build_xmit from ip6_output */
919 if (opt && opt->srcrt) {
920 struct rt0_hdr *rt0 = (struct rt0_hdr *) opt->srcrt;
Herbert Xu132a55f2006-10-03 14:34:00 -0700921 ipv6_addr_copy(&final, &fl.fl6_dst);
922 ipv6_addr_copy(&fl.fl6_dst, rt0->addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700923 final_p = &final;
Mitsuru KANDA987905d2005-09-18 00:30:08 -0700924 connected = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700925 }
926
Herbert Xu132a55f2006-10-03 14:34:00 -0700927 if (!fl.oif && ipv6_addr_is_multicast(&fl.fl6_dst)) {
928 fl.oif = np->mcast_oif;
Mitsuru KANDA987905d2005-09-18 00:30:08 -0700929 connected = 0;
930 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700931
Herbert Xu132a55f2006-10-03 14:34:00 -0700932 security_sk_classify_flow(sk, &fl);
Venkat Yekkiralabeb8d132006-08-04 23:12:42 -0700933
Herbert Xu132a55f2006-10-03 14:34:00 -0700934 err = ip6_sk_dst_lookup(sk, &dst, &fl);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700935 if (err)
936 goto out;
937 if (final_p)
Herbert Xu132a55f2006-10-03 14:34:00 -0700938 ipv6_addr_copy(&fl.fl6_dst, final_p);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700939
Alexey Dobriyan52479b62008-11-25 17:35:18 -0800940 err = __xfrm_lookup(sock_net(sk), &dst, &fl, sk, XFRM_LOOKUP_WAIT);
941 if (err < 0) {
David S. Miller14e50e52007-05-24 18:17:54 -0700942 if (err == -EREMOTE)
943 err = ip6_dst_blackhole(sk, &dst, &fl);
944 if (err < 0)
945 goto out;
946 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700947
948 if (hlimit < 0) {
Herbert Xu132a55f2006-10-03 14:34:00 -0700949 if (ipv6_addr_is_multicast(&fl.fl6_dst))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700950 hlimit = np->mcast_hops;
951 else
952 hlimit = np->hop_limit;
953 if (hlimit < 0)
YOSHIFUJI Hideaki6b75d092008-03-10 06:00:30 -0400954 hlimit = ip6_dst_hoplimit(dst);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700955 }
956
Gerrit Renkere651f032009-08-09 08:12:48 +0000957 if (tclass < 0)
YOSHIFUJI Hideaki41a1f8e2005-09-08 10:19:03 +0900958 tclass = np->tclass;
YOSHIFUJI Hideaki41a1f8e2005-09-08 10:19:03 +0900959
Linus Torvalds1da177e2005-04-16 15:20:36 -0700960 if (msg->msg_flags&MSG_CONFIRM)
961 goto do_confirm;
962back_from_confirm:
963
964 lock_sock(sk);
965 if (unlikely(up->pending)) {
966 /* The socket is already corked while preparing it. */
967 /* ... which is an evident application bug. --ANK */
968 release_sock(sk);
969
Patrick McHardy64ce2072005-08-09 20:50:53 -0700970 LIMIT_NETDEBUG(KERN_DEBUG "udp cork app bug 2\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700971 err = -EINVAL;
972 goto out;
973 }
974
975 up->pending = AF_INET6;
976
977do_append_data:
978 up->len += ulen;
Gerrit Renkerba4e58e2006-11-27 11:10:57 -0800979 getfrag = is_udplite ? udplite_getfrag : ip_generic_getfrag;
980 err = ip6_append_data(sk, getfrag, msg->msg_iov, ulen,
Herbert Xu132a55f2006-10-03 14:34:00 -0700981 sizeof(struct udphdr), hlimit, tclass, opt, &fl,
YOSHIFUJI Hideaki41a1f8e2005-09-08 10:19:03 +0900982 (struct rt6_info*)dst,
983 corkreq ? msg->msg_flags|MSG_MORE : msg->msg_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700984 if (err)
985 udp_v6_flush_pending_frames(sk);
986 else if (!corkreq)
Gerrit Renker4c0a6cb2006-11-27 09:29:59 -0800987 err = udp_v6_push_pending_frames(sk);
Herbert Xu1e0c14f2006-10-03 14:35:49 -0700988 else if (unlikely(skb_queue_empty(&sk->sk_write_queue)))
989 up->pending = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700990
David S. Millera5e7c212005-10-03 14:21:58 -0700991 if (dst) {
992 if (connected) {
993 ip6_dst_store(sk, dst,
Herbert Xu132a55f2006-10-03 14:34:00 -0700994 ipv6_addr_equal(&fl.fl6_dst, &np->daddr) ?
YOSHIFUJI Hideaki8e1ef0a2006-08-29 17:15:09 -0700995 &np->daddr : NULL,
996#ifdef CONFIG_IPV6_SUBTREES
Herbert Xu132a55f2006-10-03 14:34:00 -0700997 ipv6_addr_equal(&fl.fl6_src, &np->saddr) ?
YOSHIFUJI Hideaki8e1ef0a2006-08-29 17:15:09 -0700998 &np->saddr :
999#endif
1000 NULL);
David S. Millera5e7c212005-10-03 14:21:58 -07001001 } else {
1002 dst_release(dst);
1003 }
YOSHIFUJI Hideakia3c96082008-06-04 01:30:25 +09001004 dst = NULL;
David S. Millera5e7c212005-10-03 14:21:58 -07001005 }
1006
Linus Torvalds1da177e2005-04-16 15:20:36 -07001007 if (err > 0)
1008 err = np->recverr ? net_xmit_errno(err) : 0;
1009 release_sock(sk);
1010out:
YOSHIFUJI Hideakia3c96082008-06-04 01:30:25 +09001011 dst_release(dst);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001012 fl6_sock_release(flowlabel);
YOSHIFUJI Hideakicd562c92007-09-14 17:15:01 -07001013 if (!err)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001014 return len;
David S. Millera18135e2006-08-15 00:00:09 -07001015 /*
1016 * ENOBUFS = no kernel mem, SOCK_NOSPACE = no sndbuf space. Reporting
1017 * ENOBUFS might not be good (it's not tunable per se), but otherwise
1018 * we don't have a good statistic (IpOutDiscards but it can be too many
1019 * things). We could add another new stat but at least for now that
1020 * seems like overkill.
1021 */
1022 if (err == -ENOBUFS || test_bit(SOCK_NOSPACE, &sk->sk_socket->flags)) {
Pavel Emelyanov235b9f72008-07-05 21:19:20 -07001023 UDP6_INC_STATS_USER(sock_net(sk),
1024 UDP_MIB_SNDBUFERRORS, is_udplite);
David S. Millera18135e2006-08-15 00:00:09 -07001025 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001026 return err;
1027
1028do_confirm:
1029 dst_confirm(dst);
1030 if (!(msg->msg_flags&MSG_PROBE) || len)
1031 goto back_from_confirm;
1032 err = 0;
1033 goto out;
1034}
1035
Brian Haley7d06b2e2008-06-14 17:04:49 -07001036void udpv6_destroy_sock(struct sock *sk)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001037{
1038 lock_sock(sk);
1039 udp_v6_flush_pending_frames(sk);
1040 release_sock(sk);
1041
1042 inet6_destroy_sock(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001043}
1044
1045/*
1046 * Socket option code for UDP
1047 */
Gerrit Renkerba4e58e2006-11-27 11:10:57 -08001048int udpv6_setsockopt(struct sock *sk, int level, int optname,
David S. Millerb7058842009-09-30 16:12:20 -07001049 char __user *optval, unsigned int optlen)
Dmitry Mishin3fdadf72006-03-20 22:45:21 -08001050{
David S. Millerdb8dac22008-03-06 16:22:02 -08001051 if (level == SOL_UDP || level == SOL_UDPLITE)
Gerrit Renker4c0a6cb2006-11-27 09:29:59 -08001052 return udp_lib_setsockopt(sk, level, optname, optval, optlen,
1053 udp_v6_push_pending_frames);
Gerrit Renkerba4e58e2006-11-27 11:10:57 -08001054 return ipv6_setsockopt(sk, level, optname, optval, optlen);
Dmitry Mishin3fdadf72006-03-20 22:45:21 -08001055}
1056
1057#ifdef CONFIG_COMPAT
Gerrit Renkerba4e58e2006-11-27 11:10:57 -08001058int compat_udpv6_setsockopt(struct sock *sk, int level, int optname,
David S. Millerb7058842009-09-30 16:12:20 -07001059 char __user *optval, unsigned int optlen)
Dmitry Mishin3fdadf72006-03-20 22:45:21 -08001060{
David S. Millerdb8dac22008-03-06 16:22:02 -08001061 if (level == SOL_UDP || level == SOL_UDPLITE)
Gerrit Renker4c0a6cb2006-11-27 09:29:59 -08001062 return udp_lib_setsockopt(sk, level, optname, optval, optlen,
1063 udp_v6_push_pending_frames);
Gerrit Renkerba4e58e2006-11-27 11:10:57 -08001064 return compat_ipv6_setsockopt(sk, level, optname, optval, optlen);
Dmitry Mishin3fdadf72006-03-20 22:45:21 -08001065}
1066#endif
1067
Gerrit Renkerba4e58e2006-11-27 11:10:57 -08001068int udpv6_getsockopt(struct sock *sk, int level, int optname,
1069 char __user *optval, int __user *optlen)
Dmitry Mishin3fdadf72006-03-20 22:45:21 -08001070{
David S. Millerdb8dac22008-03-06 16:22:02 -08001071 if (level == SOL_UDP || level == SOL_UDPLITE)
Gerrit Renker4c0a6cb2006-11-27 09:29:59 -08001072 return udp_lib_getsockopt(sk, level, optname, optval, optlen);
Gerrit Renkerba4e58e2006-11-27 11:10:57 -08001073 return ipv6_getsockopt(sk, level, optname, optval, optlen);
Dmitry Mishin3fdadf72006-03-20 22:45:21 -08001074}
1075
1076#ifdef CONFIG_COMPAT
Gerrit Renkerba4e58e2006-11-27 11:10:57 -08001077int compat_udpv6_getsockopt(struct sock *sk, int level, int optname,
1078 char __user *optval, int __user *optlen)
Dmitry Mishin3fdadf72006-03-20 22:45:21 -08001079{
David S. Millerdb8dac22008-03-06 16:22:02 -08001080 if (level == SOL_UDP || level == SOL_UDPLITE)
Gerrit Renker4c0a6cb2006-11-27 09:29:59 -08001081 return udp_lib_getsockopt(sk, level, optname, optval, optlen);
Gerrit Renkerba4e58e2006-11-27 11:10:57 -08001082 return compat_ipv6_getsockopt(sk, level, optname, optval, optlen);
Dmitry Mishin3fdadf72006-03-20 22:45:21 -08001083}
1084#endif
1085
Sridhar Samudralaba735422009-07-09 08:10:04 +00001086static int udp6_ufo_send_check(struct sk_buff *skb)
1087{
1088 struct ipv6hdr *ipv6h;
1089 struct udphdr *uh;
1090
1091 if (!pskb_may_pull(skb, sizeof(*uh)))
1092 return -EINVAL;
1093
1094 ipv6h = ipv6_hdr(skb);
1095 uh = udp_hdr(skb);
1096
1097 uh->check = ~csum_ipv6_magic(&ipv6h->saddr, &ipv6h->daddr, skb->len,
1098 IPPROTO_UDP, 0);
1099 skb->csum_start = skb_transport_header(skb) - skb->head;
1100 skb->csum_offset = offsetof(struct udphdr, check);
1101 skb->ip_summed = CHECKSUM_PARTIAL;
1102 return 0;
1103}
1104
1105static struct sk_buff *udp6_ufo_fragment(struct sk_buff *skb, int features)
1106{
1107 struct sk_buff *segs = ERR_PTR(-EINVAL);
1108 unsigned int mss;
1109 unsigned int unfrag_ip6hlen, unfrag_len;
1110 struct frag_hdr *fptr;
1111 u8 *mac_start, *prevhdr;
1112 u8 nexthdr;
1113 u8 frag_hdr_sz = sizeof(struct frag_hdr);
1114 int offset;
1115 __wsum csum;
1116
1117 mss = skb_shinfo(skb)->gso_size;
1118 if (unlikely(skb->len <= mss))
1119 goto out;
1120
1121 if (skb_gso_ok(skb, features | NETIF_F_GSO_ROBUST)) {
1122 /* Packet is from an untrusted source, reset gso_segs. */
1123 int type = skb_shinfo(skb)->gso_type;
1124
1125 if (unlikely(type & ~(SKB_GSO_UDP | SKB_GSO_DODGY) ||
1126 !(type & (SKB_GSO_UDP))))
1127 goto out;
1128
1129 skb_shinfo(skb)->gso_segs = DIV_ROUND_UP(skb->len, mss);
1130
1131 segs = NULL;
1132 goto out;
1133 }
1134
1135 /* Do software UFO. Complete and fill in the UDP checksum as HW cannot
1136 * do checksum of UDP packets sent as multiple IP fragments.
1137 */
1138 offset = skb->csum_start - skb_headroom(skb);
1139 csum = skb_checksum(skb, offset, skb->len- offset, 0);
1140 offset += skb->csum_offset;
1141 *(__sum16 *)(skb->data + offset) = csum_fold(csum);
1142 skb->ip_summed = CHECKSUM_NONE;
1143
1144 /* Check if there is enough headroom to insert fragment header. */
1145 if ((skb_headroom(skb) < frag_hdr_sz) &&
1146 pskb_expand_head(skb, frag_hdr_sz, 0, GFP_ATOMIC))
1147 goto out;
1148
1149 /* Find the unfragmentable header and shift it left by frag_hdr_sz
1150 * bytes to insert fragment header.
1151 */
1152 unfrag_ip6hlen = ip6_find_1stfragopt(skb, &prevhdr);
1153 nexthdr = *prevhdr;
1154 *prevhdr = NEXTHDR_FRAGMENT;
1155 unfrag_len = skb_network_header(skb) - skb_mac_header(skb) +
1156 unfrag_ip6hlen;
1157 mac_start = skb_mac_header(skb);
1158 memmove(mac_start-frag_hdr_sz, mac_start, unfrag_len);
1159
1160 skb->mac_header -= frag_hdr_sz;
1161 skb->network_header -= frag_hdr_sz;
1162
1163 fptr = (struct frag_hdr *)(skb_network_header(skb) + unfrag_ip6hlen);
1164 fptr->nexthdr = nexthdr;
1165 fptr->reserved = 0;
1166 ipv6_select_ident(fptr);
1167
1168 /* Fragment the skb. ipv6 header and the remaining fields of the
1169 * fragment header are updated in ipv6_gso_segment()
1170 */
1171 segs = skb_segment(skb, features);
1172
1173out:
1174 return segs;
1175}
1176
Alexey Dobriyan41135cc2009-09-14 12:22:28 +00001177static const struct inet6_protocol udpv6_protocol = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001178 .handler = udpv6_rcv,
1179 .err_handler = udpv6_err,
Sridhar Samudralaba735422009-07-09 08:10:04 +00001180 .gso_send_check = udp6_ufo_send_check,
1181 .gso_segment = udp6_ufo_fragment,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001182 .flags = INET6_PROTO_NOPOLICY|INET6_PROTO_FINAL,
1183};
1184
1185/* ------------------------------------------------------------------------ */
1186#ifdef CONFIG_PROC_FS
1187
1188static void udp6_sock_seq_show(struct seq_file *seq, struct sock *sp, int bucket)
1189{
1190 struct inet_sock *inet = inet_sk(sp);
1191 struct ipv6_pinfo *np = inet6_sk(sp);
1192 struct in6_addr *dest, *src;
1193 __u16 destp, srcp;
1194
1195 dest = &np->daddr;
1196 src = &np->rcv_saddr;
Eric Dumazetc720c7e2009-10-15 06:30:45 +00001197 destp = ntohs(inet->inet_dport);
1198 srcp = ntohs(inet->inet_sport);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001199 seq_printf(seq,
Eric Dumazetf86dcc52009-10-07 00:37:59 +00001200 "%5d: %08X%08X%08X%08X:%04X %08X%08X%08X%08X:%04X "
Eric Dumazetcb61cb92008-06-17 21:04:56 -07001201 "%02X %08X:%08X %02X:%08lX %08X %5d %8d %lu %d %p %d\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001202 bucket,
1203 src->s6_addr32[0], src->s6_addr32[1],
1204 src->s6_addr32[2], src->s6_addr32[3], srcp,
1205 dest->s6_addr32[0], dest->s6_addr32[1],
1206 dest->s6_addr32[2], dest->s6_addr32[3], destp,
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09001207 sp->sk_state,
Eric Dumazet31e6d362009-06-17 19:05:41 -07001208 sk_wmem_alloc_get(sp),
1209 sk_rmem_alloc_get(sp),
Linus Torvalds1da177e2005-04-16 15:20:36 -07001210 0, 0L, 0,
1211 sock_i_uid(sp), 0,
1212 sock_i_ino(sp),
Eric Dumazetcb61cb92008-06-17 21:04:56 -07001213 atomic_read(&sp->sk_refcnt), sp,
1214 atomic_read(&sp->sk_drops));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001215}
1216
Gerrit Renkerba4e58e2006-11-27 11:10:57 -08001217int udp6_seq_show(struct seq_file *seq, void *v)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001218{
1219 if (v == SEQ_START_TOKEN)
1220 seq_printf(seq,
1221 " sl "
1222 "local_address "
1223 "remote_address "
1224 "st tx_queue rx_queue tr tm->when retrnsmt"
Eric Dumazetcb61cb92008-06-17 21:04:56 -07001225 " uid timeout inode ref pointer drops\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001226 else
1227 udp6_sock_seq_show(seq, v, ((struct udp_iter_state *)seq->private)->bucket);
1228 return 0;
1229}
1230
Linus Torvalds1da177e2005-04-16 15:20:36 -07001231static struct udp_seq_afinfo udp6_seq_afinfo = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001232 .name = "udp6",
1233 .family = AF_INET6,
Eric Dumazet645ca702008-10-29 01:41:45 -07001234 .udp_table = &udp_table,
Denis V. Lunev4ad96d32008-03-28 18:25:53 -07001235 .seq_fops = {
1236 .owner = THIS_MODULE,
1237 },
Denis V. Lunevdda61922008-03-28 18:24:26 -07001238 .seq_ops = {
1239 .show = udp6_seq_show,
1240 },
Linus Torvalds1da177e2005-04-16 15:20:36 -07001241};
1242
Daniel Lezcano0c96d8c2008-03-21 04:14:17 -07001243int udp6_proc_init(struct net *net)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001244{
Daniel Lezcano0c96d8c2008-03-21 04:14:17 -07001245 return udp_proc_register(net, &udp6_seq_afinfo);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001246}
1247
Daniel Lezcano0c96d8c2008-03-21 04:14:17 -07001248void udp6_proc_exit(struct net *net) {
1249 udp_proc_unregister(net, &udp6_seq_afinfo);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001250}
1251#endif /* CONFIG_PROC_FS */
1252
1253/* ------------------------------------------------------------------------ */
1254
1255struct proto udpv6_prot = {
Arnaldo Carvalho de Melo543d9cf2006-03-20 22:48:35 -08001256 .name = "UDPv6",
1257 .owner = THIS_MODULE,
Gerrit Renkerba4e58e2006-11-27 11:10:57 -08001258 .close = udp_lib_close,
Arnaldo Carvalho de Melo543d9cf2006-03-20 22:48:35 -08001259 .connect = ip6_datagram_connect,
1260 .disconnect = udp_disconnect,
1261 .ioctl = udp_ioctl,
1262 .destroy = udpv6_destroy_sock,
1263 .setsockopt = udpv6_setsockopt,
1264 .getsockopt = udpv6_getsockopt,
1265 .sendmsg = udpv6_sendmsg,
1266 .recvmsg = udpv6_recvmsg,
1267 .backlog_rcv = udpv6_queue_rcv_skb,
Gerrit Renkerba4e58e2006-11-27 11:10:57 -08001268 .hash = udp_lib_hash,
1269 .unhash = udp_lib_unhash,
Arnaldo Carvalho de Melo543d9cf2006-03-20 22:48:35 -08001270 .get_port = udp_v6_get_port,
Hideo Aoki95766ff2007-12-31 00:29:24 -08001271 .memory_allocated = &udp_memory_allocated,
1272 .sysctl_mem = sysctl_udp_mem,
1273 .sysctl_wmem = &sysctl_udp_wmem_min,
1274 .sysctl_rmem = &sysctl_udp_rmem_min,
Arnaldo Carvalho de Melo543d9cf2006-03-20 22:48:35 -08001275 .obj_size = sizeof(struct udp6_sock),
Eric Dumazet271b72c2008-10-29 02:11:14 -07001276 .slab_flags = SLAB_DESTROY_BY_RCU,
Eric Dumazet645ca702008-10-29 01:41:45 -07001277 .h.udp_table = &udp_table,
Dmitry Mishin3fdadf72006-03-20 22:45:21 -08001278#ifdef CONFIG_COMPAT
Arnaldo Carvalho de Melo543d9cf2006-03-20 22:48:35 -08001279 .compat_setsockopt = compat_udpv6_setsockopt,
1280 .compat_getsockopt = compat_udpv6_getsockopt,
Dmitry Mishin3fdadf72006-03-20 22:45:21 -08001281#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001282};
1283
Linus Torvalds1da177e2005-04-16 15:20:36 -07001284static struct inet_protosw udpv6_protosw = {
1285 .type = SOCK_DGRAM,
1286 .protocol = IPPROTO_UDP,
1287 .prot = &udpv6_prot,
1288 .ops = &inet6_dgram_ops,
1289 .capability =-1,
1290 .no_check = UDP_CSUM_DEFAULT,
1291 .flags = INET_PROTOSW_PERMANENT,
1292};
1293
1294
Daniel Lezcano7f4e4862007-12-11 02:25:35 -08001295int __init udpv6_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001296{
Daniel Lezcano7f4e4862007-12-11 02:25:35 -08001297 int ret;
1298
1299 ret = inet6_add_protocol(&udpv6_protocol, IPPROTO_UDP);
1300 if (ret)
1301 goto out;
1302
1303 ret = inet6_register_protosw(&udpv6_protosw);
1304 if (ret)
1305 goto out_udpv6_protocol;
1306out:
1307 return ret;
1308
1309out_udpv6_protocol:
1310 inet6_del_protocol(&udpv6_protocol, IPPROTO_UDP);
1311 goto out;
1312}
1313
Daniel Lezcano09f77092007-12-13 05:34:58 -08001314void udpv6_exit(void)
Daniel Lezcano7f4e4862007-12-11 02:25:35 -08001315{
1316 inet6_unregister_protosw(&udpv6_protosw);
1317 inet6_del_protocol(&udpv6_protocol, IPPROTO_UDP);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001318}