blob: a4894f4f1944e600d93a1f2a9cde719cfe528bb0 [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 NAKAMURA59fbb3a62007-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 */
110static __inline__ int icmpv6_filter(struct sock *sk, struct sk_buff *skb)
111{
112 struct icmp6hdr *icmph;
113 struct raw6_sock *rp = raw6_sk(sk);
114
115 if (pskb_may_pull(skb, sizeof(struct icmp6hdr))) {
116 __u32 *data = &rp->filter.data[0];
117 int bit_nr;
118
119 icmph = (struct icmp6hdr *) skb->data;
120 bit_nr = icmph->icmp6_type;
121
122 return (data[bit_nr >> 5] & (1 << (bit_nr & 31))) != 0;
123 }
124 return 0;
125}
126
Masahide NAKAMURA59fbb3a62007-06-26 23:56:32 -0700127#if defined(CONFIG_IPV6_MIP6) || defined(CONFIG_IPV6_MIP6_MODULE)
Eric Dumazetf2eda472011-01-20 07:37:53 +0000128typedef int mh_filter_t(struct sock *sock, struct sk_buff *skb);
Masahide NAKAMURA59fbb3a62007-06-26 23:56:32 -0700129
Eric Dumazetf2eda472011-01-20 07:37:53 +0000130static mh_filter_t __rcu *mh_filter __read_mostly;
131
132int rawv6_mh_filter_register(mh_filter_t filter)
Masahide NAKAMURA59fbb3a62007-06-26 23:56:32 -0700133{
Stephen Hemmingera9b3cd72011-08-01 16:19:00 +0000134 RCU_INIT_POINTER(mh_filter, filter);
Masahide NAKAMURA59fbb3a62007-06-26 23:56:32 -0700135 return 0;
136}
137EXPORT_SYMBOL(rawv6_mh_filter_register);
138
Eric Dumazetf2eda472011-01-20 07:37:53 +0000139int rawv6_mh_filter_unregister(mh_filter_t filter)
Masahide NAKAMURA59fbb3a62007-06-26 23:56:32 -0700140{
Stephen Hemmingera9b3cd72011-08-01 16:19:00 +0000141 RCU_INIT_POINTER(mh_filter, NULL);
Masahide NAKAMURA59fbb3a62007-06-26 23:56:32 -0700142 synchronize_rcu();
143 return 0;
144}
145EXPORT_SYMBOL(rawv6_mh_filter_unregister);
146
147#endif
148
Linus Torvalds1da177e2005-04-16 15:20:36 -0700149/*
150 * demultiplex raw sockets.
151 * (should consider queueing the skb in the sock receive_queue
152 * without calling rawv6.c)
153 *
154 * Caller owns SKB so we must make clones.
155 */
Pavel Emelyanov69d6da02007-11-19 22:35:57 -0800156static int ipv6_raw_deliver(struct sk_buff *skb, int nexthdr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700157{
Eric Dumazetb71d1d42011-04-22 04:53:02 +0000158 const struct in6_addr *saddr;
159 const struct in6_addr *daddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700160 struct sock *sk;
Patrick McHardyd13964f2005-08-09 19:45:02 -0700161 int delivered = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700162 __u8 hash;
Pavel Emelyanovbe185882008-01-14 05:35:31 -0800163 struct net *net;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700164
Arnaldo Carvalho de Melo0660e032007-04-25 17:54:47 -0700165 saddr = &ipv6_hdr(skb)->saddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700166 daddr = saddr + 1;
167
168 hash = nexthdr & (MAX_INET_PROTOS - 1);
169
Pavel Emelyanovb673e4d2007-11-19 22:36:45 -0800170 read_lock(&raw_v6_hashinfo.lock);
171 sk = sk_head(&raw_v6_hashinfo.ht[hash]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700172
Linus Torvalds1da177e2005-04-16 15:20:36 -0700173 if (sk == NULL)
174 goto out;
175
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +0900176 net = dev_net(skb->dev);
Pavel Emelyanovbe185882008-01-14 05:35:31 -0800177 sk = __raw_v6_lookup(net, sk, nexthdr, daddr, saddr, IP6CB(skb)->iif);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700178
179 while (sk) {
Masahide NAKAMURA7be96f72006-08-23 20:35:31 -0700180 int filtered;
181
Patrick McHardyd13964f2005-08-09 19:45:02 -0700182 delivered = 1;
Masahide NAKAMURA7be96f72006-08-23 20:35:31 -0700183 switch (nexthdr) {
184 case IPPROTO_ICMPV6:
185 filtered = icmpv6_filter(sk, skb);
186 break;
Masahide NAKAMURA59fbb3a62007-06-26 23:56:32 -0700187
188#if defined(CONFIG_IPV6_MIP6) || defined(CONFIG_IPV6_MIP6_MODULE)
Masahide NAKAMURA7be96f72006-08-23 20:35:31 -0700189 case IPPROTO_MH:
Masahide NAKAMURA59fbb3a62007-06-26 23:56:32 -0700190 {
Masahide NAKAMURA7be96f72006-08-23 20:35:31 -0700191 /* XXX: To validate MH only once for each packet,
192 * this is placed here. It should be after checking
193 * xfrm policy, however it doesn't. The checking xfrm
194 * policy is placed in rawv6_rcv() because it is
195 * required for each socket.
196 */
Eric Dumazetf2eda472011-01-20 07:37:53 +0000197 mh_filter_t *filter;
Masahide NAKAMURA59fbb3a62007-06-26 23:56:32 -0700198
199 filter = rcu_dereference(mh_filter);
Eric Dumazetf2eda472011-01-20 07:37:53 +0000200 filtered = filter ? (*filter)(sk, skb) : 0;
Masahide NAKAMURA7be96f72006-08-23 20:35:31 -0700201 break;
Masahide NAKAMURA59fbb3a62007-06-26 23:56:32 -0700202 }
Masahide NAKAMURA7be96f72006-08-23 20:35:31 -0700203#endif
204 default:
205 filtered = 0;
206 break;
207 }
208
209 if (filtered < 0)
210 break;
211 if (filtered == 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700212 struct sk_buff *clone = skb_clone(skb, GFP_ATOMIC);
213
214 /* Not releasing hash table! */
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800215 if (clone) {
216 nf_reset(clone);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700217 rawv6_rcv(sk, clone);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800218 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700219 }
Pavel Emelyanovbe185882008-01-14 05:35:31 -0800220 sk = __raw_v6_lookup(net, sk_next(sk), nexthdr, daddr, saddr,
YOSHIFUJI Hideaki2dac4b92005-09-01 17:44:49 -0700221 IP6CB(skb)->iif);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700222 }
223out:
Pavel Emelyanovb673e4d2007-11-19 22:36:45 -0800224 read_unlock(&raw_v6_hashinfo.lock);
Patrick McHardyd13964f2005-08-09 19:45:02 -0700225 return delivered;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700226}
227
Pavel Emelyanov69d6da02007-11-19 22:35:57 -0800228int raw6_local_deliver(struct sk_buff *skb, int nexthdr)
229{
230 struct sock *raw_sk;
231
Pavel Emelyanovb673e4d2007-11-19 22:36:45 -0800232 raw_sk = sk_head(&raw_v6_hashinfo.ht[nexthdr & (MAX_INET_PROTOS - 1)]);
Pavel Emelyanov69d6da02007-11-19 22:35:57 -0800233 if (raw_sk && !ipv6_raw_deliver(skb, nexthdr))
234 raw_sk = NULL;
235
236 return raw_sk != NULL;
237}
238
Linus Torvalds1da177e2005-04-16 15:20:36 -0700239/* This cleans up af_inet6 a bit. -DaveM */
240static int rawv6_bind(struct sock *sk, struct sockaddr *uaddr, int addr_len)
241{
242 struct inet_sock *inet = inet_sk(sk);
243 struct ipv6_pinfo *np = inet6_sk(sk);
244 struct sockaddr_in6 *addr = (struct sockaddr_in6 *) uaddr;
Al Viroe69a4adc2006-11-14 20:56:00 -0800245 __be32 v4addr = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700246 int addr_type;
247 int err;
248
249 if (addr_len < SIN6_LEN_RFC2133)
250 return -EINVAL;
251 addr_type = ipv6_addr_type(&addr->sin6_addr);
252
253 /* Raw sockets are IPv6 only */
254 if (addr_type == IPV6_ADDR_MAPPED)
Eric Dumazetfd5c0022009-11-06 07:01:17 +0000255 return -EADDRNOTAVAIL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700256
257 lock_sock(sk);
258
259 err = -EINVAL;
260 if (sk->sk_state != TCP_CLOSE)
261 goto out;
262
Eric Dumazetfd5c0022009-11-06 07:01:17 +0000263 rcu_read_lock();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700264 /* Check if the address belongs to the host. */
265 if (addr_type != IPV6_ADDR_ANY) {
266 struct net_device *dev = NULL;
267
268 if (addr_type & IPV6_ADDR_LINKLOCAL) {
269 if (addr_len >= sizeof(struct sockaddr_in6) &&
270 addr->sin6_scope_id) {
271 /* Override any existing binding, if another
272 * one is supplied by user.
273 */
274 sk->sk_bound_dev_if = addr->sin6_scope_id;
275 }
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900276
Linus Torvalds1da177e2005-04-16 15:20:36 -0700277 /* Binding to link-local address requires an interface */
278 if (!sk->sk_bound_dev_if)
Eric Dumazetfd5c0022009-11-06 07:01:17 +0000279 goto out_unlock;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700280
Eric Dumazetfd5c0022009-11-06 07:01:17 +0000281 err = -ENODEV;
282 dev = dev_get_by_index_rcu(sock_net(sk),
283 sk->sk_bound_dev_if);
284 if (!dev)
285 goto out_unlock;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700286 }
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900287
Linus Torvalds1da177e2005-04-16 15:20:36 -0700288 /* ipv4 addr of the socket is invalid. Only the
289 * unspecified and mapped address have a v4 equivalent.
290 */
291 v4addr = LOOPBACK4_IPV6;
292 if (!(addr_type & IPV6_ADDR_MULTICAST)) {
293 err = -EADDRNOTAVAIL;
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +0900294 if (!ipv6_chk_addr(sock_net(sk), &addr->sin6_addr,
Daniel Lezcanobfeade02008-01-10 22:43:18 -0800295 dev, 0)) {
Eric Dumazetfd5c0022009-11-06 07:01:17 +0000296 goto out_unlock;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700297 }
298 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700299 }
300
Eric Dumazetc720c7e2009-10-15 06:30:45 +0000301 inet->inet_rcv_saddr = inet->inet_saddr = v4addr;
Alexey Dobriyan4e3fd7a2011-11-21 03:39:03 +0000302 np->rcv_saddr = addr->sin6_addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700303 if (!(addr_type & IPV6_ADDR_MULTICAST))
Alexey Dobriyan4e3fd7a2011-11-21 03:39:03 +0000304 np->saddr = addr->sin6_addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700305 err = 0;
Eric Dumazetfd5c0022009-11-06 07:01:17 +0000306out_unlock:
307 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700308out:
309 release_sock(sk);
310 return err;
311}
312
Pavel Emelyanov69d6da02007-11-19 22:35:57 -0800313static void rawv6_err(struct sock *sk, struct sk_buff *skb,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700314 struct inet6_skb_parm *opt,
Brian Haleyd5fdd6b2009-06-23 04:31:07 -0700315 u8 type, u8 code, int offset, __be32 info)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700316{
317 struct inet_sock *inet = inet_sk(sk);
318 struct ipv6_pinfo *np = inet6_sk(sk);
319 int err;
320 int harderr;
321
322 /* Report error on raw socket, if:
323 1. User requested recverr.
324 2. Socket is connected (otherwise the error indication
325 is useless without recverr and error is hard.
326 */
327 if (!np->recverr && sk->sk_state != TCP_ESTABLISHED)
328 return;
329
330 harderr = icmpv6_err_convert(type, code, &err);
331 if (type == ICMPV6_PKT_TOOBIG)
332 harderr = (np->pmtudisc == IPV6_PMTUDISC_DO);
333
334 if (np->recverr) {
335 u8 *payload = skb->data;
336 if (!inet->hdrincl)
337 payload += offset;
338 ipv6_icmp_error(sk, skb, err, 0, ntohl(info), payload);
339 }
340
341 if (np->recverr || harderr) {
342 sk->sk_err = err;
343 sk->sk_error_report(sk);
344 }
345}
346
Pavel Emelyanov69d6da02007-11-19 22:35:57 -0800347void raw6_icmp_error(struct sk_buff *skb, int nexthdr,
Brian Haleyd5fdd6b2009-06-23 04:31:07 -0700348 u8 type, u8 code, int inner_offset, __be32 info)
Pavel Emelyanov69d6da02007-11-19 22:35:57 -0800349{
350 struct sock *sk;
351 int hash;
Eric Dumazetb71d1d42011-04-22 04:53:02 +0000352 const struct in6_addr *saddr, *daddr;
Pavel Emelyanovbe185882008-01-14 05:35:31 -0800353 struct net *net;
Pavel Emelyanov69d6da02007-11-19 22:35:57 -0800354
Pavel Emelyanovb673e4d2007-11-19 22:36:45 -0800355 hash = nexthdr & (RAW_HTABLE_SIZE - 1);
Pavel Emelyanov69d6da02007-11-19 22:35:57 -0800356
Pavel Emelyanovb673e4d2007-11-19 22:36:45 -0800357 read_lock(&raw_v6_hashinfo.lock);
358 sk = sk_head(&raw_v6_hashinfo.ht[hash]);
Pavel Emelyanov69d6da02007-11-19 22:35:57 -0800359 if (sk != NULL) {
YOSHIFUJI Hideaki05f175c2008-04-11 23:51:26 +0900360 /* Note: ipv6_hdr(skb) != skb->data */
Eric Dumazetb71d1d42011-04-22 04:53:02 +0000361 const struct ipv6hdr *ip6h = (const struct ipv6hdr *)skb->data;
YOSHIFUJI Hideaki05f175c2008-04-11 23:51:26 +0900362 saddr = &ip6h->saddr;
363 daddr = &ip6h->daddr;
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +0900364 net = dev_net(skb->dev);
Pavel Emelyanov69d6da02007-11-19 22:35:57 -0800365
Pavel Emelyanovbe185882008-01-14 05:35:31 -0800366 while ((sk = __raw_v6_lookup(net, sk, nexthdr, saddr, daddr,
Pavel Emelyanov69d6da02007-11-19 22:35:57 -0800367 IP6CB(skb)->iif))) {
368 rawv6_err(sk, skb, NULL, type, code,
369 inner_offset, info);
370 sk = sk_next(sk);
371 }
372 }
Pavel Emelyanovb673e4d2007-11-19 22:36:45 -0800373 read_unlock(&raw_v6_hashinfo.lock);
Pavel Emelyanov69d6da02007-11-19 22:35:57 -0800374}
375
Eric Dumazet33d480c2011-08-11 19:30:52 +0000376static inline int rawv6_rcv_skb(struct sock *sk, struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700377{
Eric Dumazet33d480c2011-08-11 19:30:52 +0000378 if ((raw6_sk(sk)->checksum || rcu_access_pointer(sk->sk_filter)) &&
Herbert Xufb286bb2005-11-10 13:01:24 -0800379 skb_checksum_complete(skb)) {
Wang Chena92aa312007-11-13 20:31:14 -0800380 atomic_inc(&sk->sk_drops);
Herbert Xufb286bb2005-11-10 13:01:24 -0800381 kfree_skb(skb);
Yang Hongyang3cc76ca2008-08-29 14:06:51 -0700382 return NET_RX_DROP;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700383 }
384
385 /* Charge it to the socket. */
Eric Dumazetd826eb12011-11-09 07:24:35 +0000386 skb_dst_drop(skb);
387 if (sock_queue_rcv_skb(sk, skb) < 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700388 kfree_skb(skb);
Yang Hongyang3cc76ca2008-08-29 14:06:51 -0700389 return NET_RX_DROP;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700390 }
391
392 return 0;
393}
394
395/*
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900396 * This is next to useless...
Linus Torvalds1da177e2005-04-16 15:20:36 -0700397 * if we demultiplex in network layer we don't need the extra call
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900398 * just to queue the skb...
399 * maybe we could have the network decide upon a hint if it
Linus Torvalds1da177e2005-04-16 15:20:36 -0700400 * should call raw_rcv for demultiplexing
401 */
402int rawv6_rcv(struct sock *sk, struct sk_buff *skb)
403{
404 struct inet_sock *inet = inet_sk(sk);
405 struct raw6_sock *rp = raw6_sk(sk);
406
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900407 if (!xfrm6_policy_check(sk, XFRM_POLICY_IN, skb)) {
Wang Chena92aa312007-11-13 20:31:14 -0800408 atomic_inc(&sk->sk_drops);
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900409 kfree_skb(skb);
410 return NET_RX_DROP;
411 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700412
413 if (!rp->checksum)
414 skb->ip_summed = CHECKSUM_UNNECESSARY;
415
Patrick McHardy84fa7932006-08-29 16:44:56 -0700416 if (skb->ip_summed == CHECKSUM_COMPLETE) {
Arnaldo Carvalho de Melod56f90a2007-04-10 20:50:43 -0700417 skb_postpull_rcsum(skb, skb_network_header(skb),
Arnaldo Carvalho de Melocfe1fc72007-03-16 17:26:39 -0300418 skb_network_header_len(skb));
Arnaldo Carvalho de Melo0660e032007-04-25 17:54:47 -0700419 if (!csum_ipv6_magic(&ipv6_hdr(skb)->saddr,
420 &ipv6_hdr(skb)->daddr,
Eric Dumazetc720c7e2009-10-15 06:30:45 +0000421 skb->len, inet->inet_num, skb->csum))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700422 skb->ip_summed = CHECKSUM_UNNECESSARY;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700423 }
Herbert Xu60476372007-04-09 11:59:39 -0700424 if (!skb_csum_unnecessary(skb))
Arnaldo Carvalho de Melo0660e032007-04-25 17:54:47 -0700425 skb->csum = ~csum_unfold(csum_ipv6_magic(&ipv6_hdr(skb)->saddr,
426 &ipv6_hdr(skb)->daddr,
427 skb->len,
Eric Dumazetc720c7e2009-10-15 06:30:45 +0000428 inet->inet_num, 0));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700429
430 if (inet->hdrincl) {
Herbert Xufb286bb2005-11-10 13:01:24 -0800431 if (skb_checksum_complete(skb)) {
Wang Chena92aa312007-11-13 20:31:14 -0800432 atomic_inc(&sk->sk_drops);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700433 kfree_skb(skb);
Yang Hongyang3cc76ca2008-08-29 14:06:51 -0700434 return NET_RX_DROP;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700435 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700436 }
437
438 rawv6_rcv_skb(sk, skb);
439 return 0;
440}
441
442
443/*
444 * This should be easy, if there is something there
445 * we return it, otherwise we block.
446 */
447
448static int rawv6_recvmsg(struct kiocb *iocb, struct sock *sk,
449 struct msghdr *msg, size_t len,
450 int noblock, int flags, int *addr_len)
451{
452 struct ipv6_pinfo *np = inet6_sk(sk);
453 struct sockaddr_in6 *sin6 = (struct sockaddr_in6 *)msg->msg_name;
454 struct sk_buff *skb;
455 size_t copied;
456 int err;
457
458 if (flags & MSG_OOB)
459 return -EOPNOTSUPP;
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900460
461 if (addr_len)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700462 *addr_len=sizeof(*sin6);
463
464 if (flags & MSG_ERRQUEUE)
465 return ipv6_recv_error(sk, msg, len);
466
Brian Haley4b340ae2010-04-23 11:26:09 +0000467 if (np->rxpmtu && np->rxopt.bits.rxpmtu)
468 return ipv6_recv_rxpmtu(sk, msg, len);
469
Linus Torvalds1da177e2005-04-16 15:20:36 -0700470 skb = skb_recv_datagram(sk, flags, noblock, &err);
471 if (!skb)
472 goto out;
473
474 copied = skb->len;
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900475 if (copied > len) {
476 copied = len;
477 msg->msg_flags |= MSG_TRUNC;
478 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700479
Herbert Xu60476372007-04-09 11:59:39 -0700480 if (skb_csum_unnecessary(skb)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700481 err = skb_copy_datagram_iovec(skb, 0, msg->msg_iov, copied);
482 } else if (msg->msg_flags&MSG_TRUNC) {
Herbert Xufb286bb2005-11-10 13:01:24 -0800483 if (__skb_checksum_complete(skb))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700484 goto csum_copy_err;
485 err = skb_copy_datagram_iovec(skb, 0, msg->msg_iov, copied);
486 } else {
487 err = skb_copy_and_csum_datagram_iovec(skb, 0, msg->msg_iov);
488 if (err == -EINVAL)
489 goto csum_copy_err;
490 }
491 if (err)
492 goto out_free;
493
494 /* Copy the address. */
495 if (sin6) {
496 sin6->sin6_family = AF_INET6;
Tetsuo Handaf59fc7f2006-07-25 17:05:35 -0700497 sin6->sin6_port = 0;
Alexey Dobriyan4e3fd7a2011-11-21 03:39:03 +0000498 sin6->sin6_addr = ipv6_hdr(skb)->saddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700499 sin6->sin6_flowinfo = 0;
500 sin6->sin6_scope_id = 0;
501 if (ipv6_addr_type(&sin6->sin6_addr) & IPV6_ADDR_LINKLOCAL)
502 sin6->sin6_scope_id = IP6CB(skb)->iif;
503 }
504
Neil Horman3b885782009-10-12 13:26:31 -0700505 sock_recv_ts_and_drops(msg, sk, skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700506
507 if (np->rxopt.all)
508 datagram_recv_ctl(sk, msg, skb);
509
510 err = copied;
511 if (flags & MSG_TRUNC)
512 err = skb->len;
513
514out_free:
515 skb_free_datagram(sk, skb);
516out:
517 return err;
518
519csum_copy_err:
Herbert Xu3305b802005-12-13 23:16:37 -0800520 skb_kill_datagram(sk, skb, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700521
522 /* Error for blocking case is chosen to masquerade
523 as some normal condition.
524 */
525 err = (flags&MSG_DONTWAIT) ? -EAGAIN : -EHOSTUNREACH;
Herbert Xu3305b802005-12-13 23:16:37 -0800526 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700527}
528
David S. Miller4c9483b2011-03-12 16:22:43 -0500529static int rawv6_push_pending_frames(struct sock *sk, struct flowi6 *fl6,
Herbert Xu357b40a2005-04-19 22:30:14 -0700530 struct raw6_sock *rp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700531{
532 struct sk_buff *skb;
533 int err = 0;
Herbert Xu357b40a2005-04-19 22:30:14 -0700534 int offset;
535 int len;
Herbert Xu679a8732005-05-03 14:24:36 -0700536 int total_len;
Al Viro868c86b2006-11-14 21:35:48 -0800537 __wsum tmp_csum;
538 __sum16 csum;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700539
540 if (!rp->checksum)
541 goto send;
542
543 if ((skb = skb_peek(&sk->sk_write_queue)) == NULL)
544 goto out;
545
Herbert Xu357b40a2005-04-19 22:30:14 -0700546 offset = rp->offset;
Steffen Klassert299b0762011-10-11 01:43:33 +0000547 total_len = inet_sk(sk)->cork.base.length;
Herbert Xu679a8732005-05-03 14:24:36 -0700548 if (offset >= total_len - 1) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700549 err = -EINVAL;
Herbert Xu357b40a2005-04-19 22:30:14 -0700550 ip6_flush_pending_frames(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700551 goto out;
552 }
553
554 /* should be check HW csum miyazawa */
555 if (skb_queue_len(&sk->sk_write_queue) == 1) {
556 /*
557 * Only one fragment on the socket.
558 */
559 tmp_csum = skb->csum;
560 } else {
Herbert Xu357b40a2005-04-19 22:30:14 -0700561 struct sk_buff *csum_skb = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700562 tmp_csum = 0;
563
564 skb_queue_walk(&sk->sk_write_queue, skb) {
565 tmp_csum = csum_add(tmp_csum, skb->csum);
Herbert Xu357b40a2005-04-19 22:30:14 -0700566
567 if (csum_skb)
568 continue;
569
Arnaldo Carvalho de Meloea2ae172007-04-25 17:55:53 -0700570 len = skb->len - skb_transport_offset(skb);
Herbert Xu357b40a2005-04-19 22:30:14 -0700571 if (offset >= len) {
572 offset -= len;
573 continue;
574 }
575
576 csum_skb = skb;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700577 }
Herbert Xu357b40a2005-04-19 22:30:14 -0700578
579 skb = csum_skb;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700580 }
581
Arnaldo Carvalho de Meloea2ae172007-04-25 17:55:53 -0700582 offset += skb_transport_offset(skb);
Herbert Xu357b40a2005-04-19 22:30:14 -0700583 if (skb_copy_bits(skb, offset, &csum, 2))
584 BUG();
585
Linus Torvalds1da177e2005-04-16 15:20:36 -0700586 /* in case cksum was not initialized */
Herbert Xu357b40a2005-04-19 22:30:14 -0700587 if (unlikely(csum))
Al Viro5f92a732006-11-14 21:36:54 -0800588 tmp_csum = csum_sub(tmp_csum, csum_unfold(csum));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700589
David S. Miller4c9483b2011-03-12 16:22:43 -0500590 csum = csum_ipv6_magic(&fl6->saddr, &fl6->daddr,
591 total_len, fl6->flowi6_proto, tmp_csum);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700592
David S. Miller4c9483b2011-03-12 16:22:43 -0500593 if (csum == 0 && fl6->flowi6_proto == IPPROTO_UDP)
Al Virof6ab0282006-11-16 02:36:50 -0800594 csum = CSUM_MANGLED_0;
Herbert Xu357b40a2005-04-19 22:30:14 -0700595
Herbert Xu357b40a2005-04-19 22:30:14 -0700596 if (skb_store_bits(skb, offset, &csum, 2))
597 BUG();
598
Linus Torvalds1da177e2005-04-16 15:20:36 -0700599send:
600 err = ip6_push_pending_frames(sk);
601out:
602 return err;
603}
604
605static int rawv6_send_hdrinc(struct sock *sk, void *from, int length,
David S. Miller4c9483b2011-03-12 16:22:43 -0500606 struct flowi6 *fl6, struct dst_entry **dstp,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700607 unsigned int flags)
608{
Herbert Xu3320da82005-04-19 22:32:22 -0700609 struct ipv6_pinfo *np = inet6_sk(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700610 struct ipv6hdr *iph;
611 struct sk_buff *skb;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700612 int err;
Eric Dumazet1789a642010-06-03 22:23:57 +0000613 struct rt6_info *rt = (struct rt6_info *)*dstp;
Herbert Xua7ae1992011-11-18 02:20:04 +0000614 int hlen = LL_RESERVED_SPACE(rt->dst.dev);
615 int tlen = rt->dst.dev->needed_tailroom;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700616
Changli Gaod8d1f302010-06-10 23:31:35 -0700617 if (length > rt->dst.dev->mtu) {
David S. Miller4c9483b2011-03-12 16:22:43 -0500618 ipv6_local_error(sk, EMSGSIZE, fl6, rt->dst.dev->mtu);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700619 return -EMSGSIZE;
620 }
621 if (flags&MSG_PROBE)
622 goto out;
623
Johannes Bergf5184d22008-05-12 20:48:31 -0700624 skb = sock_alloc_send_skb(sk,
Herbert Xua7ae1992011-11-18 02:20:04 +0000625 length + hlen + tlen + 15,
Johannes Bergf5184d22008-05-12 20:48:31 -0700626 flags & MSG_DONTWAIT, &err);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700627 if (skb == NULL)
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900628 goto error;
Herbert Xua7ae1992011-11-18 02:20:04 +0000629 skb_reserve(skb, hlen);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700630
631 skb->priority = sk->sk_priority;
Laszlo Attila Toth4a19ec52008-01-30 19:08:16 -0800632 skb->mark = sk->sk_mark;
Changli Gaod8d1f302010-06-10 23:31:35 -0700633 skb_dst_set(skb, &rt->dst);
Eric Dumazet1789a642010-06-03 22:23:57 +0000634 *dstp = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700635
Arnaldo Carvalho de Melo1ced98e2007-03-10 19:57:15 -0300636 skb_put(skb, length);
637 skb_reset_network_header(skb);
Arnaldo Carvalho de Melo0660e032007-04-25 17:54:47 -0700638 iph = ipv6_hdr(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700639
640 skb->ip_summed = CHECKSUM_NONE;
641
Arnaldo Carvalho de Melob0e380b2007-04-10 21:21:55 -0700642 skb->transport_header = skb->network_header;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700643 err = memcpy_fromiovecend((void *)iph, from, 0, length);
644 if (err)
645 goto error_fault;
646
Neil Hormanedf391f2009-04-27 02:45:02 -0700647 IP6_UPD_PO_STATS(sock_net(sk), rt->rt6i_idev, IPSTATS_MIB_OUT, skb->len);
Jan Engelhardtb2e0b382010-03-23 04:09:07 +0100648 err = NF_HOOK(NFPROTO_IPV6, NF_INET_LOCAL_OUT, skb, NULL,
Changli Gaod8d1f302010-06-10 23:31:35 -0700649 rt->dst.dev, dst_output);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700650 if (err > 0)
Eric Dumazet6ce9e7b2009-09-02 18:05:33 -0700651 err = net_xmit_errno(err);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700652 if (err)
653 goto error;
654out:
655 return 0;
656
657error_fault:
658 err = -EFAULT;
659 kfree_skb(skb);
660error:
Denis V. Lunev3bd653c2008-10-08 10:54:51 -0700661 IP6_INC_STATS(sock_net(sk), rt->rt6i_idev, IPSTATS_MIB_OUTDISCARDS);
Eric Dumazet6ce9e7b2009-09-02 18:05:33 -0700662 if (err == -ENOBUFS && !np->recverr)
663 err = 0;
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900664 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700665}
666
David S. Miller4c9483b2011-03-12 16:22:43 -0500667static int rawv6_probe_proto_opt(struct flowi6 *fl6, struct msghdr *msg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700668{
669 struct iovec *iov;
670 u8 __user *type = NULL;
671 u8 __user *code = NULL;
Masahide NAKAMURA6e8f4d42006-08-23 20:36:47 -0700672 u8 len = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700673 int probed = 0;
674 int i;
675
676 if (!msg->msg_iov)
Heiko Carstensa27b58f2006-10-30 15:06:12 -0800677 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700678
679 for (i = 0; i < msg->msg_iovlen; i++) {
680 iov = &msg->msg_iov[i];
681 if (!iov)
682 continue;
683
David S. Miller4c9483b2011-03-12 16:22:43 -0500684 switch (fl6->flowi6_proto) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700685 case IPPROTO_ICMPV6:
686 /* check if one-byte field is readable or not. */
687 if (iov->iov_base && iov->iov_len < 1)
688 break;
689
690 if (!type) {
691 type = iov->iov_base;
692 /* check if code field is readable or not. */
693 if (iov->iov_len > 1)
694 code = type + 1;
695 } else if (!code)
696 code = iov->iov_base;
697
698 if (type && code) {
David S. Miller1958b852011-03-12 16:36:19 -0500699 if (get_user(fl6->fl6_icmp_type, type) ||
700 get_user(fl6->fl6_icmp_code, code))
Heiko Carstensa27b58f2006-10-30 15:06:12 -0800701 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700702 probed = 1;
703 }
704 break;
Masahide NAKAMURA6e8f4d42006-08-23 20:36:47 -0700705 case IPPROTO_MH:
706 if (iov->iov_base && iov->iov_len < 1)
707 break;
708 /* check if type field is readable or not. */
709 if (iov->iov_len > 2 - len) {
710 u8 __user *p = iov->iov_base;
David S. Miller1958b852011-03-12 16:36:19 -0500711 if (get_user(fl6->fl6_mh_type, &p[2 - len]))
Heiko Carstensa27b58f2006-10-30 15:06:12 -0800712 return -EFAULT;
Masahide NAKAMURA6e8f4d42006-08-23 20:36:47 -0700713 probed = 1;
714 } else
715 len += iov->iov_len;
716
717 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700718 default:
719 probed = 1;
720 break;
721 }
722 if (probed)
723 break;
724 }
Heiko Carstensa27b58f2006-10-30 15:06:12 -0800725 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700726}
727
728static int rawv6_sendmsg(struct kiocb *iocb, struct sock *sk,
729 struct msghdr *msg, size_t len)
730{
731 struct ipv6_txoptions opt_space;
732 struct sockaddr_in6 * sin6 = (struct sockaddr_in6 *) msg->msg_name;
Arnaud Ebalard20c59de2010-06-01 21:35:01 +0000733 struct in6_addr *daddr, *final_p, final;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700734 struct inet_sock *inet = inet_sk(sk);
735 struct ipv6_pinfo *np = inet6_sk(sk);
736 struct raw6_sock *rp = raw6_sk(sk);
737 struct ipv6_txoptions *opt = NULL;
738 struct ip6_flowlabel *flowlabel = NULL;
739 struct dst_entry *dst = NULL;
David S. Miller4c9483b2011-03-12 16:22:43 -0500740 struct flowi6 fl6;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700741 int addr_len = msg->msg_namelen;
742 int hlimit = -1;
YOSHIFUJI Hideaki41a1f8e2005-09-08 10:19:03 +0900743 int tclass = -1;
Brian Haley13b52cd2010-04-23 11:26:08 +0000744 int dontfrag = -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700745 u16 proto;
746 int err;
747
748 /* Rough check on arithmetic overflow,
YOSHIFUJI Hideakib59e1392007-03-30 14:45:35 -0700749 better check is made in ip6_append_data().
Linus Torvalds1da177e2005-04-16 15:20:36 -0700750 */
YOSHIFUJI Hideakib59e1392007-03-30 14:45:35 -0700751 if (len > INT_MAX)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700752 return -EMSGSIZE;
753
754 /* Mirror BSD error message compatibility */
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900755 if (msg->msg_flags & MSG_OOB)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700756 return -EOPNOTSUPP;
757
758 /*
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900759 * Get and verify the address.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700760 */
David S. Miller4c9483b2011-03-12 16:22:43 -0500761 memset(&fl6, 0, sizeof(fl6));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700762
David S. Miller4c9483b2011-03-12 16:22:43 -0500763 fl6.flowi6_mark = sk->sk_mark;
Laszlo Attila Toth4a19ec52008-01-30 19:08:16 -0800764
Linus Torvalds1da177e2005-04-16 15:20:36 -0700765 if (sin6) {
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900766 if (addr_len < SIN6_LEN_RFC2133)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700767 return -EINVAL;
768
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900769 if (sin6->sin6_family && sin6->sin6_family != AF_INET6)
Eric Dumazeta02cec22010-09-22 20:43:57 +0000770 return -EAFNOSUPPORT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700771
772 /* port is the proto value [0..255] carried in nexthdr */
773 proto = ntohs(sin6->sin6_port);
774
775 if (!proto)
Eric Dumazetc720c7e2009-10-15 06:30:45 +0000776 proto = inet->inet_num;
777 else if (proto != inet->inet_num)
Eric Dumazeta02cec22010-09-22 20:43:57 +0000778 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700779
780 if (proto > 255)
Eric Dumazeta02cec22010-09-22 20:43:57 +0000781 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700782
783 daddr = &sin6->sin6_addr;
784 if (np->sndflow) {
David S. Miller4c9483b2011-03-12 16:22:43 -0500785 fl6.flowlabel = sin6->sin6_flowinfo&IPV6_FLOWINFO_MASK;
786 if (fl6.flowlabel&IPV6_FLOWLABEL_MASK) {
787 flowlabel = fl6_sock_lookup(sk, fl6.flowlabel);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700788 if (flowlabel == NULL)
789 return -EINVAL;
790 daddr = &flowlabel->dst;
791 }
792 }
793
794 /*
795 * Otherwise it will be difficult to maintain
796 * sk->sk_dst_cache.
797 */
798 if (sk->sk_state == TCP_ESTABLISHED &&
799 ipv6_addr_equal(daddr, &np->daddr))
800 daddr = &np->daddr;
801
802 if (addr_len >= sizeof(struct sockaddr_in6) &&
803 sin6->sin6_scope_id &&
804 ipv6_addr_type(daddr)&IPV6_ADDR_LINKLOCAL)
David S. Miller4c9483b2011-03-12 16:22:43 -0500805 fl6.flowi6_oif = sin6->sin6_scope_id;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700806 } else {
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900807 if (sk->sk_state != TCP_ESTABLISHED)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700808 return -EDESTADDRREQ;
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900809
Eric Dumazetc720c7e2009-10-15 06:30:45 +0000810 proto = inet->inet_num;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700811 daddr = &np->daddr;
David S. Miller4c9483b2011-03-12 16:22:43 -0500812 fl6.flowlabel = np->flow_label;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700813 }
814
David S. Miller4c9483b2011-03-12 16:22:43 -0500815 if (fl6.flowi6_oif == 0)
816 fl6.flowi6_oif = sk->sk_bound_dev_if;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700817
818 if (msg->msg_controllen) {
819 opt = &opt_space;
820 memset(opt, 0, sizeof(struct ipv6_txoptions));
821 opt->tot_len = sizeof(struct ipv6_txoptions);
822
Maciej Żenczykowskiec0506d2011-08-28 12:35:31 +0000823 err = datagram_send_ctl(sock_net(sk), sk, msg, &fl6, opt,
824 &hlimit, &tclass, &dontfrag);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700825 if (err < 0) {
826 fl6_sock_release(flowlabel);
827 return err;
828 }
David S. Miller4c9483b2011-03-12 16:22:43 -0500829 if ((fl6.flowlabel&IPV6_FLOWLABEL_MASK) && !flowlabel) {
830 flowlabel = fl6_sock_lookup(sk, fl6.flowlabel);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700831 if (flowlabel == NULL)
832 return -EINVAL;
833 }
834 if (!(opt->opt_nflen|opt->opt_flen))
835 opt = NULL;
836 }
837 if (opt == NULL)
838 opt = np->opt;
YOSHIFUJI Hideakidf9890c2005-11-20 12:23:18 +0900839 if (flowlabel)
840 opt = fl6_merge_options(&opt_space, flowlabel, opt);
841 opt = ipv6_fixup_options(&opt_space, opt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700842
David S. Miller4c9483b2011-03-12 16:22:43 -0500843 fl6.flowi6_proto = proto;
844 err = rawv6_probe_proto_opt(&fl6, msg);
Heiko Carstensa27b58f2006-10-30 15:06:12 -0800845 if (err)
846 goto out;
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900847
Brian Haley876c7f42008-04-11 00:38:24 -0400848 if (!ipv6_addr_any(daddr))
Alexey Dobriyan4e3fd7a2011-11-21 03:39:03 +0000849 fl6.daddr = *daddr;
Brian Haley876c7f42008-04-11 00:38:24 -0400850 else
David S. Miller4c9483b2011-03-12 16:22:43 -0500851 fl6.daddr.s6_addr[15] = 0x1; /* :: means loopback (BSD'ism) */
852 if (ipv6_addr_any(&fl6.saddr) && !ipv6_addr_any(&np->saddr))
Alexey Dobriyan4e3fd7a2011-11-21 03:39:03 +0000853 fl6.saddr = np->saddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700854
David S. Miller4c9483b2011-03-12 16:22:43 -0500855 final_p = fl6_update_dst(&fl6, opt, &final);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700856
David S. Miller4c9483b2011-03-12 16:22:43 -0500857 if (!fl6.flowi6_oif && ipv6_addr_is_multicast(&fl6.daddr))
858 fl6.flowi6_oif = np->mcast_oif;
859 security_sk_classify_flow(sk, flowi6_to_flowi(&fl6));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700860
David S. Miller4c9483b2011-03-12 16:22:43 -0500861 dst = ip6_dst_lookup_flow(sk, &fl6, final_p, true);
David S. Miller68d0c6d2011-03-01 13:19:07 -0800862 if (IS_ERR(dst)) {
863 err = PTR_ERR(dst);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700864 goto out;
David S. Miller14e50e52007-05-24 18:17:54 -0700865 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700866 if (hlimit < 0) {
David S. Miller4c9483b2011-03-12 16:22:43 -0500867 if (ipv6_addr_is_multicast(&fl6.daddr))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700868 hlimit = np->mcast_hops;
869 else
870 hlimit = np->hop_limit;
871 if (hlimit < 0)
YOSHIFUJI Hideaki6b75d092008-03-10 06:00:30 -0400872 hlimit = ip6_dst_hoplimit(dst);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700873 }
874
Gerrit Renkere651f032009-08-09 08:12:48 +0000875 if (tclass < 0)
YOSHIFUJI Hideakie012d512006-09-13 20:01:28 -0700876 tclass = np->tclass;
YOSHIFUJI Hideaki41a1f8e2005-09-08 10:19:03 +0900877
Brian Haley13b52cd2010-04-23 11:26:08 +0000878 if (dontfrag < 0)
879 dontfrag = np->dontfrag;
880
Linus Torvalds1da177e2005-04-16 15:20:36 -0700881 if (msg->msg_flags&MSG_CONFIRM)
882 goto do_confirm;
883
884back_from_confirm:
Eric Dumazet1789a642010-06-03 22:23:57 +0000885 if (inet->hdrincl)
David S. Miller4c9483b2011-03-12 16:22:43 -0500886 err = rawv6_send_hdrinc(sk, msg->msg_iov, len, &fl6, &dst, msg->msg_flags);
Eric Dumazet1789a642010-06-03 22:23:57 +0000887 else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700888 lock_sock(sk);
YOSHIFUJI Hideaki41a1f8e2005-09-08 10:19:03 +0900889 err = ip6_append_data(sk, ip_generic_getfrag, msg->msg_iov,
David S. Miller4c9483b2011-03-12 16:22:43 -0500890 len, 0, hlimit, tclass, opt, &fl6, (struct rt6_info*)dst,
Brian Haley13b52cd2010-04-23 11:26:08 +0000891 msg->msg_flags, dontfrag);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700892
893 if (err)
894 ip6_flush_pending_frames(sk);
895 else if (!(msg->msg_flags & MSG_MORE))
David S. Miller4c9483b2011-03-12 16:22:43 -0500896 err = rawv6_push_pending_frames(sk, &fl6, rp);
YOSHIFUJI Hideaki3ef9d942007-09-14 16:45:40 -0700897 release_sock(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700898 }
899done:
Nicolas DICHTEL6d3e85e2006-02-13 15:56:13 -0800900 dst_release(dst);
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900901out:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700902 fl6_sock_release(flowlabel);
903 return err<0?err:len;
904do_confirm:
905 dst_confirm(dst);
906 if (!(msg->msg_flags & MSG_PROBE) || len)
907 goto back_from_confirm;
908 err = 0;
909 goto done;
910}
911
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900912static int rawv6_seticmpfilter(struct sock *sk, int level, int optname,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700913 char __user *optval, int optlen)
914{
915 switch (optname) {
916 case ICMPV6_FILTER:
917 if (optlen > sizeof(struct icmp6_filter))
918 optlen = sizeof(struct icmp6_filter);
919 if (copy_from_user(&raw6_sk(sk)->filter, optval, optlen))
920 return -EFAULT;
921 return 0;
922 default:
923 return -ENOPROTOOPT;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -0700924 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700925
926 return 0;
927}
928
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900929static int rawv6_geticmpfilter(struct sock *sk, int level, int optname,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700930 char __user *optval, int __user *optlen)
931{
932 int len;
933
934 switch (optname) {
935 case ICMPV6_FILTER:
936 if (get_user(len, optlen))
937 return -EFAULT;
938 if (len < 0)
939 return -EINVAL;
940 if (len > sizeof(struct icmp6_filter))
941 len = sizeof(struct icmp6_filter);
942 if (put_user(len, optlen))
943 return -EFAULT;
944 if (copy_to_user(optval, &raw6_sk(sk)->filter, len))
945 return -EFAULT;
946 return 0;
947 default:
948 return -ENOPROTOOPT;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -0700949 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700950
951 return 0;
952}
953
954
Dmitry Mishin3fdadf72006-03-20 22:45:21 -0800955static int do_rawv6_setsockopt(struct sock *sk, int level, int optname,
David S. Millerb7058842009-09-30 16:12:20 -0700956 char __user *optval, unsigned int optlen)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700957{
958 struct raw6_sock *rp = raw6_sk(sk);
959 int val;
960
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900961 if (get_user(val, (int __user *)optval))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700962 return -EFAULT;
963
964 switch (optname) {
Joe Perches207ec0a2011-07-01 09:43:08 +0000965 case IPV6_CHECKSUM:
966 if (inet_sk(sk)->inet_num == IPPROTO_ICMPV6 &&
967 level == IPPROTO_IPV6) {
968 /*
969 * RFC3542 tells that IPV6_CHECKSUM socket
970 * option in the IPPROTO_IPV6 level is not
971 * allowed on ICMPv6 sockets.
972 * If you want to set it, use IPPROTO_RAW
973 * level IPV6_CHECKSUM socket option
974 * (Linux extension).
975 */
976 return -EINVAL;
977 }
YOSHIFUJI Hideaki1a98d052008-04-24 21:30:38 -0700978
Joe Perches207ec0a2011-07-01 09:43:08 +0000979 /* You may get strange result with a positive odd offset;
980 RFC2292bis agrees with me. */
981 if (val > 0 && (val&1))
982 return -EINVAL;
983 if (val < 0) {
984 rp->checksum = 0;
985 } else {
986 rp->checksum = 1;
987 rp->offset = val;
988 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700989
Joe Perches207ec0a2011-07-01 09:43:08 +0000990 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700991
Joe Perches207ec0a2011-07-01 09:43:08 +0000992 default:
993 return -ENOPROTOOPT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700994 }
995}
996
Dmitry Mishin3fdadf72006-03-20 22:45:21 -0800997static int rawv6_setsockopt(struct sock *sk, int level, int optname,
David S. Millerb7058842009-09-30 16:12:20 -0700998 char __user *optval, unsigned int optlen)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700999{
Joe Perches207ec0a2011-07-01 09:43:08 +00001000 switch (level) {
1001 case SOL_RAW:
1002 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001003
Joe Perches207ec0a2011-07-01 09:43:08 +00001004 case SOL_ICMPV6:
1005 if (inet_sk(sk)->inet_num != IPPROTO_ICMPV6)
1006 return -EOPNOTSUPP;
1007 return rawv6_seticmpfilter(sk, level, optname, optval, optlen);
1008 case SOL_IPV6:
1009 if (optname == IPV6_CHECKSUM)
1010 break;
1011 default:
1012 return ipv6_setsockopt(sk, level, optname, optval, optlen);
Stephen Hemminger3ff50b72007-04-20 17:09:22 -07001013 }
1014
Dmitry Mishin3fdadf72006-03-20 22:45:21 -08001015 return do_rawv6_setsockopt(sk, level, optname, optval, optlen);
1016}
1017
1018#ifdef CONFIG_COMPAT
1019static int compat_rawv6_setsockopt(struct sock *sk, int level, int optname,
David S. Millerb7058842009-09-30 16:12:20 -07001020 char __user *optval, unsigned int optlen)
Dmitry Mishin3fdadf72006-03-20 22:45:21 -08001021{
Arnaldo Carvalho de Melo543d9cf2006-03-20 22:48:35 -08001022 switch (level) {
1023 case SOL_RAW:
1024 break;
1025 case SOL_ICMPV6:
Eric Dumazetc720c7e2009-10-15 06:30:45 +00001026 if (inet_sk(sk)->inet_num != IPPROTO_ICMPV6)
Arnaldo Carvalho de Melo543d9cf2006-03-20 22:48:35 -08001027 return -EOPNOTSUPP;
1028 return rawv6_seticmpfilter(sk, level, optname, optval, optlen);
1029 case SOL_IPV6:
1030 if (optname == IPV6_CHECKSUM)
Dmitry Mishin3fdadf72006-03-20 22:45:21 -08001031 break;
Arnaldo Carvalho de Melo543d9cf2006-03-20 22:48:35 -08001032 default:
1033 return compat_ipv6_setsockopt(sk, level, optname,
1034 optval, optlen);
Stephen Hemminger3ff50b72007-04-20 17:09:22 -07001035 }
Dmitry Mishin3fdadf72006-03-20 22:45:21 -08001036 return do_rawv6_setsockopt(sk, level, optname, optval, optlen);
1037}
1038#endif
1039
1040static int do_rawv6_getsockopt(struct sock *sk, int level, int optname,
1041 char __user *optval, int __user *optlen)
1042{
1043 struct raw6_sock *rp = raw6_sk(sk);
1044 int val, len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001045
1046 if (get_user(len,optlen))
1047 return -EFAULT;
1048
1049 switch (optname) {
1050 case IPV6_CHECKSUM:
YOSHIFUJI Hideaki1a98d052008-04-24 21:30:38 -07001051 /*
1052 * We allow getsockopt() for IPPROTO_IPV6-level
1053 * IPV6_CHECKSUM socket option on ICMPv6 sockets
1054 * since RFC3542 is silent about it.
1055 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001056 if (rp->checksum == 0)
1057 val = -1;
1058 else
1059 val = rp->offset;
1060 break;
1061
1062 default:
1063 return -ENOPROTOOPT;
1064 }
1065
1066 len = min_t(unsigned int, sizeof(int), len);
1067
1068 if (put_user(len, optlen))
1069 return -EFAULT;
1070 if (copy_to_user(optval,&val,len))
1071 return -EFAULT;
1072 return 0;
1073}
1074
Dmitry Mishin3fdadf72006-03-20 22:45:21 -08001075static int rawv6_getsockopt(struct sock *sk, int level, int optname,
1076 char __user *optval, int __user *optlen)
1077{
Joe Perches207ec0a2011-07-01 09:43:08 +00001078 switch (level) {
1079 case SOL_RAW:
1080 break;
Dmitry Mishin3fdadf72006-03-20 22:45:21 -08001081
Joe Perches207ec0a2011-07-01 09:43:08 +00001082 case SOL_ICMPV6:
1083 if (inet_sk(sk)->inet_num != IPPROTO_ICMPV6)
1084 return -EOPNOTSUPP;
1085 return rawv6_geticmpfilter(sk, level, optname, optval, optlen);
1086 case SOL_IPV6:
1087 if (optname == IPV6_CHECKSUM)
1088 break;
1089 default:
1090 return ipv6_getsockopt(sk, level, optname, optval, optlen);
Stephen Hemminger3ff50b72007-04-20 17:09:22 -07001091 }
1092
Dmitry Mishin3fdadf72006-03-20 22:45:21 -08001093 return do_rawv6_getsockopt(sk, level, optname, optval, optlen);
1094}
1095
1096#ifdef CONFIG_COMPAT
1097static int compat_rawv6_getsockopt(struct sock *sk, int level, int optname,
Arnaldo Carvalho de Melo543d9cf2006-03-20 22:48:35 -08001098 char __user *optval, int __user *optlen)
Dmitry Mishin3fdadf72006-03-20 22:45:21 -08001099{
Arnaldo Carvalho de Melo543d9cf2006-03-20 22:48:35 -08001100 switch (level) {
1101 case SOL_RAW:
1102 break;
1103 case SOL_ICMPV6:
Eric Dumazetc720c7e2009-10-15 06:30:45 +00001104 if (inet_sk(sk)->inet_num != IPPROTO_ICMPV6)
Arnaldo Carvalho de Melo543d9cf2006-03-20 22:48:35 -08001105 return -EOPNOTSUPP;
1106 return rawv6_geticmpfilter(sk, level, optname, optval, optlen);
1107 case SOL_IPV6:
1108 if (optname == IPV6_CHECKSUM)
Dmitry Mishin3fdadf72006-03-20 22:45:21 -08001109 break;
Arnaldo Carvalho de Melo543d9cf2006-03-20 22:48:35 -08001110 default:
1111 return compat_ipv6_getsockopt(sk, level, optname,
1112 optval, optlen);
Stephen Hemminger3ff50b72007-04-20 17:09:22 -07001113 }
Dmitry Mishin3fdadf72006-03-20 22:45:21 -08001114 return do_rawv6_getsockopt(sk, level, optname, optval, optlen);
1115}
1116#endif
1117
Linus Torvalds1da177e2005-04-16 15:20:36 -07001118static int rawv6_ioctl(struct sock *sk, int cmd, unsigned long arg)
1119{
Joe Perches207ec0a2011-07-01 09:43:08 +00001120 switch (cmd) {
1121 case SIOCOUTQ: {
1122 int amount = sk_wmem_alloc_get(sk);
Eric Dumazet31e6d362009-06-17 19:05:41 -07001123
Joe Perches207ec0a2011-07-01 09:43:08 +00001124 return put_user(amount, (int __user *)arg);
1125 }
1126 case SIOCINQ: {
1127 struct sk_buff *skb;
1128 int amount = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001129
Joe Perches207ec0a2011-07-01 09:43:08 +00001130 spin_lock_bh(&sk->sk_receive_queue.lock);
1131 skb = skb_peek(&sk->sk_receive_queue);
1132 if (skb != NULL)
1133 amount = skb->tail - skb->transport_header;
1134 spin_unlock_bh(&sk->sk_receive_queue.lock);
1135 return put_user(amount, (int __user *)arg);
1136 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001137
Joe Perches207ec0a2011-07-01 09:43:08 +00001138 default:
YOSHIFUJI Hideaki7bc570c2008-04-03 09:22:53 +09001139#ifdef CONFIG_IPV6_MROUTE
Joe Perches207ec0a2011-07-01 09:43:08 +00001140 return ip6mr_ioctl(sk, cmd, (void __user *)arg);
YOSHIFUJI Hideaki7bc570c2008-04-03 09:22:53 +09001141#else
Joe Perches207ec0a2011-07-01 09:43:08 +00001142 return -ENOIOCTLCMD;
YOSHIFUJI Hideaki7bc570c2008-04-03 09:22:53 +09001143#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001144 }
1145}
1146
David S. Millere2d57762011-02-03 17:59:32 -08001147#ifdef CONFIG_COMPAT
1148static int compat_rawv6_ioctl(struct sock *sk, unsigned int cmd, unsigned long arg)
1149{
1150 switch (cmd) {
1151 case SIOCOUTQ:
1152 case SIOCINQ:
1153 return -ENOIOCTLCMD;
1154 default:
1155#ifdef CONFIG_IPV6_MROUTE
1156 return ip6mr_compat_ioctl(sk, cmd, compat_ptr(arg));
1157#else
1158 return -ENOIOCTLCMD;
1159#endif
1160 }
1161}
1162#endif
1163
Linus Torvalds1da177e2005-04-16 15:20:36 -07001164static void rawv6_close(struct sock *sk, long timeout)
1165{
Eric Dumazetc720c7e2009-10-15 06:30:45 +00001166 if (inet_sk(sk)->inet_num == IPPROTO_RAW)
Denis V. Lunev725a8ff2008-07-19 00:28:58 -07001167 ip6_ra_control(sk, -1);
YOSHIFUJI Hideaki7bc570c2008-04-03 09:22:53 +09001168 ip6mr_sk_done(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001169 sk_common_release(sk);
1170}
1171
Brian Haley7d06b2e2008-06-14 17:04:49 -07001172static void raw6_destroy(struct sock *sk)
Denis V. Lunev22dd4852008-06-04 15:16:12 -07001173{
1174 lock_sock(sk);
1175 ip6_flush_pending_frames(sk);
1176 release_sock(sk);
David S. Millerf23d60d2008-06-12 14:47:58 -07001177
Brian Haley7d06b2e2008-06-14 17:04:49 -07001178 inet6_destroy_sock(sk);
Denis V. Lunev22dd4852008-06-04 15:16:12 -07001179}
1180
Linus Torvalds1da177e2005-04-16 15:20:36 -07001181static int rawv6_init_sk(struct sock *sk)
1182{
Masahide NAKAMURAf48d5ff2007-02-07 00:07:39 -08001183 struct raw6_sock *rp = raw6_sk(sk);
1184
Eric Dumazetc720c7e2009-10-15 06:30:45 +00001185 switch (inet_sk(sk)->inet_num) {
Masahide NAKAMURAf48d5ff2007-02-07 00:07:39 -08001186 case IPPROTO_ICMPV6:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001187 rp->checksum = 1;
1188 rp->offset = 2;
Masahide NAKAMURAf48d5ff2007-02-07 00:07:39 -08001189 break;
1190 case IPPROTO_MH:
1191 rp->checksum = 1;
1192 rp->offset = 4;
1193 break;
1194 default:
1195 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001196 }
Eric Dumazeta02cec22010-09-22 20:43:57 +00001197 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001198}
1199
1200struct proto rawv6_prot = {
Arnaldo Carvalho de Melo543d9cf2006-03-20 22:48:35 -08001201 .name = "RAWv6",
1202 .owner = THIS_MODULE,
1203 .close = rawv6_close,
Denis V. Lunev22dd4852008-06-04 15:16:12 -07001204 .destroy = raw6_destroy,
Arnaldo Carvalho de Melo543d9cf2006-03-20 22:48:35 -08001205 .connect = ip6_datagram_connect,
1206 .disconnect = udp_disconnect,
1207 .ioctl = rawv6_ioctl,
1208 .init = rawv6_init_sk,
Arnaldo Carvalho de Melo543d9cf2006-03-20 22:48:35 -08001209 .setsockopt = rawv6_setsockopt,
1210 .getsockopt = rawv6_getsockopt,
1211 .sendmsg = rawv6_sendmsg,
1212 .recvmsg = rawv6_recvmsg,
1213 .bind = rawv6_bind,
1214 .backlog_rcv = rawv6_rcv_skb,
Pavel Emelyanovfc8717b2008-03-22 16:56:51 -07001215 .hash = raw_hash_sk,
1216 .unhash = raw_unhash_sk,
Arnaldo Carvalho de Melo543d9cf2006-03-20 22:48:35 -08001217 .obj_size = sizeof(struct raw6_sock),
Pavel Emelyanovfc8717b2008-03-22 16:56:51 -07001218 .h.raw_hash = &raw_v6_hashinfo,
Dmitry Mishin3fdadf72006-03-20 22:45:21 -08001219#ifdef CONFIG_COMPAT
Arnaldo Carvalho de Melo543d9cf2006-03-20 22:48:35 -08001220 .compat_setsockopt = compat_rawv6_setsockopt,
1221 .compat_getsockopt = compat_rawv6_getsockopt,
David S. Millere2d57762011-02-03 17:59:32 -08001222 .compat_ioctl = compat_rawv6_ioctl,
Dmitry Mishin3fdadf72006-03-20 22:45:21 -08001223#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001224};
1225
1226#ifdef CONFIG_PROC_FS
Linus Torvalds1da177e2005-04-16 15:20:36 -07001227static void raw6_sock_seq_show(struct seq_file *seq, struct sock *sp, int i)
1228{
1229 struct ipv6_pinfo *np = inet6_sk(sp);
Eric Dumazetb71d1d42011-04-22 04:53:02 +00001230 const struct in6_addr *dest, *src;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001231 __u16 destp, srcp;
1232
1233 dest = &np->daddr;
1234 src = &np->rcv_saddr;
1235 destp = 0;
Eric Dumazetc720c7e2009-10-15 06:30:45 +00001236 srcp = inet_sk(sp)->inet_num;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001237 seq_printf(seq,
1238 "%4d: %08X%08X%08X%08X:%04X %08X%08X%08X%08X:%04X "
Dan Rosenberg71338aa2011-05-23 12:17:35 +00001239 "%02X %08X:%08X %02X:%08lX %08X %5d %8d %lu %d %pK %d\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001240 i,
1241 src->s6_addr32[0], src->s6_addr32[1],
1242 src->s6_addr32[2], src->s6_addr32[3], srcp,
1243 dest->s6_addr32[0], dest->s6_addr32[1],
1244 dest->s6_addr32[2], dest->s6_addr32[3], destp,
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09001245 sp->sk_state,
Eric Dumazet31e6d362009-06-17 19:05:41 -07001246 sk_wmem_alloc_get(sp),
1247 sk_rmem_alloc_get(sp),
Linus Torvalds1da177e2005-04-16 15:20:36 -07001248 0, 0L, 0,
1249 sock_i_uid(sp), 0,
1250 sock_i_ino(sp),
Wang Chena92aa312007-11-13 20:31:14 -08001251 atomic_read(&sp->sk_refcnt), sp, atomic_read(&sp->sk_drops));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001252}
1253
1254static int raw6_seq_show(struct seq_file *seq, void *v)
1255{
1256 if (v == SEQ_START_TOKEN)
1257 seq_printf(seq,
1258 " sl "
1259 "local_address "
1260 "remote_address "
1261 "st tx_queue rx_queue tr tm->when retrnsmt"
Eric Dumazetcb61cb92008-06-17 21:04:56 -07001262 " uid timeout inode ref pointer drops\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001263 else
Pavel Emelyanov42a73802007-11-19 22:38:33 -08001264 raw6_sock_seq_show(seq, v, raw_seq_private(seq)->bucket);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001265 return 0;
1266}
1267
Philippe De Muyter56b3d972007-07-10 23:07:31 -07001268static const struct seq_operations raw6_seq_ops = {
Pavel Emelyanov42a73802007-11-19 22:38:33 -08001269 .start = raw_seq_start,
1270 .next = raw_seq_next,
1271 .stop = raw_seq_stop,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001272 .show = raw6_seq_show,
1273};
1274
1275static int raw6_seq_open(struct inode *inode, struct file *file)
1276{
Denis V. Lunev3046d762008-01-31 03:48:55 -08001277 return raw_seq_open(inode, file, &raw_v6_hashinfo, &raw6_seq_ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001278}
1279
Arjan van de Ven9a321442007-02-12 00:55:35 -08001280static const struct file_operations raw6_seq_fops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001281 .owner = THIS_MODULE,
1282 .open = raw6_seq_open,
1283 .read = seq_read,
1284 .llseek = seq_lseek,
Pavel Emelyanovf51d5992008-01-14 05:35:57 -08001285 .release = seq_release_net,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001286};
1287
Alexey Dobriyan2c8c1e72010-01-17 03:35:32 +00001288static int __net_init raw6_init_net(struct net *net)
Pavel Emelyanova308da12008-01-14 05:36:50 -08001289{
1290 if (!proc_net_fops_create(net, "raw6", S_IRUGO, &raw6_seq_fops))
1291 return -ENOMEM;
1292
1293 return 0;
1294}
1295
Alexey Dobriyan2c8c1e72010-01-17 03:35:32 +00001296static void __net_exit raw6_exit_net(struct net *net)
Pavel Emelyanova308da12008-01-14 05:36:50 -08001297{
1298 proc_net_remove(net, "raw6");
1299}
1300
1301static struct pernet_operations raw6_net_ops = {
1302 .init = raw6_init_net,
1303 .exit = raw6_exit_net,
1304};
1305
Linus Torvalds1da177e2005-04-16 15:20:36 -07001306int __init raw6_proc_init(void)
1307{
Pavel Emelyanova308da12008-01-14 05:36:50 -08001308 return register_pernet_subsys(&raw6_net_ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001309}
1310
1311void raw6_proc_exit(void)
1312{
Pavel Emelyanova308da12008-01-14 05:36:50 -08001313 unregister_pernet_subsys(&raw6_net_ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001314}
1315#endif /* CONFIG_PROC_FS */
Daniel Lezcano7f4e4862007-12-11 02:25:35 -08001316
1317/* Same as inet6_dgram_ops, sans udp_poll. */
1318static const struct proto_ops inet6_sockraw_ops = {
1319 .family = PF_INET6,
1320 .owner = THIS_MODULE,
1321 .release = inet6_release,
1322 .bind = inet6_bind,
1323 .connect = inet_dgram_connect, /* ok */
1324 .socketpair = sock_no_socketpair, /* a do nothing */
1325 .accept = sock_no_accept, /* a do nothing */
1326 .getname = inet6_getname,
1327 .poll = datagram_poll, /* ok */
1328 .ioctl = inet6_ioctl, /* must change */
1329 .listen = sock_no_listen, /* ok */
1330 .shutdown = inet_shutdown, /* ok */
1331 .setsockopt = sock_common_setsockopt, /* ok */
1332 .getsockopt = sock_common_getsockopt, /* ok */
1333 .sendmsg = inet_sendmsg, /* ok */
1334 .recvmsg = sock_common_recvmsg, /* ok */
1335 .mmap = sock_no_mmap,
1336 .sendpage = sock_no_sendpage,
1337#ifdef CONFIG_COMPAT
1338 .compat_setsockopt = compat_sock_common_setsockopt,
1339 .compat_getsockopt = compat_sock_common_getsockopt,
1340#endif
1341};
1342
1343static struct inet_protosw rawv6_protosw = {
1344 .type = SOCK_RAW,
1345 .protocol = IPPROTO_IP, /* wild card */
1346 .prot = &rawv6_prot,
1347 .ops = &inet6_sockraw_ops,
Daniel Lezcano7f4e4862007-12-11 02:25:35 -08001348 .no_check = UDP_CSUM_DEFAULT,
1349 .flags = INET_PROTOSW_REUSE,
1350};
1351
1352int __init rawv6_init(void)
1353{
1354 int ret;
1355
1356 ret = inet6_register_protosw(&rawv6_protosw);
1357 if (ret)
1358 goto out;
1359out:
1360 return ret;
1361}
1362
Daniel Lezcano09f77092007-12-13 05:34:58 -08001363void rawv6_exit(void)
Daniel Lezcano7f4e4862007-12-11 02:25:35 -08001364{
1365 inet6_unregister_protosw(&rawv6_protosw);
1366}