075a0fb400e72c686707feea2ecd00074c25bbc0
[deliverable/linux.git] / net / ipv6 / raw.c
1 /*
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 * Fixes:
11 * Hideaki YOSHIFUJI : sin6_scope_id support
12 * YOSHIFUJI,H.@USAGI : raw checksum (RFC2292(bis) compliance)
13 * 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>
24 #include <linux/slab.h>
25 #include <linux/sockios.h>
26 #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>
33 #include <linux/skbuff.h>
34 #include <linux/compat.h>
35 #include <asm/uaccess.h>
36 #include <asm/ioctls.h>
37
38 #include <net/net_namespace.h>
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>
52 #include <net/tcp_states.h>
53 #if IS_ENABLED(CONFIG_IPV6_MIP6)
54 #include <net/mip6.h>
55 #endif
56 #include <linux/mroute6.h>
57
58 #include <net/raw.h>
59 #include <net/rawv6.h>
60 #include <net/xfrm.h>
61
62 #include <linux/proc_fs.h>
63 #include <linux/seq_file.h>
64 #include <linux/export.h>
65
66 #define ICMPV6_HDRLEN 4 /* ICMPv6 header, RFC 4443 Section 2.1 */
67
68 static struct raw_hashinfo raw_v6_hashinfo = {
69 .lock = __RW_LOCK_UNLOCKED(raw_v6_hashinfo.lock),
70 };
71
72 static struct sock *__raw_v6_lookup(struct net *net, struct sock *sk,
73 unsigned short num, const struct in6_addr *loc_addr,
74 const struct in6_addr *rmt_addr, int dif)
75 {
76 bool is_multicast = ipv6_addr_is_multicast(loc_addr);
77
78 sk_for_each_from(sk)
79 if (inet_sk(sk)->inet_num == num) {
80
81 if (!net_eq(sock_net(sk), net))
82 continue;
83
84 if (!ipv6_addr_any(&sk->sk_v6_daddr) &&
85 !ipv6_addr_equal(&sk->sk_v6_daddr, rmt_addr))
86 continue;
87
88 if (sk->sk_bound_dev_if && sk->sk_bound_dev_if != dif)
89 continue;
90
91 if (!ipv6_addr_any(&sk->sk_v6_rcv_saddr)) {
92 if (ipv6_addr_equal(&sk->sk_v6_rcv_saddr, loc_addr))
93 goto found;
94 if (is_multicast &&
95 inet6_mc_check(sk, loc_addr, rmt_addr))
96 goto found;
97 continue;
98 }
99 goto found;
100 }
101 sk = NULL;
102 found:
103 return sk;
104 }
105
106 /*
107 * 0 - deliver
108 * 1 - block
109 */
110 static int icmpv6_filter(const struct sock *sk, const struct sk_buff *skb)
111 {
112 struct icmp6hdr _hdr;
113 const struct icmp6hdr *hdr;
114
115 /* We require only the four bytes of the ICMPv6 header, not any
116 * additional bytes of message body in "struct icmp6hdr".
117 */
118 hdr = skb_header_pointer(skb, skb_transport_offset(skb),
119 ICMPV6_HDRLEN, &_hdr);
120 if (hdr) {
121 const __u32 *data = &raw6_sk(sk)->filter.data[0];
122 unsigned int type = hdr->icmp6_type;
123
124 return (data[type >> 5] & (1U << (type & 31))) != 0;
125 }
126 return 1;
127 }
128
129 #if IS_ENABLED(CONFIG_IPV6_MIP6)
130 typedef int mh_filter_t(struct sock *sock, struct sk_buff *skb);
131
132 static mh_filter_t __rcu *mh_filter __read_mostly;
133
134 int rawv6_mh_filter_register(mh_filter_t filter)
135 {
136 rcu_assign_pointer(mh_filter, filter);
137 return 0;
138 }
139 EXPORT_SYMBOL(rawv6_mh_filter_register);
140
141 int rawv6_mh_filter_unregister(mh_filter_t filter)
142 {
143 RCU_INIT_POINTER(mh_filter, NULL);
144 synchronize_rcu();
145 return 0;
146 }
147 EXPORT_SYMBOL(rawv6_mh_filter_unregister);
148
149 #endif
150
151 /*
152 * demultiplex raw sockets.
153 * (should consider queueing the skb in the sock receive_queue
154 * without calling rawv6.c)
155 *
156 * Caller owns SKB so we must make clones.
157 */
158 static bool ipv6_raw_deliver(struct sk_buff *skb, int nexthdr)
159 {
160 const struct in6_addr *saddr;
161 const struct in6_addr *daddr;
162 struct sock *sk;
163 bool delivered = false;
164 __u8 hash;
165 struct net *net;
166
167 saddr = &ipv6_hdr(skb)->saddr;
168 daddr = saddr + 1;
169
170 hash = nexthdr & (RAW_HTABLE_SIZE - 1);
171
172 read_lock(&raw_v6_hashinfo.lock);
173 sk = sk_head(&raw_v6_hashinfo.ht[hash]);
174
175 if (sk == NULL)
176 goto out;
177
178 net = dev_net(skb->dev);
179 sk = __raw_v6_lookup(net, sk, nexthdr, daddr, saddr, inet6_iif(skb));
180
181 while (sk) {
182 int filtered;
183
184 delivered = true;
185 switch (nexthdr) {
186 case IPPROTO_ICMPV6:
187 filtered = icmpv6_filter(sk, skb);
188 break;
189
190 #if IS_ENABLED(CONFIG_IPV6_MIP6)
191 case IPPROTO_MH:
192 {
193 /* XXX: To validate MH only once for each packet,
194 * this is placed here. It should be after checking
195 * xfrm policy, however it doesn't. The checking xfrm
196 * policy is placed in rawv6_rcv() because it is
197 * required for each socket.
198 */
199 mh_filter_t *filter;
200
201 filter = rcu_dereference(mh_filter);
202 filtered = filter ? (*filter)(sk, skb) : 0;
203 break;
204 }
205 #endif
206 default:
207 filtered = 0;
208 break;
209 }
210
211 if (filtered < 0)
212 break;
213 if (filtered == 0) {
214 struct sk_buff *clone = skb_clone(skb, GFP_ATOMIC);
215
216 /* Not releasing hash table! */
217 if (clone) {
218 nf_reset(clone);
219 rawv6_rcv(sk, clone);
220 }
221 }
222 sk = __raw_v6_lookup(net, sk_next(sk), nexthdr, daddr, saddr,
223 inet6_iif(skb));
224 }
225 out:
226 read_unlock(&raw_v6_hashinfo.lock);
227 return delivered;
228 }
229
230 bool raw6_local_deliver(struct sk_buff *skb, int nexthdr)
231 {
232 struct sock *raw_sk;
233
234 raw_sk = sk_head(&raw_v6_hashinfo.ht[nexthdr & (RAW_HTABLE_SIZE - 1)]);
235 if (raw_sk && !ipv6_raw_deliver(skb, nexthdr))
236 raw_sk = NULL;
237
238 return raw_sk != NULL;
239 }
240
241 /* This cleans up af_inet6 a bit. -DaveM */
242 static int rawv6_bind(struct sock *sk, struct sockaddr *uaddr, int addr_len)
243 {
244 struct inet_sock *inet = inet_sk(sk);
245 struct ipv6_pinfo *np = inet6_sk(sk);
246 struct sockaddr_in6 *addr = (struct sockaddr_in6 *) uaddr;
247 __be32 v4addr = 0;
248 int addr_type;
249 int err;
250
251 if (addr_len < SIN6_LEN_RFC2133)
252 return -EINVAL;
253
254 if (addr->sin6_family != AF_INET6)
255 return -EINVAL;
256
257 addr_type = ipv6_addr_type(&addr->sin6_addr);
258
259 /* Raw sockets are IPv6 only */
260 if (addr_type == IPV6_ADDR_MAPPED)
261 return -EADDRNOTAVAIL;
262
263 lock_sock(sk);
264
265 err = -EINVAL;
266 if (sk->sk_state != TCP_CLOSE)
267 goto out;
268
269 rcu_read_lock();
270 /* Check if the address belongs to the host. */
271 if (addr_type != IPV6_ADDR_ANY) {
272 struct net_device *dev = NULL;
273
274 if (__ipv6_addr_needs_scope_id(addr_type)) {
275 if (addr_len >= sizeof(struct sockaddr_in6) &&
276 addr->sin6_scope_id) {
277 /* Override any existing binding, if another
278 * one is supplied by user.
279 */
280 sk->sk_bound_dev_if = addr->sin6_scope_id;
281 }
282
283 /* Binding to link-local address requires an interface */
284 if (!sk->sk_bound_dev_if)
285 goto out_unlock;
286
287 err = -ENODEV;
288 dev = dev_get_by_index_rcu(sock_net(sk),
289 sk->sk_bound_dev_if);
290 if (!dev)
291 goto out_unlock;
292 }
293
294 /* ipv4 addr of the socket is invalid. Only the
295 * unspecified and mapped address have a v4 equivalent.
296 */
297 v4addr = LOOPBACK4_IPV6;
298 if (!(addr_type & IPV6_ADDR_MULTICAST)) {
299 err = -EADDRNOTAVAIL;
300 if (!ipv6_chk_addr(sock_net(sk), &addr->sin6_addr,
301 dev, 0)) {
302 goto out_unlock;
303 }
304 }
305 }
306
307 inet->inet_rcv_saddr = inet->inet_saddr = v4addr;
308 sk->sk_v6_rcv_saddr = addr->sin6_addr;
309 if (!(addr_type & IPV6_ADDR_MULTICAST))
310 np->saddr = addr->sin6_addr;
311 err = 0;
312 out_unlock:
313 rcu_read_unlock();
314 out:
315 release_sock(sk);
316 return err;
317 }
318
319 static void rawv6_err(struct sock *sk, struct sk_buff *skb,
320 struct inet6_skb_parm *opt,
321 u8 type, u8 code, int offset, __be32 info)
322 {
323 struct inet_sock *inet = inet_sk(sk);
324 struct ipv6_pinfo *np = inet6_sk(sk);
325 int err;
326 int harderr;
327
328 /* Report error on raw socket, if:
329 1. User requested recverr.
330 2. Socket is connected (otherwise the error indication
331 is useless without recverr and error is hard.
332 */
333 if (!np->recverr && sk->sk_state != TCP_ESTABLISHED)
334 return;
335
336 harderr = icmpv6_err_convert(type, code, &err);
337 if (type == ICMPV6_PKT_TOOBIG) {
338 ip6_sk_update_pmtu(skb, sk, info);
339 harderr = (np->pmtudisc == IPV6_PMTUDISC_DO);
340 }
341 if (type == NDISC_REDIRECT) {
342 ip6_sk_redirect(skb, sk);
343 return;
344 }
345 if (np->recverr) {
346 u8 *payload = skb->data;
347 if (!inet->hdrincl)
348 payload += offset;
349 ipv6_icmp_error(sk, skb, err, 0, ntohl(info), payload);
350 }
351
352 if (np->recverr || harderr) {
353 sk->sk_err = err;
354 sk->sk_error_report(sk);
355 }
356 }
357
358 void raw6_icmp_error(struct sk_buff *skb, int nexthdr,
359 u8 type, u8 code, int inner_offset, __be32 info)
360 {
361 struct sock *sk;
362 int hash;
363 const struct in6_addr *saddr, *daddr;
364 struct net *net;
365
366 hash = nexthdr & (RAW_HTABLE_SIZE - 1);
367
368 read_lock(&raw_v6_hashinfo.lock);
369 sk = sk_head(&raw_v6_hashinfo.ht[hash]);
370 if (sk != NULL) {
371 /* Note: ipv6_hdr(skb) != skb->data */
372 const struct ipv6hdr *ip6h = (const struct ipv6hdr *)skb->data;
373 saddr = &ip6h->saddr;
374 daddr = &ip6h->daddr;
375 net = dev_net(skb->dev);
376
377 while ((sk = __raw_v6_lookup(net, sk, nexthdr, saddr, daddr,
378 inet6_iif(skb)))) {
379 rawv6_err(sk, skb, NULL, type, code,
380 inner_offset, info);
381 sk = sk_next(sk);
382 }
383 }
384 read_unlock(&raw_v6_hashinfo.lock);
385 }
386
387 static inline int rawv6_rcv_skb(struct sock *sk, struct sk_buff *skb)
388 {
389 if ((raw6_sk(sk)->checksum || rcu_access_pointer(sk->sk_filter)) &&
390 skb_checksum_complete(skb)) {
391 atomic_inc(&sk->sk_drops);
392 kfree_skb(skb);
393 return NET_RX_DROP;
394 }
395
396 /* Charge it to the socket. */
397 skb_dst_drop(skb);
398 if (sock_queue_rcv_skb(sk, skb) < 0) {
399 kfree_skb(skb);
400 return NET_RX_DROP;
401 }
402
403 return 0;
404 }
405
406 /*
407 * This is next to useless...
408 * if we demultiplex in network layer we don't need the extra call
409 * just to queue the skb...
410 * maybe we could have the network decide upon a hint if it
411 * should call raw_rcv for demultiplexing
412 */
413 int rawv6_rcv(struct sock *sk, struct sk_buff *skb)
414 {
415 struct inet_sock *inet = inet_sk(sk);
416 struct raw6_sock *rp = raw6_sk(sk);
417
418 if (!xfrm6_policy_check(sk, XFRM_POLICY_IN, skb)) {
419 atomic_inc(&sk->sk_drops);
420 kfree_skb(skb);
421 return NET_RX_DROP;
422 }
423
424 if (!rp->checksum)
425 skb->ip_summed = CHECKSUM_UNNECESSARY;
426
427 if (skb->ip_summed == CHECKSUM_COMPLETE) {
428 skb_postpull_rcsum(skb, skb_network_header(skb),
429 skb_network_header_len(skb));
430 if (!csum_ipv6_magic(&ipv6_hdr(skb)->saddr,
431 &ipv6_hdr(skb)->daddr,
432 skb->len, inet->inet_num, skb->csum))
433 skb->ip_summed = CHECKSUM_UNNECESSARY;
434 }
435 if (!skb_csum_unnecessary(skb))
436 skb->csum = ~csum_unfold(csum_ipv6_magic(&ipv6_hdr(skb)->saddr,
437 &ipv6_hdr(skb)->daddr,
438 skb->len,
439 inet->inet_num, 0));
440
441 if (inet->hdrincl) {
442 if (skb_checksum_complete(skb)) {
443 atomic_inc(&sk->sk_drops);
444 kfree_skb(skb);
445 return NET_RX_DROP;
446 }
447 }
448
449 rawv6_rcv_skb(sk, skb);
450 return 0;
451 }
452
453
454 /*
455 * This should be easy, if there is something there
456 * we return it, otherwise we block.
457 */
458
459 static int rawv6_recvmsg(struct kiocb *iocb, struct sock *sk,
460 struct msghdr *msg, size_t len,
461 int noblock, int flags, int *addr_len)
462 {
463 struct ipv6_pinfo *np = inet6_sk(sk);
464 DECLARE_SOCKADDR(struct sockaddr_in6 *, sin6, msg->msg_name);
465 struct sk_buff *skb;
466 size_t copied;
467 int err;
468
469 if (flags & MSG_OOB)
470 return -EOPNOTSUPP;
471
472 if (flags & MSG_ERRQUEUE)
473 return ipv6_recv_error(sk, msg, len, addr_len);
474
475 if (np->rxpmtu && np->rxopt.bits.rxpmtu)
476 return ipv6_recv_rxpmtu(sk, msg, len, addr_len);
477
478 skb = skb_recv_datagram(sk, flags, noblock, &err);
479 if (!skb)
480 goto out;
481
482 copied = skb->len;
483 if (copied > len) {
484 copied = len;
485 msg->msg_flags |= MSG_TRUNC;
486 }
487
488 if (skb_csum_unnecessary(skb)) {
489 err = skb_copy_datagram_iovec(skb, 0, msg->msg_iov, copied);
490 } else if (msg->msg_flags&MSG_TRUNC) {
491 if (__skb_checksum_complete(skb))
492 goto csum_copy_err;
493 err = skb_copy_datagram_iovec(skb, 0, msg->msg_iov, copied);
494 } else {
495 err = skb_copy_and_csum_datagram_iovec(skb, 0, msg->msg_iov);
496 if (err == -EINVAL)
497 goto csum_copy_err;
498 }
499 if (err)
500 goto out_free;
501
502 /* Copy the address. */
503 if (sin6) {
504 sin6->sin6_family = AF_INET6;
505 sin6->sin6_port = 0;
506 sin6->sin6_addr = ipv6_hdr(skb)->saddr;
507 sin6->sin6_flowinfo = 0;
508 sin6->sin6_scope_id = ipv6_iface_scope_id(&sin6->sin6_addr,
509 inet6_iif(skb));
510 *addr_len = sizeof(*sin6);
511 }
512
513 sock_recv_ts_and_drops(msg, sk, skb);
514
515 if (np->rxopt.all)
516 ip6_datagram_recv_ctl(sk, msg, skb);
517
518 err = copied;
519 if (flags & MSG_TRUNC)
520 err = skb->len;
521
522 out_free:
523 skb_free_datagram(sk, skb);
524 out:
525 return err;
526
527 csum_copy_err:
528 skb_kill_datagram(sk, skb, flags);
529
530 /* Error for blocking case is chosen to masquerade
531 as some normal condition.
532 */
533 err = (flags&MSG_DONTWAIT) ? -EAGAIN : -EHOSTUNREACH;
534 goto out;
535 }
536
537 static int rawv6_push_pending_frames(struct sock *sk, struct flowi6 *fl6,
538 struct raw6_sock *rp)
539 {
540 struct sk_buff *skb;
541 int err = 0;
542 int offset;
543 int len;
544 int total_len;
545 __wsum tmp_csum;
546 __sum16 csum;
547
548 if (!rp->checksum)
549 goto send;
550
551 skb = skb_peek(&sk->sk_write_queue);
552 if (!skb)
553 goto out;
554
555 offset = rp->offset;
556 total_len = inet_sk(sk)->cork.base.length;
557 if (offset >= total_len - 1) {
558 err = -EINVAL;
559 ip6_flush_pending_frames(sk);
560 goto out;
561 }
562
563 /* should be check HW csum miyazawa */
564 if (skb_queue_len(&sk->sk_write_queue) == 1) {
565 /*
566 * Only one fragment on the socket.
567 */
568 tmp_csum = skb->csum;
569 } else {
570 struct sk_buff *csum_skb = NULL;
571 tmp_csum = 0;
572
573 skb_queue_walk(&sk->sk_write_queue, skb) {
574 tmp_csum = csum_add(tmp_csum, skb->csum);
575
576 if (csum_skb)
577 continue;
578
579 len = skb->len - skb_transport_offset(skb);
580 if (offset >= len) {
581 offset -= len;
582 continue;
583 }
584
585 csum_skb = skb;
586 }
587
588 skb = csum_skb;
589 }
590
591 offset += skb_transport_offset(skb);
592 BUG_ON(skb_copy_bits(skb, offset, &csum, 2));
593
594 /* in case cksum was not initialized */
595 if (unlikely(csum))
596 tmp_csum = csum_sub(tmp_csum, csum_unfold(csum));
597
598 csum = csum_ipv6_magic(&fl6->saddr, &fl6->daddr,
599 total_len, fl6->flowi6_proto, tmp_csum);
600
601 if (csum == 0 && fl6->flowi6_proto == IPPROTO_UDP)
602 csum = CSUM_MANGLED_0;
603
604 BUG_ON(skb_store_bits(skb, offset, &csum, 2));
605
606 send:
607 err = ip6_push_pending_frames(sk);
608 out:
609 return err;
610 }
611
612 static int rawv6_send_hdrinc(struct sock *sk, void *from, int length,
613 struct flowi6 *fl6, struct dst_entry **dstp,
614 unsigned int flags)
615 {
616 struct ipv6_pinfo *np = inet6_sk(sk);
617 struct ipv6hdr *iph;
618 struct sk_buff *skb;
619 int err;
620 struct rt6_info *rt = (struct rt6_info *)*dstp;
621 int hlen = LL_RESERVED_SPACE(rt->dst.dev);
622 int tlen = rt->dst.dev->needed_tailroom;
623
624 if (length > rt->dst.dev->mtu) {
625 ipv6_local_error(sk, EMSGSIZE, fl6, rt->dst.dev->mtu);
626 return -EMSGSIZE;
627 }
628 if (flags&MSG_PROBE)
629 goto out;
630
631 skb = sock_alloc_send_skb(sk,
632 length + hlen + tlen + 15,
633 flags & MSG_DONTWAIT, &err);
634 if (skb == NULL)
635 goto error;
636 skb_reserve(skb, hlen);
637
638 skb->protocol = htons(ETH_P_IPV6);
639 skb->priority = sk->sk_priority;
640 skb->mark = sk->sk_mark;
641 skb_dst_set(skb, &rt->dst);
642 *dstp = NULL;
643
644 skb_put(skb, length);
645 skb_reset_network_header(skb);
646 iph = ipv6_hdr(skb);
647
648 skb->ip_summed = CHECKSUM_NONE;
649
650 skb->transport_header = skb->network_header;
651 err = memcpy_fromiovecend((void *)iph, from, 0, length);
652 if (err)
653 goto error_fault;
654
655 IP6_UPD_PO_STATS(sock_net(sk), rt->rt6i_idev, IPSTATS_MIB_OUT, skb->len);
656 err = NF_HOOK(NFPROTO_IPV6, NF_INET_LOCAL_OUT, skb, NULL,
657 rt->dst.dev, dst_output);
658 if (err > 0)
659 err = net_xmit_errno(err);
660 if (err)
661 goto error;
662 out:
663 return 0;
664
665 error_fault:
666 err = -EFAULT;
667 kfree_skb(skb);
668 error:
669 IP6_INC_STATS(sock_net(sk), rt->rt6i_idev, IPSTATS_MIB_OUTDISCARDS);
670 if (err == -ENOBUFS && !np->recverr)
671 err = 0;
672 return err;
673 }
674
675 static int rawv6_probe_proto_opt(struct flowi6 *fl6, struct msghdr *msg)
676 {
677 struct iovec *iov;
678 u8 __user *type = NULL;
679 u8 __user *code = NULL;
680 u8 len = 0;
681 int probed = 0;
682 int i;
683
684 if (!msg->msg_iov)
685 return 0;
686
687 for (i = 0; i < msg->msg_iovlen; i++) {
688 iov = &msg->msg_iov[i];
689 if (!iov)
690 continue;
691
692 switch (fl6->flowi6_proto) {
693 case IPPROTO_ICMPV6:
694 /* check if one-byte field is readable or not. */
695 if (iov->iov_base && iov->iov_len < 1)
696 break;
697
698 if (!type) {
699 type = iov->iov_base;
700 /* check if code field is readable or not. */
701 if (iov->iov_len > 1)
702 code = type + 1;
703 } else if (!code)
704 code = iov->iov_base;
705
706 if (type && code) {
707 if (get_user(fl6->fl6_icmp_type, type) ||
708 get_user(fl6->fl6_icmp_code, code))
709 return -EFAULT;
710 probed = 1;
711 }
712 break;
713 case IPPROTO_MH:
714 if (iov->iov_base && iov->iov_len < 1)
715 break;
716 /* check if type field is readable or not. */
717 if (iov->iov_len > 2 - len) {
718 u8 __user *p = iov->iov_base;
719 if (get_user(fl6->fl6_mh_type, &p[2 - len]))
720 return -EFAULT;
721 probed = 1;
722 } else
723 len += iov->iov_len;
724
725 break;
726 default:
727 probed = 1;
728 break;
729 }
730 if (probed)
731 break;
732 }
733 return 0;
734 }
735
736 static int rawv6_sendmsg(struct kiocb *iocb, struct sock *sk,
737 struct msghdr *msg, size_t len)
738 {
739 struct ipv6_txoptions opt_space;
740 DECLARE_SOCKADDR(struct sockaddr_in6 *, sin6, msg->msg_name);
741 struct in6_addr *daddr, *final_p, final;
742 struct inet_sock *inet = inet_sk(sk);
743 struct ipv6_pinfo *np = inet6_sk(sk);
744 struct raw6_sock *rp = raw6_sk(sk);
745 struct ipv6_txoptions *opt = NULL;
746 struct ip6_flowlabel *flowlabel = NULL;
747 struct dst_entry *dst = NULL;
748 struct flowi6 fl6;
749 int addr_len = msg->msg_namelen;
750 int hlimit = -1;
751 int tclass = -1;
752 int dontfrag = -1;
753 u16 proto;
754 int err;
755
756 /* Rough check on arithmetic overflow,
757 better check is made in ip6_append_data().
758 */
759 if (len > INT_MAX)
760 return -EMSGSIZE;
761
762 /* Mirror BSD error message compatibility */
763 if (msg->msg_flags & MSG_OOB)
764 return -EOPNOTSUPP;
765
766 /*
767 * Get and verify the address.
768 */
769 memset(&fl6, 0, sizeof(fl6));
770
771 fl6.flowi6_mark = sk->sk_mark;
772
773 if (sin6) {
774 if (addr_len < SIN6_LEN_RFC2133)
775 return -EINVAL;
776
777 if (sin6->sin6_family && sin6->sin6_family != AF_INET6)
778 return -EAFNOSUPPORT;
779
780 /* port is the proto value [0..255] carried in nexthdr */
781 proto = ntohs(sin6->sin6_port);
782
783 if (!proto)
784 proto = inet->inet_num;
785 else if (proto != inet->inet_num)
786 return -EINVAL;
787
788 if (proto > 255)
789 return -EINVAL;
790
791 daddr = &sin6->sin6_addr;
792 if (np->sndflow) {
793 fl6.flowlabel = sin6->sin6_flowinfo&IPV6_FLOWINFO_MASK;
794 if (fl6.flowlabel&IPV6_FLOWLABEL_MASK) {
795 flowlabel = fl6_sock_lookup(sk, fl6.flowlabel);
796 if (flowlabel == NULL)
797 return -EINVAL;
798 }
799 }
800
801 /*
802 * Otherwise it will be difficult to maintain
803 * sk->sk_dst_cache.
804 */
805 if (sk->sk_state == TCP_ESTABLISHED &&
806 ipv6_addr_equal(daddr, &sk->sk_v6_daddr))
807 daddr = &sk->sk_v6_daddr;
808
809 if (addr_len >= sizeof(struct sockaddr_in6) &&
810 sin6->sin6_scope_id &&
811 __ipv6_addr_needs_scope_id(__ipv6_addr_type(daddr)))
812 fl6.flowi6_oif = sin6->sin6_scope_id;
813 } else {
814 if (sk->sk_state != TCP_ESTABLISHED)
815 return -EDESTADDRREQ;
816
817 proto = inet->inet_num;
818 daddr = &sk->sk_v6_daddr;
819 fl6.flowlabel = np->flow_label;
820 }
821
822 if (fl6.flowi6_oif == 0)
823 fl6.flowi6_oif = sk->sk_bound_dev_if;
824
825 if (msg->msg_controllen) {
826 opt = &opt_space;
827 memset(opt, 0, sizeof(struct ipv6_txoptions));
828 opt->tot_len = sizeof(struct ipv6_txoptions);
829
830 err = ip6_datagram_send_ctl(sock_net(sk), sk, msg, &fl6, opt,
831 &hlimit, &tclass, &dontfrag);
832 if (err < 0) {
833 fl6_sock_release(flowlabel);
834 return err;
835 }
836 if ((fl6.flowlabel&IPV6_FLOWLABEL_MASK) && !flowlabel) {
837 flowlabel = fl6_sock_lookup(sk, fl6.flowlabel);
838 if (flowlabel == NULL)
839 return -EINVAL;
840 }
841 if (!(opt->opt_nflen|opt->opt_flen))
842 opt = NULL;
843 }
844 if (opt == NULL)
845 opt = np->opt;
846 if (flowlabel)
847 opt = fl6_merge_options(&opt_space, flowlabel, opt);
848 opt = ipv6_fixup_options(&opt_space, opt);
849
850 fl6.flowi6_proto = proto;
851 err = rawv6_probe_proto_opt(&fl6, msg);
852 if (err)
853 goto out;
854
855 if (!ipv6_addr_any(daddr))
856 fl6.daddr = *daddr;
857 else
858 fl6.daddr.s6_addr[15] = 0x1; /* :: means loopback (BSD'ism) */
859 if (ipv6_addr_any(&fl6.saddr) && !ipv6_addr_any(&np->saddr))
860 fl6.saddr = np->saddr;
861
862 final_p = fl6_update_dst(&fl6, opt, &final);
863
864 if (!fl6.flowi6_oif && ipv6_addr_is_multicast(&fl6.daddr))
865 fl6.flowi6_oif = np->mcast_oif;
866 else if (!fl6.flowi6_oif)
867 fl6.flowi6_oif = np->ucast_oif;
868 security_sk_classify_flow(sk, flowi6_to_flowi(&fl6));
869
870 dst = ip6_dst_lookup_flow(sk, &fl6, final_p);
871 if (IS_ERR(dst)) {
872 err = PTR_ERR(dst);
873 goto out;
874 }
875 if (hlimit < 0)
876 hlimit = ip6_sk_dst_hoplimit(np, &fl6, dst);
877
878 if (tclass < 0)
879 tclass = np->tclass;
880
881 if (dontfrag < 0)
882 dontfrag = np->dontfrag;
883
884 if (msg->msg_flags&MSG_CONFIRM)
885 goto do_confirm;
886
887 back_from_confirm:
888 if (inet->hdrincl)
889 err = rawv6_send_hdrinc(sk, msg->msg_iov, len, &fl6, &dst, msg->msg_flags);
890 else {
891 lock_sock(sk);
892 err = ip6_append_data(sk, ip_generic_getfrag, msg->msg_iov,
893 len, 0, hlimit, tclass, opt, &fl6, (struct rt6_info *)dst,
894 msg->msg_flags, dontfrag);
895
896 if (err)
897 ip6_flush_pending_frames(sk);
898 else if (!(msg->msg_flags & MSG_MORE))
899 err = rawv6_push_pending_frames(sk, &fl6, rp);
900 release_sock(sk);
901 }
902 done:
903 dst_release(dst);
904 out:
905 fl6_sock_release(flowlabel);
906 return err < 0 ? err : len;
907 do_confirm:
908 dst_confirm(dst);
909 if (!(msg->msg_flags & MSG_PROBE) || len)
910 goto back_from_confirm;
911 err = 0;
912 goto done;
913 }
914
915 static int rawv6_seticmpfilter(struct sock *sk, int level, int optname,
916 char __user *optval, int optlen)
917 {
918 switch (optname) {
919 case ICMPV6_FILTER:
920 if (optlen > sizeof(struct icmp6_filter))
921 optlen = sizeof(struct icmp6_filter);
922 if (copy_from_user(&raw6_sk(sk)->filter, optval, optlen))
923 return -EFAULT;
924 return 0;
925 default:
926 return -ENOPROTOOPT;
927 }
928
929 return 0;
930 }
931
932 static int rawv6_geticmpfilter(struct sock *sk, int level, int optname,
933 char __user *optval, int __user *optlen)
934 {
935 int len;
936
937 switch (optname) {
938 case ICMPV6_FILTER:
939 if (get_user(len, optlen))
940 return -EFAULT;
941 if (len < 0)
942 return -EINVAL;
943 if (len > sizeof(struct icmp6_filter))
944 len = sizeof(struct icmp6_filter);
945 if (put_user(len, optlen))
946 return -EFAULT;
947 if (copy_to_user(optval, &raw6_sk(sk)->filter, len))
948 return -EFAULT;
949 return 0;
950 default:
951 return -ENOPROTOOPT;
952 }
953
954 return 0;
955 }
956
957
958 static int do_rawv6_setsockopt(struct sock *sk, int level, int optname,
959 char __user *optval, unsigned int optlen)
960 {
961 struct raw6_sock *rp = raw6_sk(sk);
962 int val;
963
964 if (get_user(val, (int __user *)optval))
965 return -EFAULT;
966
967 switch (optname) {
968 case IPV6_CHECKSUM:
969 if (inet_sk(sk)->inet_num == IPPROTO_ICMPV6 &&
970 level == IPPROTO_IPV6) {
971 /*
972 * RFC3542 tells that IPV6_CHECKSUM socket
973 * option in the IPPROTO_IPV6 level is not
974 * allowed on ICMPv6 sockets.
975 * If you want to set it, use IPPROTO_RAW
976 * level IPV6_CHECKSUM socket option
977 * (Linux extension).
978 */
979 return -EINVAL;
980 }
981
982 /* You may get strange result with a positive odd offset;
983 RFC2292bis agrees with me. */
984 if (val > 0 && (val&1))
985 return -EINVAL;
986 if (val < 0) {
987 rp->checksum = 0;
988 } else {
989 rp->checksum = 1;
990 rp->offset = val;
991 }
992
993 return 0;
994
995 default:
996 return -ENOPROTOOPT;
997 }
998 }
999
1000 static int rawv6_setsockopt(struct sock *sk, int level, int optname,
1001 char __user *optval, unsigned int optlen)
1002 {
1003 switch (level) {
1004 case SOL_RAW:
1005 break;
1006
1007 case SOL_ICMPV6:
1008 if (inet_sk(sk)->inet_num != IPPROTO_ICMPV6)
1009 return -EOPNOTSUPP;
1010 return rawv6_seticmpfilter(sk, level, optname, optval, optlen);
1011 case SOL_IPV6:
1012 if (optname == IPV6_CHECKSUM)
1013 break;
1014 default:
1015 return ipv6_setsockopt(sk, level, optname, optval, optlen);
1016 }
1017
1018 return do_rawv6_setsockopt(sk, level, optname, optval, optlen);
1019 }
1020
1021 #ifdef CONFIG_COMPAT
1022 static int compat_rawv6_setsockopt(struct sock *sk, int level, int optname,
1023 char __user *optval, unsigned int optlen)
1024 {
1025 switch (level) {
1026 case SOL_RAW:
1027 break;
1028 case SOL_ICMPV6:
1029 if (inet_sk(sk)->inet_num != IPPROTO_ICMPV6)
1030 return -EOPNOTSUPP;
1031 return rawv6_seticmpfilter(sk, level, optname, optval, optlen);
1032 case SOL_IPV6:
1033 if (optname == IPV6_CHECKSUM)
1034 break;
1035 default:
1036 return compat_ipv6_setsockopt(sk, level, optname,
1037 optval, optlen);
1038 }
1039 return do_rawv6_setsockopt(sk, level, optname, optval, optlen);
1040 }
1041 #endif
1042
1043 static int do_rawv6_getsockopt(struct sock *sk, int level, int optname,
1044 char __user *optval, int __user *optlen)
1045 {
1046 struct raw6_sock *rp = raw6_sk(sk);
1047 int val, len;
1048
1049 if (get_user(len, optlen))
1050 return -EFAULT;
1051
1052 switch (optname) {
1053 case IPV6_CHECKSUM:
1054 /*
1055 * We allow getsockopt() for IPPROTO_IPV6-level
1056 * IPV6_CHECKSUM socket option on ICMPv6 sockets
1057 * since RFC3542 is silent about it.
1058 */
1059 if (rp->checksum == 0)
1060 val = -1;
1061 else
1062 val = rp->offset;
1063 break;
1064
1065 default:
1066 return -ENOPROTOOPT;
1067 }
1068
1069 len = min_t(unsigned int, sizeof(int), len);
1070
1071 if (put_user(len, optlen))
1072 return -EFAULT;
1073 if (copy_to_user(optval, &val, len))
1074 return -EFAULT;
1075 return 0;
1076 }
1077
1078 static int rawv6_getsockopt(struct sock *sk, int level, int optname,
1079 char __user *optval, int __user *optlen)
1080 {
1081 switch (level) {
1082 case SOL_RAW:
1083 break;
1084
1085 case SOL_ICMPV6:
1086 if (inet_sk(sk)->inet_num != IPPROTO_ICMPV6)
1087 return -EOPNOTSUPP;
1088 return rawv6_geticmpfilter(sk, level, optname, optval, optlen);
1089 case SOL_IPV6:
1090 if (optname == IPV6_CHECKSUM)
1091 break;
1092 default:
1093 return ipv6_getsockopt(sk, level, optname, optval, optlen);
1094 }
1095
1096 return do_rawv6_getsockopt(sk, level, optname, optval, optlen);
1097 }
1098
1099 #ifdef CONFIG_COMPAT
1100 static int compat_rawv6_getsockopt(struct sock *sk, int level, int optname,
1101 char __user *optval, int __user *optlen)
1102 {
1103 switch (level) {
1104 case SOL_RAW:
1105 break;
1106 case SOL_ICMPV6:
1107 if (inet_sk(sk)->inet_num != IPPROTO_ICMPV6)
1108 return -EOPNOTSUPP;
1109 return rawv6_geticmpfilter(sk, level, optname, optval, optlen);
1110 case SOL_IPV6:
1111 if (optname == IPV6_CHECKSUM)
1112 break;
1113 default:
1114 return compat_ipv6_getsockopt(sk, level, optname,
1115 optval, optlen);
1116 }
1117 return do_rawv6_getsockopt(sk, level, optname, optval, optlen);
1118 }
1119 #endif
1120
1121 static int rawv6_ioctl(struct sock *sk, int cmd, unsigned long arg)
1122 {
1123 switch (cmd) {
1124 case SIOCOUTQ: {
1125 int amount = sk_wmem_alloc_get(sk);
1126
1127 return put_user(amount, (int __user *)arg);
1128 }
1129 case SIOCINQ: {
1130 struct sk_buff *skb;
1131 int amount = 0;
1132
1133 spin_lock_bh(&sk->sk_receive_queue.lock);
1134 skb = skb_peek(&sk->sk_receive_queue);
1135 if (skb != NULL)
1136 amount = skb_tail_pointer(skb) -
1137 skb_transport_header(skb);
1138 spin_unlock_bh(&sk->sk_receive_queue.lock);
1139 return put_user(amount, (int __user *)arg);
1140 }
1141
1142 default:
1143 #ifdef CONFIG_IPV6_MROUTE
1144 return ip6mr_ioctl(sk, cmd, (void __user *)arg);
1145 #else
1146 return -ENOIOCTLCMD;
1147 #endif
1148 }
1149 }
1150
1151 #ifdef CONFIG_COMPAT
1152 static int compat_rawv6_ioctl(struct sock *sk, unsigned int cmd, unsigned long arg)
1153 {
1154 switch (cmd) {
1155 case SIOCOUTQ:
1156 case SIOCINQ:
1157 return -ENOIOCTLCMD;
1158 default:
1159 #ifdef CONFIG_IPV6_MROUTE
1160 return ip6mr_compat_ioctl(sk, cmd, compat_ptr(arg));
1161 #else
1162 return -ENOIOCTLCMD;
1163 #endif
1164 }
1165 }
1166 #endif
1167
1168 static void rawv6_close(struct sock *sk, long timeout)
1169 {
1170 if (inet_sk(sk)->inet_num == IPPROTO_RAW)
1171 ip6_ra_control(sk, -1);
1172 ip6mr_sk_done(sk);
1173 sk_common_release(sk);
1174 }
1175
1176 static void raw6_destroy(struct sock *sk)
1177 {
1178 lock_sock(sk);
1179 ip6_flush_pending_frames(sk);
1180 release_sock(sk);
1181
1182 inet6_destroy_sock(sk);
1183 }
1184
1185 static int rawv6_init_sk(struct sock *sk)
1186 {
1187 struct raw6_sock *rp = raw6_sk(sk);
1188
1189 switch (inet_sk(sk)->inet_num) {
1190 case IPPROTO_ICMPV6:
1191 rp->checksum = 1;
1192 rp->offset = 2;
1193 break;
1194 case IPPROTO_MH:
1195 rp->checksum = 1;
1196 rp->offset = 4;
1197 break;
1198 default:
1199 break;
1200 }
1201 return 0;
1202 }
1203
1204 struct proto rawv6_prot = {
1205 .name = "RAWv6",
1206 .owner = THIS_MODULE,
1207 .close = rawv6_close,
1208 .destroy = raw6_destroy,
1209 .connect = ip6_datagram_connect_v6_only,
1210 .disconnect = udp_disconnect,
1211 .ioctl = rawv6_ioctl,
1212 .init = rawv6_init_sk,
1213 .setsockopt = rawv6_setsockopt,
1214 .getsockopt = rawv6_getsockopt,
1215 .sendmsg = rawv6_sendmsg,
1216 .recvmsg = rawv6_recvmsg,
1217 .bind = rawv6_bind,
1218 .backlog_rcv = rawv6_rcv_skb,
1219 .hash = raw_hash_sk,
1220 .unhash = raw_unhash_sk,
1221 .obj_size = sizeof(struct raw6_sock),
1222 .h.raw_hash = &raw_v6_hashinfo,
1223 #ifdef CONFIG_COMPAT
1224 .compat_setsockopt = compat_rawv6_setsockopt,
1225 .compat_getsockopt = compat_rawv6_getsockopt,
1226 .compat_ioctl = compat_rawv6_ioctl,
1227 #endif
1228 };
1229
1230 #ifdef CONFIG_PROC_FS
1231 static int raw6_seq_show(struct seq_file *seq, void *v)
1232 {
1233 if (v == SEQ_START_TOKEN) {
1234 seq_puts(seq, IPV6_SEQ_DGRAM_HEADER);
1235 } else {
1236 struct sock *sp = v;
1237 __u16 srcp = inet_sk(sp)->inet_num;
1238 ip6_dgram_sock_seq_show(seq, v, srcp, 0,
1239 raw_seq_private(seq)->bucket);
1240 }
1241 return 0;
1242 }
1243
1244 static const struct seq_operations raw6_seq_ops = {
1245 .start = raw_seq_start,
1246 .next = raw_seq_next,
1247 .stop = raw_seq_stop,
1248 .show = raw6_seq_show,
1249 };
1250
1251 static int raw6_seq_open(struct inode *inode, struct file *file)
1252 {
1253 return raw_seq_open(inode, file, &raw_v6_hashinfo, &raw6_seq_ops);
1254 }
1255
1256 static const struct file_operations raw6_seq_fops = {
1257 .owner = THIS_MODULE,
1258 .open = raw6_seq_open,
1259 .read = seq_read,
1260 .llseek = seq_lseek,
1261 .release = seq_release_net,
1262 };
1263
1264 static int __net_init raw6_init_net(struct net *net)
1265 {
1266 if (!proc_create("raw6", S_IRUGO, net->proc_net, &raw6_seq_fops))
1267 return -ENOMEM;
1268
1269 return 0;
1270 }
1271
1272 static void __net_exit raw6_exit_net(struct net *net)
1273 {
1274 remove_proc_entry("raw6", net->proc_net);
1275 }
1276
1277 static struct pernet_operations raw6_net_ops = {
1278 .init = raw6_init_net,
1279 .exit = raw6_exit_net,
1280 };
1281
1282 int __init raw6_proc_init(void)
1283 {
1284 return register_pernet_subsys(&raw6_net_ops);
1285 }
1286
1287 void raw6_proc_exit(void)
1288 {
1289 unregister_pernet_subsys(&raw6_net_ops);
1290 }
1291 #endif /* CONFIG_PROC_FS */
1292
1293 /* Same as inet6_dgram_ops, sans udp_poll. */
1294 static const struct proto_ops inet6_sockraw_ops = {
1295 .family = PF_INET6,
1296 .owner = THIS_MODULE,
1297 .release = inet6_release,
1298 .bind = inet6_bind,
1299 .connect = inet_dgram_connect, /* ok */
1300 .socketpair = sock_no_socketpair, /* a do nothing */
1301 .accept = sock_no_accept, /* a do nothing */
1302 .getname = inet6_getname,
1303 .poll = datagram_poll, /* ok */
1304 .ioctl = inet6_ioctl, /* must change */
1305 .listen = sock_no_listen, /* ok */
1306 .shutdown = inet_shutdown, /* ok */
1307 .setsockopt = sock_common_setsockopt, /* ok */
1308 .getsockopt = sock_common_getsockopt, /* ok */
1309 .sendmsg = inet_sendmsg, /* ok */
1310 .recvmsg = sock_common_recvmsg, /* ok */
1311 .mmap = sock_no_mmap,
1312 .sendpage = sock_no_sendpage,
1313 #ifdef CONFIG_COMPAT
1314 .compat_setsockopt = compat_sock_common_setsockopt,
1315 .compat_getsockopt = compat_sock_common_getsockopt,
1316 #endif
1317 };
1318
1319 static struct inet_protosw rawv6_protosw = {
1320 .type = SOCK_RAW,
1321 .protocol = IPPROTO_IP, /* wild card */
1322 .prot = &rawv6_prot,
1323 .ops = &inet6_sockraw_ops,
1324 .flags = INET_PROTOSW_REUSE,
1325 };
1326
1327 int __init rawv6_init(void)
1328 {
1329 int ret;
1330
1331 ret = inet6_register_protosw(&rawv6_protosw);
1332 if (ret)
1333 goto out;
1334 out:
1335 return ret;
1336 }
1337
1338 void rawv6_exit(void)
1339 {
1340 inet6_unregister_protosw(&rawv6_protosw);
1341 }
This page took 0.054748 seconds and 4 git commands to generate.