blob: 651c79b41eeb1500241532dda6cedc700e71ebc3 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * RAW sockets for IPv6
3 * Linux INET6 implementation
4 *
5 * Authors:
6 * Pedro Roque <roque@di.fc.ul.pt>
7 *
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
14 * YOSHIFUJI,H.@USAGI : raw checksum (RFC2292(bis) compliance)
15 * 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>
27#include <linux/sched.h>
28#include <linux/net.h>
29#include <linux/in6.h>
30#include <linux/netdevice.h>
31#include <linux/if_arp.h>
32#include <linux/icmpv6.h>
33#include <linux/netfilter.h>
34#include <linux/netfilter_ipv6.h>
35#include <asm/uaccess.h>
36#include <asm/ioctls.h>
Herbert Xu357b40a2005-04-19 22:30:14 -070037#include <asm/bug.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070038
39#include <net/ip.h>
40#include <net/sock.h>
41#include <net/snmp.h>
42
43#include <net/ipv6.h>
44#include <net/ndisc.h>
45#include <net/protocol.h>
46#include <net/ip6_route.h>
47#include <net/ip6_checksum.h>
48#include <net/addrconf.h>
49#include <net/transp_v6.h>
50#include <net/udp.h>
51#include <net/inet_common.h>
Arnaldo Carvalho de Meloc752f072005-08-09 20:08:28 -070052#include <net/tcp_states.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070053
54#include <net/rawv6.h>
55#include <net/xfrm.h>
56
57#include <linux/proc_fs.h>
58#include <linux/seq_file.h>
59
60struct hlist_head raw_v6_htable[RAWV6_HTABLE_SIZE];
61DEFINE_RWLOCK(raw_v6_lock);
62
63static void raw_v6_hash(struct sock *sk)
64{
65 struct hlist_head *list = &raw_v6_htable[inet_sk(sk)->num &
66 (RAWV6_HTABLE_SIZE - 1)];
67
68 write_lock_bh(&raw_v6_lock);
69 sk_add_node(sk, list);
70 sock_prot_inc_use(sk->sk_prot);
71 write_unlock_bh(&raw_v6_lock);
72}
73
74static void raw_v6_unhash(struct sock *sk)
75{
76 write_lock_bh(&raw_v6_lock);
77 if (sk_del_node_init(sk))
78 sock_prot_dec_use(sk->sk_prot);
79 write_unlock_bh(&raw_v6_lock);
80}
81
82
83/* Grumble... icmp and ip_input want to get at this... */
84struct sock *__raw_v6_lookup(struct sock *sk, unsigned short num,
Andrew McDonald0bd1b592005-08-09 19:44:42 -070085 struct in6_addr *loc_addr, struct in6_addr *rmt_addr,
86 int dif)
Linus Torvalds1da177e2005-04-16 15:20:36 -070087{
88 struct hlist_node *node;
89 int is_multicast = ipv6_addr_is_multicast(loc_addr);
90
91 sk_for_each_from(sk, node)
92 if (inet_sk(sk)->num == num) {
93 struct ipv6_pinfo *np = inet6_sk(sk);
94
95 if (!ipv6_addr_any(&np->daddr) &&
96 !ipv6_addr_equal(&np->daddr, rmt_addr))
97 continue;
98
Andrew McDonald0bd1b592005-08-09 19:44:42 -070099 if (sk->sk_bound_dev_if && sk->sk_bound_dev_if != dif)
100 continue;
101
Linus Torvalds1da177e2005-04-16 15:20:36 -0700102 if (!ipv6_addr_any(&np->rcv_saddr)) {
103 if (ipv6_addr_equal(&np->rcv_saddr, loc_addr))
104 goto found;
105 if (is_multicast &&
106 inet6_mc_check(sk, loc_addr, rmt_addr))
107 goto found;
108 continue;
109 }
110 goto found;
111 }
112 sk = NULL;
113found:
114 return sk;
115}
116
117/*
118 * 0 - deliver
119 * 1 - block
120 */
121static __inline__ int icmpv6_filter(struct sock *sk, struct sk_buff *skb)
122{
123 struct icmp6hdr *icmph;
124 struct raw6_sock *rp = raw6_sk(sk);
125
126 if (pskb_may_pull(skb, sizeof(struct icmp6hdr))) {
127 __u32 *data = &rp->filter.data[0];
128 int bit_nr;
129
130 icmph = (struct icmp6hdr *) skb->data;
131 bit_nr = icmph->icmp6_type;
132
133 return (data[bit_nr >> 5] & (1 << (bit_nr & 31))) != 0;
134 }
135 return 0;
136}
137
138/*
139 * demultiplex raw sockets.
140 * (should consider queueing the skb in the sock receive_queue
141 * without calling rawv6.c)
142 *
143 * Caller owns SKB so we must make clones.
144 */
Patrick McHardyd13964f2005-08-09 19:45:02 -0700145int ipv6_raw_deliver(struct sk_buff *skb, int nexthdr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700146{
147 struct in6_addr *saddr;
148 struct in6_addr *daddr;
149 struct sock *sk;
Patrick McHardyd13964f2005-08-09 19:45:02 -0700150 int delivered = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700151 __u8 hash;
152
153 saddr = &skb->nh.ipv6h->saddr;
154 daddr = saddr + 1;
155
156 hash = nexthdr & (MAX_INET_PROTOS - 1);
157
158 read_lock(&raw_v6_lock);
159 sk = sk_head(&raw_v6_htable[hash]);
160
161 /*
162 * The first socket found will be delivered after
163 * delivery to transport protocols.
164 */
165
166 if (sk == NULL)
167 goto out;
168
YOSHIFUJI Hideaki2dac4b92005-09-01 17:44:49 -0700169 sk = __raw_v6_lookup(sk, nexthdr, daddr, saddr, IP6CB(skb)->iif);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700170
171 while (sk) {
Patrick McHardyd13964f2005-08-09 19:45:02 -0700172 delivered = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700173 if (nexthdr != IPPROTO_ICMPV6 || !icmpv6_filter(sk, skb)) {
174 struct sk_buff *clone = skb_clone(skb, GFP_ATOMIC);
175
176 /* Not releasing hash table! */
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800177 if (clone) {
178 nf_reset(clone);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700179 rawv6_rcv(sk, clone);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800180 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700181 }
Andrew McDonald0bd1b592005-08-09 19:44:42 -0700182 sk = __raw_v6_lookup(sk_next(sk), nexthdr, daddr, saddr,
YOSHIFUJI Hideaki2dac4b92005-09-01 17:44:49 -0700183 IP6CB(skb)->iif);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700184 }
185out:
186 read_unlock(&raw_v6_lock);
Patrick McHardyd13964f2005-08-09 19:45:02 -0700187 return delivered;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700188}
189
190/* This cleans up af_inet6 a bit. -DaveM */
191static int rawv6_bind(struct sock *sk, struct sockaddr *uaddr, int addr_len)
192{
193 struct inet_sock *inet = inet_sk(sk);
194 struct ipv6_pinfo *np = inet6_sk(sk);
195 struct sockaddr_in6 *addr = (struct sockaddr_in6 *) uaddr;
196 __u32 v4addr = 0;
197 int addr_type;
198 int err;
199
200 if (addr_len < SIN6_LEN_RFC2133)
201 return -EINVAL;
202 addr_type = ipv6_addr_type(&addr->sin6_addr);
203
204 /* Raw sockets are IPv6 only */
205 if (addr_type == IPV6_ADDR_MAPPED)
206 return(-EADDRNOTAVAIL);
207
208 lock_sock(sk);
209
210 err = -EINVAL;
211 if (sk->sk_state != TCP_CLOSE)
212 goto out;
213
214 /* Check if the address belongs to the host. */
215 if (addr_type != IPV6_ADDR_ANY) {
216 struct net_device *dev = NULL;
217
218 if (addr_type & IPV6_ADDR_LINKLOCAL) {
219 if (addr_len >= sizeof(struct sockaddr_in6) &&
220 addr->sin6_scope_id) {
221 /* Override any existing binding, if another
222 * one is supplied by user.
223 */
224 sk->sk_bound_dev_if = addr->sin6_scope_id;
225 }
226
227 /* Binding to link-local address requires an interface */
228 if (!sk->sk_bound_dev_if)
229 goto out;
230
231 dev = dev_get_by_index(sk->sk_bound_dev_if);
232 if (!dev) {
233 err = -ENODEV;
234 goto out;
235 }
236 }
237
238 /* ipv4 addr of the socket is invalid. Only the
239 * unspecified and mapped address have a v4 equivalent.
240 */
241 v4addr = LOOPBACK4_IPV6;
242 if (!(addr_type & IPV6_ADDR_MULTICAST)) {
243 err = -EADDRNOTAVAIL;
244 if (!ipv6_chk_addr(&addr->sin6_addr, dev, 0)) {
245 if (dev)
246 dev_put(dev);
247 goto out;
248 }
249 }
250 if (dev)
251 dev_put(dev);
252 }
253
254 inet->rcv_saddr = inet->saddr = v4addr;
255 ipv6_addr_copy(&np->rcv_saddr, &addr->sin6_addr);
256 if (!(addr_type & IPV6_ADDR_MULTICAST))
257 ipv6_addr_copy(&np->saddr, &addr->sin6_addr);
258 err = 0;
259out:
260 release_sock(sk);
261 return err;
262}
263
264void rawv6_err(struct sock *sk, struct sk_buff *skb,
265 struct inet6_skb_parm *opt,
266 int type, int code, int offset, u32 info)
267{
268 struct inet_sock *inet = inet_sk(sk);
269 struct ipv6_pinfo *np = inet6_sk(sk);
270 int err;
271 int harderr;
272
273 /* Report error on raw socket, if:
274 1. User requested recverr.
275 2. Socket is connected (otherwise the error indication
276 is useless without recverr and error is hard.
277 */
278 if (!np->recverr && sk->sk_state != TCP_ESTABLISHED)
279 return;
280
281 harderr = icmpv6_err_convert(type, code, &err);
282 if (type == ICMPV6_PKT_TOOBIG)
283 harderr = (np->pmtudisc == IPV6_PMTUDISC_DO);
284
285 if (np->recverr) {
286 u8 *payload = skb->data;
287 if (!inet->hdrincl)
288 payload += offset;
289 ipv6_icmp_error(sk, skb, err, 0, ntohl(info), payload);
290 }
291
292 if (np->recverr || harderr) {
293 sk->sk_err = err;
294 sk->sk_error_report(sk);
295 }
296}
297
298static inline int rawv6_rcv_skb(struct sock * sk, struct sk_buff * skb)
299{
300 if ((raw6_sk(sk)->checksum || sk->sk_filter) &&
301 skb->ip_summed != CHECKSUM_UNNECESSARY) {
302 if ((unsigned short)csum_fold(skb_checksum(skb, 0, skb->len, skb->csum))) {
303 /* FIXME: increment a raw6 drops counter here */
304 kfree_skb(skb);
305 return 0;
306 }
307 skb->ip_summed = CHECKSUM_UNNECESSARY;
308 }
309
310 /* Charge it to the socket. */
311 if (sock_queue_rcv_skb(sk,skb)<0) {
312 /* FIXME: increment a raw6 drops counter here */
313 kfree_skb(skb);
314 return 0;
315 }
316
317 return 0;
318}
319
320/*
321 * This is next to useless...
322 * if we demultiplex in network layer we don't need the extra call
323 * just to queue the skb...
324 * maybe we could have the network decide upon a hint if it
325 * should call raw_rcv for demultiplexing
326 */
327int rawv6_rcv(struct sock *sk, struct sk_buff *skb)
328{
329 struct inet_sock *inet = inet_sk(sk);
330 struct raw6_sock *rp = raw6_sk(sk);
331
332 if (!xfrm6_policy_check(sk, XFRM_POLICY_IN, skb)) {
333 kfree_skb(skb);
334 return NET_RX_DROP;
335 }
336
337 if (!rp->checksum)
338 skb->ip_summed = CHECKSUM_UNNECESSARY;
339
340 if (skb->ip_summed != CHECKSUM_UNNECESSARY) {
341 if (skb->ip_summed == CHECKSUM_HW) {
Patrick McHardy793245e2005-08-16 20:39:38 -0700342 skb_postpull_rcsum(skb, skb->nh.raw,
343 skb->h.raw - skb->nh.raw);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700344 skb->ip_summed = CHECKSUM_UNNECESSARY;
345 if (csum_ipv6_magic(&skb->nh.ipv6h->saddr,
346 &skb->nh.ipv6h->daddr,
347 skb->len, inet->num, skb->csum)) {
Patrick McHardy64ce2072005-08-09 20:50:53 -0700348 LIMIT_NETDEBUG(KERN_DEBUG "raw v6 hw csum failure.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700349 skb->ip_summed = CHECKSUM_NONE;
350 }
351 }
352 if (skb->ip_summed == CHECKSUM_NONE)
353 skb->csum = ~csum_ipv6_magic(&skb->nh.ipv6h->saddr,
354 &skb->nh.ipv6h->daddr,
355 skb->len, inet->num, 0);
356 }
357
358 if (inet->hdrincl) {
359 if (skb->ip_summed != CHECKSUM_UNNECESSARY &&
360 (unsigned short)csum_fold(skb_checksum(skb, 0, skb->len, skb->csum))) {
361 /* FIXME: increment a raw6 drops counter here */
362 kfree_skb(skb);
363 return 0;
364 }
365 skb->ip_summed = CHECKSUM_UNNECESSARY;
366 }
367
368 rawv6_rcv_skb(sk, skb);
369 return 0;
370}
371
372
373/*
374 * This should be easy, if there is something there
375 * we return it, otherwise we block.
376 */
377
378static int rawv6_recvmsg(struct kiocb *iocb, struct sock *sk,
379 struct msghdr *msg, size_t len,
380 int noblock, int flags, int *addr_len)
381{
382 struct ipv6_pinfo *np = inet6_sk(sk);
383 struct sockaddr_in6 *sin6 = (struct sockaddr_in6 *)msg->msg_name;
384 struct sk_buff *skb;
385 size_t copied;
386 int err;
387
388 if (flags & MSG_OOB)
389 return -EOPNOTSUPP;
390
391 if (addr_len)
392 *addr_len=sizeof(*sin6);
393
394 if (flags & MSG_ERRQUEUE)
395 return ipv6_recv_error(sk, msg, len);
396
397 skb = skb_recv_datagram(sk, flags, noblock, &err);
398 if (!skb)
399 goto out;
400
401 copied = skb->len;
402 if (copied > len) {
403 copied = len;
404 msg->msg_flags |= MSG_TRUNC;
405 }
406
407 if (skb->ip_summed==CHECKSUM_UNNECESSARY) {
408 err = skb_copy_datagram_iovec(skb, 0, msg->msg_iov, copied);
409 } else if (msg->msg_flags&MSG_TRUNC) {
410 if ((unsigned short)csum_fold(skb_checksum(skb, 0, skb->len, skb->csum)))
411 goto csum_copy_err;
412 err = skb_copy_datagram_iovec(skb, 0, msg->msg_iov, copied);
413 } else {
414 err = skb_copy_and_csum_datagram_iovec(skb, 0, msg->msg_iov);
415 if (err == -EINVAL)
416 goto csum_copy_err;
417 }
418 if (err)
419 goto out_free;
420
421 /* Copy the address. */
422 if (sin6) {
423 sin6->sin6_family = AF_INET6;
424 ipv6_addr_copy(&sin6->sin6_addr, &skb->nh.ipv6h->saddr);
425 sin6->sin6_flowinfo = 0;
426 sin6->sin6_scope_id = 0;
427 if (ipv6_addr_type(&sin6->sin6_addr) & IPV6_ADDR_LINKLOCAL)
428 sin6->sin6_scope_id = IP6CB(skb)->iif;
429 }
430
431 sock_recv_timestamp(msg, sk, skb);
432
433 if (np->rxopt.all)
434 datagram_recv_ctl(sk, msg, skb);
435
436 err = copied;
437 if (flags & MSG_TRUNC)
438 err = skb->len;
439
440out_free:
441 skb_free_datagram(sk, skb);
442out:
443 return err;
444
445csum_copy_err:
446 /* Clear queue. */
447 if (flags&MSG_PEEK) {
448 int clear = 0;
Herbert Xue0f9f852005-06-18 22:56:18 -0700449 spin_lock_bh(&sk->sk_receive_queue.lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700450 if (skb == skb_peek(&sk->sk_receive_queue)) {
451 __skb_unlink(skb, &sk->sk_receive_queue);
452 clear = 1;
453 }
Herbert Xue0f9f852005-06-18 22:56:18 -0700454 spin_unlock_bh(&sk->sk_receive_queue.lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700455 if (clear)
456 kfree_skb(skb);
457 }
458
459 /* Error for blocking case is chosen to masquerade
460 as some normal condition.
461 */
462 err = (flags&MSG_DONTWAIT) ? -EAGAIN : -EHOSTUNREACH;
463 /* FIXME: increment a raw6 drops counter here */
464 goto out_free;
465}
466
467static int rawv6_push_pending_frames(struct sock *sk, struct flowi *fl,
Herbert Xu357b40a2005-04-19 22:30:14 -0700468 struct raw6_sock *rp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700469{
470 struct sk_buff *skb;
471 int err = 0;
Herbert Xu357b40a2005-04-19 22:30:14 -0700472 int offset;
473 int len;
Herbert Xu679a8732005-05-03 14:24:36 -0700474 int total_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700475 u32 tmp_csum;
Herbert Xu357b40a2005-04-19 22:30:14 -0700476 u16 csum;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700477
478 if (!rp->checksum)
479 goto send;
480
481 if ((skb = skb_peek(&sk->sk_write_queue)) == NULL)
482 goto out;
483
Herbert Xu357b40a2005-04-19 22:30:14 -0700484 offset = rp->offset;
Herbert Xu679a8732005-05-03 14:24:36 -0700485 total_len = inet_sk(sk)->cork.length - (skb->nh.raw - skb->data);
486 if (offset >= total_len - 1) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700487 err = -EINVAL;
Herbert Xu357b40a2005-04-19 22:30:14 -0700488 ip6_flush_pending_frames(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700489 goto out;
490 }
491
492 /* should be check HW csum miyazawa */
493 if (skb_queue_len(&sk->sk_write_queue) == 1) {
494 /*
495 * Only one fragment on the socket.
496 */
497 tmp_csum = skb->csum;
498 } else {
Herbert Xu357b40a2005-04-19 22:30:14 -0700499 struct sk_buff *csum_skb = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700500 tmp_csum = 0;
501
502 skb_queue_walk(&sk->sk_write_queue, skb) {
503 tmp_csum = csum_add(tmp_csum, skb->csum);
Herbert Xu357b40a2005-04-19 22:30:14 -0700504
505 if (csum_skb)
506 continue;
507
508 len = skb->len - (skb->h.raw - skb->data);
509 if (offset >= len) {
510 offset -= len;
511 continue;
512 }
513
514 csum_skb = skb;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700515 }
Herbert Xu357b40a2005-04-19 22:30:14 -0700516
517 skb = csum_skb;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700518 }
519
Herbert Xu357b40a2005-04-19 22:30:14 -0700520 offset += skb->h.raw - skb->data;
521 if (skb_copy_bits(skb, offset, &csum, 2))
522 BUG();
523
Linus Torvalds1da177e2005-04-16 15:20:36 -0700524 /* in case cksum was not initialized */
Herbert Xu357b40a2005-04-19 22:30:14 -0700525 if (unlikely(csum))
526 tmp_csum = csum_sub(tmp_csum, csum);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700527
Herbert Xu357b40a2005-04-19 22:30:14 -0700528 tmp_csum = csum_ipv6_magic(&fl->fl6_src,
529 &fl->fl6_dst,
Herbert Xu679a8732005-05-03 14:24:36 -0700530 total_len, fl->proto, tmp_csum);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700531
Herbert Xu357b40a2005-04-19 22:30:14 -0700532 if (tmp_csum == 0)
533 tmp_csum = -1;
534
535 csum = tmp_csum;
536 if (skb_store_bits(skb, offset, &csum, 2))
537 BUG();
538
Linus Torvalds1da177e2005-04-16 15:20:36 -0700539send:
540 err = ip6_push_pending_frames(sk);
541out:
542 return err;
543}
544
545static int rawv6_send_hdrinc(struct sock *sk, void *from, int length,
546 struct flowi *fl, struct rt6_info *rt,
547 unsigned int flags)
548{
Herbert Xu3320da82005-04-19 22:32:22 -0700549 struct ipv6_pinfo *np = inet6_sk(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700550 struct ipv6hdr *iph;
551 struct sk_buff *skb;
552 unsigned int hh_len;
553 int err;
554
555 if (length > rt->u.dst.dev->mtu) {
556 ipv6_local_error(sk, EMSGSIZE, fl, rt->u.dst.dev->mtu);
557 return -EMSGSIZE;
558 }
559 if (flags&MSG_PROBE)
560 goto out;
561
562 hh_len = LL_RESERVED_SPACE(rt->u.dst.dev);
563
564 skb = sock_alloc_send_skb(sk, length+hh_len+15,
565 flags&MSG_DONTWAIT, &err);
566 if (skb == NULL)
567 goto error;
568 skb_reserve(skb, hh_len);
569
570 skb->priority = sk->sk_priority;
571 skb->dst = dst_clone(&rt->u.dst);
572
573 skb->nh.ipv6h = iph = (struct ipv6hdr *)skb_put(skb, length);
574
575 skb->ip_summed = CHECKSUM_NONE;
576
577 skb->h.raw = skb->nh.raw;
578 err = memcpy_fromiovecend((void *)iph, from, 0, length);
579 if (err)
580 goto error_fault;
581
582 IP6_INC_STATS(IPSTATS_MIB_OUTREQUESTS);
583 err = NF_HOOK(PF_INET6, NF_IP6_LOCAL_OUT, skb, NULL, rt->u.dst.dev,
584 dst_output);
585 if (err > 0)
Herbert Xu3320da82005-04-19 22:32:22 -0700586 err = np->recverr ? net_xmit_errno(err) : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700587 if (err)
588 goto error;
589out:
590 return 0;
591
592error_fault:
593 err = -EFAULT;
594 kfree_skb(skb);
595error:
596 IP6_INC_STATS(IPSTATS_MIB_OUTDISCARDS);
597 return err;
598}
599
600static void rawv6_probe_proto_opt(struct flowi *fl, struct msghdr *msg)
601{
602 struct iovec *iov;
603 u8 __user *type = NULL;
604 u8 __user *code = NULL;
605 int probed = 0;
606 int i;
607
608 if (!msg->msg_iov)
609 return;
610
611 for (i = 0; i < msg->msg_iovlen; i++) {
612 iov = &msg->msg_iov[i];
613 if (!iov)
614 continue;
615
616 switch (fl->proto) {
617 case IPPROTO_ICMPV6:
618 /* check if one-byte field is readable or not. */
619 if (iov->iov_base && iov->iov_len < 1)
620 break;
621
622 if (!type) {
623 type = iov->iov_base;
624 /* check if code field is readable or not. */
625 if (iov->iov_len > 1)
626 code = type + 1;
627 } else if (!code)
628 code = iov->iov_base;
629
630 if (type && code) {
631 get_user(fl->fl_icmp_type, type);
Mark J Cox6d1cfe32005-09-19 17:55:30 -0700632 get_user(fl->fl_icmp_code, code);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700633 probed = 1;
634 }
635 break;
636 default:
637 probed = 1;
638 break;
639 }
640 if (probed)
641 break;
642 }
643}
644
645static int rawv6_sendmsg(struct kiocb *iocb, struct sock *sk,
646 struct msghdr *msg, size_t len)
647{
648 struct ipv6_txoptions opt_space;
649 struct sockaddr_in6 * sin6 = (struct sockaddr_in6 *) msg->msg_name;
650 struct in6_addr *daddr, *final_p = NULL, final;
651 struct inet_sock *inet = inet_sk(sk);
652 struct ipv6_pinfo *np = inet6_sk(sk);
653 struct raw6_sock *rp = raw6_sk(sk);
654 struct ipv6_txoptions *opt = NULL;
655 struct ip6_flowlabel *flowlabel = NULL;
656 struct dst_entry *dst = NULL;
657 struct flowi fl;
658 int addr_len = msg->msg_namelen;
659 int hlimit = -1;
YOSHIFUJI Hideaki41a1f8e2005-09-08 10:19:03 +0900660 int tclass = -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700661 u16 proto;
662 int err;
663
664 /* Rough check on arithmetic overflow,
665 better check is made in ip6_build_xmit
666 */
667 if (len < 0)
668 return -EMSGSIZE;
669
670 /* Mirror BSD error message compatibility */
671 if (msg->msg_flags & MSG_OOB)
672 return -EOPNOTSUPP;
673
674 /*
675 * Get and verify the address.
676 */
677 memset(&fl, 0, sizeof(fl));
678
679 if (sin6) {
680 if (addr_len < SIN6_LEN_RFC2133)
681 return -EINVAL;
682
683 if (sin6->sin6_family && sin6->sin6_family != AF_INET6)
684 return(-EAFNOSUPPORT);
685
686 /* port is the proto value [0..255] carried in nexthdr */
687 proto = ntohs(sin6->sin6_port);
688
689 if (!proto)
690 proto = inet->num;
691 else if (proto != inet->num)
692 return(-EINVAL);
693
694 if (proto > 255)
695 return(-EINVAL);
696
697 daddr = &sin6->sin6_addr;
698 if (np->sndflow) {
699 fl.fl6_flowlabel = sin6->sin6_flowinfo&IPV6_FLOWINFO_MASK;
700 if (fl.fl6_flowlabel&IPV6_FLOWLABEL_MASK) {
701 flowlabel = fl6_sock_lookup(sk, fl.fl6_flowlabel);
702 if (flowlabel == NULL)
703 return -EINVAL;
704 daddr = &flowlabel->dst;
705 }
706 }
707
708 /*
709 * Otherwise it will be difficult to maintain
710 * sk->sk_dst_cache.
711 */
712 if (sk->sk_state == TCP_ESTABLISHED &&
713 ipv6_addr_equal(daddr, &np->daddr))
714 daddr = &np->daddr;
715
716 if (addr_len >= sizeof(struct sockaddr_in6) &&
717 sin6->sin6_scope_id &&
718 ipv6_addr_type(daddr)&IPV6_ADDR_LINKLOCAL)
719 fl.oif = sin6->sin6_scope_id;
720 } else {
721 if (sk->sk_state != TCP_ESTABLISHED)
722 return -EDESTADDRREQ;
723
724 proto = inet->num;
725 daddr = &np->daddr;
726 fl.fl6_flowlabel = np->flow_label;
727 }
728
729 if (ipv6_addr_any(daddr)) {
730 /*
731 * unspecified destination address
732 * treated as error... is this correct ?
733 */
734 fl6_sock_release(flowlabel);
735 return(-EINVAL);
736 }
737
738 if (fl.oif == 0)
739 fl.oif = sk->sk_bound_dev_if;
740
741 if (msg->msg_controllen) {
742 opt = &opt_space;
743 memset(opt, 0, sizeof(struct ipv6_txoptions));
744 opt->tot_len = sizeof(struct ipv6_txoptions);
745
YOSHIFUJI Hideaki41a1f8e2005-09-08 10:19:03 +0900746 err = datagram_send_ctl(msg, &fl, opt, &hlimit, &tclass);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700747 if (err < 0) {
748 fl6_sock_release(flowlabel);
749 return err;
750 }
751 if ((fl.fl6_flowlabel&IPV6_FLOWLABEL_MASK) && !flowlabel) {
752 flowlabel = fl6_sock_lookup(sk, fl.fl6_flowlabel);
753 if (flowlabel == NULL)
754 return -EINVAL;
755 }
756 if (!(opt->opt_nflen|opt->opt_flen))
757 opt = NULL;
758 }
759 if (opt == NULL)
760 opt = np->opt;
YOSHIFUJI Hideaki333fad52005-09-08 09:59:17 +0900761 opt = fl6_merge_options(&opt_space, flowlabel, opt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700762
763 fl.proto = proto;
764 rawv6_probe_proto_opt(&fl, msg);
765
766 ipv6_addr_copy(&fl.fl6_dst, daddr);
767 if (ipv6_addr_any(&fl.fl6_src) && !ipv6_addr_any(&np->saddr))
768 ipv6_addr_copy(&fl.fl6_src, &np->saddr);
769
770 /* merge ip6_build_xmit from ip6_output */
771 if (opt && opt->srcrt) {
772 struct rt0_hdr *rt0 = (struct rt0_hdr *) opt->srcrt;
773 ipv6_addr_copy(&final, &fl.fl6_dst);
774 ipv6_addr_copy(&fl.fl6_dst, rt0->addr);
775 final_p = &final;
776 }
777
778 if (!fl.oif && ipv6_addr_is_multicast(&fl.fl6_dst))
779 fl.oif = np->mcast_oif;
780
781 err = ip6_dst_lookup(sk, &dst, &fl);
782 if (err)
783 goto out;
784 if (final_p)
785 ipv6_addr_copy(&fl.fl6_dst, final_p);
786
Patrick McHardye1044112005-09-08 15:11:55 -0700787 if ((err = xfrm_lookup(&dst, &fl, sk, 0)) < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700788 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700789
790 if (hlimit < 0) {
791 if (ipv6_addr_is_multicast(&fl.fl6_dst))
792 hlimit = np->mcast_hops;
793 else
794 hlimit = np->hop_limit;
795 if (hlimit < 0)
796 hlimit = dst_metric(dst, RTAX_HOPLIMIT);
797 if (hlimit < 0)
798 hlimit = ipv6_get_hoplimit(dst->dev);
799 }
800
YOSHIFUJI Hideaki41a1f8e2005-09-08 10:19:03 +0900801 if (tclass < 0) {
802 tclass = np->cork.tclass;
803 if (tclass < 0)
804 tclass = 0;
805 }
806
Linus Torvalds1da177e2005-04-16 15:20:36 -0700807 if (msg->msg_flags&MSG_CONFIRM)
808 goto do_confirm;
809
810back_from_confirm:
811 if (inet->hdrincl) {
812 err = rawv6_send_hdrinc(sk, msg->msg_iov, len, &fl, (struct rt6_info*)dst, msg->msg_flags);
813 } else {
814 lock_sock(sk);
YOSHIFUJI Hideaki41a1f8e2005-09-08 10:19:03 +0900815 err = ip6_append_data(sk, ip_generic_getfrag, msg->msg_iov,
816 len, 0, hlimit, tclass, opt, &fl, (struct rt6_info*)dst,
817 msg->msg_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700818
819 if (err)
820 ip6_flush_pending_frames(sk);
821 else if (!(msg->msg_flags & MSG_MORE))
Herbert Xu357b40a2005-04-19 22:30:14 -0700822 err = rawv6_push_pending_frames(sk, &fl, rp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700823 }
824done:
825 ip6_dst_store(sk, dst,
826 ipv6_addr_equal(&fl.fl6_dst, &np->daddr) ?
827 &np->daddr : NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700828
829 release_sock(sk);
830out:
831 fl6_sock_release(flowlabel);
832 return err<0?err:len;
833do_confirm:
834 dst_confirm(dst);
835 if (!(msg->msg_flags & MSG_PROBE) || len)
836 goto back_from_confirm;
837 err = 0;
838 goto done;
839}
840
841static int rawv6_seticmpfilter(struct sock *sk, int level, int optname,
842 char __user *optval, int optlen)
843{
844 switch (optname) {
845 case ICMPV6_FILTER:
846 if (optlen > sizeof(struct icmp6_filter))
847 optlen = sizeof(struct icmp6_filter);
848 if (copy_from_user(&raw6_sk(sk)->filter, optval, optlen))
849 return -EFAULT;
850 return 0;
851 default:
852 return -ENOPROTOOPT;
853 };
854
855 return 0;
856}
857
858static int rawv6_geticmpfilter(struct sock *sk, int level, int optname,
859 char __user *optval, int __user *optlen)
860{
861 int len;
862
863 switch (optname) {
864 case ICMPV6_FILTER:
865 if (get_user(len, optlen))
866 return -EFAULT;
867 if (len < 0)
868 return -EINVAL;
869 if (len > sizeof(struct icmp6_filter))
870 len = sizeof(struct icmp6_filter);
871 if (put_user(len, optlen))
872 return -EFAULT;
873 if (copy_to_user(optval, &raw6_sk(sk)->filter, len))
874 return -EFAULT;
875 return 0;
876 default:
877 return -ENOPROTOOPT;
878 };
879
880 return 0;
881}
882
883
884static int rawv6_setsockopt(struct sock *sk, int level, int optname,
885 char __user *optval, int optlen)
886{
887 struct raw6_sock *rp = raw6_sk(sk);
888 int val;
889
890 switch(level) {
891 case SOL_RAW:
892 break;
893
894 case SOL_ICMPV6:
895 if (inet_sk(sk)->num != IPPROTO_ICMPV6)
896 return -EOPNOTSUPP;
897 return rawv6_seticmpfilter(sk, level, optname, optval,
898 optlen);
899 case SOL_IPV6:
900 if (optname == IPV6_CHECKSUM)
901 break;
902 default:
903 return ipv6_setsockopt(sk, level, optname, optval,
904 optlen);
905 };
906
907 if (get_user(val, (int __user *)optval))
908 return -EFAULT;
909
910 switch (optname) {
911 case IPV6_CHECKSUM:
912 /* You may get strange result with a positive odd offset;
913 RFC2292bis agrees with me. */
914 if (val > 0 && (val&1))
915 return(-EINVAL);
916 if (val < 0) {
917 rp->checksum = 0;
918 } else {
919 rp->checksum = 1;
920 rp->offset = val;
921 }
922
923 return 0;
924 break;
925
926 default:
927 return(-ENOPROTOOPT);
928 }
929}
930
931static int rawv6_getsockopt(struct sock *sk, int level, int optname,
932 char __user *optval, int __user *optlen)
933{
934 struct raw6_sock *rp = raw6_sk(sk);
935 int val, len;
936
937 switch(level) {
938 case SOL_RAW:
939 break;
940
941 case SOL_ICMPV6:
942 if (inet_sk(sk)->num != IPPROTO_ICMPV6)
943 return -EOPNOTSUPP;
944 return rawv6_geticmpfilter(sk, level, optname, optval,
945 optlen);
946 case SOL_IPV6:
947 if (optname == IPV6_CHECKSUM)
948 break;
949 default:
950 return ipv6_getsockopt(sk, level, optname, optval,
951 optlen);
952 };
953
954 if (get_user(len,optlen))
955 return -EFAULT;
956
957 switch (optname) {
958 case IPV6_CHECKSUM:
959 if (rp->checksum == 0)
960 val = -1;
961 else
962 val = rp->offset;
963 break;
964
965 default:
966 return -ENOPROTOOPT;
967 }
968
969 len = min_t(unsigned int, sizeof(int), len);
970
971 if (put_user(len, optlen))
972 return -EFAULT;
973 if (copy_to_user(optval,&val,len))
974 return -EFAULT;
975 return 0;
976}
977
978static int rawv6_ioctl(struct sock *sk, int cmd, unsigned long arg)
979{
980 switch(cmd) {
981 case SIOCOUTQ:
982 {
983 int amount = atomic_read(&sk->sk_wmem_alloc);
984 return put_user(amount, (int __user *)arg);
985 }
986 case SIOCINQ:
987 {
988 struct sk_buff *skb;
989 int amount = 0;
990
Herbert Xue0f9f852005-06-18 22:56:18 -0700991 spin_lock_bh(&sk->sk_receive_queue.lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700992 skb = skb_peek(&sk->sk_receive_queue);
993 if (skb != NULL)
994 amount = skb->tail - skb->h.raw;
Herbert Xue0f9f852005-06-18 22:56:18 -0700995 spin_unlock_bh(&sk->sk_receive_queue.lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700996 return put_user(amount, (int __user *)arg);
997 }
998
999 default:
1000 return -ENOIOCTLCMD;
1001 }
1002}
1003
1004static void rawv6_close(struct sock *sk, long timeout)
1005{
1006 if (inet_sk(sk)->num == IPPROTO_RAW)
1007 ip6_ra_control(sk, -1, NULL);
1008
1009 sk_common_release(sk);
1010}
1011
1012static int rawv6_init_sk(struct sock *sk)
1013{
1014 if (inet_sk(sk)->num == IPPROTO_ICMPV6) {
1015 struct raw6_sock *rp = raw6_sk(sk);
1016 rp->checksum = 1;
1017 rp->offset = 2;
1018 }
1019 return(0);
1020}
1021
1022struct proto rawv6_prot = {
1023 .name = "RAWv6",
1024 .owner = THIS_MODULE,
1025 .close = rawv6_close,
1026 .connect = ip6_datagram_connect,
1027 .disconnect = udp_disconnect,
1028 .ioctl = rawv6_ioctl,
1029 .init = rawv6_init_sk,
1030 .destroy = inet6_destroy_sock,
1031 .setsockopt = rawv6_setsockopt,
1032 .getsockopt = rawv6_getsockopt,
1033 .sendmsg = rawv6_sendmsg,
1034 .recvmsg = rawv6_recvmsg,
1035 .bind = rawv6_bind,
1036 .backlog_rcv = rawv6_rcv_skb,
1037 .hash = raw_v6_hash,
1038 .unhash = raw_v6_unhash,
1039 .obj_size = sizeof(struct raw6_sock),
1040};
1041
1042#ifdef CONFIG_PROC_FS
1043struct raw6_iter_state {
1044 int bucket;
1045};
1046
1047#define raw6_seq_private(seq) ((struct raw6_iter_state *)(seq)->private)
1048
1049static struct sock *raw6_get_first(struct seq_file *seq)
1050{
1051 struct sock *sk;
1052 struct hlist_node *node;
1053 struct raw6_iter_state* state = raw6_seq_private(seq);
1054
1055 for (state->bucket = 0; state->bucket < RAWV6_HTABLE_SIZE; ++state->bucket)
1056 sk_for_each(sk, node, &raw_v6_htable[state->bucket])
1057 if (sk->sk_family == PF_INET6)
1058 goto out;
1059 sk = NULL;
1060out:
1061 return sk;
1062}
1063
1064static struct sock *raw6_get_next(struct seq_file *seq, struct sock *sk)
1065{
1066 struct raw6_iter_state* state = raw6_seq_private(seq);
1067
1068 do {
1069 sk = sk_next(sk);
1070try_again:
1071 ;
1072 } while (sk && sk->sk_family != PF_INET6);
1073
1074 if (!sk && ++state->bucket < RAWV6_HTABLE_SIZE) {
1075 sk = sk_head(&raw_v6_htable[state->bucket]);
1076 goto try_again;
1077 }
1078 return sk;
1079}
1080
1081static struct sock *raw6_get_idx(struct seq_file *seq, loff_t pos)
1082{
1083 struct sock *sk = raw6_get_first(seq);
1084 if (sk)
1085 while (pos && (sk = raw6_get_next(seq, sk)) != NULL)
1086 --pos;
1087 return pos ? NULL : sk;
1088}
1089
1090static void *raw6_seq_start(struct seq_file *seq, loff_t *pos)
1091{
1092 read_lock(&raw_v6_lock);
1093 return *pos ? raw6_get_idx(seq, *pos - 1) : SEQ_START_TOKEN;
1094}
1095
1096static void *raw6_seq_next(struct seq_file *seq, void *v, loff_t *pos)
1097{
1098 struct sock *sk;
1099
1100 if (v == SEQ_START_TOKEN)
1101 sk = raw6_get_first(seq);
1102 else
1103 sk = raw6_get_next(seq, v);
1104 ++*pos;
1105 return sk;
1106}
1107
1108static void raw6_seq_stop(struct seq_file *seq, void *v)
1109{
1110 read_unlock(&raw_v6_lock);
1111}
1112
1113static void raw6_sock_seq_show(struct seq_file *seq, struct sock *sp, int i)
1114{
1115 struct ipv6_pinfo *np = inet6_sk(sp);
1116 struct in6_addr *dest, *src;
1117 __u16 destp, srcp;
1118
1119 dest = &np->daddr;
1120 src = &np->rcv_saddr;
1121 destp = 0;
1122 srcp = inet_sk(sp)->num;
1123 seq_printf(seq,
1124 "%4d: %08X%08X%08X%08X:%04X %08X%08X%08X%08X:%04X "
1125 "%02X %08X:%08X %02X:%08lX %08X %5d %8d %lu %d %p\n",
1126 i,
1127 src->s6_addr32[0], src->s6_addr32[1],
1128 src->s6_addr32[2], src->s6_addr32[3], srcp,
1129 dest->s6_addr32[0], dest->s6_addr32[1],
1130 dest->s6_addr32[2], dest->s6_addr32[3], destp,
1131 sp->sk_state,
1132 atomic_read(&sp->sk_wmem_alloc),
1133 atomic_read(&sp->sk_rmem_alloc),
1134 0, 0L, 0,
1135 sock_i_uid(sp), 0,
1136 sock_i_ino(sp),
1137 atomic_read(&sp->sk_refcnt), sp);
1138}
1139
1140static int raw6_seq_show(struct seq_file *seq, void *v)
1141{
1142 if (v == SEQ_START_TOKEN)
1143 seq_printf(seq,
1144 " sl "
1145 "local_address "
1146 "remote_address "
1147 "st tx_queue rx_queue tr tm->when retrnsmt"
1148 " uid timeout inode\n");
1149 else
1150 raw6_sock_seq_show(seq, v, raw6_seq_private(seq)->bucket);
1151 return 0;
1152}
1153
1154static struct seq_operations raw6_seq_ops = {
1155 .start = raw6_seq_start,
1156 .next = raw6_seq_next,
1157 .stop = raw6_seq_stop,
1158 .show = raw6_seq_show,
1159};
1160
1161static int raw6_seq_open(struct inode *inode, struct file *file)
1162{
1163 struct seq_file *seq;
1164 int rc = -ENOMEM;
1165 struct raw6_iter_state *s = kmalloc(sizeof(*s), GFP_KERNEL);
1166 if (!s)
1167 goto out;
1168 rc = seq_open(file, &raw6_seq_ops);
1169 if (rc)
1170 goto out_kfree;
1171 seq = file->private_data;
1172 seq->private = s;
1173 memset(s, 0, sizeof(*s));
1174out:
1175 return rc;
1176out_kfree:
1177 kfree(s);
1178 goto out;
1179}
1180
1181static struct file_operations raw6_seq_fops = {
1182 .owner = THIS_MODULE,
1183 .open = raw6_seq_open,
1184 .read = seq_read,
1185 .llseek = seq_lseek,
1186 .release = seq_release_private,
1187};
1188
1189int __init raw6_proc_init(void)
1190{
1191 if (!proc_net_fops_create("raw6", S_IRUGO, &raw6_seq_fops))
1192 return -ENOMEM;
1193 return 0;
1194}
1195
1196void raw6_proc_exit(void)
1197{
1198 proc_net_remove("raw6");
1199}
1200#endif /* CONFIG_PROC_FS */