blob: 4a4dcbe4f8b22bdc813cc75aaf821b023952d187 [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>
Linus Torvalds1da177e2005-04-16 15:20:36 -070034#include <asm/uaccess.h>
35#include <asm/ioctls.h>
36
Eric W. Biederman457c4cb2007-09-12 12:01:34 +020037#include <net/net_namespace.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070038#include <net/ip.h>
39#include <net/sock.h>
40#include <net/snmp.h>
41
42#include <net/ipv6.h>
43#include <net/ndisc.h>
44#include <net/protocol.h>
45#include <net/ip6_route.h>
46#include <net/ip6_checksum.h>
47#include <net/addrconf.h>
48#include <net/transp_v6.h>
49#include <net/udp.h>
50#include <net/inet_common.h>
Arnaldo Carvalho de Meloc752f072005-08-09 20:08:28 -070051#include <net/tcp_states.h>
Masahide NAKAMURA59fbb3a62007-06-26 23:56:32 -070052#if defined(CONFIG_IPV6_MIP6) || defined(CONFIG_IPV6_MIP6_MODULE)
Masahide NAKAMURA7be96f72006-08-23 20:35:31 -070053#include <net/mip6.h>
54#endif
YOSHIFUJI Hideaki7bc570c2008-04-03 09:22:53 +090055#include <linux/mroute6.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070056
Pavel Emelyanovb673e4d2007-11-19 22:36:45 -080057#include <net/raw.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070058#include <net/rawv6.h>
59#include <net/xfrm.h>
60
61#include <linux/proc_fs.h>
62#include <linux/seq_file.h>
63
Pavel Emelyanovb673e4d2007-11-19 22:36:45 -080064static struct raw_hashinfo raw_v6_hashinfo = {
Robert P. J. Day938b93a2008-03-18 00:59:23 -070065 .lock = __RW_LOCK_UNLOCKED(raw_v6_hashinfo.lock),
Pavel Emelyanovb673e4d2007-11-19 22:36:45 -080066};
Linus Torvalds1da177e2005-04-16 15:20:36 -070067
Pavel Emelyanovbe185882008-01-14 05:35:31 -080068static struct sock *__raw_v6_lookup(struct net *net, struct sock *sk,
69 unsigned short num, struct in6_addr *loc_addr,
70 struct in6_addr *rmt_addr, int dif)
Linus Torvalds1da177e2005-04-16 15:20:36 -070071{
72 struct hlist_node *node;
73 int is_multicast = ipv6_addr_is_multicast(loc_addr);
74
75 sk_for_each_from(sk, node)
Eric Dumazetc720c7e2009-10-15 06:30:45 +000076 if (inet_sk(sk)->inet_num == num) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070077 struct ipv6_pinfo *np = inet6_sk(sk);
78
YOSHIFUJI Hideaki878628f2008-03-26 03:57:35 +090079 if (!net_eq(sock_net(sk), net))
Pavel Emelyanovbe185882008-01-14 05:35:31 -080080 continue;
81
Linus Torvalds1da177e2005-04-16 15:20:36 -070082 if (!ipv6_addr_any(&np->daddr) &&
83 !ipv6_addr_equal(&np->daddr, rmt_addr))
84 continue;
85
Andrew McDonald0bd1b592005-08-09 19:44:42 -070086 if (sk->sk_bound_dev_if && sk->sk_bound_dev_if != dif)
87 continue;
88
Linus Torvalds1da177e2005-04-16 15:20:36 -070089 if (!ipv6_addr_any(&np->rcv_saddr)) {
90 if (ipv6_addr_equal(&np->rcv_saddr, loc_addr))
91 goto found;
92 if (is_multicast &&
93 inet6_mc_check(sk, loc_addr, rmt_addr))
94 goto found;
95 continue;
96 }
97 goto found;
98 }
99 sk = NULL;
100found:
101 return sk;
102}
103
104/*
105 * 0 - deliver
106 * 1 - block
107 */
108static __inline__ int icmpv6_filter(struct sock *sk, struct sk_buff *skb)
109{
110 struct icmp6hdr *icmph;
111 struct raw6_sock *rp = raw6_sk(sk);
112
113 if (pskb_may_pull(skb, sizeof(struct icmp6hdr))) {
114 __u32 *data = &rp->filter.data[0];
115 int bit_nr;
116
117 icmph = (struct icmp6hdr *) skb->data;
118 bit_nr = icmph->icmp6_type;
119
120 return (data[bit_nr >> 5] & (1 << (bit_nr & 31))) != 0;
121 }
122 return 0;
123}
124
Masahide NAKAMURA59fbb3a62007-06-26 23:56:32 -0700125#if defined(CONFIG_IPV6_MIP6) || defined(CONFIG_IPV6_MIP6_MODULE)
126static int (*mh_filter)(struct sock *sock, struct sk_buff *skb);
127
128int rawv6_mh_filter_register(int (*filter)(struct sock *sock,
129 struct sk_buff *skb))
130{
131 rcu_assign_pointer(mh_filter, filter);
132 return 0;
133}
134EXPORT_SYMBOL(rawv6_mh_filter_register);
135
136int rawv6_mh_filter_unregister(int (*filter)(struct sock *sock,
137 struct sk_buff *skb))
138{
139 rcu_assign_pointer(mh_filter, NULL);
140 synchronize_rcu();
141 return 0;
142}
143EXPORT_SYMBOL(rawv6_mh_filter_unregister);
144
145#endif
146
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147/*
148 * demultiplex raw sockets.
149 * (should consider queueing the skb in the sock receive_queue
150 * without calling rawv6.c)
151 *
152 * Caller owns SKB so we must make clones.
153 */
Pavel Emelyanov69d6da02007-11-19 22:35:57 -0800154static int ipv6_raw_deliver(struct sk_buff *skb, int nexthdr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700155{
156 struct in6_addr *saddr;
157 struct in6_addr *daddr;
158 struct sock *sk;
Patrick McHardyd13964f2005-08-09 19:45:02 -0700159 int delivered = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700160 __u8 hash;
Pavel Emelyanovbe185882008-01-14 05:35:31 -0800161 struct net *net;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700162
Arnaldo Carvalho de Melo0660e032007-04-25 17:54:47 -0700163 saddr = &ipv6_hdr(skb)->saddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700164 daddr = saddr + 1;
165
166 hash = nexthdr & (MAX_INET_PROTOS - 1);
167
Pavel Emelyanovb673e4d2007-11-19 22:36:45 -0800168 read_lock(&raw_v6_hashinfo.lock);
169 sk = sk_head(&raw_v6_hashinfo.ht[hash]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700170
Linus Torvalds1da177e2005-04-16 15:20:36 -0700171 if (sk == NULL)
172 goto out;
173
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +0900174 net = dev_net(skb->dev);
Pavel Emelyanovbe185882008-01-14 05:35:31 -0800175 sk = __raw_v6_lookup(net, sk, nexthdr, daddr, saddr, IP6CB(skb)->iif);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700176
177 while (sk) {
Masahide NAKAMURA7be96f72006-08-23 20:35:31 -0700178 int filtered;
179
Patrick McHardyd13964f2005-08-09 19:45:02 -0700180 delivered = 1;
Masahide NAKAMURA7be96f72006-08-23 20:35:31 -0700181 switch (nexthdr) {
182 case IPPROTO_ICMPV6:
183 filtered = icmpv6_filter(sk, skb);
184 break;
Masahide NAKAMURA59fbb3a62007-06-26 23:56:32 -0700185
186#if defined(CONFIG_IPV6_MIP6) || defined(CONFIG_IPV6_MIP6_MODULE)
Masahide NAKAMURA7be96f72006-08-23 20:35:31 -0700187 case IPPROTO_MH:
Masahide NAKAMURA59fbb3a62007-06-26 23:56:32 -0700188 {
Masahide NAKAMURA7be96f72006-08-23 20:35:31 -0700189 /* XXX: To validate MH only once for each packet,
190 * this is placed here. It should be after checking
191 * xfrm policy, however it doesn't. The checking xfrm
192 * policy is placed in rawv6_rcv() because it is
193 * required for each socket.
194 */
Masahide NAKAMURA59fbb3a62007-06-26 23:56:32 -0700195 int (*filter)(struct sock *sock, struct sk_buff *skb);
196
197 filter = rcu_dereference(mh_filter);
198 filtered = filter ? filter(sk, skb) : 0;
Masahide NAKAMURA7be96f72006-08-23 20:35:31 -0700199 break;
Masahide NAKAMURA59fbb3a62007-06-26 23:56:32 -0700200 }
Masahide NAKAMURA7be96f72006-08-23 20:35:31 -0700201#endif
202 default:
203 filtered = 0;
204 break;
205 }
206
207 if (filtered < 0)
208 break;
209 if (filtered == 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700210 struct sk_buff *clone = skb_clone(skb, GFP_ATOMIC);
211
212 /* Not releasing hash table! */
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800213 if (clone) {
214 nf_reset(clone);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700215 rawv6_rcv(sk, clone);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800216 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700217 }
Pavel Emelyanovbe185882008-01-14 05:35:31 -0800218 sk = __raw_v6_lookup(net, sk_next(sk), nexthdr, daddr, saddr,
YOSHIFUJI Hideaki2dac4b92005-09-01 17:44:49 -0700219 IP6CB(skb)->iif);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700220 }
221out:
Pavel Emelyanovb673e4d2007-11-19 22:36:45 -0800222 read_unlock(&raw_v6_hashinfo.lock);
Patrick McHardyd13964f2005-08-09 19:45:02 -0700223 return delivered;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700224}
225
Pavel Emelyanov69d6da02007-11-19 22:35:57 -0800226int raw6_local_deliver(struct sk_buff *skb, int nexthdr)
227{
228 struct sock *raw_sk;
229
Pavel Emelyanovb673e4d2007-11-19 22:36:45 -0800230 raw_sk = sk_head(&raw_v6_hashinfo.ht[nexthdr & (MAX_INET_PROTOS - 1)]);
Pavel Emelyanov69d6da02007-11-19 22:35:57 -0800231 if (raw_sk && !ipv6_raw_deliver(skb, nexthdr))
232 raw_sk = NULL;
233
234 return raw_sk != NULL;
235}
236
Linus Torvalds1da177e2005-04-16 15:20:36 -0700237/* This cleans up af_inet6 a bit. -DaveM */
238static int rawv6_bind(struct sock *sk, struct sockaddr *uaddr, int addr_len)
239{
240 struct inet_sock *inet = inet_sk(sk);
241 struct ipv6_pinfo *np = inet6_sk(sk);
242 struct sockaddr_in6 *addr = (struct sockaddr_in6 *) uaddr;
Al Viroe69a4adc2006-11-14 20:56:00 -0800243 __be32 v4addr = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700244 int addr_type;
245 int err;
246
247 if (addr_len < SIN6_LEN_RFC2133)
248 return -EINVAL;
249 addr_type = ipv6_addr_type(&addr->sin6_addr);
250
251 /* Raw sockets are IPv6 only */
252 if (addr_type == IPV6_ADDR_MAPPED)
Eric Dumazetfd5c0022009-11-06 07:01:17 +0000253 return -EADDRNOTAVAIL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700254
255 lock_sock(sk);
256
257 err = -EINVAL;
258 if (sk->sk_state != TCP_CLOSE)
259 goto out;
260
Eric Dumazetfd5c0022009-11-06 07:01:17 +0000261 rcu_read_lock();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700262 /* Check if the address belongs to the host. */
263 if (addr_type != IPV6_ADDR_ANY) {
264 struct net_device *dev = NULL;
265
266 if (addr_type & IPV6_ADDR_LINKLOCAL) {
267 if (addr_len >= sizeof(struct sockaddr_in6) &&
268 addr->sin6_scope_id) {
269 /* Override any existing binding, if another
270 * one is supplied by user.
271 */
272 sk->sk_bound_dev_if = addr->sin6_scope_id;
273 }
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900274
Linus Torvalds1da177e2005-04-16 15:20:36 -0700275 /* Binding to link-local address requires an interface */
276 if (!sk->sk_bound_dev_if)
Eric Dumazetfd5c0022009-11-06 07:01:17 +0000277 goto out_unlock;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700278
Eric Dumazetfd5c0022009-11-06 07:01:17 +0000279 err = -ENODEV;
280 dev = dev_get_by_index_rcu(sock_net(sk),
281 sk->sk_bound_dev_if);
282 if (!dev)
283 goto out_unlock;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700284 }
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900285
Linus Torvalds1da177e2005-04-16 15:20:36 -0700286 /* ipv4 addr of the socket is invalid. Only the
287 * unspecified and mapped address have a v4 equivalent.
288 */
289 v4addr = LOOPBACK4_IPV6;
290 if (!(addr_type & IPV6_ADDR_MULTICAST)) {
291 err = -EADDRNOTAVAIL;
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +0900292 if (!ipv6_chk_addr(sock_net(sk), &addr->sin6_addr,
Daniel Lezcanobfeade02008-01-10 22:43:18 -0800293 dev, 0)) {
Eric Dumazetfd5c0022009-11-06 07:01:17 +0000294 goto out_unlock;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700295 }
296 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700297 }
298
Eric Dumazetc720c7e2009-10-15 06:30:45 +0000299 inet->inet_rcv_saddr = inet->inet_saddr = v4addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700300 ipv6_addr_copy(&np->rcv_saddr, &addr->sin6_addr);
301 if (!(addr_type & IPV6_ADDR_MULTICAST))
302 ipv6_addr_copy(&np->saddr, &addr->sin6_addr);
303 err = 0;
Eric Dumazetfd5c0022009-11-06 07:01:17 +0000304out_unlock:
305 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700306out:
307 release_sock(sk);
308 return err;
309}
310
Pavel Emelyanov69d6da02007-11-19 22:35:57 -0800311static void rawv6_err(struct sock *sk, struct sk_buff *skb,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700312 struct inet6_skb_parm *opt,
Brian Haleyd5fdd6b2009-06-23 04:31:07 -0700313 u8 type, u8 code, int offset, __be32 info)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700314{
315 struct inet_sock *inet = inet_sk(sk);
316 struct ipv6_pinfo *np = inet6_sk(sk);
317 int err;
318 int harderr;
319
320 /* Report error on raw socket, if:
321 1. User requested recverr.
322 2. Socket is connected (otherwise the error indication
323 is useless without recverr and error is hard.
324 */
325 if (!np->recverr && sk->sk_state != TCP_ESTABLISHED)
326 return;
327
328 harderr = icmpv6_err_convert(type, code, &err);
329 if (type == ICMPV6_PKT_TOOBIG)
330 harderr = (np->pmtudisc == IPV6_PMTUDISC_DO);
331
332 if (np->recverr) {
333 u8 *payload = skb->data;
334 if (!inet->hdrincl)
335 payload += offset;
336 ipv6_icmp_error(sk, skb, err, 0, ntohl(info), payload);
337 }
338
339 if (np->recverr || harderr) {
340 sk->sk_err = err;
341 sk->sk_error_report(sk);
342 }
343}
344
Pavel Emelyanov69d6da02007-11-19 22:35:57 -0800345void raw6_icmp_error(struct sk_buff *skb, int nexthdr,
Brian Haleyd5fdd6b2009-06-23 04:31:07 -0700346 u8 type, u8 code, int inner_offset, __be32 info)
Pavel Emelyanov69d6da02007-11-19 22:35:57 -0800347{
348 struct sock *sk;
349 int hash;
350 struct in6_addr *saddr, *daddr;
Pavel Emelyanovbe185882008-01-14 05:35:31 -0800351 struct net *net;
Pavel Emelyanov69d6da02007-11-19 22:35:57 -0800352
Pavel Emelyanovb673e4d2007-11-19 22:36:45 -0800353 hash = nexthdr & (RAW_HTABLE_SIZE - 1);
Pavel Emelyanov69d6da02007-11-19 22:35:57 -0800354
Pavel Emelyanovb673e4d2007-11-19 22:36:45 -0800355 read_lock(&raw_v6_hashinfo.lock);
356 sk = sk_head(&raw_v6_hashinfo.ht[hash]);
Pavel Emelyanov69d6da02007-11-19 22:35:57 -0800357 if (sk != NULL) {
YOSHIFUJI Hideaki05f175c2008-04-11 23:51:26 +0900358 /* Note: ipv6_hdr(skb) != skb->data */
359 struct ipv6hdr *ip6h = (struct ipv6hdr *)skb->data;
360 saddr = &ip6h->saddr;
361 daddr = &ip6h->daddr;
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +0900362 net = dev_net(skb->dev);
Pavel Emelyanov69d6da02007-11-19 22:35:57 -0800363
Pavel Emelyanovbe185882008-01-14 05:35:31 -0800364 while ((sk = __raw_v6_lookup(net, sk, nexthdr, saddr, daddr,
Pavel Emelyanov69d6da02007-11-19 22:35:57 -0800365 IP6CB(skb)->iif))) {
366 rawv6_err(sk, skb, NULL, type, code,
367 inner_offset, info);
368 sk = sk_next(sk);
369 }
370 }
Pavel Emelyanovb673e4d2007-11-19 22:36:45 -0800371 read_unlock(&raw_v6_hashinfo.lock);
Pavel Emelyanov69d6da02007-11-19 22:35:57 -0800372}
373
Linus Torvalds1da177e2005-04-16 15:20:36 -0700374static inline int rawv6_rcv_skb(struct sock * sk, struct sk_buff * skb)
375{
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900376 if ((raw6_sk(sk)->checksum || sk->sk_filter) &&
Herbert Xufb286bb2005-11-10 13:01:24 -0800377 skb_checksum_complete(skb)) {
Wang Chena92aa312007-11-13 20:31:14 -0800378 atomic_inc(&sk->sk_drops);
Herbert Xufb286bb2005-11-10 13:01:24 -0800379 kfree_skb(skb);
Yang Hongyang3cc76ca2008-08-29 14:06:51 -0700380 return NET_RX_DROP;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700381 }
382
383 /* Charge it to the socket. */
Eric Dumazetf84af322010-04-28 15:31:51 -0700384 if (ip_queue_rcv_skb(sk, skb) < 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700385 kfree_skb(skb);
Yang Hongyang3cc76ca2008-08-29 14:06:51 -0700386 return NET_RX_DROP;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700387 }
388
389 return 0;
390}
391
392/*
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900393 * This is next to useless...
Linus Torvalds1da177e2005-04-16 15:20:36 -0700394 * if we demultiplex in network layer we don't need the extra call
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900395 * just to queue the skb...
396 * maybe we could have the network decide upon a hint if it
Linus Torvalds1da177e2005-04-16 15:20:36 -0700397 * should call raw_rcv for demultiplexing
398 */
399int rawv6_rcv(struct sock *sk, struct sk_buff *skb)
400{
401 struct inet_sock *inet = inet_sk(sk);
402 struct raw6_sock *rp = raw6_sk(sk);
403
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900404 if (!xfrm6_policy_check(sk, XFRM_POLICY_IN, skb)) {
Wang Chena92aa312007-11-13 20:31:14 -0800405 atomic_inc(&sk->sk_drops);
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900406 kfree_skb(skb);
407 return NET_RX_DROP;
408 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700409
410 if (!rp->checksum)
411 skb->ip_summed = CHECKSUM_UNNECESSARY;
412
Patrick McHardy84fa7932006-08-29 16:44:56 -0700413 if (skb->ip_summed == CHECKSUM_COMPLETE) {
Arnaldo Carvalho de Melod56f90a2007-04-10 20:50:43 -0700414 skb_postpull_rcsum(skb, skb_network_header(skb),
Arnaldo Carvalho de Melocfe1fc72007-03-16 17:26:39 -0300415 skb_network_header_len(skb));
Arnaldo Carvalho de Melo0660e032007-04-25 17:54:47 -0700416 if (!csum_ipv6_magic(&ipv6_hdr(skb)->saddr,
417 &ipv6_hdr(skb)->daddr,
Eric Dumazetc720c7e2009-10-15 06:30:45 +0000418 skb->len, inet->inet_num, skb->csum))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700419 skb->ip_summed = CHECKSUM_UNNECESSARY;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700420 }
Herbert Xu60476372007-04-09 11:59:39 -0700421 if (!skb_csum_unnecessary(skb))
Arnaldo Carvalho de Melo0660e032007-04-25 17:54:47 -0700422 skb->csum = ~csum_unfold(csum_ipv6_magic(&ipv6_hdr(skb)->saddr,
423 &ipv6_hdr(skb)->daddr,
424 skb->len,
Eric Dumazetc720c7e2009-10-15 06:30:45 +0000425 inet->inet_num, 0));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700426
427 if (inet->hdrincl) {
Herbert Xufb286bb2005-11-10 13:01:24 -0800428 if (skb_checksum_complete(skb)) {
Wang Chena92aa312007-11-13 20:31:14 -0800429 atomic_inc(&sk->sk_drops);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700430 kfree_skb(skb);
Yang Hongyang3cc76ca2008-08-29 14:06:51 -0700431 return NET_RX_DROP;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700432 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700433 }
434
435 rawv6_rcv_skb(sk, skb);
436 return 0;
437}
438
439
440/*
441 * This should be easy, if there is something there
442 * we return it, otherwise we block.
443 */
444
445static int rawv6_recvmsg(struct kiocb *iocb, struct sock *sk,
446 struct msghdr *msg, size_t len,
447 int noblock, int flags, int *addr_len)
448{
449 struct ipv6_pinfo *np = inet6_sk(sk);
450 struct sockaddr_in6 *sin6 = (struct sockaddr_in6 *)msg->msg_name;
451 struct sk_buff *skb;
452 size_t copied;
453 int err;
454
455 if (flags & MSG_OOB)
456 return -EOPNOTSUPP;
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900457
458 if (addr_len)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700459 *addr_len=sizeof(*sin6);
460
461 if (flags & MSG_ERRQUEUE)
462 return ipv6_recv_error(sk, msg, len);
463
Brian Haley4b340ae2010-04-23 11:26:09 +0000464 if (np->rxpmtu && np->rxopt.bits.rxpmtu)
465 return ipv6_recv_rxpmtu(sk, msg, len);
466
Linus Torvalds1da177e2005-04-16 15:20:36 -0700467 skb = skb_recv_datagram(sk, flags, noblock, &err);
468 if (!skb)
469 goto out;
470
471 copied = skb->len;
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900472 if (copied > len) {
473 copied = len;
474 msg->msg_flags |= MSG_TRUNC;
475 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700476
Herbert Xu60476372007-04-09 11:59:39 -0700477 if (skb_csum_unnecessary(skb)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700478 err = skb_copy_datagram_iovec(skb, 0, msg->msg_iov, copied);
479 } else if (msg->msg_flags&MSG_TRUNC) {
Herbert Xufb286bb2005-11-10 13:01:24 -0800480 if (__skb_checksum_complete(skb))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700481 goto csum_copy_err;
482 err = skb_copy_datagram_iovec(skb, 0, msg->msg_iov, copied);
483 } else {
484 err = skb_copy_and_csum_datagram_iovec(skb, 0, msg->msg_iov);
485 if (err == -EINVAL)
486 goto csum_copy_err;
487 }
488 if (err)
489 goto out_free;
490
491 /* Copy the address. */
492 if (sin6) {
493 sin6->sin6_family = AF_INET6;
Tetsuo Handaf59fc7f2006-07-25 17:05:35 -0700494 sin6->sin6_port = 0;
Arnaldo Carvalho de Melo0660e032007-04-25 17:54:47 -0700495 ipv6_addr_copy(&sin6->sin6_addr, &ipv6_hdr(skb)->saddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700496 sin6->sin6_flowinfo = 0;
497 sin6->sin6_scope_id = 0;
498 if (ipv6_addr_type(&sin6->sin6_addr) & IPV6_ADDR_LINKLOCAL)
499 sin6->sin6_scope_id = IP6CB(skb)->iif;
500 }
501
Neil Horman3b885782009-10-12 13:26:31 -0700502 sock_recv_ts_and_drops(msg, sk, skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700503
504 if (np->rxopt.all)
505 datagram_recv_ctl(sk, msg, skb);
506
507 err = copied;
508 if (flags & MSG_TRUNC)
509 err = skb->len;
510
511out_free:
512 skb_free_datagram(sk, skb);
513out:
514 return err;
515
516csum_copy_err:
Herbert Xu3305b802005-12-13 23:16:37 -0800517 skb_kill_datagram(sk, skb, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700518
519 /* Error for blocking case is chosen to masquerade
520 as some normal condition.
521 */
522 err = (flags&MSG_DONTWAIT) ? -EAGAIN : -EHOSTUNREACH;
Herbert Xu3305b802005-12-13 23:16:37 -0800523 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700524}
525
526static int rawv6_push_pending_frames(struct sock *sk, struct flowi *fl,
Herbert Xu357b40a2005-04-19 22:30:14 -0700527 struct raw6_sock *rp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700528{
529 struct sk_buff *skb;
530 int err = 0;
Herbert Xu357b40a2005-04-19 22:30:14 -0700531 int offset;
532 int len;
Herbert Xu679a8732005-05-03 14:24:36 -0700533 int total_len;
Al Viro868c86b2006-11-14 21:35:48 -0800534 __wsum tmp_csum;
535 __sum16 csum;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700536
537 if (!rp->checksum)
538 goto send;
539
540 if ((skb = skb_peek(&sk->sk_write_queue)) == NULL)
541 goto out;
542
Herbert Xu357b40a2005-04-19 22:30:14 -0700543 offset = rp->offset;
Arnaldo Carvalho de Melod56f90a2007-04-10 20:50:43 -0700544 total_len = inet_sk(sk)->cork.length - (skb_network_header(skb) -
545 skb->data);
Herbert Xu679a8732005-05-03 14:24:36 -0700546 if (offset >= total_len - 1) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700547 err = -EINVAL;
Herbert Xu357b40a2005-04-19 22:30:14 -0700548 ip6_flush_pending_frames(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700549 goto out;
550 }
551
552 /* should be check HW csum miyazawa */
553 if (skb_queue_len(&sk->sk_write_queue) == 1) {
554 /*
555 * Only one fragment on the socket.
556 */
557 tmp_csum = skb->csum;
558 } else {
Herbert Xu357b40a2005-04-19 22:30:14 -0700559 struct sk_buff *csum_skb = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700560 tmp_csum = 0;
561
562 skb_queue_walk(&sk->sk_write_queue, skb) {
563 tmp_csum = csum_add(tmp_csum, skb->csum);
Herbert Xu357b40a2005-04-19 22:30:14 -0700564
565 if (csum_skb)
566 continue;
567
Arnaldo Carvalho de Meloea2ae172007-04-25 17:55:53 -0700568 len = skb->len - skb_transport_offset(skb);
Herbert Xu357b40a2005-04-19 22:30:14 -0700569 if (offset >= len) {
570 offset -= len;
571 continue;
572 }
573
574 csum_skb = skb;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700575 }
Herbert Xu357b40a2005-04-19 22:30:14 -0700576
577 skb = csum_skb;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700578 }
579
Arnaldo Carvalho de Meloea2ae172007-04-25 17:55:53 -0700580 offset += skb_transport_offset(skb);
Herbert Xu357b40a2005-04-19 22:30:14 -0700581 if (skb_copy_bits(skb, offset, &csum, 2))
582 BUG();
583
Linus Torvalds1da177e2005-04-16 15:20:36 -0700584 /* in case cksum was not initialized */
Herbert Xu357b40a2005-04-19 22:30:14 -0700585 if (unlikely(csum))
Al Viro5f92a732006-11-14 21:36:54 -0800586 tmp_csum = csum_sub(tmp_csum, csum_unfold(csum));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700587
Al Viro868c86b2006-11-14 21:35:48 -0800588 csum = csum_ipv6_magic(&fl->fl6_src,
Herbert Xu357b40a2005-04-19 22:30:14 -0700589 &fl->fl6_dst,
Herbert Xu679a8732005-05-03 14:24:36 -0700590 total_len, fl->proto, tmp_csum);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700591
Al Virof6ab0282006-11-16 02:36:50 -0800592 if (csum == 0 && fl->proto == IPPROTO_UDP)
593 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,
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900605 struct flowi *fl, struct rt6_info *rt,
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;
612
613 if (length > rt->u.dst.dev->mtu) {
614 ipv6_local_error(sk, EMSGSIZE, fl, rt->u.dst.dev->mtu);
615 return -EMSGSIZE;
616 }
617 if (flags&MSG_PROBE)
618 goto out;
619
Johannes Bergf5184d22008-05-12 20:48:31 -0700620 skb = sock_alloc_send_skb(sk,
621 length + LL_ALLOCATED_SPACE(rt->u.dst.dev) + 15,
622 flags & MSG_DONTWAIT, &err);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700623 if (skb == NULL)
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900624 goto error;
Johannes Bergf5184d22008-05-12 20:48:31 -0700625 skb_reserve(skb, LL_RESERVED_SPACE(rt->u.dst.dev));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700626
627 skb->priority = sk->sk_priority;
Laszlo Attila Toth4a19ec52008-01-30 19:08:16 -0800628 skb->mark = sk->sk_mark;
Eric Dumazetadf30902009-06-02 05:19:30 +0000629 skb_dst_set(skb, dst_clone(&rt->u.dst));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700630
Arnaldo Carvalho de Melo1ced98e2007-03-10 19:57:15 -0300631 skb_put(skb, length);
632 skb_reset_network_header(skb);
Arnaldo Carvalho de Melo0660e032007-04-25 17:54:47 -0700633 iph = ipv6_hdr(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700634
635 skb->ip_summed = CHECKSUM_NONE;
636
Arnaldo Carvalho de Melob0e380b2007-04-10 21:21:55 -0700637 skb->transport_header = skb->network_header;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700638 err = memcpy_fromiovecend((void *)iph, from, 0, length);
639 if (err)
640 goto error_fault;
641
Neil Hormanedf391f2009-04-27 02:45:02 -0700642 IP6_UPD_PO_STATS(sock_net(sk), rt->rt6i_idev, IPSTATS_MIB_OUT, skb->len);
Jan Engelhardtb2e0b382010-03-23 04:09:07 +0100643 err = NF_HOOK(NFPROTO_IPV6, NF_INET_LOCAL_OUT, skb, NULL,
644 rt->u.dst.dev, dst_output);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700645 if (err > 0)
Eric Dumazet6ce9e7b2009-09-02 18:05:33 -0700646 err = net_xmit_errno(err);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700647 if (err)
648 goto error;
649out:
650 return 0;
651
652error_fault:
653 err = -EFAULT;
654 kfree_skb(skb);
655error:
Denis V. Lunev3bd653c2008-10-08 10:54:51 -0700656 IP6_INC_STATS(sock_net(sk), rt->rt6i_idev, IPSTATS_MIB_OUTDISCARDS);
Eric Dumazet6ce9e7b2009-09-02 18:05:33 -0700657 if (err == -ENOBUFS && !np->recverr)
658 err = 0;
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900659 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700660}
661
Heiko Carstensa27b58f2006-10-30 15:06:12 -0800662static int rawv6_probe_proto_opt(struct flowi *fl, struct msghdr *msg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700663{
664 struct iovec *iov;
665 u8 __user *type = NULL;
666 u8 __user *code = NULL;
Masahide NAKAMURA6e8f4d42006-08-23 20:36:47 -0700667 u8 len = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700668 int probed = 0;
669 int i;
670
671 if (!msg->msg_iov)
Heiko Carstensa27b58f2006-10-30 15:06:12 -0800672 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700673
674 for (i = 0; i < msg->msg_iovlen; i++) {
675 iov = &msg->msg_iov[i];
676 if (!iov)
677 continue;
678
679 switch (fl->proto) {
680 case IPPROTO_ICMPV6:
681 /* check if one-byte field is readable or not. */
682 if (iov->iov_base && iov->iov_len < 1)
683 break;
684
685 if (!type) {
686 type = iov->iov_base;
687 /* check if code field is readable or not. */
688 if (iov->iov_len > 1)
689 code = type + 1;
690 } else if (!code)
691 code = iov->iov_base;
692
693 if (type && code) {
Heiko Carstensa27b58f2006-10-30 15:06:12 -0800694 if (get_user(fl->fl_icmp_type, type) ||
695 get_user(fl->fl_icmp_code, code))
696 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700697 probed = 1;
698 }
699 break;
Masahide NAKAMURA6e8f4d42006-08-23 20:36:47 -0700700 case IPPROTO_MH:
701 if (iov->iov_base && iov->iov_len < 1)
702 break;
703 /* check if type field is readable or not. */
704 if (iov->iov_len > 2 - len) {
705 u8 __user *p = iov->iov_base;
Heiko Carstensa27b58f2006-10-30 15:06:12 -0800706 if (get_user(fl->fl_mh_type, &p[2 - len]))
707 return -EFAULT;
Masahide NAKAMURA6e8f4d42006-08-23 20:36:47 -0700708 probed = 1;
709 } else
710 len += iov->iov_len;
711
712 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700713 default:
714 probed = 1;
715 break;
716 }
717 if (probed)
718 break;
719 }
Heiko Carstensa27b58f2006-10-30 15:06:12 -0800720 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700721}
722
723static int rawv6_sendmsg(struct kiocb *iocb, struct sock *sk,
724 struct msghdr *msg, size_t len)
725{
726 struct ipv6_txoptions opt_space;
727 struct sockaddr_in6 * sin6 = (struct sockaddr_in6 *) msg->msg_name;
728 struct in6_addr *daddr, *final_p = NULL, final;
729 struct inet_sock *inet = inet_sk(sk);
730 struct ipv6_pinfo *np = inet6_sk(sk);
731 struct raw6_sock *rp = raw6_sk(sk);
732 struct ipv6_txoptions *opt = NULL;
733 struct ip6_flowlabel *flowlabel = NULL;
734 struct dst_entry *dst = NULL;
735 struct flowi fl;
736 int addr_len = msg->msg_namelen;
737 int hlimit = -1;
YOSHIFUJI Hideaki41a1f8e2005-09-08 10:19:03 +0900738 int tclass = -1;
Brian Haley13b52cd2010-04-23 11:26:08 +0000739 int dontfrag = -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700740 u16 proto;
741 int err;
742
743 /* Rough check on arithmetic overflow,
YOSHIFUJI Hideakib59e1392007-03-30 14:45:35 -0700744 better check is made in ip6_append_data().
Linus Torvalds1da177e2005-04-16 15:20:36 -0700745 */
YOSHIFUJI Hideakib59e1392007-03-30 14:45:35 -0700746 if (len > INT_MAX)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700747 return -EMSGSIZE;
748
749 /* Mirror BSD error message compatibility */
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900750 if (msg->msg_flags & MSG_OOB)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700751 return -EOPNOTSUPP;
752
753 /*
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900754 * Get and verify the address.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700755 */
756 memset(&fl, 0, sizeof(fl));
757
Laszlo Attila Toth4a19ec52008-01-30 19:08:16 -0800758 fl.mark = sk->sk_mark;
759
Linus Torvalds1da177e2005-04-16 15:20:36 -0700760 if (sin6) {
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900761 if (addr_len < SIN6_LEN_RFC2133)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700762 return -EINVAL;
763
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900764 if (sin6->sin6_family && sin6->sin6_family != AF_INET6)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700765 return(-EAFNOSUPPORT);
766
767 /* port is the proto value [0..255] carried in nexthdr */
768 proto = ntohs(sin6->sin6_port);
769
770 if (!proto)
Eric Dumazetc720c7e2009-10-15 06:30:45 +0000771 proto = inet->inet_num;
772 else if (proto != inet->inet_num)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700773 return(-EINVAL);
774
775 if (proto > 255)
776 return(-EINVAL);
777
778 daddr = &sin6->sin6_addr;
779 if (np->sndflow) {
780 fl.fl6_flowlabel = sin6->sin6_flowinfo&IPV6_FLOWINFO_MASK;
781 if (fl.fl6_flowlabel&IPV6_FLOWLABEL_MASK) {
782 flowlabel = fl6_sock_lookup(sk, fl.fl6_flowlabel);
783 if (flowlabel == NULL)
784 return -EINVAL;
785 daddr = &flowlabel->dst;
786 }
787 }
788
789 /*
790 * Otherwise it will be difficult to maintain
791 * sk->sk_dst_cache.
792 */
793 if (sk->sk_state == TCP_ESTABLISHED &&
794 ipv6_addr_equal(daddr, &np->daddr))
795 daddr = &np->daddr;
796
797 if (addr_len >= sizeof(struct sockaddr_in6) &&
798 sin6->sin6_scope_id &&
799 ipv6_addr_type(daddr)&IPV6_ADDR_LINKLOCAL)
800 fl.oif = sin6->sin6_scope_id;
801 } else {
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900802 if (sk->sk_state != TCP_ESTABLISHED)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700803 return -EDESTADDRREQ;
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900804
Eric Dumazetc720c7e2009-10-15 06:30:45 +0000805 proto = inet->inet_num;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700806 daddr = &np->daddr;
807 fl.fl6_flowlabel = np->flow_label;
808 }
809
Linus Torvalds1da177e2005-04-16 15:20:36 -0700810 if (fl.oif == 0)
811 fl.oif = sk->sk_bound_dev_if;
812
813 if (msg->msg_controllen) {
814 opt = &opt_space;
815 memset(opt, 0, sizeof(struct ipv6_txoptions));
816 opt->tot_len = sizeof(struct ipv6_txoptions);
817
Brian Haley13b52cd2010-04-23 11:26:08 +0000818 err = datagram_send_ctl(sock_net(sk), msg, &fl, opt, &hlimit,
819 &tclass, &dontfrag);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700820 if (err < 0) {
821 fl6_sock_release(flowlabel);
822 return err;
823 }
824 if ((fl.fl6_flowlabel&IPV6_FLOWLABEL_MASK) && !flowlabel) {
825 flowlabel = fl6_sock_lookup(sk, fl.fl6_flowlabel);
826 if (flowlabel == NULL)
827 return -EINVAL;
828 }
829 if (!(opt->opt_nflen|opt->opt_flen))
830 opt = NULL;
831 }
832 if (opt == NULL)
833 opt = np->opt;
YOSHIFUJI Hideakidf9890c2005-11-20 12:23:18 +0900834 if (flowlabel)
835 opt = fl6_merge_options(&opt_space, flowlabel, opt);
836 opt = ipv6_fixup_options(&opt_space, opt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700837
838 fl.proto = proto;
Heiko Carstensa27b58f2006-10-30 15:06:12 -0800839 err = rawv6_probe_proto_opt(&fl, msg);
840 if (err)
841 goto out;
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900842
Brian Haley876c7f42008-04-11 00:38:24 -0400843 if (!ipv6_addr_any(daddr))
844 ipv6_addr_copy(&fl.fl6_dst, daddr);
845 else
846 fl.fl6_dst.s6_addr[15] = 0x1; /* :: means loopback (BSD'ism) */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700847 if (ipv6_addr_any(&fl.fl6_src) && !ipv6_addr_any(&np->saddr))
848 ipv6_addr_copy(&fl.fl6_src, &np->saddr);
849
850 /* merge ip6_build_xmit from ip6_output */
851 if (opt && opt->srcrt) {
852 struct rt0_hdr *rt0 = (struct rt0_hdr *) opt->srcrt;
853 ipv6_addr_copy(&final, &fl.fl6_dst);
854 ipv6_addr_copy(&fl.fl6_dst, rt0->addr);
855 final_p = &final;
856 }
857
858 if (!fl.oif && ipv6_addr_is_multicast(&fl.fl6_dst))
859 fl.oif = np->mcast_oif;
Venkat Yekkiralabeb8d132006-08-04 23:12:42 -0700860 security_sk_classify_flow(sk, &fl);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700861
862 err = ip6_dst_lookup(sk, &dst, &fl);
863 if (err)
864 goto out;
865 if (final_p)
866 ipv6_addr_copy(&fl.fl6_dst, final_p);
867
Alexey Dobriyan52479b62008-11-25 17:35:18 -0800868 err = __xfrm_lookup(sock_net(sk), &dst, &fl, sk, XFRM_LOOKUP_WAIT);
869 if (err < 0) {
David S. Miller14e50e52007-05-24 18:17:54 -0700870 if (err == -EREMOTE)
871 err = ip6_dst_blackhole(sk, &dst, &fl);
872 if (err < 0)
873 goto out;
874 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700875
876 if (hlimit < 0) {
877 if (ipv6_addr_is_multicast(&fl.fl6_dst))
878 hlimit = np->mcast_hops;
879 else
880 hlimit = np->hop_limit;
881 if (hlimit < 0)
YOSHIFUJI Hideaki6b75d092008-03-10 06:00:30 -0400882 hlimit = ip6_dst_hoplimit(dst);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700883 }
884
Gerrit Renkere651f032009-08-09 08:12:48 +0000885 if (tclass < 0)
YOSHIFUJI Hideakie012d512006-09-13 20:01:28 -0700886 tclass = np->tclass;
YOSHIFUJI Hideaki41a1f8e2005-09-08 10:19:03 +0900887
Brian Haley13b52cd2010-04-23 11:26:08 +0000888 if (dontfrag < 0)
889 dontfrag = np->dontfrag;
890
Linus Torvalds1da177e2005-04-16 15:20:36 -0700891 if (msg->msg_flags&MSG_CONFIRM)
892 goto do_confirm;
893
894back_from_confirm:
895 if (inet->hdrincl) {
896 err = rawv6_send_hdrinc(sk, msg->msg_iov, len, &fl, (struct rt6_info*)dst, msg->msg_flags);
897 } else {
898 lock_sock(sk);
YOSHIFUJI Hideaki41a1f8e2005-09-08 10:19:03 +0900899 err = ip6_append_data(sk, ip_generic_getfrag, msg->msg_iov,
900 len, 0, hlimit, tclass, opt, &fl, (struct rt6_info*)dst,
Brian Haley13b52cd2010-04-23 11:26:08 +0000901 msg->msg_flags, dontfrag);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700902
903 if (err)
904 ip6_flush_pending_frames(sk);
905 else if (!(msg->msg_flags & MSG_MORE))
Herbert Xu357b40a2005-04-19 22:30:14 -0700906 err = rawv6_push_pending_frames(sk, &fl, rp);
YOSHIFUJI Hideaki3ef9d942007-09-14 16:45:40 -0700907 release_sock(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700908 }
909done:
Nicolas DICHTEL6d3e85e2006-02-13 15:56:13 -0800910 dst_release(dst);
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900911out:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700912 fl6_sock_release(flowlabel);
913 return err<0?err:len;
914do_confirm:
915 dst_confirm(dst);
916 if (!(msg->msg_flags & MSG_PROBE) || len)
917 goto back_from_confirm;
918 err = 0;
919 goto done;
920}
921
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900922static int rawv6_seticmpfilter(struct sock *sk, int level, int optname,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700923 char __user *optval, int optlen)
924{
925 switch (optname) {
926 case ICMPV6_FILTER:
927 if (optlen > sizeof(struct icmp6_filter))
928 optlen = sizeof(struct icmp6_filter);
929 if (copy_from_user(&raw6_sk(sk)->filter, optval, optlen))
930 return -EFAULT;
931 return 0;
932 default:
933 return -ENOPROTOOPT;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -0700934 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700935
936 return 0;
937}
938
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900939static int rawv6_geticmpfilter(struct sock *sk, int level, int optname,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700940 char __user *optval, int __user *optlen)
941{
942 int len;
943
944 switch (optname) {
945 case ICMPV6_FILTER:
946 if (get_user(len, optlen))
947 return -EFAULT;
948 if (len < 0)
949 return -EINVAL;
950 if (len > sizeof(struct icmp6_filter))
951 len = sizeof(struct icmp6_filter);
952 if (put_user(len, optlen))
953 return -EFAULT;
954 if (copy_to_user(optval, &raw6_sk(sk)->filter, len))
955 return -EFAULT;
956 return 0;
957 default:
958 return -ENOPROTOOPT;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -0700959 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700960
961 return 0;
962}
963
964
Dmitry Mishin3fdadf72006-03-20 22:45:21 -0800965static int do_rawv6_setsockopt(struct sock *sk, int level, int optname,
David S. Millerb7058842009-09-30 16:12:20 -0700966 char __user *optval, unsigned int optlen)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700967{
968 struct raw6_sock *rp = raw6_sk(sk);
969 int val;
970
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900971 if (get_user(val, (int __user *)optval))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700972 return -EFAULT;
973
974 switch (optname) {
975 case IPV6_CHECKSUM:
Eric Dumazetc720c7e2009-10-15 06:30:45 +0000976 if (inet_sk(sk)->inet_num == IPPROTO_ICMPV6 &&
YOSHIFUJI Hideaki1a98d052008-04-24 21:30:38 -0700977 level == IPPROTO_IPV6) {
978 /*
979 * RFC3542 tells that IPV6_CHECKSUM socket
980 * option in the IPPROTO_IPV6 level is not
981 * allowed on ICMPv6 sockets.
982 * If you want to set it, use IPPROTO_RAW
983 * level IPV6_CHECKSUM socket option
984 * (Linux extension).
985 */
986 return -EINVAL;
987 }
988
Linus Torvalds1da177e2005-04-16 15:20:36 -0700989 /* You may get strange result with a positive odd offset;
990 RFC2292bis agrees with me. */
991 if (val > 0 && (val&1))
992 return(-EINVAL);
993 if (val < 0) {
994 rp->checksum = 0;
995 } else {
996 rp->checksum = 1;
997 rp->offset = val;
998 }
999
1000 return 0;
1001 break;
1002
1003 default:
1004 return(-ENOPROTOOPT);
1005 }
1006}
1007
Dmitry Mishin3fdadf72006-03-20 22:45:21 -08001008static int rawv6_setsockopt(struct sock *sk, int level, int optname,
David S. Millerb7058842009-09-30 16:12:20 -07001009 char __user *optval, unsigned int optlen)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001010{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001011 switch(level) {
1012 case SOL_RAW:
1013 break;
1014
1015 case SOL_ICMPV6:
Eric Dumazetc720c7e2009-10-15 06:30:45 +00001016 if (inet_sk(sk)->inet_num != IPPROTO_ICMPV6)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001017 return -EOPNOTSUPP;
Dmitry Mishin3fdadf72006-03-20 22:45:21 -08001018 return rawv6_seticmpfilter(sk, level, optname, optval,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001019 optlen);
1020 case SOL_IPV6:
1021 if (optname == IPV6_CHECKSUM)
1022 break;
1023 default:
Dmitry Mishin3fdadf72006-03-20 22:45:21 -08001024 return ipv6_setsockopt(sk, level, optname, optval,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001025 optlen);
Stephen Hemminger3ff50b72007-04-20 17:09:22 -07001026 }
1027
Dmitry Mishin3fdadf72006-03-20 22:45:21 -08001028 return do_rawv6_setsockopt(sk, level, optname, optval, optlen);
1029}
1030
1031#ifdef CONFIG_COMPAT
1032static int compat_rawv6_setsockopt(struct sock *sk, int level, int optname,
David S. Millerb7058842009-09-30 16:12:20 -07001033 char __user *optval, unsigned int optlen)
Dmitry Mishin3fdadf72006-03-20 22:45:21 -08001034{
Arnaldo Carvalho de Melo543d9cf2006-03-20 22:48:35 -08001035 switch (level) {
1036 case SOL_RAW:
1037 break;
1038 case SOL_ICMPV6:
Eric Dumazetc720c7e2009-10-15 06:30:45 +00001039 if (inet_sk(sk)->inet_num != IPPROTO_ICMPV6)
Arnaldo Carvalho de Melo543d9cf2006-03-20 22:48:35 -08001040 return -EOPNOTSUPP;
1041 return rawv6_seticmpfilter(sk, level, optname, optval, optlen);
1042 case SOL_IPV6:
1043 if (optname == IPV6_CHECKSUM)
Dmitry Mishin3fdadf72006-03-20 22:45:21 -08001044 break;
Arnaldo Carvalho de Melo543d9cf2006-03-20 22:48:35 -08001045 default:
1046 return compat_ipv6_setsockopt(sk, level, optname,
1047 optval, optlen);
Stephen Hemminger3ff50b72007-04-20 17:09:22 -07001048 }
Dmitry Mishin3fdadf72006-03-20 22:45:21 -08001049 return do_rawv6_setsockopt(sk, level, optname, optval, optlen);
1050}
1051#endif
1052
1053static int do_rawv6_getsockopt(struct sock *sk, int level, int optname,
1054 char __user *optval, int __user *optlen)
1055{
1056 struct raw6_sock *rp = raw6_sk(sk);
1057 int val, len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001058
1059 if (get_user(len,optlen))
1060 return -EFAULT;
1061
1062 switch (optname) {
1063 case IPV6_CHECKSUM:
YOSHIFUJI Hideaki1a98d052008-04-24 21:30:38 -07001064 /*
1065 * We allow getsockopt() for IPPROTO_IPV6-level
1066 * IPV6_CHECKSUM socket option on ICMPv6 sockets
1067 * since RFC3542 is silent about it.
1068 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001069 if (rp->checksum == 0)
1070 val = -1;
1071 else
1072 val = rp->offset;
1073 break;
1074
1075 default:
1076 return -ENOPROTOOPT;
1077 }
1078
1079 len = min_t(unsigned int, sizeof(int), len);
1080
1081 if (put_user(len, optlen))
1082 return -EFAULT;
1083 if (copy_to_user(optval,&val,len))
1084 return -EFAULT;
1085 return 0;
1086}
1087
Dmitry Mishin3fdadf72006-03-20 22:45:21 -08001088static int rawv6_getsockopt(struct sock *sk, int level, int optname,
1089 char __user *optval, int __user *optlen)
1090{
1091 switch(level) {
1092 case SOL_RAW:
1093 break;
1094
1095 case SOL_ICMPV6:
Eric Dumazetc720c7e2009-10-15 06:30:45 +00001096 if (inet_sk(sk)->inet_num != IPPROTO_ICMPV6)
Dmitry Mishin3fdadf72006-03-20 22:45:21 -08001097 return -EOPNOTSUPP;
1098 return rawv6_geticmpfilter(sk, level, optname, optval,
1099 optlen);
1100 case SOL_IPV6:
1101 if (optname == IPV6_CHECKSUM)
1102 break;
1103 default:
1104 return ipv6_getsockopt(sk, level, optname, optval,
1105 optlen);
Stephen Hemminger3ff50b72007-04-20 17:09:22 -07001106 }
1107
Dmitry Mishin3fdadf72006-03-20 22:45:21 -08001108 return do_rawv6_getsockopt(sk, level, optname, optval, optlen);
1109}
1110
1111#ifdef CONFIG_COMPAT
1112static int compat_rawv6_getsockopt(struct sock *sk, int level, int optname,
Arnaldo Carvalho de Melo543d9cf2006-03-20 22:48:35 -08001113 char __user *optval, int __user *optlen)
Dmitry Mishin3fdadf72006-03-20 22:45:21 -08001114{
Arnaldo Carvalho de Melo543d9cf2006-03-20 22:48:35 -08001115 switch (level) {
1116 case SOL_RAW:
1117 break;
1118 case SOL_ICMPV6:
Eric Dumazetc720c7e2009-10-15 06:30:45 +00001119 if (inet_sk(sk)->inet_num != IPPROTO_ICMPV6)
Arnaldo Carvalho de Melo543d9cf2006-03-20 22:48:35 -08001120 return -EOPNOTSUPP;
1121 return rawv6_geticmpfilter(sk, level, optname, optval, optlen);
1122 case SOL_IPV6:
1123 if (optname == IPV6_CHECKSUM)
Dmitry Mishin3fdadf72006-03-20 22:45:21 -08001124 break;
Arnaldo Carvalho de Melo543d9cf2006-03-20 22:48:35 -08001125 default:
1126 return compat_ipv6_getsockopt(sk, level, optname,
1127 optval, optlen);
Stephen Hemminger3ff50b72007-04-20 17:09:22 -07001128 }
Dmitry Mishin3fdadf72006-03-20 22:45:21 -08001129 return do_rawv6_getsockopt(sk, level, optname, optval, optlen);
1130}
1131#endif
1132
Linus Torvalds1da177e2005-04-16 15:20:36 -07001133static int rawv6_ioctl(struct sock *sk, int cmd, unsigned long arg)
1134{
1135 switch(cmd) {
1136 case SIOCOUTQ:
1137 {
Eric Dumazet31e6d362009-06-17 19:05:41 -07001138 int amount = sk_wmem_alloc_get(sk);
1139
Linus Torvalds1da177e2005-04-16 15:20:36 -07001140 return put_user(amount, (int __user *)arg);
1141 }
1142 case SIOCINQ:
1143 {
1144 struct sk_buff *skb;
1145 int amount = 0;
1146
Herbert Xue0f9f852005-06-18 22:56:18 -07001147 spin_lock_bh(&sk->sk_receive_queue.lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001148 skb = skb_peek(&sk->sk_receive_queue);
1149 if (skb != NULL)
Arnaldo Carvalho de Melo27a884d2007-04-19 20:29:13 -07001150 amount = skb->tail - skb->transport_header;
Herbert Xue0f9f852005-06-18 22:56:18 -07001151 spin_unlock_bh(&sk->sk_receive_queue.lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001152 return put_user(amount, (int __user *)arg);
1153 }
1154
1155 default:
YOSHIFUJI Hideaki7bc570c2008-04-03 09:22:53 +09001156#ifdef CONFIG_IPV6_MROUTE
1157 return ip6mr_ioctl(sk, cmd, (void __user *)arg);
1158#else
Linus Torvalds1da177e2005-04-16 15:20:36 -07001159 return -ENOIOCTLCMD;
YOSHIFUJI Hideaki7bc570c2008-04-03 09:22:53 +09001160#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001161 }
1162}
1163
1164static 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 }
1197 return(0);
1198}
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,
Dmitry Mishin3fdadf72006-03-20 22:45:21 -08001222#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001223};
1224
1225#ifdef CONFIG_PROC_FS
Linus Torvalds1da177e2005-04-16 15:20:36 -07001226static void raw6_sock_seq_show(struct seq_file *seq, struct sock *sp, int i)
1227{
1228 struct ipv6_pinfo *np = inet6_sk(sp);
1229 struct in6_addr *dest, *src;
1230 __u16 destp, srcp;
1231
1232 dest = &np->daddr;
1233 src = &np->rcv_saddr;
1234 destp = 0;
Eric Dumazetc720c7e2009-10-15 06:30:45 +00001235 srcp = inet_sk(sp)->inet_num;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001236 seq_printf(seq,
1237 "%4d: %08X%08X%08X%08X:%04X %08X%08X%08X%08X:%04X "
Wang Chena92aa312007-11-13 20:31:14 -08001238 "%02X %08X:%08X %02X:%08lX %08X %5d %8d %lu %d %p %d\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001239 i,
1240 src->s6_addr32[0], src->s6_addr32[1],
1241 src->s6_addr32[2], src->s6_addr32[3], srcp,
1242 dest->s6_addr32[0], dest->s6_addr32[1],
1243 dest->s6_addr32[2], dest->s6_addr32[3], destp,
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09001244 sp->sk_state,
Eric Dumazet31e6d362009-06-17 19:05:41 -07001245 sk_wmem_alloc_get(sp),
1246 sk_rmem_alloc_get(sp),
Linus Torvalds1da177e2005-04-16 15:20:36 -07001247 0, 0L, 0,
1248 sock_i_uid(sp), 0,
1249 sock_i_ino(sp),
Wang Chena92aa312007-11-13 20:31:14 -08001250 atomic_read(&sp->sk_refcnt), sp, atomic_read(&sp->sk_drops));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001251}
1252
1253static int raw6_seq_show(struct seq_file *seq, void *v)
1254{
1255 if (v == SEQ_START_TOKEN)
1256 seq_printf(seq,
1257 " sl "
1258 "local_address "
1259 "remote_address "
1260 "st tx_queue rx_queue tr tm->when retrnsmt"
Eric Dumazetcb61cb92008-06-17 21:04:56 -07001261 " uid timeout inode ref pointer drops\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001262 else
Pavel Emelyanov42a73802007-11-19 22:38:33 -08001263 raw6_sock_seq_show(seq, v, raw_seq_private(seq)->bucket);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001264 return 0;
1265}
1266
Philippe De Muyter56b3d972007-07-10 23:07:31 -07001267static const struct seq_operations raw6_seq_ops = {
Pavel Emelyanov42a73802007-11-19 22:38:33 -08001268 .start = raw_seq_start,
1269 .next = raw_seq_next,
1270 .stop = raw_seq_stop,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001271 .show = raw6_seq_show,
1272};
1273
1274static int raw6_seq_open(struct inode *inode, struct file *file)
1275{
Denis V. Lunev3046d762008-01-31 03:48:55 -08001276 return raw_seq_open(inode, file, &raw_v6_hashinfo, &raw6_seq_ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001277}
1278
Arjan van de Ven9a321442007-02-12 00:55:35 -08001279static const struct file_operations raw6_seq_fops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001280 .owner = THIS_MODULE,
1281 .open = raw6_seq_open,
1282 .read = seq_read,
1283 .llseek = seq_lseek,
Pavel Emelyanovf51d5992008-01-14 05:35:57 -08001284 .release = seq_release_net,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001285};
1286
Alexey Dobriyan2c8c1e72010-01-17 03:35:32 +00001287static int __net_init raw6_init_net(struct net *net)
Pavel Emelyanova308da12008-01-14 05:36:50 -08001288{
1289 if (!proc_net_fops_create(net, "raw6", S_IRUGO, &raw6_seq_fops))
1290 return -ENOMEM;
1291
1292 return 0;
1293}
1294
Alexey Dobriyan2c8c1e72010-01-17 03:35:32 +00001295static void __net_exit raw6_exit_net(struct net *net)
Pavel Emelyanova308da12008-01-14 05:36:50 -08001296{
1297 proc_net_remove(net, "raw6");
1298}
1299
1300static struct pernet_operations raw6_net_ops = {
1301 .init = raw6_init_net,
1302 .exit = raw6_exit_net,
1303};
1304
Linus Torvalds1da177e2005-04-16 15:20:36 -07001305int __init raw6_proc_init(void)
1306{
Pavel Emelyanova308da12008-01-14 05:36:50 -08001307 return register_pernet_subsys(&raw6_net_ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001308}
1309
1310void raw6_proc_exit(void)
1311{
Pavel Emelyanova308da12008-01-14 05:36:50 -08001312 unregister_pernet_subsys(&raw6_net_ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001313}
1314#endif /* CONFIG_PROC_FS */
Daniel Lezcano7f4e4862007-12-11 02:25:35 -08001315
1316/* Same as inet6_dgram_ops, sans udp_poll. */
1317static const struct proto_ops inet6_sockraw_ops = {
1318 .family = PF_INET6,
1319 .owner = THIS_MODULE,
1320 .release = inet6_release,
1321 .bind = inet6_bind,
1322 .connect = inet_dgram_connect, /* ok */
1323 .socketpair = sock_no_socketpair, /* a do nothing */
1324 .accept = sock_no_accept, /* a do nothing */
1325 .getname = inet6_getname,
1326 .poll = datagram_poll, /* ok */
1327 .ioctl = inet6_ioctl, /* must change */
1328 .listen = sock_no_listen, /* ok */
1329 .shutdown = inet_shutdown, /* ok */
1330 .setsockopt = sock_common_setsockopt, /* ok */
1331 .getsockopt = sock_common_getsockopt, /* ok */
1332 .sendmsg = inet_sendmsg, /* ok */
1333 .recvmsg = sock_common_recvmsg, /* ok */
1334 .mmap = sock_no_mmap,
1335 .sendpage = sock_no_sendpage,
1336#ifdef CONFIG_COMPAT
1337 .compat_setsockopt = compat_sock_common_setsockopt,
1338 .compat_getsockopt = compat_sock_common_getsockopt,
1339#endif
1340};
1341
1342static struct inet_protosw rawv6_protosw = {
1343 .type = SOCK_RAW,
1344 .protocol = IPPROTO_IP, /* wild card */
1345 .prot = &rawv6_prot,
1346 .ops = &inet6_sockraw_ops,
Daniel Lezcano7f4e4862007-12-11 02:25:35 -08001347 .no_check = UDP_CSUM_DEFAULT,
1348 .flags = INET_PROTOSW_REUSE,
1349};
1350
1351int __init rawv6_init(void)
1352{
1353 int ret;
1354
1355 ret = inet6_register_protosw(&rawv6_protosw);
1356 if (ret)
1357 goto out;
1358out:
1359 return ret;
1360}
1361
Daniel Lezcano09f77092007-12-13 05:34:58 -08001362void rawv6_exit(void)
Daniel Lezcano7f4e4862007-12-11 02:25:35 -08001363{
1364 inet6_unregister_protosw(&rawv6_protosw);
1365}