blob: 3ee28700de4c75d079c174fd359ce8381b91c655 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * RAW sockets for 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 * Adapted from linux/net/ipv4/raw.c
9 *
Linus Torvalds1da177e2005-04-16 15:20:36 -070010 * Fixes:
11 * Hideaki YOSHIFUJI : sin6_scope_id support
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +090012 * YOSHIFUJI,H.@USAGI : raw checksum (RFC2292(bis) compliance)
Linus Torvalds1da177e2005-04-16 15:20:36 -070013 * Kazunori MIYAZAWA @USAGI: change process style to use ip6_append_data
14 *
15 * This program is free software; you can redistribute it and/or
16 * modify it under the terms of the GNU General Public License
17 * as published by the Free Software Foundation; either version
18 * 2 of the License, or (at your option) any later version.
19 */
20
21#include <linux/errno.h>
22#include <linux/types.h>
23#include <linux/socket.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090024#include <linux/slab.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070025#include <linux/sockios.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070026#include <linux/net.h>
27#include <linux/in6.h>
28#include <linux/netdevice.h>
29#include <linux/if_arp.h>
30#include <linux/icmpv6.h>
31#include <linux/netfilter.h>
32#include <linux/netfilter_ipv6.h>
Herbert Xu3305b802005-12-13 23:16:37 -080033#include <linux/skbuff.h>
David S. Millere2d57762011-02-03 17:59:32 -080034#include <linux/compat.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070035#include <asm/uaccess.h>
36#include <asm/ioctls.h>
37
Eric W. Biederman457c4cb2007-09-12 12:01:34 +020038#include <net/net_namespace.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070039#include <net/ip.h>
40#include <net/sock.h>
41#include <net/snmp.h>
42
43#include <net/ipv6.h>
44#include <net/ndisc.h>
45#include <net/protocol.h>
46#include <net/ip6_route.h>
47#include <net/ip6_checksum.h>
48#include <net/addrconf.h>
49#include <net/transp_v6.h>
50#include <net/udp.h>
51#include <net/inet_common.h>
Arnaldo Carvalho de Meloc752f072005-08-09 20:08:28 -070052#include <net/tcp_states.h>
Masahide NAKAMURA59fbb3a2007-06-26 23:56:32 -070053#if defined(CONFIG_IPV6_MIP6) || defined(CONFIG_IPV6_MIP6_MODULE)
Masahide NAKAMURA7be96f72006-08-23 20:35:31 -070054#include <net/mip6.h>
55#endif
YOSHIFUJI Hideaki7bc570c2008-04-03 09:22:53 +090056#include <linux/mroute6.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070057
Pavel Emelyanovb673e4d2007-11-19 22:36:45 -080058#include <net/raw.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070059#include <net/rawv6.h>
60#include <net/xfrm.h>
61
62#include <linux/proc_fs.h>
63#include <linux/seq_file.h>
Paul Gortmakerbc3b2d72011-07-15 11:47:34 -040064#include <linux/export.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070065
Pavel Emelyanovb673e4d2007-11-19 22:36:45 -080066static struct raw_hashinfo raw_v6_hashinfo = {
Robert P. J. Day938b93a2008-03-18 00:59:23 -070067 .lock = __RW_LOCK_UNLOCKED(raw_v6_hashinfo.lock),
Pavel Emelyanovb673e4d2007-11-19 22:36:45 -080068};
Linus Torvalds1da177e2005-04-16 15:20:36 -070069
Pavel Emelyanovbe185882008-01-14 05:35:31 -080070static struct sock *__raw_v6_lookup(struct net *net, struct sock *sk,
Eric Dumazetb71d1d42011-04-22 04:53:02 +000071 unsigned short num, const struct in6_addr *loc_addr,
72 const struct in6_addr *rmt_addr, int dif)
Linus Torvalds1da177e2005-04-16 15:20:36 -070073{
74 struct hlist_node *node;
75 int is_multicast = ipv6_addr_is_multicast(loc_addr);
76
77 sk_for_each_from(sk, node)
Eric Dumazetc720c7e2009-10-15 06:30:45 +000078 if (inet_sk(sk)->inet_num == num) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070079 struct ipv6_pinfo *np = inet6_sk(sk);
80
YOSHIFUJI Hideaki878628f2008-03-26 03:57:35 +090081 if (!net_eq(sock_net(sk), net))
Pavel Emelyanovbe185882008-01-14 05:35:31 -080082 continue;
83
Linus Torvalds1da177e2005-04-16 15:20:36 -070084 if (!ipv6_addr_any(&np->daddr) &&
85 !ipv6_addr_equal(&np->daddr, rmt_addr))
86 continue;
87
Andrew McDonald0bd1b592005-08-09 19:44:42 -070088 if (sk->sk_bound_dev_if && sk->sk_bound_dev_if != dif)
89 continue;
90
Linus Torvalds1da177e2005-04-16 15:20:36 -070091 if (!ipv6_addr_any(&np->rcv_saddr)) {
92 if (ipv6_addr_equal(&np->rcv_saddr, loc_addr))
93 goto found;
94 if (is_multicast &&
95 inet6_mc_check(sk, loc_addr, rmt_addr))
96 goto found;
97 continue;
98 }
99 goto found;
100 }
101 sk = NULL;
102found:
103 return sk;
104}
105
106/*
107 * 0 - deliver
108 * 1 - block
109 */
Eric Dumazet7a20f9c2012-09-25 07:03:40 +0000110static int icmpv6_filter(const struct sock *sk, const struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700111{
Eric Dumazet7a20f9c2012-09-25 07:03:40 +0000112 struct icmp6hdr *_hdr;
113 const struct icmp6hdr *hdr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700114
Eric Dumazet7a20f9c2012-09-25 07:03:40 +0000115 hdr = skb_header_pointer(skb, skb_transport_offset(skb),
116 sizeof(_hdr), &_hdr);
117 if (hdr) {
118 const __u32 *data = &raw6_sk(sk)->filter.data[0];
119 unsigned int type = hdr->icmp6_type;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700120
Eric Dumazet7a20f9c2012-09-25 07:03:40 +0000121 return (data[type >> 5] & (1U << (type & 31))) != 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700122 }
Eric Dumazet7a20f9c2012-09-25 07:03:40 +0000123 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700124}
125
Masahide NAKAMURA59fbb3a2007-06-26 23:56:32 -0700126#if defined(CONFIG_IPV6_MIP6) || defined(CONFIG_IPV6_MIP6_MODULE)
Eric Dumazetf2eda472011-01-20 07:37:53 +0000127typedef int mh_filter_t(struct sock *sock, struct sk_buff *skb);
Masahide NAKAMURA59fbb3a2007-06-26 23:56:32 -0700128
Eric Dumazetf2eda472011-01-20 07:37:53 +0000129static mh_filter_t __rcu *mh_filter __read_mostly;
130
131int rawv6_mh_filter_register(mh_filter_t filter)
Masahide NAKAMURA59fbb3a2007-06-26 23:56:32 -0700132{
Eric Dumazetcf778b02012-01-12 04:41:32 +0000133 rcu_assign_pointer(mh_filter, filter);
Masahide NAKAMURA59fbb3a2007-06-26 23:56:32 -0700134 return 0;
135}
136EXPORT_SYMBOL(rawv6_mh_filter_register);
137
Eric Dumazetf2eda472011-01-20 07:37:53 +0000138int rawv6_mh_filter_unregister(mh_filter_t filter)
Masahide NAKAMURA59fbb3a2007-06-26 23:56:32 -0700139{
Stephen Hemmingera9b3cd72011-08-01 16:19:00 +0000140 RCU_INIT_POINTER(mh_filter, NULL);
Masahide NAKAMURA59fbb3a2007-06-26 23:56:32 -0700141 synchronize_rcu();
142 return 0;
143}
144EXPORT_SYMBOL(rawv6_mh_filter_unregister);
145
146#endif
147
Linus Torvalds1da177e2005-04-16 15:20:36 -0700148/*
149 * demultiplex raw sockets.
150 * (should consider queueing the skb in the sock receive_queue
151 * without calling rawv6.c)
152 *
153 * Caller owns SKB so we must make clones.
154 */
Pavel Emelyanov69d6da02007-11-19 22:35:57 -0800155static int ipv6_raw_deliver(struct sk_buff *skb, int nexthdr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700156{
Eric Dumazetb71d1d42011-04-22 04:53:02 +0000157 const struct in6_addr *saddr;
158 const struct in6_addr *daddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700159 struct sock *sk;
Patrick McHardyd13964f2005-08-09 19:45:02 -0700160 int delivered = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700161 __u8 hash;
Pavel Emelyanovbe185882008-01-14 05:35:31 -0800162 struct net *net;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700163
Arnaldo Carvalho de Melo0660e032007-04-25 17:54:47 -0700164 saddr = &ipv6_hdr(skb)->saddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700165 daddr = saddr + 1;
166
167 hash = nexthdr & (MAX_INET_PROTOS - 1);
168
Pavel Emelyanovb673e4d2007-11-19 22:36:45 -0800169 read_lock(&raw_v6_hashinfo.lock);
170 sk = sk_head(&raw_v6_hashinfo.ht[hash]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700171
Linus Torvalds1da177e2005-04-16 15:20:36 -0700172 if (sk == NULL)
173 goto out;
174
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +0900175 net = dev_net(skb->dev);
Pavel Emelyanovbe185882008-01-14 05:35:31 -0800176 sk = __raw_v6_lookup(net, sk, nexthdr, daddr, saddr, IP6CB(skb)->iif);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700177
178 while (sk) {
Masahide NAKAMURA7be96f72006-08-23 20:35:31 -0700179 int filtered;
180
Patrick McHardyd13964f2005-08-09 19:45:02 -0700181 delivered = 1;
Masahide NAKAMURA7be96f72006-08-23 20:35:31 -0700182 switch (nexthdr) {
183 case IPPROTO_ICMPV6:
184 filtered = icmpv6_filter(sk, skb);
185 break;
Masahide NAKAMURA59fbb3a2007-06-26 23:56:32 -0700186
187#if defined(CONFIG_IPV6_MIP6) || defined(CONFIG_IPV6_MIP6_MODULE)
Masahide NAKAMURA7be96f72006-08-23 20:35:31 -0700188 case IPPROTO_MH:
Masahide NAKAMURA59fbb3a2007-06-26 23:56:32 -0700189 {
Masahide NAKAMURA7be96f72006-08-23 20:35:31 -0700190 /* XXX: To validate MH only once for each packet,
191 * this is placed here. It should be after checking
192 * xfrm policy, however it doesn't. The checking xfrm
193 * policy is placed in rawv6_rcv() because it is
194 * required for each socket.
195 */
Eric Dumazetf2eda472011-01-20 07:37:53 +0000196 mh_filter_t *filter;
Masahide NAKAMURA59fbb3a2007-06-26 23:56:32 -0700197
198 filter = rcu_dereference(mh_filter);
Eric Dumazetf2eda472011-01-20 07:37:53 +0000199 filtered = filter ? (*filter)(sk, skb) : 0;
Masahide NAKAMURA7be96f72006-08-23 20:35:31 -0700200 break;
Masahide NAKAMURA59fbb3a2007-06-26 23:56:32 -0700201 }
Masahide NAKAMURA7be96f72006-08-23 20:35:31 -0700202#endif
203 default:
204 filtered = 0;
205 break;
206 }
207
208 if (filtered < 0)
209 break;
210 if (filtered == 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700211 struct sk_buff *clone = skb_clone(skb, GFP_ATOMIC);
212
213 /* Not releasing hash table! */
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800214 if (clone) {
215 nf_reset(clone);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700216 rawv6_rcv(sk, clone);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800217 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700218 }
Pavel Emelyanovbe185882008-01-14 05:35:31 -0800219 sk = __raw_v6_lookup(net, sk_next(sk), nexthdr, daddr, saddr,
YOSHIFUJI Hideaki2dac4b92005-09-01 17:44:49 -0700220 IP6CB(skb)->iif);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700221 }
222out:
Pavel Emelyanovb673e4d2007-11-19 22:36:45 -0800223 read_unlock(&raw_v6_hashinfo.lock);
Patrick McHardyd13964f2005-08-09 19:45:02 -0700224 return delivered;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700225}
226
Pavel Emelyanov69d6da02007-11-19 22:35:57 -0800227int raw6_local_deliver(struct sk_buff *skb, int nexthdr)
228{
229 struct sock *raw_sk;
230
Pavel Emelyanovb673e4d2007-11-19 22:36:45 -0800231 raw_sk = sk_head(&raw_v6_hashinfo.ht[nexthdr & (MAX_INET_PROTOS - 1)]);
Pavel Emelyanov69d6da02007-11-19 22:35:57 -0800232 if (raw_sk && !ipv6_raw_deliver(skb, nexthdr))
233 raw_sk = NULL;
234
235 return raw_sk != NULL;
236}
237
Linus Torvalds1da177e2005-04-16 15:20:36 -0700238/* This cleans up af_inet6 a bit. -DaveM */
239static int rawv6_bind(struct sock *sk, struct sockaddr *uaddr, int addr_len)
240{
241 struct inet_sock *inet = inet_sk(sk);
242 struct ipv6_pinfo *np = inet6_sk(sk);
243 struct sockaddr_in6 *addr = (struct sockaddr_in6 *) uaddr;
Al Viroe69a4ad2006-11-14 20:56:00 -0800244 __be32 v4addr = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700245 int addr_type;
246 int err;
247
248 if (addr_len < SIN6_LEN_RFC2133)
249 return -EINVAL;
250 addr_type = ipv6_addr_type(&addr->sin6_addr);
251
252 /* Raw sockets are IPv6 only */
253 if (addr_type == IPV6_ADDR_MAPPED)
Eric Dumazetfd5c0022009-11-06 07:01:17 +0000254 return -EADDRNOTAVAIL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700255
256 lock_sock(sk);
257
258 err = -EINVAL;
259 if (sk->sk_state != TCP_CLOSE)
260 goto out;
261
Eric Dumazetfd5c0022009-11-06 07:01:17 +0000262 rcu_read_lock();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700263 /* Check if the address belongs to the host. */
264 if (addr_type != IPV6_ADDR_ANY) {
265 struct net_device *dev = NULL;
266
267 if (addr_type & IPV6_ADDR_LINKLOCAL) {
268 if (addr_len >= sizeof(struct sockaddr_in6) &&
269 addr->sin6_scope_id) {
270 /* Override any existing binding, if another
271 * one is supplied by user.
272 */
273 sk->sk_bound_dev_if = addr->sin6_scope_id;
274 }
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900275
Linus Torvalds1da177e2005-04-16 15:20:36 -0700276 /* Binding to link-local address requires an interface */
277 if (!sk->sk_bound_dev_if)
Eric Dumazetfd5c0022009-11-06 07:01:17 +0000278 goto out_unlock;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700279
Eric Dumazetfd5c0022009-11-06 07:01:17 +0000280 err = -ENODEV;
281 dev = dev_get_by_index_rcu(sock_net(sk),
282 sk->sk_bound_dev_if);
283 if (!dev)
284 goto out_unlock;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700285 }
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900286
Linus Torvalds1da177e2005-04-16 15:20:36 -0700287 /* ipv4 addr of the socket is invalid. Only the
288 * unspecified and mapped address have a v4 equivalent.
289 */
290 v4addr = LOOPBACK4_IPV6;
291 if (!(addr_type & IPV6_ADDR_MULTICAST)) {
292 err = -EADDRNOTAVAIL;
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +0900293 if (!ipv6_chk_addr(sock_net(sk), &addr->sin6_addr,
Daniel Lezcanobfeade02008-01-10 22:43:18 -0800294 dev, 0)) {
Eric Dumazetfd5c0022009-11-06 07:01:17 +0000295 goto out_unlock;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700296 }
297 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700298 }
299
Eric Dumazetc720c7e2009-10-15 06:30:45 +0000300 inet->inet_rcv_saddr = inet->inet_saddr = v4addr;
Alexey Dobriyan4e3fd7a2011-11-21 03:39:03 +0000301 np->rcv_saddr = addr->sin6_addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700302 if (!(addr_type & IPV6_ADDR_MULTICAST))
Alexey Dobriyan4e3fd7a2011-11-21 03:39:03 +0000303 np->saddr = addr->sin6_addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700304 err = 0;
Eric Dumazetfd5c0022009-11-06 07:01:17 +0000305out_unlock:
306 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700307out:
308 release_sock(sk);
309 return err;
310}
311
Pavel Emelyanov69d6da02007-11-19 22:35:57 -0800312static void rawv6_err(struct sock *sk, struct sk_buff *skb,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700313 struct inet6_skb_parm *opt,
Brian Haleyd5fdd6b2009-06-23 04:31:07 -0700314 u8 type, u8 code, int offset, __be32 info)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700315{
316 struct inet_sock *inet = inet_sk(sk);
317 struct ipv6_pinfo *np = inet6_sk(sk);
318 int err;
319 int harderr;
320
321 /* Report error on raw socket, if:
322 1. User requested recverr.
323 2. Socket is connected (otherwise the error indication
324 is useless without recverr and error is hard.
325 */
326 if (!np->recverr && sk->sk_state != TCP_ESTABLISHED)
327 return;
328
329 harderr = icmpv6_err_convert(type, code, &err);
330 if (type == ICMPV6_PKT_TOOBIG)
331 harderr = (np->pmtudisc == IPV6_PMTUDISC_DO);
332
333 if (np->recverr) {
334 u8 *payload = skb->data;
335 if (!inet->hdrincl)
336 payload += offset;
337 ipv6_icmp_error(sk, skb, err, 0, ntohl(info), payload);
338 }
339
340 if (np->recverr || harderr) {
341 sk->sk_err = err;
342 sk->sk_error_report(sk);
343 }
344}
345
Pavel Emelyanov69d6da02007-11-19 22:35:57 -0800346void raw6_icmp_error(struct sk_buff *skb, int nexthdr,
Brian Haleyd5fdd6b2009-06-23 04:31:07 -0700347 u8 type, u8 code, int inner_offset, __be32 info)
Pavel Emelyanov69d6da02007-11-19 22:35:57 -0800348{
349 struct sock *sk;
350 int hash;
Eric Dumazetb71d1d42011-04-22 04:53:02 +0000351 const struct in6_addr *saddr, *daddr;
Pavel Emelyanovbe185882008-01-14 05:35:31 -0800352 struct net *net;
Pavel Emelyanov69d6da02007-11-19 22:35:57 -0800353
Pavel Emelyanovb673e4d2007-11-19 22:36:45 -0800354 hash = nexthdr & (RAW_HTABLE_SIZE - 1);
Pavel Emelyanov69d6da02007-11-19 22:35:57 -0800355
Pavel Emelyanovb673e4d2007-11-19 22:36:45 -0800356 read_lock(&raw_v6_hashinfo.lock);
357 sk = sk_head(&raw_v6_hashinfo.ht[hash]);
Pavel Emelyanov69d6da02007-11-19 22:35:57 -0800358 if (sk != NULL) {
YOSHIFUJI Hideaki05f175c2008-04-11 23:51:26 +0900359 /* Note: ipv6_hdr(skb) != skb->data */
Eric Dumazetb71d1d42011-04-22 04:53:02 +0000360 const struct ipv6hdr *ip6h = (const struct ipv6hdr *)skb->data;
YOSHIFUJI Hideaki05f175c2008-04-11 23:51:26 +0900361 saddr = &ip6h->saddr;
362 daddr = &ip6h->daddr;
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +0900363 net = dev_net(skb->dev);
Pavel Emelyanov69d6da02007-11-19 22:35:57 -0800364
Pavel Emelyanovbe185882008-01-14 05:35:31 -0800365 while ((sk = __raw_v6_lookup(net, sk, nexthdr, saddr, daddr,
Pavel Emelyanov69d6da02007-11-19 22:35:57 -0800366 IP6CB(skb)->iif))) {
367 rawv6_err(sk, skb, NULL, type, code,
368 inner_offset, info);
369 sk = sk_next(sk);
370 }
371 }
Pavel Emelyanovb673e4d2007-11-19 22:36:45 -0800372 read_unlock(&raw_v6_hashinfo.lock);
Pavel Emelyanov69d6da02007-11-19 22:35:57 -0800373}
374
Eric Dumazet33d480c2011-08-11 19:30:52 +0000375static inline int rawv6_rcv_skb(struct sock *sk, struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700376{
Eric Dumazet33d480c2011-08-11 19:30:52 +0000377 if ((raw6_sk(sk)->checksum || rcu_access_pointer(sk->sk_filter)) &&
Herbert Xufb286bb2005-11-10 13:01:24 -0800378 skb_checksum_complete(skb)) {
Wang Chena92aa312007-11-13 20:31:14 -0800379 atomic_inc(&sk->sk_drops);
Herbert Xufb286bb2005-11-10 13:01:24 -0800380 kfree_skb(skb);
Yang Hongyang3cc76ca2008-08-29 14:06:51 -0700381 return NET_RX_DROP;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700382 }
383
384 /* Charge it to the socket. */
Eric Dumazetd826eb12011-11-09 07:24:35 +0000385 skb_dst_drop(skb);
386 if (sock_queue_rcv_skb(sk, skb) < 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700387 kfree_skb(skb);
Yang Hongyang3cc76ca2008-08-29 14:06:51 -0700388 return NET_RX_DROP;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700389 }
390
391 return 0;
392}
393
394/*
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900395 * This is next to useless...
Linus Torvalds1da177e2005-04-16 15:20:36 -0700396 * if we demultiplex in network layer we don't need the extra call
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900397 * just to queue the skb...
398 * maybe we could have the network decide upon a hint if it
Linus Torvalds1da177e2005-04-16 15:20:36 -0700399 * should call raw_rcv for demultiplexing
400 */
401int rawv6_rcv(struct sock *sk, struct sk_buff *skb)
402{
403 struct inet_sock *inet = inet_sk(sk);
404 struct raw6_sock *rp = raw6_sk(sk);
405
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900406 if (!xfrm6_policy_check(sk, XFRM_POLICY_IN, skb)) {
Wang Chena92aa312007-11-13 20:31:14 -0800407 atomic_inc(&sk->sk_drops);
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900408 kfree_skb(skb);
409 return NET_RX_DROP;
410 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700411
412 if (!rp->checksum)
413 skb->ip_summed = CHECKSUM_UNNECESSARY;
414
Patrick McHardy84fa7932006-08-29 16:44:56 -0700415 if (skb->ip_summed == CHECKSUM_COMPLETE) {
Arnaldo Carvalho de Melod56f90a2007-04-10 20:50:43 -0700416 skb_postpull_rcsum(skb, skb_network_header(skb),
Arnaldo Carvalho de Melocfe1fc72007-03-16 17:26:39 -0300417 skb_network_header_len(skb));
Arnaldo Carvalho de Melo0660e032007-04-25 17:54:47 -0700418 if (!csum_ipv6_magic(&ipv6_hdr(skb)->saddr,
419 &ipv6_hdr(skb)->daddr,
Eric Dumazetc720c7e2009-10-15 06:30:45 +0000420 skb->len, inet->inet_num, skb->csum))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700421 skb->ip_summed = CHECKSUM_UNNECESSARY;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700422 }
Herbert Xu60476372007-04-09 11:59:39 -0700423 if (!skb_csum_unnecessary(skb))
Arnaldo Carvalho de Melo0660e032007-04-25 17:54:47 -0700424 skb->csum = ~csum_unfold(csum_ipv6_magic(&ipv6_hdr(skb)->saddr,
425 &ipv6_hdr(skb)->daddr,
426 skb->len,
Eric Dumazetc720c7e2009-10-15 06:30:45 +0000427 inet->inet_num, 0));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700428
429 if (inet->hdrincl) {
Herbert Xufb286bb2005-11-10 13:01:24 -0800430 if (skb_checksum_complete(skb)) {
Wang Chena92aa312007-11-13 20:31:14 -0800431 atomic_inc(&sk->sk_drops);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700432 kfree_skb(skb);
Yang Hongyang3cc76ca2008-08-29 14:06:51 -0700433 return NET_RX_DROP;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700434 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700435 }
436
437 rawv6_rcv_skb(sk, skb);
438 return 0;
439}
440
441
442/*
443 * This should be easy, if there is something there
444 * we return it, otherwise we block.
445 */
446
447static int rawv6_recvmsg(struct kiocb *iocb, struct sock *sk,
448 struct msghdr *msg, size_t len,
449 int noblock, int flags, int *addr_len)
450{
451 struct ipv6_pinfo *np = inet6_sk(sk);
452 struct sockaddr_in6 *sin6 = (struct sockaddr_in6 *)msg->msg_name;
453 struct sk_buff *skb;
454 size_t copied;
455 int err;
456
457 if (flags & MSG_OOB)
458 return -EOPNOTSUPP;
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900459
460 if (addr_len)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700461 *addr_len=sizeof(*sin6);
462
463 if (flags & MSG_ERRQUEUE)
464 return ipv6_recv_error(sk, msg, len);
465
Brian Haley4b340ae2010-04-23 11:26:09 +0000466 if (np->rxpmtu && np->rxopt.bits.rxpmtu)
467 return ipv6_recv_rxpmtu(sk, msg, len);
468
Linus Torvalds1da177e2005-04-16 15:20:36 -0700469 skb = skb_recv_datagram(sk, flags, noblock, &err);
470 if (!skb)
471 goto out;
472
473 copied = skb->len;
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900474 if (copied > len) {
475 copied = len;
476 msg->msg_flags |= MSG_TRUNC;
477 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700478
Herbert Xu60476372007-04-09 11:59:39 -0700479 if (skb_csum_unnecessary(skb)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700480 err = skb_copy_datagram_iovec(skb, 0, msg->msg_iov, copied);
481 } else if (msg->msg_flags&MSG_TRUNC) {
Herbert Xufb286bb2005-11-10 13:01:24 -0800482 if (__skb_checksum_complete(skb))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700483 goto csum_copy_err;
484 err = skb_copy_datagram_iovec(skb, 0, msg->msg_iov, copied);
485 } else {
486 err = skb_copy_and_csum_datagram_iovec(skb, 0, msg->msg_iov);
487 if (err == -EINVAL)
488 goto csum_copy_err;
489 }
490 if (err)
491 goto out_free;
492
493 /* Copy the address. */
494 if (sin6) {
495 sin6->sin6_family = AF_INET6;
Tetsuo Handaf59fc7f2006-07-25 17:05:35 -0700496 sin6->sin6_port = 0;
Alexey Dobriyan4e3fd7a2011-11-21 03:39:03 +0000497 sin6->sin6_addr = ipv6_hdr(skb)->saddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700498 sin6->sin6_flowinfo = 0;
499 sin6->sin6_scope_id = 0;
500 if (ipv6_addr_type(&sin6->sin6_addr) & IPV6_ADDR_LINKLOCAL)
501 sin6->sin6_scope_id = IP6CB(skb)->iif;
502 }
503
Neil Horman3b885782009-10-12 13:26:31 -0700504 sock_recv_ts_and_drops(msg, sk, skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700505
506 if (np->rxopt.all)
507 datagram_recv_ctl(sk, msg, skb);
508
509 err = copied;
510 if (flags & MSG_TRUNC)
511 err = skb->len;
512
513out_free:
514 skb_free_datagram(sk, skb);
515out:
516 return err;
517
518csum_copy_err:
Herbert Xu3305b802005-12-13 23:16:37 -0800519 skb_kill_datagram(sk, skb, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700520
521 /* Error for blocking case is chosen to masquerade
522 as some normal condition.
523 */
524 err = (flags&MSG_DONTWAIT) ? -EAGAIN : -EHOSTUNREACH;
Herbert Xu3305b802005-12-13 23:16:37 -0800525 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700526}
527
David S. Miller4c9483b2011-03-12 16:22:43 -0500528static int rawv6_push_pending_frames(struct sock *sk, struct flowi6 *fl6,
Herbert Xu357b40a2005-04-19 22:30:14 -0700529 struct raw6_sock *rp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700530{
531 struct sk_buff *skb;
532 int err = 0;
Herbert Xu357b40a2005-04-19 22:30:14 -0700533 int offset;
534 int len;
Herbert Xu679a8732005-05-03 14:24:36 -0700535 int total_len;
Al Viro868c86b2006-11-14 21:35:48 -0800536 __wsum tmp_csum;
537 __sum16 csum;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700538
539 if (!rp->checksum)
540 goto send;
541
542 if ((skb = skb_peek(&sk->sk_write_queue)) == NULL)
543 goto out;
544
Herbert Xu357b40a2005-04-19 22:30:14 -0700545 offset = rp->offset;
Steffen Klassert299b0762011-10-11 01:43:33 +0000546 total_len = inet_sk(sk)->cork.base.length;
Herbert Xu679a8732005-05-03 14:24:36 -0700547 if (offset >= total_len - 1) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700548 err = -EINVAL;
Herbert Xu357b40a2005-04-19 22:30:14 -0700549 ip6_flush_pending_frames(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700550 goto out;
551 }
552
553 /* should be check HW csum miyazawa */
554 if (skb_queue_len(&sk->sk_write_queue) == 1) {
555 /*
556 * Only one fragment on the socket.
557 */
558 tmp_csum = skb->csum;
559 } else {
Herbert Xu357b40a2005-04-19 22:30:14 -0700560 struct sk_buff *csum_skb = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700561 tmp_csum = 0;
562
563 skb_queue_walk(&sk->sk_write_queue, skb) {
564 tmp_csum = csum_add(tmp_csum, skb->csum);
Herbert Xu357b40a2005-04-19 22:30:14 -0700565
566 if (csum_skb)
567 continue;
568
Arnaldo Carvalho de Meloea2ae172007-04-25 17:55:53 -0700569 len = skb->len - skb_transport_offset(skb);
Herbert Xu357b40a2005-04-19 22:30:14 -0700570 if (offset >= len) {
571 offset -= len;
572 continue;
573 }
574
575 csum_skb = skb;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700576 }
Herbert Xu357b40a2005-04-19 22:30:14 -0700577
578 skb = csum_skb;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700579 }
580
Arnaldo Carvalho de Meloea2ae172007-04-25 17:55:53 -0700581 offset += skb_transport_offset(skb);
Herbert Xu357b40a2005-04-19 22:30:14 -0700582 if (skb_copy_bits(skb, offset, &csum, 2))
583 BUG();
584
Linus Torvalds1da177e2005-04-16 15:20:36 -0700585 /* in case cksum was not initialized */
Herbert Xu357b40a2005-04-19 22:30:14 -0700586 if (unlikely(csum))
Al Viro5f92a732006-11-14 21:36:54 -0800587 tmp_csum = csum_sub(tmp_csum, csum_unfold(csum));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700588
David S. Miller4c9483b2011-03-12 16:22:43 -0500589 csum = csum_ipv6_magic(&fl6->saddr, &fl6->daddr,
590 total_len, fl6->flowi6_proto, tmp_csum);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700591
David S. Miller4c9483b2011-03-12 16:22:43 -0500592 if (csum == 0 && fl6->flowi6_proto == IPPROTO_UDP)
Al Virof6ab0282006-11-16 02:36:50 -0800593 csum = CSUM_MANGLED_0;
Herbert Xu357b40a2005-04-19 22:30:14 -0700594
Herbert Xu357b40a2005-04-19 22:30:14 -0700595 if (skb_store_bits(skb, offset, &csum, 2))
596 BUG();
597
Linus Torvalds1da177e2005-04-16 15:20:36 -0700598send:
599 err = ip6_push_pending_frames(sk);
600out:
601 return err;
602}
603
604static int rawv6_send_hdrinc(struct sock *sk, void *from, int length,
David S. Miller4c9483b2011-03-12 16:22:43 -0500605 struct flowi6 *fl6, struct dst_entry **dstp,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700606 unsigned int flags)
607{
Herbert Xu3320da82005-04-19 22:32:22 -0700608 struct ipv6_pinfo *np = inet6_sk(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700609 struct ipv6hdr *iph;
610 struct sk_buff *skb;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700611 int err;
Eric Dumazet1789a642010-06-03 22:23:57 +0000612 struct rt6_info *rt = (struct rt6_info *)*dstp;
Herbert Xua7ae1992011-11-18 02:20:04 +0000613 int hlen = LL_RESERVED_SPACE(rt->dst.dev);
614 int tlen = rt->dst.dev->needed_tailroom;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700615
Changli Gaod8d1f302010-06-10 23:31:35 -0700616 if (length > rt->dst.dev->mtu) {
David S. Miller4c9483b2011-03-12 16:22:43 -0500617 ipv6_local_error(sk, EMSGSIZE, fl6, rt->dst.dev->mtu);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700618 return -EMSGSIZE;
619 }
620 if (flags&MSG_PROBE)
621 goto out;
622
Johannes Bergf5184d22008-05-12 20:48:31 -0700623 skb = sock_alloc_send_skb(sk,
Herbert Xua7ae1992011-11-18 02:20:04 +0000624 length + hlen + tlen + 15,
Johannes Bergf5184d22008-05-12 20:48:31 -0700625 flags & MSG_DONTWAIT, &err);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700626 if (skb == NULL)
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900627 goto error;
Herbert Xua7ae1992011-11-18 02:20:04 +0000628 skb_reserve(skb, hlen);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700629
630 skb->priority = sk->sk_priority;
Laszlo Attila Toth4a19ec52008-01-30 19:08:16 -0800631 skb->mark = sk->sk_mark;
Changli Gaod8d1f302010-06-10 23:31:35 -0700632 skb_dst_set(skb, &rt->dst);
Eric Dumazet1789a642010-06-03 22:23:57 +0000633 *dstp = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700634
Arnaldo Carvalho de Melo1ced98e2007-03-10 19:57:15 -0300635 skb_put(skb, length);
636 skb_reset_network_header(skb);
Arnaldo Carvalho de Melo0660e032007-04-25 17:54:47 -0700637 iph = ipv6_hdr(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700638
639 skb->ip_summed = CHECKSUM_NONE;
640
Arnaldo Carvalho de Melob0e380b2007-04-10 21:21:55 -0700641 skb->transport_header = skb->network_header;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700642 err = memcpy_fromiovecend((void *)iph, from, 0, length);
643 if (err)
644 goto error_fault;
645
Neil Hormanedf391f2009-04-27 02:45:02 -0700646 IP6_UPD_PO_STATS(sock_net(sk), rt->rt6i_idev, IPSTATS_MIB_OUT, skb->len);
Jan Engelhardtb2e0b382010-03-23 04:09:07 +0100647 err = NF_HOOK(NFPROTO_IPV6, NF_INET_LOCAL_OUT, skb, NULL,
Changli Gaod8d1f302010-06-10 23:31:35 -0700648 rt->dst.dev, dst_output);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700649 if (err > 0)
Eric Dumazet6ce9e7b2009-09-02 18:05:33 -0700650 err = net_xmit_errno(err);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700651 if (err)
652 goto error;
653out:
654 return 0;
655
656error_fault:
657 err = -EFAULT;
658 kfree_skb(skb);
659error:
Denis V. Lunev3bd653c2008-10-08 10:54:51 -0700660 IP6_INC_STATS(sock_net(sk), rt->rt6i_idev, IPSTATS_MIB_OUTDISCARDS);
Eric Dumazet6ce9e7b2009-09-02 18:05:33 -0700661 if (err == -ENOBUFS && !np->recverr)
662 err = 0;
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900663 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700664}
665
David S. Miller4c9483b2011-03-12 16:22:43 -0500666static int rawv6_probe_proto_opt(struct flowi6 *fl6, struct msghdr *msg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700667{
668 struct iovec *iov;
669 u8 __user *type = NULL;
670 u8 __user *code = NULL;
Masahide NAKAMURA6e8f4d42006-08-23 20:36:47 -0700671 u8 len = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700672 int probed = 0;
673 int i;
674
675 if (!msg->msg_iov)
Heiko Carstensa27b58f2006-10-30 15:06:12 -0800676 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700677
678 for (i = 0; i < msg->msg_iovlen; i++) {
679 iov = &msg->msg_iov[i];
680 if (!iov)
681 continue;
682
David S. Miller4c9483b2011-03-12 16:22:43 -0500683 switch (fl6->flowi6_proto) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700684 case IPPROTO_ICMPV6:
685 /* check if one-byte field is readable or not. */
686 if (iov->iov_base && iov->iov_len < 1)
687 break;
688
689 if (!type) {
690 type = iov->iov_base;
691 /* check if code field is readable or not. */
692 if (iov->iov_len > 1)
693 code = type + 1;
694 } else if (!code)
695 code = iov->iov_base;
696
697 if (type && code) {
David S. Miller1958b852011-03-12 16:36:19 -0500698 if (get_user(fl6->fl6_icmp_type, type) ||
699 get_user(fl6->fl6_icmp_code, code))
Heiko Carstensa27b58f2006-10-30 15:06:12 -0800700 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700701 probed = 1;
702 }
703 break;
Masahide NAKAMURA6e8f4d42006-08-23 20:36:47 -0700704 case IPPROTO_MH:
705 if (iov->iov_base && iov->iov_len < 1)
706 break;
707 /* check if type field is readable or not. */
708 if (iov->iov_len > 2 - len) {
709 u8 __user *p = iov->iov_base;
David S. Miller1958b852011-03-12 16:36:19 -0500710 if (get_user(fl6->fl6_mh_type, &p[2 - len]))
Heiko Carstensa27b58f2006-10-30 15:06:12 -0800711 return -EFAULT;
Masahide NAKAMURA6e8f4d42006-08-23 20:36:47 -0700712 probed = 1;
713 } else
714 len += iov->iov_len;
715
716 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700717 default:
718 probed = 1;
719 break;
720 }
721 if (probed)
722 break;
723 }
Heiko Carstensa27b58f2006-10-30 15:06:12 -0800724 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700725}
726
727static int rawv6_sendmsg(struct kiocb *iocb, struct sock *sk,
728 struct msghdr *msg, size_t len)
729{
730 struct ipv6_txoptions opt_space;
731 struct sockaddr_in6 * sin6 = (struct sockaddr_in6 *) msg->msg_name;
Arnaud Ebalard20c59de2010-06-01 21:35:01 +0000732 struct in6_addr *daddr, *final_p, final;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700733 struct inet_sock *inet = inet_sk(sk);
734 struct ipv6_pinfo *np = inet6_sk(sk);
735 struct raw6_sock *rp = raw6_sk(sk);
736 struct ipv6_txoptions *opt = NULL;
737 struct ip6_flowlabel *flowlabel = NULL;
738 struct dst_entry *dst = NULL;
David S. Miller4c9483b2011-03-12 16:22:43 -0500739 struct flowi6 fl6;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700740 int addr_len = msg->msg_namelen;
741 int hlimit = -1;
YOSHIFUJI Hideaki41a1f8e2005-09-08 10:19:03 +0900742 int tclass = -1;
Brian Haley13b52cd2010-04-23 11:26:08 +0000743 int dontfrag = -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700744 u16 proto;
745 int err;
746
747 /* Rough check on arithmetic overflow,
YOSHIFUJI Hideakib59e1392007-03-30 14:45:35 -0700748 better check is made in ip6_append_data().
Linus Torvalds1da177e2005-04-16 15:20:36 -0700749 */
YOSHIFUJI Hideakib59e1392007-03-30 14:45:35 -0700750 if (len > INT_MAX)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700751 return -EMSGSIZE;
752
753 /* Mirror BSD error message compatibility */
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900754 if (msg->msg_flags & MSG_OOB)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700755 return -EOPNOTSUPP;
756
757 /*
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900758 * Get and verify the address.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700759 */
David S. Miller4c9483b2011-03-12 16:22:43 -0500760 memset(&fl6, 0, sizeof(fl6));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700761
David S. Miller4c9483b2011-03-12 16:22:43 -0500762 fl6.flowi6_mark = sk->sk_mark;
Laszlo Attila Toth4a19ec52008-01-30 19:08:16 -0800763
Linus Torvalds1da177e2005-04-16 15:20:36 -0700764 if (sin6) {
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900765 if (addr_len < SIN6_LEN_RFC2133)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700766 return -EINVAL;
767
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900768 if (sin6->sin6_family && sin6->sin6_family != AF_INET6)
Eric Dumazeta02cec22010-09-22 20:43:57 +0000769 return -EAFNOSUPPORT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700770
771 /* port is the proto value [0..255] carried in nexthdr */
772 proto = ntohs(sin6->sin6_port);
773
774 if (!proto)
Eric Dumazetc720c7e2009-10-15 06:30:45 +0000775 proto = inet->inet_num;
776 else if (proto != inet->inet_num)
Eric Dumazeta02cec22010-09-22 20:43:57 +0000777 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700778
779 if (proto > 255)
Eric Dumazeta02cec22010-09-22 20:43:57 +0000780 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700781
782 daddr = &sin6->sin6_addr;
783 if (np->sndflow) {
David S. Miller4c9483b2011-03-12 16:22:43 -0500784 fl6.flowlabel = sin6->sin6_flowinfo&IPV6_FLOWINFO_MASK;
785 if (fl6.flowlabel&IPV6_FLOWLABEL_MASK) {
786 flowlabel = fl6_sock_lookup(sk, fl6.flowlabel);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700787 if (flowlabel == NULL)
788 return -EINVAL;
789 daddr = &flowlabel->dst;
790 }
791 }
792
793 /*
794 * Otherwise it will be difficult to maintain
795 * sk->sk_dst_cache.
796 */
797 if (sk->sk_state == TCP_ESTABLISHED &&
798 ipv6_addr_equal(daddr, &np->daddr))
799 daddr = &np->daddr;
800
801 if (addr_len >= sizeof(struct sockaddr_in6) &&
802 sin6->sin6_scope_id &&
803 ipv6_addr_type(daddr)&IPV6_ADDR_LINKLOCAL)
David S. Miller4c9483b2011-03-12 16:22:43 -0500804 fl6.flowi6_oif = sin6->sin6_scope_id;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700805 } else {
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900806 if (sk->sk_state != TCP_ESTABLISHED)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700807 return -EDESTADDRREQ;
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900808
Eric Dumazetc720c7e2009-10-15 06:30:45 +0000809 proto = inet->inet_num;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700810 daddr = &np->daddr;
David S. Miller4c9483b2011-03-12 16:22:43 -0500811 fl6.flowlabel = np->flow_label;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700812 }
813
David S. Miller4c9483b2011-03-12 16:22:43 -0500814 if (fl6.flowi6_oif == 0)
815 fl6.flowi6_oif = sk->sk_bound_dev_if;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700816
817 if (msg->msg_controllen) {
818 opt = &opt_space;
819 memset(opt, 0, sizeof(struct ipv6_txoptions));
820 opt->tot_len = sizeof(struct ipv6_txoptions);
821
Maciej Żenczykowskiec0506d2011-08-28 12:35:31 +0000822 err = datagram_send_ctl(sock_net(sk), sk, msg, &fl6, opt,
823 &hlimit, &tclass, &dontfrag);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700824 if (err < 0) {
825 fl6_sock_release(flowlabel);
826 return err;
827 }
David S. Miller4c9483b2011-03-12 16:22:43 -0500828 if ((fl6.flowlabel&IPV6_FLOWLABEL_MASK) && !flowlabel) {
829 flowlabel = fl6_sock_lookup(sk, fl6.flowlabel);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700830 if (flowlabel == NULL)
831 return -EINVAL;
832 }
833 if (!(opt->opt_nflen|opt->opt_flen))
834 opt = NULL;
835 }
836 if (opt == NULL)
837 opt = np->opt;
YOSHIFUJI Hideakidf9890c2005-11-20 12:23:18 +0900838 if (flowlabel)
839 opt = fl6_merge_options(&opt_space, flowlabel, opt);
840 opt = ipv6_fixup_options(&opt_space, opt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700841
David S. Miller4c9483b2011-03-12 16:22:43 -0500842 fl6.flowi6_proto = proto;
843 err = rawv6_probe_proto_opt(&fl6, msg);
Heiko Carstensa27b58f2006-10-30 15:06:12 -0800844 if (err)
845 goto out;
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900846
Brian Haley876c7f42008-04-11 00:38:24 -0400847 if (!ipv6_addr_any(daddr))
Alexey Dobriyan4e3fd7a2011-11-21 03:39:03 +0000848 fl6.daddr = *daddr;
Brian Haley876c7f42008-04-11 00:38:24 -0400849 else
David S. Miller4c9483b2011-03-12 16:22:43 -0500850 fl6.daddr.s6_addr[15] = 0x1; /* :: means loopback (BSD'ism) */
851 if (ipv6_addr_any(&fl6.saddr) && !ipv6_addr_any(&np->saddr))
Alexey Dobriyan4e3fd7a2011-11-21 03:39:03 +0000852 fl6.saddr = np->saddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700853
David S. Miller4c9483b2011-03-12 16:22:43 -0500854 final_p = fl6_update_dst(&fl6, opt, &final);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700855
David S. Miller4c9483b2011-03-12 16:22:43 -0500856 if (!fl6.flowi6_oif && ipv6_addr_is_multicast(&fl6.daddr))
857 fl6.flowi6_oif = np->mcast_oif;
Erich E. Hooverc4062df2012-02-08 09:11:08 +0000858 else if (!fl6.flowi6_oif)
859 fl6.flowi6_oif = np->ucast_oif;
David S. Miller4c9483b2011-03-12 16:22:43 -0500860 security_sk_classify_flow(sk, flowi6_to_flowi(&fl6));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700861
David S. Miller4c9483b2011-03-12 16:22:43 -0500862 dst = ip6_dst_lookup_flow(sk, &fl6, final_p, true);
David S. Miller68d0c6d2011-03-01 13:19:07 -0800863 if (IS_ERR(dst)) {
864 err = PTR_ERR(dst);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700865 goto out;
David S. Miller14e50e52007-05-24 18:17:54 -0700866 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700867 if (hlimit < 0) {
David S. Miller4c9483b2011-03-12 16:22:43 -0500868 if (ipv6_addr_is_multicast(&fl6.daddr))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700869 hlimit = np->mcast_hops;
870 else
871 hlimit = np->hop_limit;
872 if (hlimit < 0)
YOSHIFUJI Hideaki6b75d092008-03-10 06:00:30 -0400873 hlimit = ip6_dst_hoplimit(dst);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700874 }
875
Gerrit Renkere651f032009-08-09 08:12:48 +0000876 if (tclass < 0)
YOSHIFUJI Hideakie012d512006-09-13 20:01:28 -0700877 tclass = np->tclass;
YOSHIFUJI Hideaki41a1f8e2005-09-08 10:19:03 +0900878
Brian Haley13b52cd2010-04-23 11:26:08 +0000879 if (dontfrag < 0)
880 dontfrag = np->dontfrag;
881
Linus Torvalds1da177e2005-04-16 15:20:36 -0700882 if (msg->msg_flags&MSG_CONFIRM)
883 goto do_confirm;
884
885back_from_confirm:
Eric Dumazet1789a642010-06-03 22:23:57 +0000886 if (inet->hdrincl)
David S. Miller4c9483b2011-03-12 16:22:43 -0500887 err = rawv6_send_hdrinc(sk, msg->msg_iov, len, &fl6, &dst, msg->msg_flags);
Eric Dumazet1789a642010-06-03 22:23:57 +0000888 else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700889 lock_sock(sk);
YOSHIFUJI Hideaki41a1f8e2005-09-08 10:19:03 +0900890 err = ip6_append_data(sk, ip_generic_getfrag, msg->msg_iov,
David S. Miller4c9483b2011-03-12 16:22:43 -0500891 len, 0, hlimit, tclass, opt, &fl6, (struct rt6_info*)dst,
Brian Haley13b52cd2010-04-23 11:26:08 +0000892 msg->msg_flags, dontfrag);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700893
894 if (err)
895 ip6_flush_pending_frames(sk);
896 else if (!(msg->msg_flags & MSG_MORE))
David S. Miller4c9483b2011-03-12 16:22:43 -0500897 err = rawv6_push_pending_frames(sk, &fl6, rp);
YOSHIFUJI Hideaki3ef9d942007-09-14 16:45:40 -0700898 release_sock(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700899 }
900done:
Nicolas DICHTEL6d3e85e2006-02-13 15:56:13 -0800901 dst_release(dst);
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900902out:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700903 fl6_sock_release(flowlabel);
904 return err<0?err:len;
905do_confirm:
906 dst_confirm(dst);
907 if (!(msg->msg_flags & MSG_PROBE) || len)
908 goto back_from_confirm;
909 err = 0;
910 goto done;
911}
912
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900913static int rawv6_seticmpfilter(struct sock *sk, int level, int optname,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700914 char __user *optval, int optlen)
915{
916 switch (optname) {
917 case ICMPV6_FILTER:
918 if (optlen > sizeof(struct icmp6_filter))
919 optlen = sizeof(struct icmp6_filter);
920 if (copy_from_user(&raw6_sk(sk)->filter, optval, optlen))
921 return -EFAULT;
922 return 0;
923 default:
924 return -ENOPROTOOPT;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -0700925 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700926
927 return 0;
928}
929
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900930static int rawv6_geticmpfilter(struct sock *sk, int level, int optname,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700931 char __user *optval, int __user *optlen)
932{
933 int len;
934
935 switch (optname) {
936 case ICMPV6_FILTER:
937 if (get_user(len, optlen))
938 return -EFAULT;
939 if (len < 0)
940 return -EINVAL;
941 if (len > sizeof(struct icmp6_filter))
942 len = sizeof(struct icmp6_filter);
943 if (put_user(len, optlen))
944 return -EFAULT;
945 if (copy_to_user(optval, &raw6_sk(sk)->filter, len))
946 return -EFAULT;
947 return 0;
948 default:
949 return -ENOPROTOOPT;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -0700950 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700951
952 return 0;
953}
954
955
Dmitry Mishin3fdadf72006-03-20 22:45:21 -0800956static int do_rawv6_setsockopt(struct sock *sk, int level, int optname,
David S. Millerb7058842009-09-30 16:12:20 -0700957 char __user *optval, unsigned int optlen)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700958{
959 struct raw6_sock *rp = raw6_sk(sk);
960 int val;
961
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900962 if (get_user(val, (int __user *)optval))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700963 return -EFAULT;
964
965 switch (optname) {
Joe Perches207ec0a2011-07-01 09:43:08 +0000966 case IPV6_CHECKSUM:
967 if (inet_sk(sk)->inet_num == IPPROTO_ICMPV6 &&
968 level == IPPROTO_IPV6) {
969 /*
970 * RFC3542 tells that IPV6_CHECKSUM socket
971 * option in the IPPROTO_IPV6 level is not
972 * allowed on ICMPv6 sockets.
973 * If you want to set it, use IPPROTO_RAW
974 * level IPV6_CHECKSUM socket option
975 * (Linux extension).
976 */
977 return -EINVAL;
978 }
YOSHIFUJI Hideaki1a98d052008-04-24 21:30:38 -0700979
Joe Perches207ec0a2011-07-01 09:43:08 +0000980 /* You may get strange result with a positive odd offset;
981 RFC2292bis agrees with me. */
982 if (val > 0 && (val&1))
983 return -EINVAL;
984 if (val < 0) {
985 rp->checksum = 0;
986 } else {
987 rp->checksum = 1;
988 rp->offset = val;
989 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700990
Joe Perches207ec0a2011-07-01 09:43:08 +0000991 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700992
Joe Perches207ec0a2011-07-01 09:43:08 +0000993 default:
994 return -ENOPROTOOPT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700995 }
996}
997
Dmitry Mishin3fdadf72006-03-20 22:45:21 -0800998static int rawv6_setsockopt(struct sock *sk, int level, int optname,
David S. Millerb7058842009-09-30 16:12:20 -0700999 char __user *optval, unsigned int optlen)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001000{
Joe Perches207ec0a2011-07-01 09:43:08 +00001001 switch (level) {
1002 case SOL_RAW:
1003 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001004
Joe Perches207ec0a2011-07-01 09:43:08 +00001005 case SOL_ICMPV6:
1006 if (inet_sk(sk)->inet_num != IPPROTO_ICMPV6)
1007 return -EOPNOTSUPP;
1008 return rawv6_seticmpfilter(sk, level, optname, optval, optlen);
1009 case SOL_IPV6:
1010 if (optname == IPV6_CHECKSUM)
1011 break;
1012 default:
1013 return ipv6_setsockopt(sk, level, optname, optval, optlen);
Stephen Hemminger3ff50b72007-04-20 17:09:22 -07001014 }
1015
Dmitry Mishin3fdadf72006-03-20 22:45:21 -08001016 return do_rawv6_setsockopt(sk, level, optname, optval, optlen);
1017}
1018
1019#ifdef CONFIG_COMPAT
1020static int compat_rawv6_setsockopt(struct sock *sk, int level, int optname,
David S. Millerb7058842009-09-30 16:12:20 -07001021 char __user *optval, unsigned int optlen)
Dmitry Mishin3fdadf72006-03-20 22:45:21 -08001022{
Arnaldo Carvalho de Melo543d9cf2006-03-20 22:48:35 -08001023 switch (level) {
1024 case SOL_RAW:
1025 break;
1026 case SOL_ICMPV6:
Eric Dumazetc720c7e2009-10-15 06:30:45 +00001027 if (inet_sk(sk)->inet_num != IPPROTO_ICMPV6)
Arnaldo Carvalho de Melo543d9cf2006-03-20 22:48:35 -08001028 return -EOPNOTSUPP;
1029 return rawv6_seticmpfilter(sk, level, optname, optval, optlen);
1030 case SOL_IPV6:
1031 if (optname == IPV6_CHECKSUM)
Dmitry Mishin3fdadf72006-03-20 22:45:21 -08001032 break;
Arnaldo Carvalho de Melo543d9cf2006-03-20 22:48:35 -08001033 default:
1034 return compat_ipv6_setsockopt(sk, level, optname,
1035 optval, optlen);
Stephen Hemminger3ff50b72007-04-20 17:09:22 -07001036 }
Dmitry Mishin3fdadf72006-03-20 22:45:21 -08001037 return do_rawv6_setsockopt(sk, level, optname, optval, optlen);
1038}
1039#endif
1040
1041static int do_rawv6_getsockopt(struct sock *sk, int level, int optname,
1042 char __user *optval, int __user *optlen)
1043{
1044 struct raw6_sock *rp = raw6_sk(sk);
1045 int val, len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001046
1047 if (get_user(len,optlen))
1048 return -EFAULT;
1049
1050 switch (optname) {
1051 case IPV6_CHECKSUM:
YOSHIFUJI Hideaki1a98d052008-04-24 21:30:38 -07001052 /*
1053 * We allow getsockopt() for IPPROTO_IPV6-level
1054 * IPV6_CHECKSUM socket option on ICMPv6 sockets
1055 * since RFC3542 is silent about it.
1056 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001057 if (rp->checksum == 0)
1058 val = -1;
1059 else
1060 val = rp->offset;
1061 break;
1062
1063 default:
1064 return -ENOPROTOOPT;
1065 }
1066
1067 len = min_t(unsigned int, sizeof(int), len);
1068
1069 if (put_user(len, optlen))
1070 return -EFAULT;
1071 if (copy_to_user(optval,&val,len))
1072 return -EFAULT;
1073 return 0;
1074}
1075
Dmitry Mishin3fdadf72006-03-20 22:45:21 -08001076static int rawv6_getsockopt(struct sock *sk, int level, int optname,
1077 char __user *optval, int __user *optlen)
1078{
Joe Perches207ec0a2011-07-01 09:43:08 +00001079 switch (level) {
1080 case SOL_RAW:
1081 break;
Dmitry Mishin3fdadf72006-03-20 22:45:21 -08001082
Joe Perches207ec0a2011-07-01 09:43:08 +00001083 case SOL_ICMPV6:
1084 if (inet_sk(sk)->inet_num != IPPROTO_ICMPV6)
1085 return -EOPNOTSUPP;
1086 return rawv6_geticmpfilter(sk, level, optname, optval, optlen);
1087 case SOL_IPV6:
1088 if (optname == IPV6_CHECKSUM)
1089 break;
1090 default:
1091 return ipv6_getsockopt(sk, level, optname, optval, optlen);
Stephen Hemminger3ff50b72007-04-20 17:09:22 -07001092 }
1093
Dmitry Mishin3fdadf72006-03-20 22:45:21 -08001094 return do_rawv6_getsockopt(sk, level, optname, optval, optlen);
1095}
1096
1097#ifdef CONFIG_COMPAT
1098static int compat_rawv6_getsockopt(struct sock *sk, int level, int optname,
Arnaldo Carvalho de Melo543d9cf2006-03-20 22:48:35 -08001099 char __user *optval, int __user *optlen)
Dmitry Mishin3fdadf72006-03-20 22:45:21 -08001100{
Arnaldo Carvalho de Melo543d9cf2006-03-20 22:48:35 -08001101 switch (level) {
1102 case SOL_RAW:
1103 break;
1104 case SOL_ICMPV6:
Eric Dumazetc720c7e2009-10-15 06:30:45 +00001105 if (inet_sk(sk)->inet_num != IPPROTO_ICMPV6)
Arnaldo Carvalho de Melo543d9cf2006-03-20 22:48:35 -08001106 return -EOPNOTSUPP;
1107 return rawv6_geticmpfilter(sk, level, optname, optval, optlen);
1108 case SOL_IPV6:
1109 if (optname == IPV6_CHECKSUM)
Dmitry Mishin3fdadf72006-03-20 22:45:21 -08001110 break;
Arnaldo Carvalho de Melo543d9cf2006-03-20 22:48:35 -08001111 default:
1112 return compat_ipv6_getsockopt(sk, level, optname,
1113 optval, optlen);
Stephen Hemminger3ff50b72007-04-20 17:09:22 -07001114 }
Dmitry Mishin3fdadf72006-03-20 22:45:21 -08001115 return do_rawv6_getsockopt(sk, level, optname, optval, optlen);
1116}
1117#endif
1118
Linus Torvalds1da177e2005-04-16 15:20:36 -07001119static int rawv6_ioctl(struct sock *sk, int cmd, unsigned long arg)
1120{
Joe Perches207ec0a2011-07-01 09:43:08 +00001121 switch (cmd) {
1122 case SIOCOUTQ: {
1123 int amount = sk_wmem_alloc_get(sk);
Eric Dumazet31e6d362009-06-17 19:05:41 -07001124
Joe Perches207ec0a2011-07-01 09:43:08 +00001125 return put_user(amount, (int __user *)arg);
1126 }
1127 case SIOCINQ: {
1128 struct sk_buff *skb;
1129 int amount = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001130
Joe Perches207ec0a2011-07-01 09:43:08 +00001131 spin_lock_bh(&sk->sk_receive_queue.lock);
1132 skb = skb_peek(&sk->sk_receive_queue);
1133 if (skb != NULL)
1134 amount = skb->tail - skb->transport_header;
1135 spin_unlock_bh(&sk->sk_receive_queue.lock);
1136 return put_user(amount, (int __user *)arg);
1137 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001138
Joe Perches207ec0a2011-07-01 09:43:08 +00001139 default:
YOSHIFUJI Hideaki7bc570c2008-04-03 09:22:53 +09001140#ifdef CONFIG_IPV6_MROUTE
Joe Perches207ec0a2011-07-01 09:43:08 +00001141 return ip6mr_ioctl(sk, cmd, (void __user *)arg);
YOSHIFUJI Hideaki7bc570c2008-04-03 09:22:53 +09001142#else
Joe Perches207ec0a2011-07-01 09:43:08 +00001143 return -ENOIOCTLCMD;
YOSHIFUJI Hideaki7bc570c2008-04-03 09:22:53 +09001144#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001145 }
1146}
1147
David S. Millere2d57762011-02-03 17:59:32 -08001148#ifdef CONFIG_COMPAT
1149static int compat_rawv6_ioctl(struct sock *sk, unsigned int cmd, unsigned long arg)
1150{
1151 switch (cmd) {
1152 case SIOCOUTQ:
1153 case SIOCINQ:
1154 return -ENOIOCTLCMD;
1155 default:
1156#ifdef CONFIG_IPV6_MROUTE
1157 return ip6mr_compat_ioctl(sk, cmd, compat_ptr(arg));
1158#else
1159 return -ENOIOCTLCMD;
1160#endif
1161 }
1162}
1163#endif
1164
Linus Torvalds1da177e2005-04-16 15:20:36 -07001165static void rawv6_close(struct sock *sk, long timeout)
1166{
Eric Dumazetc720c7e2009-10-15 06:30:45 +00001167 if (inet_sk(sk)->inet_num == IPPROTO_RAW)
Denis V. Lunev725a8ff2008-07-19 00:28:58 -07001168 ip6_ra_control(sk, -1);
YOSHIFUJI Hideaki7bc570c2008-04-03 09:22:53 +09001169 ip6mr_sk_done(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001170 sk_common_release(sk);
1171}
1172
Brian Haley7d06b2e2008-06-14 17:04:49 -07001173static void raw6_destroy(struct sock *sk)
Denis V. Lunev22dd4852008-06-04 15:16:12 -07001174{
1175 lock_sock(sk);
1176 ip6_flush_pending_frames(sk);
1177 release_sock(sk);
David S. Millerf23d60d2008-06-12 14:47:58 -07001178
Brian Haley7d06b2e2008-06-14 17:04:49 -07001179 inet6_destroy_sock(sk);
Denis V. Lunev22dd4852008-06-04 15:16:12 -07001180}
1181
Linus Torvalds1da177e2005-04-16 15:20:36 -07001182static int rawv6_init_sk(struct sock *sk)
1183{
Masahide NAKAMURAf48d5ff2007-02-07 00:07:39 -08001184 struct raw6_sock *rp = raw6_sk(sk);
1185
Eric Dumazetc720c7e2009-10-15 06:30:45 +00001186 switch (inet_sk(sk)->inet_num) {
Masahide NAKAMURAf48d5ff2007-02-07 00:07:39 -08001187 case IPPROTO_ICMPV6:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001188 rp->checksum = 1;
1189 rp->offset = 2;
Masahide NAKAMURAf48d5ff2007-02-07 00:07:39 -08001190 break;
1191 case IPPROTO_MH:
1192 rp->checksum = 1;
1193 rp->offset = 4;
1194 break;
1195 default:
1196 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001197 }
Eric Dumazeta02cec22010-09-22 20:43:57 +00001198 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001199}
1200
1201struct proto rawv6_prot = {
Arnaldo Carvalho de Melo543d9cf2006-03-20 22:48:35 -08001202 .name = "RAWv6",
1203 .owner = THIS_MODULE,
1204 .close = rawv6_close,
Denis V. Lunev22dd4852008-06-04 15:16:12 -07001205 .destroy = raw6_destroy,
Arnaldo Carvalho de Melo543d9cf2006-03-20 22:48:35 -08001206 .connect = ip6_datagram_connect,
1207 .disconnect = udp_disconnect,
1208 .ioctl = rawv6_ioctl,
1209 .init = rawv6_init_sk,
Arnaldo Carvalho de Melo543d9cf2006-03-20 22:48:35 -08001210 .setsockopt = rawv6_setsockopt,
1211 .getsockopt = rawv6_getsockopt,
1212 .sendmsg = rawv6_sendmsg,
1213 .recvmsg = rawv6_recvmsg,
1214 .bind = rawv6_bind,
1215 .backlog_rcv = rawv6_rcv_skb,
Pavel Emelyanovfc8717b2008-03-22 16:56:51 -07001216 .hash = raw_hash_sk,
1217 .unhash = raw_unhash_sk,
Arnaldo Carvalho de Melo543d9cf2006-03-20 22:48:35 -08001218 .obj_size = sizeof(struct raw6_sock),
Pavel Emelyanovfc8717b2008-03-22 16:56:51 -07001219 .h.raw_hash = &raw_v6_hashinfo,
Dmitry Mishin3fdadf72006-03-20 22:45:21 -08001220#ifdef CONFIG_COMPAT
Arnaldo Carvalho de Melo543d9cf2006-03-20 22:48:35 -08001221 .compat_setsockopt = compat_rawv6_setsockopt,
1222 .compat_getsockopt = compat_rawv6_getsockopt,
David S. Millere2d57762011-02-03 17:59:32 -08001223 .compat_ioctl = compat_rawv6_ioctl,
Dmitry Mishin3fdadf72006-03-20 22:45:21 -08001224#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001225};
1226
1227#ifdef CONFIG_PROC_FS
Linus Torvalds1da177e2005-04-16 15:20:36 -07001228static void raw6_sock_seq_show(struct seq_file *seq, struct sock *sp, int i)
1229{
1230 struct ipv6_pinfo *np = inet6_sk(sp);
Eric Dumazetb71d1d42011-04-22 04:53:02 +00001231 const struct in6_addr *dest, *src;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001232 __u16 destp, srcp;
1233
1234 dest = &np->daddr;
1235 src = &np->rcv_saddr;
1236 destp = 0;
Eric Dumazetc720c7e2009-10-15 06:30:45 +00001237 srcp = inet_sk(sp)->inet_num;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001238 seq_printf(seq,
1239 "%4d: %08X%08X%08X%08X:%04X %08X%08X%08X%08X:%04X "
Dan Rosenberg71338aa2011-05-23 12:17:35 +00001240 "%02X %08X:%08X %02X:%08lX %08X %5d %8d %lu %d %pK %d\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001241 i,
1242 src->s6_addr32[0], src->s6_addr32[1],
1243 src->s6_addr32[2], src->s6_addr32[3], srcp,
1244 dest->s6_addr32[0], dest->s6_addr32[1],
1245 dest->s6_addr32[2], dest->s6_addr32[3], destp,
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09001246 sp->sk_state,
Eric Dumazet31e6d362009-06-17 19:05:41 -07001247 sk_wmem_alloc_get(sp),
1248 sk_rmem_alloc_get(sp),
Linus Torvalds1da177e2005-04-16 15:20:36 -07001249 0, 0L, 0,
1250 sock_i_uid(sp), 0,
1251 sock_i_ino(sp),
Wang Chena92aa312007-11-13 20:31:14 -08001252 atomic_read(&sp->sk_refcnt), sp, atomic_read(&sp->sk_drops));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001253}
1254
1255static int raw6_seq_show(struct seq_file *seq, void *v)
1256{
1257 if (v == SEQ_START_TOKEN)
1258 seq_printf(seq,
1259 " sl "
1260 "local_address "
1261 "remote_address "
1262 "st tx_queue rx_queue tr tm->when retrnsmt"
Eric Dumazetcb61cb92008-06-17 21:04:56 -07001263 " uid timeout inode ref pointer drops\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001264 else
Pavel Emelyanov42a73802007-11-19 22:38:33 -08001265 raw6_sock_seq_show(seq, v, raw_seq_private(seq)->bucket);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001266 return 0;
1267}
1268
Philippe De Muyter56b3d972007-07-10 23:07:31 -07001269static const struct seq_operations raw6_seq_ops = {
Pavel Emelyanov42a73802007-11-19 22:38:33 -08001270 .start = raw_seq_start,
1271 .next = raw_seq_next,
1272 .stop = raw_seq_stop,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001273 .show = raw6_seq_show,
1274};
1275
1276static int raw6_seq_open(struct inode *inode, struct file *file)
1277{
Denis V. Lunev3046d762008-01-31 03:48:55 -08001278 return raw_seq_open(inode, file, &raw_v6_hashinfo, &raw6_seq_ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001279}
1280
Arjan van de Ven9a321442007-02-12 00:55:35 -08001281static const struct file_operations raw6_seq_fops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001282 .owner = THIS_MODULE,
1283 .open = raw6_seq_open,
1284 .read = seq_read,
1285 .llseek = seq_lseek,
Pavel Emelyanovf51d5992008-01-14 05:35:57 -08001286 .release = seq_release_net,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001287};
1288
Alexey Dobriyan2c8c1e72010-01-17 03:35:32 +00001289static int __net_init raw6_init_net(struct net *net)
Pavel Emelyanova308da12008-01-14 05:36:50 -08001290{
1291 if (!proc_net_fops_create(net, "raw6", S_IRUGO, &raw6_seq_fops))
1292 return -ENOMEM;
1293
1294 return 0;
1295}
1296
Alexey Dobriyan2c8c1e72010-01-17 03:35:32 +00001297static void __net_exit raw6_exit_net(struct net *net)
Pavel Emelyanova308da12008-01-14 05:36:50 -08001298{
1299 proc_net_remove(net, "raw6");
1300}
1301
1302static struct pernet_operations raw6_net_ops = {
1303 .init = raw6_init_net,
1304 .exit = raw6_exit_net,
1305};
1306
Linus Torvalds1da177e2005-04-16 15:20:36 -07001307int __init raw6_proc_init(void)
1308{
Pavel Emelyanova308da12008-01-14 05:36:50 -08001309 return register_pernet_subsys(&raw6_net_ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001310}
1311
1312void raw6_proc_exit(void)
1313{
Pavel Emelyanova308da12008-01-14 05:36:50 -08001314 unregister_pernet_subsys(&raw6_net_ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001315}
1316#endif /* CONFIG_PROC_FS */
Daniel Lezcano7f4e4862007-12-11 02:25:35 -08001317
1318/* Same as inet6_dgram_ops, sans udp_poll. */
1319static const struct proto_ops inet6_sockraw_ops = {
1320 .family = PF_INET6,
1321 .owner = THIS_MODULE,
1322 .release = inet6_release,
1323 .bind = inet6_bind,
1324 .connect = inet_dgram_connect, /* ok */
1325 .socketpair = sock_no_socketpair, /* a do nothing */
1326 .accept = sock_no_accept, /* a do nothing */
1327 .getname = inet6_getname,
1328 .poll = datagram_poll, /* ok */
1329 .ioctl = inet6_ioctl, /* must change */
1330 .listen = sock_no_listen, /* ok */
1331 .shutdown = inet_shutdown, /* ok */
1332 .setsockopt = sock_common_setsockopt, /* ok */
1333 .getsockopt = sock_common_getsockopt, /* ok */
1334 .sendmsg = inet_sendmsg, /* ok */
1335 .recvmsg = sock_common_recvmsg, /* ok */
1336 .mmap = sock_no_mmap,
1337 .sendpage = sock_no_sendpage,
1338#ifdef CONFIG_COMPAT
1339 .compat_setsockopt = compat_sock_common_setsockopt,
1340 .compat_getsockopt = compat_sock_common_getsockopt,
1341#endif
1342};
1343
1344static struct inet_protosw rawv6_protosw = {
1345 .type = SOCK_RAW,
1346 .protocol = IPPROTO_IP, /* wild card */
1347 .prot = &rawv6_prot,
1348 .ops = &inet6_sockraw_ops,
Daniel Lezcano7f4e4862007-12-11 02:25:35 -08001349 .no_check = UDP_CSUM_DEFAULT,
1350 .flags = INET_PROTOSW_REUSE,
1351};
1352
1353int __init rawv6_init(void)
1354{
1355 int ret;
1356
1357 ret = inet6_register_protosw(&rawv6_protosw);
1358 if (ret)
1359 goto out;
1360out:
1361 return ret;
1362}
1363
Daniel Lezcano09f77092007-12-13 05:34:58 -08001364void rawv6_exit(void)
Daniel Lezcano7f4e4862007-12-11 02:25:35 -08001365{
1366 inet6_unregister_protosw(&rawv6_protosw);
1367}