blob: 5f26645195dc88ae046130da4e95b78d7d249bec [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 *
10 * $Id: raw.c,v 1.51 2002/02/01 22:01:04 davem Exp $
11 *
12 * Fixes:
13 * Hideaki YOSHIFUJI : sin6_scope_id support
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +090014 * YOSHIFUJI,H.@USAGI : raw checksum (RFC2292(bis) compliance)
Linus Torvalds1da177e2005-04-16 15:20:36 -070015 * Kazunori MIYAZAWA @USAGI: change process style to use ip6_append_data
16 *
17 * This program is free software; you can redistribute it and/or
18 * modify it under the terms of the GNU General Public License
19 * as published by the Free Software Foundation; either version
20 * 2 of the License, or (at your option) any later version.
21 */
22
23#include <linux/errno.h>
24#include <linux/types.h>
25#include <linux/socket.h>
26#include <linux/sockios.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070027#include <linux/net.h>
28#include <linux/in6.h>
29#include <linux/netdevice.h>
30#include <linux/if_arp.h>
31#include <linux/icmpv6.h>
32#include <linux/netfilter.h>
33#include <linux/netfilter_ipv6.h>
Herbert Xu3305b802005-12-13 23:16:37 -080034#include <linux/skbuff.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070035#include <asm/uaccess.h>
36#include <asm/ioctls.h>
37
38#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 NAKAMURA7be96f72006-08-23 20:35:31 -070052#ifdef CONFIG_IPV6_MIP6
53#include <net/mip6.h>
54#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -070055
56#include <net/rawv6.h>
57#include <net/xfrm.h>
58
59#include <linux/proc_fs.h>
60#include <linux/seq_file.h>
61
62struct hlist_head raw_v6_htable[RAWV6_HTABLE_SIZE];
63DEFINE_RWLOCK(raw_v6_lock);
64
65static void raw_v6_hash(struct sock *sk)
66{
67 struct hlist_head *list = &raw_v6_htable[inet_sk(sk)->num &
68 (RAWV6_HTABLE_SIZE - 1)];
69
70 write_lock_bh(&raw_v6_lock);
71 sk_add_node(sk, list);
72 sock_prot_inc_use(sk->sk_prot);
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +090073 write_unlock_bh(&raw_v6_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -070074}
75
76static void raw_v6_unhash(struct sock *sk)
77{
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +090078 write_lock_bh(&raw_v6_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -070079 if (sk_del_node_init(sk))
80 sock_prot_dec_use(sk->sk_prot);
81 write_unlock_bh(&raw_v6_lock);
82}
83
84
85/* Grumble... icmp and ip_input want to get at this... */
86struct sock *__raw_v6_lookup(struct sock *sk, unsigned short num,
Andrew McDonald0bd1b592005-08-09 19:44:42 -070087 struct in6_addr *loc_addr, struct in6_addr *rmt_addr,
88 int dif)
Linus Torvalds1da177e2005-04-16 15:20:36 -070089{
90 struct hlist_node *node;
91 int is_multicast = ipv6_addr_is_multicast(loc_addr);
92
93 sk_for_each_from(sk, node)
94 if (inet_sk(sk)->num == num) {
95 struct ipv6_pinfo *np = inet6_sk(sk);
96
97 if (!ipv6_addr_any(&np->daddr) &&
98 !ipv6_addr_equal(&np->daddr, rmt_addr))
99 continue;
100
Andrew McDonald0bd1b592005-08-09 19:44:42 -0700101 if (sk->sk_bound_dev_if && sk->sk_bound_dev_if != dif)
102 continue;
103
Linus Torvalds1da177e2005-04-16 15:20:36 -0700104 if (!ipv6_addr_any(&np->rcv_saddr)) {
105 if (ipv6_addr_equal(&np->rcv_saddr, loc_addr))
106 goto found;
107 if (is_multicast &&
108 inet6_mc_check(sk, loc_addr, rmt_addr))
109 goto found;
110 continue;
111 }
112 goto found;
113 }
114 sk = NULL;
115found:
116 return sk;
117}
118
119/*
120 * 0 - deliver
121 * 1 - block
122 */
123static __inline__ int icmpv6_filter(struct sock *sk, struct sk_buff *skb)
124{
125 struct icmp6hdr *icmph;
126 struct raw6_sock *rp = raw6_sk(sk);
127
128 if (pskb_may_pull(skb, sizeof(struct icmp6hdr))) {
129 __u32 *data = &rp->filter.data[0];
130 int bit_nr;
131
132 icmph = (struct icmp6hdr *) skb->data;
133 bit_nr = icmph->icmp6_type;
134
135 return (data[bit_nr >> 5] & (1 << (bit_nr & 31))) != 0;
136 }
137 return 0;
138}
139
140/*
141 * demultiplex raw sockets.
142 * (should consider queueing the skb in the sock receive_queue
143 * without calling rawv6.c)
144 *
145 * Caller owns SKB so we must make clones.
146 */
Patrick McHardyd13964f2005-08-09 19:45:02 -0700147int ipv6_raw_deliver(struct sk_buff *skb, int nexthdr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700148{
149 struct in6_addr *saddr;
150 struct in6_addr *daddr;
151 struct sock *sk;
Patrick McHardyd13964f2005-08-09 19:45:02 -0700152 int delivered = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700153 __u8 hash;
154
155 saddr = &skb->nh.ipv6h->saddr;
156 daddr = saddr + 1;
157
158 hash = nexthdr & (MAX_INET_PROTOS - 1);
159
160 read_lock(&raw_v6_lock);
161 sk = sk_head(&raw_v6_htable[hash]);
162
163 /*
164 * The first socket found will be delivered after
165 * delivery to transport protocols.
166 */
167
168 if (sk == NULL)
169 goto out;
170
YOSHIFUJI Hideaki2dac4b92005-09-01 17:44:49 -0700171 sk = __raw_v6_lookup(sk, nexthdr, daddr, saddr, IP6CB(skb)->iif);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700172
173 while (sk) {
Masahide NAKAMURA7be96f72006-08-23 20:35:31 -0700174 int filtered;
175
Patrick McHardyd13964f2005-08-09 19:45:02 -0700176 delivered = 1;
Masahide NAKAMURA7be96f72006-08-23 20:35:31 -0700177 switch (nexthdr) {
178 case IPPROTO_ICMPV6:
179 filtered = icmpv6_filter(sk, skb);
180 break;
181#ifdef CONFIG_IPV6_MIP6
182 case IPPROTO_MH:
183 /* XXX: To validate MH only once for each packet,
184 * this is placed here. It should be after checking
185 * xfrm policy, however it doesn't. The checking xfrm
186 * policy is placed in rawv6_rcv() because it is
187 * required for each socket.
188 */
189 filtered = mip6_mh_filter(sk, skb);
190 break;
191#endif
192 default:
193 filtered = 0;
194 break;
195 }
196
197 if (filtered < 0)
198 break;
199 if (filtered == 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700200 struct sk_buff *clone = skb_clone(skb, GFP_ATOMIC);
201
202 /* Not releasing hash table! */
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800203 if (clone) {
204 nf_reset(clone);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700205 rawv6_rcv(sk, clone);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800206 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700207 }
Andrew McDonald0bd1b592005-08-09 19:44:42 -0700208 sk = __raw_v6_lookup(sk_next(sk), nexthdr, daddr, saddr,
YOSHIFUJI Hideaki2dac4b92005-09-01 17:44:49 -0700209 IP6CB(skb)->iif);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700210 }
211out:
212 read_unlock(&raw_v6_lock);
Patrick McHardyd13964f2005-08-09 19:45:02 -0700213 return delivered;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700214}
215
216/* This cleans up af_inet6 a bit. -DaveM */
217static int rawv6_bind(struct sock *sk, struct sockaddr *uaddr, int addr_len)
218{
219 struct inet_sock *inet = inet_sk(sk);
220 struct ipv6_pinfo *np = inet6_sk(sk);
221 struct sockaddr_in6 *addr = (struct sockaddr_in6 *) uaddr;
Al Viroe69a4ad2006-11-14 20:56:00 -0800222 __be32 v4addr = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700223 int addr_type;
224 int err;
225
226 if (addr_len < SIN6_LEN_RFC2133)
227 return -EINVAL;
228 addr_type = ipv6_addr_type(&addr->sin6_addr);
229
230 /* Raw sockets are IPv6 only */
231 if (addr_type == IPV6_ADDR_MAPPED)
232 return(-EADDRNOTAVAIL);
233
234 lock_sock(sk);
235
236 err = -EINVAL;
237 if (sk->sk_state != TCP_CLOSE)
238 goto out;
239
240 /* Check if the address belongs to the host. */
241 if (addr_type != IPV6_ADDR_ANY) {
242 struct net_device *dev = NULL;
243
244 if (addr_type & IPV6_ADDR_LINKLOCAL) {
245 if (addr_len >= sizeof(struct sockaddr_in6) &&
246 addr->sin6_scope_id) {
247 /* Override any existing binding, if another
248 * one is supplied by user.
249 */
250 sk->sk_bound_dev_if = addr->sin6_scope_id;
251 }
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900252
Linus Torvalds1da177e2005-04-16 15:20:36 -0700253 /* Binding to link-local address requires an interface */
254 if (!sk->sk_bound_dev_if)
255 goto out;
256
257 dev = dev_get_by_index(sk->sk_bound_dev_if);
258 if (!dev) {
259 err = -ENODEV;
260 goto out;
261 }
262 }
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900263
Linus Torvalds1da177e2005-04-16 15:20:36 -0700264 /* ipv4 addr of the socket is invalid. Only the
265 * unspecified and mapped address have a v4 equivalent.
266 */
267 v4addr = LOOPBACK4_IPV6;
268 if (!(addr_type & IPV6_ADDR_MULTICAST)) {
269 err = -EADDRNOTAVAIL;
270 if (!ipv6_chk_addr(&addr->sin6_addr, dev, 0)) {
271 if (dev)
272 dev_put(dev);
273 goto out;
274 }
275 }
276 if (dev)
277 dev_put(dev);
278 }
279
280 inet->rcv_saddr = inet->saddr = v4addr;
281 ipv6_addr_copy(&np->rcv_saddr, &addr->sin6_addr);
282 if (!(addr_type & IPV6_ADDR_MULTICAST))
283 ipv6_addr_copy(&np->saddr, &addr->sin6_addr);
284 err = 0;
285out:
286 release_sock(sk);
287 return err;
288}
289
290void rawv6_err(struct sock *sk, struct sk_buff *skb,
291 struct inet6_skb_parm *opt,
Al Viro04ce6902006-11-08 00:21:01 -0800292 int type, int code, int offset, __be32 info)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700293{
294 struct inet_sock *inet = inet_sk(sk);
295 struct ipv6_pinfo *np = inet6_sk(sk);
296 int err;
297 int harderr;
298
299 /* Report error on raw socket, if:
300 1. User requested recverr.
301 2. Socket is connected (otherwise the error indication
302 is useless without recverr and error is hard.
303 */
304 if (!np->recverr && sk->sk_state != TCP_ESTABLISHED)
305 return;
306
307 harderr = icmpv6_err_convert(type, code, &err);
308 if (type == ICMPV6_PKT_TOOBIG)
309 harderr = (np->pmtudisc == IPV6_PMTUDISC_DO);
310
311 if (np->recverr) {
312 u8 *payload = skb->data;
313 if (!inet->hdrincl)
314 payload += offset;
315 ipv6_icmp_error(sk, skb, err, 0, ntohl(info), payload);
316 }
317
318 if (np->recverr || harderr) {
319 sk->sk_err = err;
320 sk->sk_error_report(sk);
321 }
322}
323
324static inline int rawv6_rcv_skb(struct sock * sk, struct sk_buff * skb)
325{
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900326 if ((raw6_sk(sk)->checksum || sk->sk_filter) &&
Herbert Xufb286bb2005-11-10 13:01:24 -0800327 skb_checksum_complete(skb)) {
328 /* FIXME: increment a raw6 drops counter here */
329 kfree_skb(skb);
330 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700331 }
332
333 /* Charge it to the socket. */
334 if (sock_queue_rcv_skb(sk,skb)<0) {
335 /* FIXME: increment a raw6 drops counter here */
336 kfree_skb(skb);
337 return 0;
338 }
339
340 return 0;
341}
342
343/*
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900344 * This is next to useless...
Linus Torvalds1da177e2005-04-16 15:20:36 -0700345 * if we demultiplex in network layer we don't need the extra call
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900346 * just to queue the skb...
347 * maybe we could have the network decide upon a hint if it
Linus Torvalds1da177e2005-04-16 15:20:36 -0700348 * should call raw_rcv for demultiplexing
349 */
350int rawv6_rcv(struct sock *sk, struct sk_buff *skb)
351{
352 struct inet_sock *inet = inet_sk(sk);
353 struct raw6_sock *rp = raw6_sk(sk);
354
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900355 if (!xfrm6_policy_check(sk, XFRM_POLICY_IN, skb)) {
356 kfree_skb(skb);
357 return NET_RX_DROP;
358 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700359
360 if (!rp->checksum)
361 skb->ip_summed = CHECKSUM_UNNECESSARY;
362
Patrick McHardy84fa7932006-08-29 16:44:56 -0700363 if (skb->ip_summed == CHECKSUM_COMPLETE) {
Herbert Xufb286bb2005-11-10 13:01:24 -0800364 skb_postpull_rcsum(skb, skb->nh.raw,
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900365 skb->h.raw - skb->nh.raw);
Herbert Xufb286bb2005-11-10 13:01:24 -0800366 if (!csum_ipv6_magic(&skb->nh.ipv6h->saddr,
367 &skb->nh.ipv6h->daddr,
368 skb->len, inet->num, skb->csum))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700369 skb->ip_summed = CHECKSUM_UNNECESSARY;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700370 }
Herbert Xufb286bb2005-11-10 13:01:24 -0800371 if (skb->ip_summed != CHECKSUM_UNNECESSARY)
Al Viro868c86b2006-11-14 21:35:48 -0800372 skb->csum = ~csum_unfold(csum_ipv6_magic(&skb->nh.ipv6h->saddr,
Herbert Xufb286bb2005-11-10 13:01:24 -0800373 &skb->nh.ipv6h->daddr,
Al Viro868c86b2006-11-14 21:35:48 -0800374 skb->len, inet->num, 0));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700375
376 if (inet->hdrincl) {
Herbert Xufb286bb2005-11-10 13:01:24 -0800377 if (skb_checksum_complete(skb)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700378 /* FIXME: increment a raw6 drops counter here */
379 kfree_skb(skb);
380 return 0;
381 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700382 }
383
384 rawv6_rcv_skb(sk, skb);
385 return 0;
386}
387
388
389/*
390 * This should be easy, if there is something there
391 * we return it, otherwise we block.
392 */
393
394static int rawv6_recvmsg(struct kiocb *iocb, struct sock *sk,
395 struct msghdr *msg, size_t len,
396 int noblock, int flags, int *addr_len)
397{
398 struct ipv6_pinfo *np = inet6_sk(sk);
399 struct sockaddr_in6 *sin6 = (struct sockaddr_in6 *)msg->msg_name;
400 struct sk_buff *skb;
401 size_t copied;
402 int err;
403
404 if (flags & MSG_OOB)
405 return -EOPNOTSUPP;
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900406
407 if (addr_len)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700408 *addr_len=sizeof(*sin6);
409
410 if (flags & MSG_ERRQUEUE)
411 return ipv6_recv_error(sk, msg, len);
412
413 skb = skb_recv_datagram(sk, flags, noblock, &err);
414 if (!skb)
415 goto out;
416
417 copied = skb->len;
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900418 if (copied > len) {
419 copied = len;
420 msg->msg_flags |= MSG_TRUNC;
421 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700422
423 if (skb->ip_summed==CHECKSUM_UNNECESSARY) {
424 err = skb_copy_datagram_iovec(skb, 0, msg->msg_iov, copied);
425 } else if (msg->msg_flags&MSG_TRUNC) {
Herbert Xufb286bb2005-11-10 13:01:24 -0800426 if (__skb_checksum_complete(skb))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700427 goto csum_copy_err;
428 err = skb_copy_datagram_iovec(skb, 0, msg->msg_iov, copied);
429 } else {
430 err = skb_copy_and_csum_datagram_iovec(skb, 0, msg->msg_iov);
431 if (err == -EINVAL)
432 goto csum_copy_err;
433 }
434 if (err)
435 goto out_free;
436
437 /* Copy the address. */
438 if (sin6) {
439 sin6->sin6_family = AF_INET6;
Tetsuo Handaf59fc7f2006-07-25 17:05:35 -0700440 sin6->sin6_port = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700441 ipv6_addr_copy(&sin6->sin6_addr, &skb->nh.ipv6h->saddr);
442 sin6->sin6_flowinfo = 0;
443 sin6->sin6_scope_id = 0;
444 if (ipv6_addr_type(&sin6->sin6_addr) & IPV6_ADDR_LINKLOCAL)
445 sin6->sin6_scope_id = IP6CB(skb)->iif;
446 }
447
448 sock_recv_timestamp(msg, sk, skb);
449
450 if (np->rxopt.all)
451 datagram_recv_ctl(sk, msg, skb);
452
453 err = copied;
454 if (flags & MSG_TRUNC)
455 err = skb->len;
456
457out_free:
458 skb_free_datagram(sk, skb);
459out:
460 return err;
461
462csum_copy_err:
Herbert Xu3305b802005-12-13 23:16:37 -0800463 skb_kill_datagram(sk, skb, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700464
465 /* Error for blocking case is chosen to masquerade
466 as some normal condition.
467 */
468 err = (flags&MSG_DONTWAIT) ? -EAGAIN : -EHOSTUNREACH;
469 /* FIXME: increment a raw6 drops counter here */
Herbert Xu3305b802005-12-13 23:16:37 -0800470 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700471}
472
473static int rawv6_push_pending_frames(struct sock *sk, struct flowi *fl,
Herbert Xu357b40a2005-04-19 22:30:14 -0700474 struct raw6_sock *rp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700475{
476 struct sk_buff *skb;
477 int err = 0;
Herbert Xu357b40a2005-04-19 22:30:14 -0700478 int offset;
479 int len;
Herbert Xu679a8732005-05-03 14:24:36 -0700480 int total_len;
Al Viro868c86b2006-11-14 21:35:48 -0800481 __wsum tmp_csum;
482 __sum16 csum;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700483
484 if (!rp->checksum)
485 goto send;
486
487 if ((skb = skb_peek(&sk->sk_write_queue)) == NULL)
488 goto out;
489
Herbert Xu357b40a2005-04-19 22:30:14 -0700490 offset = rp->offset;
Herbert Xu679a8732005-05-03 14:24:36 -0700491 total_len = inet_sk(sk)->cork.length - (skb->nh.raw - skb->data);
492 if (offset >= total_len - 1) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700493 err = -EINVAL;
Herbert Xu357b40a2005-04-19 22:30:14 -0700494 ip6_flush_pending_frames(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700495 goto out;
496 }
497
498 /* should be check HW csum miyazawa */
499 if (skb_queue_len(&sk->sk_write_queue) == 1) {
500 /*
501 * Only one fragment on the socket.
502 */
503 tmp_csum = skb->csum;
504 } else {
Herbert Xu357b40a2005-04-19 22:30:14 -0700505 struct sk_buff *csum_skb = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700506 tmp_csum = 0;
507
508 skb_queue_walk(&sk->sk_write_queue, skb) {
509 tmp_csum = csum_add(tmp_csum, skb->csum);
Herbert Xu357b40a2005-04-19 22:30:14 -0700510
511 if (csum_skb)
512 continue;
513
514 len = skb->len - (skb->h.raw - skb->data);
515 if (offset >= len) {
516 offset -= len;
517 continue;
518 }
519
520 csum_skb = skb;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700521 }
Herbert Xu357b40a2005-04-19 22:30:14 -0700522
523 skb = csum_skb;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700524 }
525
Herbert Xu357b40a2005-04-19 22:30:14 -0700526 offset += skb->h.raw - skb->data;
527 if (skb_copy_bits(skb, offset, &csum, 2))
528 BUG();
529
Linus Torvalds1da177e2005-04-16 15:20:36 -0700530 /* in case cksum was not initialized */
Herbert Xu357b40a2005-04-19 22:30:14 -0700531 if (unlikely(csum))
Al Viro5f92a732006-11-14 21:36:54 -0800532 tmp_csum = csum_sub(tmp_csum, csum_unfold(csum));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700533
Al Viro868c86b2006-11-14 21:35:48 -0800534 csum = csum_ipv6_magic(&fl->fl6_src,
Herbert Xu357b40a2005-04-19 22:30:14 -0700535 &fl->fl6_dst,
Herbert Xu679a8732005-05-03 14:24:36 -0700536 total_len, fl->proto, tmp_csum);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700537
Al Virof6ab0282006-11-16 02:36:50 -0800538 if (csum == 0 && fl->proto == IPPROTO_UDP)
539 csum = CSUM_MANGLED_0;
Herbert Xu357b40a2005-04-19 22:30:14 -0700540
Herbert Xu357b40a2005-04-19 22:30:14 -0700541 if (skb_store_bits(skb, offset, &csum, 2))
542 BUG();
543
Linus Torvalds1da177e2005-04-16 15:20:36 -0700544send:
545 err = ip6_push_pending_frames(sk);
546out:
547 return err;
548}
549
550static int rawv6_send_hdrinc(struct sock *sk, void *from, int length,
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900551 struct flowi *fl, struct rt6_info *rt,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700552 unsigned int flags)
553{
Herbert Xu3320da82005-04-19 22:32:22 -0700554 struct ipv6_pinfo *np = inet6_sk(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700555 struct ipv6hdr *iph;
556 struct sk_buff *skb;
557 unsigned int hh_len;
558 int err;
559
560 if (length > rt->u.dst.dev->mtu) {
561 ipv6_local_error(sk, EMSGSIZE, fl, rt->u.dst.dev->mtu);
562 return -EMSGSIZE;
563 }
564 if (flags&MSG_PROBE)
565 goto out;
566
567 hh_len = LL_RESERVED_SPACE(rt->u.dst.dev);
568
569 skb = sock_alloc_send_skb(sk, length+hh_len+15,
570 flags&MSG_DONTWAIT, &err);
571 if (skb == NULL)
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900572 goto error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700573 skb_reserve(skb, hh_len);
574
575 skb->priority = sk->sk_priority;
576 skb->dst = dst_clone(&rt->u.dst);
577
Arnaldo Carvalho de Melo1ced98e2007-03-10 19:57:15 -0300578 skb_put(skb, length);
579 skb_reset_network_header(skb);
580 iph = skb->nh.ipv6h;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700581
582 skb->ip_summed = CHECKSUM_NONE;
583
584 skb->h.raw = skb->nh.raw;
585 err = memcpy_fromiovecend((void *)iph, from, 0, length);
586 if (err)
587 goto error_fault;
588
YOSHIFUJI Hideakia11d2062006-11-04 20:11:37 +0900589 IP6_INC_STATS(rt->rt6i_idev, IPSTATS_MIB_OUTREQUESTS);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700590 err = NF_HOOK(PF_INET6, NF_IP6_LOCAL_OUT, skb, NULL, rt->u.dst.dev,
591 dst_output);
592 if (err > 0)
Herbert Xu3320da82005-04-19 22:32:22 -0700593 err = np->recverr ? net_xmit_errno(err) : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700594 if (err)
595 goto error;
596out:
597 return 0;
598
599error_fault:
600 err = -EFAULT;
601 kfree_skb(skb);
602error:
YOSHIFUJI Hideakia11d2062006-11-04 20:11:37 +0900603 IP6_INC_STATS(rt->rt6i_idev, IPSTATS_MIB_OUTDISCARDS);
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900604 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700605}
606
Heiko Carstensa27b58f2006-10-30 15:06:12 -0800607static int rawv6_probe_proto_opt(struct flowi *fl, struct msghdr *msg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700608{
609 struct iovec *iov;
610 u8 __user *type = NULL;
611 u8 __user *code = NULL;
Masahide NAKAMURA6e8f4d42006-08-23 20:36:47 -0700612#ifdef CONFIG_IPV6_MIP6
613 u8 len = 0;
614#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700615 int probed = 0;
616 int i;
617
618 if (!msg->msg_iov)
Heiko Carstensa27b58f2006-10-30 15:06:12 -0800619 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700620
621 for (i = 0; i < msg->msg_iovlen; i++) {
622 iov = &msg->msg_iov[i];
623 if (!iov)
624 continue;
625
626 switch (fl->proto) {
627 case IPPROTO_ICMPV6:
628 /* check if one-byte field is readable or not. */
629 if (iov->iov_base && iov->iov_len < 1)
630 break;
631
632 if (!type) {
633 type = iov->iov_base;
634 /* check if code field is readable or not. */
635 if (iov->iov_len > 1)
636 code = type + 1;
637 } else if (!code)
638 code = iov->iov_base;
639
640 if (type && code) {
Heiko Carstensa27b58f2006-10-30 15:06:12 -0800641 if (get_user(fl->fl_icmp_type, type) ||
642 get_user(fl->fl_icmp_code, code))
643 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700644 probed = 1;
645 }
646 break;
Masahide NAKAMURA6e8f4d42006-08-23 20:36:47 -0700647#ifdef CONFIG_IPV6_MIP6
648 case IPPROTO_MH:
649 if (iov->iov_base && iov->iov_len < 1)
650 break;
651 /* check if type field is readable or not. */
652 if (iov->iov_len > 2 - len) {
653 u8 __user *p = iov->iov_base;
Heiko Carstensa27b58f2006-10-30 15:06:12 -0800654 if (get_user(fl->fl_mh_type, &p[2 - len]))
655 return -EFAULT;
Masahide NAKAMURA6e8f4d42006-08-23 20:36:47 -0700656 probed = 1;
657 } else
658 len += iov->iov_len;
659
660 break;
661#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700662 default:
663 probed = 1;
664 break;
665 }
666 if (probed)
667 break;
668 }
Heiko Carstensa27b58f2006-10-30 15:06:12 -0800669 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700670}
671
672static int rawv6_sendmsg(struct kiocb *iocb, struct sock *sk,
673 struct msghdr *msg, size_t len)
674{
675 struct ipv6_txoptions opt_space;
676 struct sockaddr_in6 * sin6 = (struct sockaddr_in6 *) msg->msg_name;
677 struct in6_addr *daddr, *final_p = NULL, final;
678 struct inet_sock *inet = inet_sk(sk);
679 struct ipv6_pinfo *np = inet6_sk(sk);
680 struct raw6_sock *rp = raw6_sk(sk);
681 struct ipv6_txoptions *opt = NULL;
682 struct ip6_flowlabel *flowlabel = NULL;
683 struct dst_entry *dst = NULL;
684 struct flowi fl;
685 int addr_len = msg->msg_namelen;
686 int hlimit = -1;
YOSHIFUJI Hideaki41a1f8e2005-09-08 10:19:03 +0900687 int tclass = -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700688 u16 proto;
689 int err;
690
691 /* Rough check on arithmetic overflow,
YOSHIFUJI Hideakib59e1392007-03-30 14:45:35 -0700692 better check is made in ip6_append_data().
Linus Torvalds1da177e2005-04-16 15:20:36 -0700693 */
YOSHIFUJI Hideakib59e1392007-03-30 14:45:35 -0700694 if (len > INT_MAX)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700695 return -EMSGSIZE;
696
697 /* Mirror BSD error message compatibility */
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900698 if (msg->msg_flags & MSG_OOB)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700699 return -EOPNOTSUPP;
700
701 /*
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900702 * Get and verify the address.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700703 */
704 memset(&fl, 0, sizeof(fl));
705
706 if (sin6) {
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900707 if (addr_len < SIN6_LEN_RFC2133)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700708 return -EINVAL;
709
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900710 if (sin6->sin6_family && sin6->sin6_family != AF_INET6)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700711 return(-EAFNOSUPPORT);
712
713 /* port is the proto value [0..255] carried in nexthdr */
714 proto = ntohs(sin6->sin6_port);
715
716 if (!proto)
717 proto = inet->num;
718 else if (proto != inet->num)
719 return(-EINVAL);
720
721 if (proto > 255)
722 return(-EINVAL);
723
724 daddr = &sin6->sin6_addr;
725 if (np->sndflow) {
726 fl.fl6_flowlabel = sin6->sin6_flowinfo&IPV6_FLOWINFO_MASK;
727 if (fl.fl6_flowlabel&IPV6_FLOWLABEL_MASK) {
728 flowlabel = fl6_sock_lookup(sk, fl.fl6_flowlabel);
729 if (flowlabel == NULL)
730 return -EINVAL;
731 daddr = &flowlabel->dst;
732 }
733 }
734
735 /*
736 * Otherwise it will be difficult to maintain
737 * sk->sk_dst_cache.
738 */
739 if (sk->sk_state == TCP_ESTABLISHED &&
740 ipv6_addr_equal(daddr, &np->daddr))
741 daddr = &np->daddr;
742
743 if (addr_len >= sizeof(struct sockaddr_in6) &&
744 sin6->sin6_scope_id &&
745 ipv6_addr_type(daddr)&IPV6_ADDR_LINKLOCAL)
746 fl.oif = sin6->sin6_scope_id;
747 } else {
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900748 if (sk->sk_state != TCP_ESTABLISHED)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700749 return -EDESTADDRREQ;
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900750
Linus Torvalds1da177e2005-04-16 15:20:36 -0700751 proto = inet->num;
752 daddr = &np->daddr;
753 fl.fl6_flowlabel = np->flow_label;
754 }
755
756 if (ipv6_addr_any(daddr)) {
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900757 /*
758 * unspecified destination address
Linus Torvalds1da177e2005-04-16 15:20:36 -0700759 * treated as error... is this correct ?
760 */
761 fl6_sock_release(flowlabel);
762 return(-EINVAL);
763 }
764
765 if (fl.oif == 0)
766 fl.oif = sk->sk_bound_dev_if;
767
768 if (msg->msg_controllen) {
769 opt = &opt_space;
770 memset(opt, 0, sizeof(struct ipv6_txoptions));
771 opt->tot_len = sizeof(struct ipv6_txoptions);
772
YOSHIFUJI Hideaki41a1f8e2005-09-08 10:19:03 +0900773 err = datagram_send_ctl(msg, &fl, opt, &hlimit, &tclass);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700774 if (err < 0) {
775 fl6_sock_release(flowlabel);
776 return err;
777 }
778 if ((fl.fl6_flowlabel&IPV6_FLOWLABEL_MASK) && !flowlabel) {
779 flowlabel = fl6_sock_lookup(sk, fl.fl6_flowlabel);
780 if (flowlabel == NULL)
781 return -EINVAL;
782 }
783 if (!(opt->opt_nflen|opt->opt_flen))
784 opt = NULL;
785 }
786 if (opt == NULL)
787 opt = np->opt;
YOSHIFUJI Hideakidf9890c2005-11-20 12:23:18 +0900788 if (flowlabel)
789 opt = fl6_merge_options(&opt_space, flowlabel, opt);
790 opt = ipv6_fixup_options(&opt_space, opt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700791
792 fl.proto = proto;
Heiko Carstensa27b58f2006-10-30 15:06:12 -0800793 err = rawv6_probe_proto_opt(&fl, msg);
794 if (err)
795 goto out;
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900796
Linus Torvalds1da177e2005-04-16 15:20:36 -0700797 ipv6_addr_copy(&fl.fl6_dst, daddr);
798 if (ipv6_addr_any(&fl.fl6_src) && !ipv6_addr_any(&np->saddr))
799 ipv6_addr_copy(&fl.fl6_src, &np->saddr);
800
801 /* merge ip6_build_xmit from ip6_output */
802 if (opt && opt->srcrt) {
803 struct rt0_hdr *rt0 = (struct rt0_hdr *) opt->srcrt;
804 ipv6_addr_copy(&final, &fl.fl6_dst);
805 ipv6_addr_copy(&fl.fl6_dst, rt0->addr);
806 final_p = &final;
807 }
808
809 if (!fl.oif && ipv6_addr_is_multicast(&fl.fl6_dst))
810 fl.oif = np->mcast_oif;
Venkat Yekkiralabeb8d132006-08-04 23:12:42 -0700811 security_sk_classify_flow(sk, &fl);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700812
813 err = ip6_dst_lookup(sk, &dst, &fl);
814 if (err)
815 goto out;
816 if (final_p)
817 ipv6_addr_copy(&fl.fl6_dst, final_p);
818
David S. Miller8eb90862007-02-08 02:09:21 -0800819 if ((err = xfrm_lookup(&dst, &fl, sk, 1)) < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700820 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700821
822 if (hlimit < 0) {
823 if (ipv6_addr_is_multicast(&fl.fl6_dst))
824 hlimit = np->mcast_hops;
825 else
826 hlimit = np->hop_limit;
827 if (hlimit < 0)
828 hlimit = dst_metric(dst, RTAX_HOPLIMIT);
829 if (hlimit < 0)
830 hlimit = ipv6_get_hoplimit(dst->dev);
831 }
832
YOSHIFUJI Hideaki41a1f8e2005-09-08 10:19:03 +0900833 if (tclass < 0) {
YOSHIFUJI Hideakie012d512006-09-13 20:01:28 -0700834 tclass = np->tclass;
YOSHIFUJI Hideaki41a1f8e2005-09-08 10:19:03 +0900835 if (tclass < 0)
836 tclass = 0;
837 }
838
Linus Torvalds1da177e2005-04-16 15:20:36 -0700839 if (msg->msg_flags&MSG_CONFIRM)
840 goto do_confirm;
841
842back_from_confirm:
843 if (inet->hdrincl) {
844 err = rawv6_send_hdrinc(sk, msg->msg_iov, len, &fl, (struct rt6_info*)dst, msg->msg_flags);
845 } else {
846 lock_sock(sk);
YOSHIFUJI Hideaki41a1f8e2005-09-08 10:19:03 +0900847 err = ip6_append_data(sk, ip_generic_getfrag, msg->msg_iov,
848 len, 0, hlimit, tclass, opt, &fl, (struct rt6_info*)dst,
849 msg->msg_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700850
851 if (err)
852 ip6_flush_pending_frames(sk);
853 else if (!(msg->msg_flags & MSG_MORE))
Herbert Xu357b40a2005-04-19 22:30:14 -0700854 err = rawv6_push_pending_frames(sk, &fl, rp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700855 }
856done:
Nicolas DICHTEL6d3e85e2006-02-13 15:56:13 -0800857 dst_release(dst);
Masahide NAKAMURA4e33fa12006-12-05 13:48:27 -0800858 if (!inet->hdrincl)
859 release_sock(sk);
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900860out:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700861 fl6_sock_release(flowlabel);
862 return err<0?err:len;
863do_confirm:
864 dst_confirm(dst);
865 if (!(msg->msg_flags & MSG_PROBE) || len)
866 goto back_from_confirm;
867 err = 0;
868 goto done;
869}
870
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900871static int rawv6_seticmpfilter(struct sock *sk, int level, int optname,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700872 char __user *optval, int optlen)
873{
874 switch (optname) {
875 case ICMPV6_FILTER:
876 if (optlen > sizeof(struct icmp6_filter))
877 optlen = sizeof(struct icmp6_filter);
878 if (copy_from_user(&raw6_sk(sk)->filter, optval, optlen))
879 return -EFAULT;
880 return 0;
881 default:
882 return -ENOPROTOOPT;
883 };
884
885 return 0;
886}
887
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900888static int rawv6_geticmpfilter(struct sock *sk, int level, int optname,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700889 char __user *optval, int __user *optlen)
890{
891 int len;
892
893 switch (optname) {
894 case ICMPV6_FILTER:
895 if (get_user(len, optlen))
896 return -EFAULT;
897 if (len < 0)
898 return -EINVAL;
899 if (len > sizeof(struct icmp6_filter))
900 len = sizeof(struct icmp6_filter);
901 if (put_user(len, optlen))
902 return -EFAULT;
903 if (copy_to_user(optval, &raw6_sk(sk)->filter, len))
904 return -EFAULT;
905 return 0;
906 default:
907 return -ENOPROTOOPT;
908 };
909
910 return 0;
911}
912
913
Dmitry Mishin3fdadf72006-03-20 22:45:21 -0800914static int do_rawv6_setsockopt(struct sock *sk, int level, int optname,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700915 char __user *optval, int optlen)
916{
917 struct raw6_sock *rp = raw6_sk(sk);
918 int val;
919
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900920 if (get_user(val, (int __user *)optval))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700921 return -EFAULT;
922
923 switch (optname) {
924 case IPV6_CHECKSUM:
925 /* You may get strange result with a positive odd offset;
926 RFC2292bis agrees with me. */
927 if (val > 0 && (val&1))
928 return(-EINVAL);
929 if (val < 0) {
930 rp->checksum = 0;
931 } else {
932 rp->checksum = 1;
933 rp->offset = val;
934 }
935
936 return 0;
937 break;
938
939 default:
940 return(-ENOPROTOOPT);
941 }
942}
943
Dmitry Mishin3fdadf72006-03-20 22:45:21 -0800944static int rawv6_setsockopt(struct sock *sk, int level, int optname,
945 char __user *optval, int optlen)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700946{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700947 switch(level) {
948 case SOL_RAW:
949 break;
950
951 case SOL_ICMPV6:
952 if (inet_sk(sk)->num != IPPROTO_ICMPV6)
953 return -EOPNOTSUPP;
Dmitry Mishin3fdadf72006-03-20 22:45:21 -0800954 return rawv6_seticmpfilter(sk, level, optname, optval,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700955 optlen);
956 case SOL_IPV6:
957 if (optname == IPV6_CHECKSUM)
958 break;
959 default:
Dmitry Mishin3fdadf72006-03-20 22:45:21 -0800960 return ipv6_setsockopt(sk, level, optname, optval,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700961 optlen);
962 };
Dmitry Mishin3fdadf72006-03-20 22:45:21 -0800963 return do_rawv6_setsockopt(sk, level, optname, optval, optlen);
964}
965
966#ifdef CONFIG_COMPAT
967static int compat_rawv6_setsockopt(struct sock *sk, int level, int optname,
Arnaldo Carvalho de Melo543d9cf2006-03-20 22:48:35 -0800968 char __user *optval, int optlen)
Dmitry Mishin3fdadf72006-03-20 22:45:21 -0800969{
Arnaldo Carvalho de Melo543d9cf2006-03-20 22:48:35 -0800970 switch (level) {
971 case SOL_RAW:
972 break;
973 case SOL_ICMPV6:
974 if (inet_sk(sk)->num != IPPROTO_ICMPV6)
975 return -EOPNOTSUPP;
976 return rawv6_seticmpfilter(sk, level, optname, optval, optlen);
977 case SOL_IPV6:
978 if (optname == IPV6_CHECKSUM)
Dmitry Mishin3fdadf72006-03-20 22:45:21 -0800979 break;
Arnaldo Carvalho de Melo543d9cf2006-03-20 22:48:35 -0800980 default:
981 return compat_ipv6_setsockopt(sk, level, optname,
982 optval, optlen);
Dmitry Mishin3fdadf72006-03-20 22:45:21 -0800983 };
984 return do_rawv6_setsockopt(sk, level, optname, optval, optlen);
985}
986#endif
987
988static int do_rawv6_getsockopt(struct sock *sk, int level, int optname,
989 char __user *optval, int __user *optlen)
990{
991 struct raw6_sock *rp = raw6_sk(sk);
992 int val, len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700993
994 if (get_user(len,optlen))
995 return -EFAULT;
996
997 switch (optname) {
998 case IPV6_CHECKSUM:
999 if (rp->checksum == 0)
1000 val = -1;
1001 else
1002 val = rp->offset;
1003 break;
1004
1005 default:
1006 return -ENOPROTOOPT;
1007 }
1008
1009 len = min_t(unsigned int, sizeof(int), len);
1010
1011 if (put_user(len, optlen))
1012 return -EFAULT;
1013 if (copy_to_user(optval,&val,len))
1014 return -EFAULT;
1015 return 0;
1016}
1017
Dmitry Mishin3fdadf72006-03-20 22:45:21 -08001018static int rawv6_getsockopt(struct sock *sk, int level, int optname,
1019 char __user *optval, int __user *optlen)
1020{
1021 switch(level) {
1022 case SOL_RAW:
1023 break;
1024
1025 case SOL_ICMPV6:
1026 if (inet_sk(sk)->num != IPPROTO_ICMPV6)
1027 return -EOPNOTSUPP;
1028 return rawv6_geticmpfilter(sk, level, optname, optval,
1029 optlen);
1030 case SOL_IPV6:
1031 if (optname == IPV6_CHECKSUM)
1032 break;
1033 default:
1034 return ipv6_getsockopt(sk, level, optname, optval,
1035 optlen);
1036 };
1037 return do_rawv6_getsockopt(sk, level, optname, optval, optlen);
1038}
1039
1040#ifdef CONFIG_COMPAT
1041static int compat_rawv6_getsockopt(struct sock *sk, int level, int optname,
Arnaldo Carvalho de Melo543d9cf2006-03-20 22:48:35 -08001042 char __user *optval, int __user *optlen)
Dmitry Mishin3fdadf72006-03-20 22:45:21 -08001043{
Arnaldo Carvalho de Melo543d9cf2006-03-20 22:48:35 -08001044 switch (level) {
1045 case SOL_RAW:
1046 break;
1047 case SOL_ICMPV6:
1048 if (inet_sk(sk)->num != IPPROTO_ICMPV6)
1049 return -EOPNOTSUPP;
1050 return rawv6_geticmpfilter(sk, level, optname, optval, optlen);
1051 case SOL_IPV6:
1052 if (optname == IPV6_CHECKSUM)
Dmitry Mishin3fdadf72006-03-20 22:45:21 -08001053 break;
Arnaldo Carvalho de Melo543d9cf2006-03-20 22:48:35 -08001054 default:
1055 return compat_ipv6_getsockopt(sk, level, optname,
1056 optval, optlen);
Dmitry Mishin3fdadf72006-03-20 22:45:21 -08001057 };
1058 return do_rawv6_getsockopt(sk, level, optname, optval, optlen);
1059}
1060#endif
1061
Linus Torvalds1da177e2005-04-16 15:20:36 -07001062static int rawv6_ioctl(struct sock *sk, int cmd, unsigned long arg)
1063{
1064 switch(cmd) {
1065 case SIOCOUTQ:
1066 {
1067 int amount = atomic_read(&sk->sk_wmem_alloc);
1068 return put_user(amount, (int __user *)arg);
1069 }
1070 case SIOCINQ:
1071 {
1072 struct sk_buff *skb;
1073 int amount = 0;
1074
Herbert Xue0f9f852005-06-18 22:56:18 -07001075 spin_lock_bh(&sk->sk_receive_queue.lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001076 skb = skb_peek(&sk->sk_receive_queue);
1077 if (skb != NULL)
1078 amount = skb->tail - skb->h.raw;
Herbert Xue0f9f852005-06-18 22:56:18 -07001079 spin_unlock_bh(&sk->sk_receive_queue.lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001080 return put_user(amount, (int __user *)arg);
1081 }
1082
1083 default:
1084 return -ENOIOCTLCMD;
1085 }
1086}
1087
1088static void rawv6_close(struct sock *sk, long timeout)
1089{
1090 if (inet_sk(sk)->num == IPPROTO_RAW)
1091 ip6_ra_control(sk, -1, NULL);
1092
1093 sk_common_release(sk);
1094}
1095
1096static int rawv6_init_sk(struct sock *sk)
1097{
Masahide NAKAMURAf48d5ff2007-02-07 00:07:39 -08001098 struct raw6_sock *rp = raw6_sk(sk);
1099
1100 switch (inet_sk(sk)->num) {
1101 case IPPROTO_ICMPV6:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001102 rp->checksum = 1;
1103 rp->offset = 2;
Masahide NAKAMURAf48d5ff2007-02-07 00:07:39 -08001104 break;
1105 case IPPROTO_MH:
1106 rp->checksum = 1;
1107 rp->offset = 4;
1108 break;
1109 default:
1110 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001111 }
1112 return(0);
1113}
1114
1115struct proto rawv6_prot = {
Arnaldo Carvalho de Melo543d9cf2006-03-20 22:48:35 -08001116 .name = "RAWv6",
1117 .owner = THIS_MODULE,
1118 .close = rawv6_close,
1119 .connect = ip6_datagram_connect,
1120 .disconnect = udp_disconnect,
1121 .ioctl = rawv6_ioctl,
1122 .init = rawv6_init_sk,
1123 .destroy = inet6_destroy_sock,
1124 .setsockopt = rawv6_setsockopt,
1125 .getsockopt = rawv6_getsockopt,
1126 .sendmsg = rawv6_sendmsg,
1127 .recvmsg = rawv6_recvmsg,
1128 .bind = rawv6_bind,
1129 .backlog_rcv = rawv6_rcv_skb,
1130 .hash = raw_v6_hash,
1131 .unhash = raw_v6_unhash,
1132 .obj_size = sizeof(struct raw6_sock),
Dmitry Mishin3fdadf72006-03-20 22:45:21 -08001133#ifdef CONFIG_COMPAT
Arnaldo Carvalho de Melo543d9cf2006-03-20 22:48:35 -08001134 .compat_setsockopt = compat_rawv6_setsockopt,
1135 .compat_getsockopt = compat_rawv6_getsockopt,
Dmitry Mishin3fdadf72006-03-20 22:45:21 -08001136#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001137};
1138
1139#ifdef CONFIG_PROC_FS
1140struct raw6_iter_state {
1141 int bucket;
1142};
1143
1144#define raw6_seq_private(seq) ((struct raw6_iter_state *)(seq)->private)
1145
1146static struct sock *raw6_get_first(struct seq_file *seq)
1147{
1148 struct sock *sk;
1149 struct hlist_node *node;
1150 struct raw6_iter_state* state = raw6_seq_private(seq);
1151
1152 for (state->bucket = 0; state->bucket < RAWV6_HTABLE_SIZE; ++state->bucket)
1153 sk_for_each(sk, node, &raw_v6_htable[state->bucket])
1154 if (sk->sk_family == PF_INET6)
1155 goto out;
1156 sk = NULL;
1157out:
1158 return sk;
1159}
1160
1161static struct sock *raw6_get_next(struct seq_file *seq, struct sock *sk)
1162{
1163 struct raw6_iter_state* state = raw6_seq_private(seq);
1164
1165 do {
1166 sk = sk_next(sk);
1167try_again:
1168 ;
1169 } while (sk && sk->sk_family != PF_INET6);
1170
1171 if (!sk && ++state->bucket < RAWV6_HTABLE_SIZE) {
1172 sk = sk_head(&raw_v6_htable[state->bucket]);
1173 goto try_again;
1174 }
1175 return sk;
1176}
1177
1178static struct sock *raw6_get_idx(struct seq_file *seq, loff_t pos)
1179{
1180 struct sock *sk = raw6_get_first(seq);
1181 if (sk)
1182 while (pos && (sk = raw6_get_next(seq, sk)) != NULL)
1183 --pos;
1184 return pos ? NULL : sk;
1185}
1186
1187static void *raw6_seq_start(struct seq_file *seq, loff_t *pos)
1188{
1189 read_lock(&raw_v6_lock);
1190 return *pos ? raw6_get_idx(seq, *pos - 1) : SEQ_START_TOKEN;
1191}
1192
1193static void *raw6_seq_next(struct seq_file *seq, void *v, loff_t *pos)
1194{
1195 struct sock *sk;
1196
1197 if (v == SEQ_START_TOKEN)
1198 sk = raw6_get_first(seq);
1199 else
1200 sk = raw6_get_next(seq, v);
1201 ++*pos;
1202 return sk;
1203}
1204
1205static void raw6_seq_stop(struct seq_file *seq, void *v)
1206{
1207 read_unlock(&raw_v6_lock);
1208}
1209
1210static void raw6_sock_seq_show(struct seq_file *seq, struct sock *sp, int i)
1211{
1212 struct ipv6_pinfo *np = inet6_sk(sp);
1213 struct in6_addr *dest, *src;
1214 __u16 destp, srcp;
1215
1216 dest = &np->daddr;
1217 src = &np->rcv_saddr;
1218 destp = 0;
1219 srcp = inet_sk(sp)->num;
1220 seq_printf(seq,
1221 "%4d: %08X%08X%08X%08X:%04X %08X%08X%08X%08X:%04X "
1222 "%02X %08X:%08X %02X:%08lX %08X %5d %8d %lu %d %p\n",
1223 i,
1224 src->s6_addr32[0], src->s6_addr32[1],
1225 src->s6_addr32[2], src->s6_addr32[3], srcp,
1226 dest->s6_addr32[0], dest->s6_addr32[1],
1227 dest->s6_addr32[2], dest->s6_addr32[3], destp,
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09001228 sp->sk_state,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001229 atomic_read(&sp->sk_wmem_alloc),
1230 atomic_read(&sp->sk_rmem_alloc),
1231 0, 0L, 0,
1232 sock_i_uid(sp), 0,
1233 sock_i_ino(sp),
1234 atomic_read(&sp->sk_refcnt), sp);
1235}
1236
1237static int raw6_seq_show(struct seq_file *seq, void *v)
1238{
1239 if (v == SEQ_START_TOKEN)
1240 seq_printf(seq,
1241 " sl "
1242 "local_address "
1243 "remote_address "
1244 "st tx_queue rx_queue tr tm->when retrnsmt"
1245 " uid timeout inode\n");
1246 else
1247 raw6_sock_seq_show(seq, v, raw6_seq_private(seq)->bucket);
1248 return 0;
1249}
1250
1251static struct seq_operations raw6_seq_ops = {
1252 .start = raw6_seq_start,
1253 .next = raw6_seq_next,
1254 .stop = raw6_seq_stop,
1255 .show = raw6_seq_show,
1256};
1257
1258static int raw6_seq_open(struct inode *inode, struct file *file)
1259{
1260 struct seq_file *seq;
1261 int rc = -ENOMEM;
Ingo Oeser0c600ed2006-03-20 23:01:32 -08001262 struct raw6_iter_state *s = kzalloc(sizeof(*s), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001263 if (!s)
1264 goto out;
1265 rc = seq_open(file, &raw6_seq_ops);
1266 if (rc)
1267 goto out_kfree;
1268 seq = file->private_data;
1269 seq->private = s;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001270out:
1271 return rc;
1272out_kfree:
1273 kfree(s);
1274 goto out;
1275}
1276
Arjan van de Ven9a321442007-02-12 00:55:35 -08001277static const struct file_operations raw6_seq_fops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001278 .owner = THIS_MODULE,
1279 .open = raw6_seq_open,
1280 .read = seq_read,
1281 .llseek = seq_lseek,
1282 .release = seq_release_private,
1283};
1284
1285int __init raw6_proc_init(void)
1286{
1287 if (!proc_net_fops_create("raw6", S_IRUGO, &raw6_seq_fops))
1288 return -ENOMEM;
1289 return 0;
1290}
1291
1292void raw6_proc_exit(void)
1293{
1294 proc_net_remove("raw6");
1295}
1296#endif /* CONFIG_PROC_FS */