3 * Linux INET6 implementation
8 * This program is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU General Public License
10 * as published by the Free Software Foundation; either version
11 * 2 of the License, or (at your option) any later version.
14 #include <linux/capability.h>
15 #include <linux/errno.h>
16 #include <linux/types.h>
17 #include <linux/kernel.h>
18 #include <linux/interrupt.h>
19 #include <linux/socket.h>
20 #include <linux/sockios.h>
21 #include <linux/in6.h>
22 #include <linux/ipv6.h>
23 #include <linux/route.h>
24 #include <linux/slab.h>
25 #include <linux/export.h>
28 #include <net/ndisc.h>
29 #include <net/addrconf.h>
30 #include <net/transp_v6.h>
31 #include <net/ip6_route.h>
32 #include <net/tcp_states.h>
33 #include <net/dsfield.h>
35 #include <linux/errqueue.h>
36 #include <asm/uaccess.h>
38 static bool ipv6_mapped_addr_any(const struct in6_addr *a)
40 return ipv6_addr_v4mapped(a) && (a->s6_addr32[3] == 0);
43 int ip6_datagram_connect(struct sock *sk, struct sockaddr *uaddr, int addr_len)
45 struct sockaddr_in6 *usin = (struct sockaddr_in6 *) uaddr;
46 struct inet_sock *inet = inet_sk(sk);
47 struct ipv6_pinfo *np = inet6_sk(sk);
48 struct in6_addr *daddr, *final_p, final;
49 struct dst_entry *dst;
51 struct ip6_flowlabel *flowlabel = NULL;
52 struct ipv6_txoptions *opt;
56 if (usin->sin6_family == AF_INET) {
57 if (__ipv6_only_sock(sk))
59 err = ip4_datagram_connect(sk, uaddr, addr_len);
63 if (addr_len < SIN6_LEN_RFC2133)
66 if (usin->sin6_family != AF_INET6)
69 memset(&fl6, 0, sizeof(fl6));
71 fl6.flowlabel = usin->sin6_flowinfo&IPV6_FLOWINFO_MASK;
72 if (fl6.flowlabel&IPV6_FLOWLABEL_MASK) {
73 flowlabel = fl6_sock_lookup(sk, fl6.flowlabel);
79 addr_type = ipv6_addr_type(&usin->sin6_addr);
81 if (addr_type == IPV6_ADDR_ANY) {
85 usin->sin6_addr.s6_addr[15] = 0x01;
88 daddr = &usin->sin6_addr;
90 if (addr_type == IPV6_ADDR_MAPPED) {
91 struct sockaddr_in sin;
93 if (__ipv6_only_sock(sk)) {
97 sin.sin_family = AF_INET;
98 sin.sin_addr.s_addr = daddr->s6_addr32[3];
99 sin.sin_port = usin->sin6_port;
101 err = ip4_datagram_connect(sk,
102 (struct sockaddr *) &sin,
109 ipv6_addr_set_v4mapped(inet->inet_daddr, &sk->sk_v6_daddr);
111 if (ipv6_addr_any(&np->saddr) ||
112 ipv6_mapped_addr_any(&np->saddr))
113 ipv6_addr_set_v4mapped(inet->inet_saddr, &np->saddr);
115 if (ipv6_addr_any(&sk->sk_v6_rcv_saddr) ||
116 ipv6_mapped_addr_any(&sk->sk_v6_rcv_saddr)) {
117 ipv6_addr_set_v4mapped(inet->inet_rcv_saddr,
118 &sk->sk_v6_rcv_saddr);
119 if (sk->sk_prot->rehash)
120 sk->sk_prot->rehash(sk);
126 if (__ipv6_addr_needs_scope_id(addr_type)) {
127 if (addr_len >= sizeof(struct sockaddr_in6) &&
128 usin->sin6_scope_id) {
129 if (sk->sk_bound_dev_if &&
130 sk->sk_bound_dev_if != usin->sin6_scope_id) {
134 sk->sk_bound_dev_if = usin->sin6_scope_id;
137 if (!sk->sk_bound_dev_if && (addr_type & IPV6_ADDR_MULTICAST))
138 sk->sk_bound_dev_if = np->mcast_oif;
140 /* Connect to link-local address requires an interface */
141 if (!sk->sk_bound_dev_if) {
147 sk->sk_v6_daddr = *daddr;
148 np->flow_label = fl6.flowlabel;
150 inet->inet_dport = usin->sin6_port;
153 * Check for a route to destination an obtain the
154 * destination cache for it.
157 fl6.flowi6_proto = sk->sk_protocol;
158 fl6.daddr = sk->sk_v6_daddr;
159 fl6.saddr = np->saddr;
160 fl6.flowi6_oif = sk->sk_bound_dev_if;
161 fl6.flowi6_mark = sk->sk_mark;
162 fl6.fl6_dport = inet->inet_dport;
163 fl6.fl6_sport = inet->inet_sport;
165 if (!fl6.flowi6_oif && (addr_type&IPV6_ADDR_MULTICAST))
166 fl6.flowi6_oif = np->mcast_oif;
168 security_sk_classify_flow(sk, flowi6_to_flowi(&fl6));
170 opt = flowlabel ? flowlabel->opt : np->opt;
171 final_p = fl6_update_dst(&fl6, opt, &final);
173 dst = ip6_dst_lookup_flow(sk, &fl6, final_p);
180 /* source address lookup done in ip6_dst_lookup */
182 if (ipv6_addr_any(&np->saddr))
183 np->saddr = fl6.saddr;
185 if (ipv6_addr_any(&sk->sk_v6_rcv_saddr)) {
186 sk->sk_v6_rcv_saddr = fl6.saddr;
187 inet->inet_rcv_saddr = LOOPBACK4_IPV6;
188 if (sk->sk_prot->rehash)
189 sk->sk_prot->rehash(sk);
192 ip6_dst_store(sk, dst,
193 ipv6_addr_equal(&fl6.daddr, &sk->sk_v6_daddr) ?
194 &sk->sk_v6_daddr : NULL,
195 #ifdef CONFIG_IPV6_SUBTREES
196 ipv6_addr_equal(&fl6.saddr, &np->saddr) ?
201 sk->sk_state = TCP_ESTABLISHED;
204 fl6_sock_release(flowlabel);
207 EXPORT_SYMBOL_GPL(ip6_datagram_connect);
209 int ip6_datagram_connect_v6_only(struct sock *sk, struct sockaddr *uaddr,
212 DECLARE_SOCKADDR(struct sockaddr_in6 *, sin6, uaddr);
213 if (sin6->sin6_family != AF_INET6)
214 return -EAFNOSUPPORT;
215 return ip6_datagram_connect(sk, uaddr, addr_len);
217 EXPORT_SYMBOL_GPL(ip6_datagram_connect_v6_only);
219 void ipv6_icmp_error(struct sock *sk, struct sk_buff *skb, int err,
220 __be16 port, u32 info, u8 *payload)
222 struct ipv6_pinfo *np = inet6_sk(sk);
223 struct icmp6hdr *icmph = icmp6_hdr(skb);
224 struct sock_exterr_skb *serr;
229 skb = skb_clone(skb, GFP_ATOMIC);
233 skb->protocol = htons(ETH_P_IPV6);
235 serr = SKB_EXT_ERR(skb);
236 serr->ee.ee_errno = err;
237 serr->ee.ee_origin = SO_EE_ORIGIN_ICMP6;
238 serr->ee.ee_type = icmph->icmp6_type;
239 serr->ee.ee_code = icmph->icmp6_code;
241 serr->ee.ee_info = info;
242 serr->ee.ee_data = 0;
243 serr->addr_offset = (u8 *)&(((struct ipv6hdr *)(icmph + 1))->daddr) -
244 skb_network_header(skb);
247 __skb_pull(skb, payload - skb->data);
248 skb_reset_transport_header(skb);
250 if (sock_queue_err_skb(sk, skb))
254 void ipv6_local_error(struct sock *sk, int err, struct flowi6 *fl6, u32 info)
256 struct ipv6_pinfo *np = inet6_sk(sk);
257 struct sock_exterr_skb *serr;
264 skb = alloc_skb(sizeof(struct ipv6hdr), GFP_ATOMIC);
268 skb->protocol = htons(ETH_P_IPV6);
270 skb_put(skb, sizeof(struct ipv6hdr));
271 skb_reset_network_header(skb);
273 iph->daddr = fl6->daddr;
275 serr = SKB_EXT_ERR(skb);
276 serr->ee.ee_errno = err;
277 serr->ee.ee_origin = SO_EE_ORIGIN_LOCAL;
278 serr->ee.ee_type = 0;
279 serr->ee.ee_code = 0;
281 serr->ee.ee_info = info;
282 serr->ee.ee_data = 0;
283 serr->addr_offset = (u8 *)&iph->daddr - skb_network_header(skb);
284 serr->port = fl6->fl6_dport;
286 __skb_pull(skb, skb_tail_pointer(skb) - skb->data);
287 skb_reset_transport_header(skb);
289 if (sock_queue_err_skb(sk, skb))
293 void ipv6_local_rxpmtu(struct sock *sk, struct flowi6 *fl6, u32 mtu)
295 struct ipv6_pinfo *np = inet6_sk(sk);
298 struct ip6_mtuinfo *mtu_info;
300 if (!np->rxopt.bits.rxpmtu)
303 skb = alloc_skb(sizeof(struct ipv6hdr), GFP_ATOMIC);
307 skb_put(skb, sizeof(struct ipv6hdr));
308 skb_reset_network_header(skb);
310 iph->daddr = fl6->daddr;
312 mtu_info = IP6CBMTU(skb);
314 mtu_info->ip6m_mtu = mtu;
315 mtu_info->ip6m_addr.sin6_family = AF_INET6;
316 mtu_info->ip6m_addr.sin6_port = 0;
317 mtu_info->ip6m_addr.sin6_flowinfo = 0;
318 mtu_info->ip6m_addr.sin6_scope_id = fl6->flowi6_oif;
319 mtu_info->ip6m_addr.sin6_addr = ipv6_hdr(skb)->daddr;
321 __skb_pull(skb, skb_tail_pointer(skb) - skb->data);
322 skb_reset_transport_header(skb);
324 skb = xchg(&np->rxpmtu, skb);
328 /* IPv6 supports cmsg on all origins aside from SO_EE_ORIGIN_LOCAL.
330 * At one point, excluding local errors was a quick test to identify icmp/icmp6
331 * errors. This is no longer true, but the test remained, so the v6 stack,
332 * unlike v4, also honors cmsg requests on all wifi and timestamp errors.
334 * Timestamp code paths do not initialize the fields expected by cmsg:
335 * the PKTINFO fields in skb->cb[]. Fill those in here.
337 static bool ip6_datagram_support_cmsg(struct sk_buff *skb,
338 struct sock_exterr_skb *serr)
340 if (serr->ee.ee_origin == SO_EE_ORIGIN_ICMP ||
341 serr->ee.ee_origin == SO_EE_ORIGIN_ICMP6)
344 if (serr->ee.ee_origin == SO_EE_ORIGIN_LOCAL)
350 if (skb->protocol == htons(ETH_P_IPV6))
351 IP6CB(skb)->iif = skb->dev->ifindex;
353 PKTINFO_SKB_CB(skb)->ipi_ifindex = skb->dev->ifindex;
359 * Handle MSG_ERRQUEUE
361 int ipv6_recv_error(struct sock *sk, struct msghdr *msg, int len, int *addr_len)
363 struct ipv6_pinfo *np = inet6_sk(sk);
364 struct sock_exterr_skb *serr;
366 DECLARE_SOCKADDR(struct sockaddr_in6 *, sin, msg->msg_name);
368 struct sock_extended_err ee;
369 struct sockaddr_in6 offender;
375 skb = sock_dequeue_err_skb(sk);
381 msg->msg_flags |= MSG_TRUNC;
384 err = skb_copy_datagram_msg(skb, 0, msg, copied);
388 sock_recv_timestamp(msg, sk, skb);
390 serr = SKB_EXT_ERR(skb);
392 if (sin && serr->port) {
393 const unsigned char *nh = skb_network_header(skb);
394 sin->sin6_family = AF_INET6;
395 sin->sin6_flowinfo = 0;
396 sin->sin6_port = serr->port;
397 if (skb->protocol == htons(ETH_P_IPV6)) {
398 const struct ipv6hdr *ip6h = container_of((struct in6_addr *)(nh + serr->addr_offset),
399 struct ipv6hdr, daddr);
400 sin->sin6_addr = ip6h->daddr;
402 sin->sin6_flowinfo = ip6_flowinfo(ip6h);
404 ipv6_iface_scope_id(&sin->sin6_addr,
407 ipv6_addr_set_v4mapped(*(__be32 *)(nh + serr->addr_offset),
409 sin->sin6_scope_id = 0;
411 *addr_len = sizeof(*sin);
414 memcpy(&errhdr.ee, &serr->ee, sizeof(struct sock_extended_err));
415 sin = &errhdr.offender;
416 memset(sin, 0, sizeof(*sin));
418 if (ip6_datagram_support_cmsg(skb, serr)) {
419 sin->sin6_family = AF_INET6;
421 ip6_datagram_recv_common_ctl(sk, msg, skb);
422 if (skb->protocol == htons(ETH_P_IPV6)) {
423 sin->sin6_addr = ipv6_hdr(skb)->saddr;
425 ip6_datagram_recv_specific_ctl(sk, msg, skb);
427 ipv6_iface_scope_id(&sin->sin6_addr,
430 ipv6_addr_set_v4mapped(ip_hdr(skb)->saddr,
432 if (inet_sk(sk)->cmsg_flags)
433 ip_cmsg_recv(msg, skb);
437 put_cmsg(msg, SOL_IPV6, IPV6_RECVERR, sizeof(errhdr), &errhdr);
439 /* Now we could try to dump offended packet options */
441 msg->msg_flags |= MSG_ERRQUEUE;
449 EXPORT_SYMBOL_GPL(ipv6_recv_error);
452 * Handle IPV6_RECVPATHMTU
454 int ipv6_recv_rxpmtu(struct sock *sk, struct msghdr *msg, int len,
457 struct ipv6_pinfo *np = inet6_sk(sk);
459 struct ip6_mtuinfo mtu_info;
460 DECLARE_SOCKADDR(struct sockaddr_in6 *, sin, msg->msg_name);
465 skb = xchg(&np->rxpmtu, NULL);
471 msg->msg_flags |= MSG_TRUNC;
474 err = skb_copy_datagram_msg(skb, 0, msg, copied);
478 sock_recv_timestamp(msg, sk, skb);
480 memcpy(&mtu_info, IP6CBMTU(skb), sizeof(mtu_info));
483 sin->sin6_family = AF_INET6;
484 sin->sin6_flowinfo = 0;
486 sin->sin6_scope_id = mtu_info.ip6m_addr.sin6_scope_id;
487 sin->sin6_addr = mtu_info.ip6m_addr.sin6_addr;
488 *addr_len = sizeof(*sin);
491 put_cmsg(msg, SOL_IPV6, IPV6_PATHMTU, sizeof(mtu_info), &mtu_info);
502 void ip6_datagram_recv_common_ctl(struct sock *sk, struct msghdr *msg,
505 struct ipv6_pinfo *np = inet6_sk(sk);
506 bool is_ipv6 = skb->protocol == htons(ETH_P_IPV6);
508 if (np->rxopt.bits.rxinfo) {
509 struct in6_pktinfo src_info;
512 src_info.ipi6_ifindex = IP6CB(skb)->iif;
513 src_info.ipi6_addr = ipv6_hdr(skb)->daddr;
515 src_info.ipi6_ifindex =
516 PKTINFO_SKB_CB(skb)->ipi_ifindex;
517 ipv6_addr_set_v4mapped(ip_hdr(skb)->daddr,
518 &src_info.ipi6_addr);
521 if (src_info.ipi6_ifindex >= 0)
522 put_cmsg(msg, SOL_IPV6, IPV6_PKTINFO,
523 sizeof(src_info), &src_info);
527 void ip6_datagram_recv_specific_ctl(struct sock *sk, struct msghdr *msg,
530 struct ipv6_pinfo *np = inet6_sk(sk);
531 struct inet6_skb_parm *opt = IP6CB(skb);
532 unsigned char *nh = skb_network_header(skb);
534 if (np->rxopt.bits.rxhlim) {
535 int hlim = ipv6_hdr(skb)->hop_limit;
536 put_cmsg(msg, SOL_IPV6, IPV6_HOPLIMIT, sizeof(hlim), &hlim);
539 if (np->rxopt.bits.rxtclass) {
540 int tclass = ipv6_get_dsfield(ipv6_hdr(skb));
541 put_cmsg(msg, SOL_IPV6, IPV6_TCLASS, sizeof(tclass), &tclass);
544 if (np->rxopt.bits.rxflow) {
545 __be32 flowinfo = ip6_flowinfo((struct ipv6hdr *)nh);
547 put_cmsg(msg, SOL_IPV6, IPV6_FLOWINFO, sizeof(flowinfo), &flowinfo);
550 /* HbH is allowed only once */
551 if (np->rxopt.bits.hopopts && opt->hop) {
552 u8 *ptr = nh + opt->hop;
553 put_cmsg(msg, SOL_IPV6, IPV6_HOPOPTS, (ptr[1]+1)<<3, ptr);
557 (np->rxopt.bits.dstopts || np->rxopt.bits.srcrt)) {
559 * Silly enough, but we need to reparse in order to
560 * report extension headers (except for HbH)
563 * Also note that IPV6_RECVRTHDRDSTOPTS is NOT
564 * (and WILL NOT be) defined because
565 * IPV6_RECVDSTOPTS is more generic. --yoshfuji
567 unsigned int off = sizeof(struct ipv6hdr);
568 u8 nexthdr = ipv6_hdr(skb)->nexthdr;
570 while (off <= opt->lastopt) {
575 case IPPROTO_DSTOPTS:
577 len = (ptr[1] + 1) << 3;
578 if (np->rxopt.bits.dstopts)
579 put_cmsg(msg, SOL_IPV6, IPV6_DSTOPTS, len, ptr);
581 case IPPROTO_ROUTING:
583 len = (ptr[1] + 1) << 3;
584 if (np->rxopt.bits.srcrt)
585 put_cmsg(msg, SOL_IPV6, IPV6_RTHDR, len, ptr);
589 len = (ptr[1] + 2) << 2;
593 len = (ptr[1] + 1) << 3;
601 /* socket options in old style */
602 if (np->rxopt.bits.rxoinfo) {
603 struct in6_pktinfo src_info;
605 src_info.ipi6_ifindex = opt->iif;
606 src_info.ipi6_addr = ipv6_hdr(skb)->daddr;
607 put_cmsg(msg, SOL_IPV6, IPV6_2292PKTINFO, sizeof(src_info), &src_info);
609 if (np->rxopt.bits.rxohlim) {
610 int hlim = ipv6_hdr(skb)->hop_limit;
611 put_cmsg(msg, SOL_IPV6, IPV6_2292HOPLIMIT, sizeof(hlim), &hlim);
613 if (np->rxopt.bits.ohopopts && opt->hop) {
614 u8 *ptr = nh + opt->hop;
615 put_cmsg(msg, SOL_IPV6, IPV6_2292HOPOPTS, (ptr[1]+1)<<3, ptr);
617 if (np->rxopt.bits.odstopts && opt->dst0) {
618 u8 *ptr = nh + opt->dst0;
619 put_cmsg(msg, SOL_IPV6, IPV6_2292DSTOPTS, (ptr[1]+1)<<3, ptr);
621 if (np->rxopt.bits.osrcrt && opt->srcrt) {
622 struct ipv6_rt_hdr *rthdr = (struct ipv6_rt_hdr *)(nh + opt->srcrt);
623 put_cmsg(msg, SOL_IPV6, IPV6_2292RTHDR, (rthdr->hdrlen+1) << 3, rthdr);
625 if (np->rxopt.bits.odstopts && opt->dst1) {
626 u8 *ptr = nh + opt->dst1;
627 put_cmsg(msg, SOL_IPV6, IPV6_2292DSTOPTS, (ptr[1]+1)<<3, ptr);
629 if (np->rxopt.bits.rxorigdstaddr) {
630 struct sockaddr_in6 sin6;
631 __be16 *ports = (__be16 *) skb_transport_header(skb);
633 if (skb_transport_offset(skb) + 4 <= skb->len) {
634 /* All current transport protocols have the port numbers in the
635 * first four bytes of the transport header and this function is
636 * written with this assumption in mind.
639 sin6.sin6_family = AF_INET6;
640 sin6.sin6_addr = ipv6_hdr(skb)->daddr;
641 sin6.sin6_port = ports[1];
642 sin6.sin6_flowinfo = 0;
644 ipv6_iface_scope_id(&ipv6_hdr(skb)->daddr,
647 put_cmsg(msg, SOL_IPV6, IPV6_ORIGDSTADDR, sizeof(sin6), &sin6);
652 void ip6_datagram_recv_ctl(struct sock *sk, struct msghdr *msg,
655 ip6_datagram_recv_common_ctl(sk, msg, skb);
656 ip6_datagram_recv_specific_ctl(sk, msg, skb);
658 EXPORT_SYMBOL_GPL(ip6_datagram_recv_ctl);
660 int ip6_datagram_send_ctl(struct net *net, struct sock *sk,
661 struct msghdr *msg, struct flowi6 *fl6,
662 struct ipv6_txoptions *opt,
663 int *hlimit, int *tclass, int *dontfrag)
665 struct in6_pktinfo *src_info;
666 struct cmsghdr *cmsg;
667 struct ipv6_rt_hdr *rthdr;
668 struct ipv6_opt_hdr *hdr;
672 for_each_cmsghdr(cmsg, msg) {
675 if (!CMSG_OK(msg, cmsg)) {
680 if (cmsg->cmsg_level != SOL_IPV6)
683 switch (cmsg->cmsg_type) {
685 case IPV6_2292PKTINFO:
687 struct net_device *dev = NULL;
689 if (cmsg->cmsg_len < CMSG_LEN(sizeof(struct in6_pktinfo))) {
694 src_info = (struct in6_pktinfo *)CMSG_DATA(cmsg);
696 if (src_info->ipi6_ifindex) {
697 if (fl6->flowi6_oif &&
698 src_info->ipi6_ifindex != fl6->flowi6_oif)
700 fl6->flowi6_oif = src_info->ipi6_ifindex;
703 addr_type = __ipv6_addr_type(&src_info->ipi6_addr);
706 if (fl6->flowi6_oif) {
707 dev = dev_get_by_index_rcu(net, fl6->flowi6_oif);
712 } else if (addr_type & IPV6_ADDR_LINKLOCAL) {
717 if (addr_type != IPV6_ADDR_ANY) {
718 int strict = __ipv6_addr_src_scope(addr_type) <= IPV6_ADDR_SCOPE_LINKLOCAL;
719 if (!(inet_sk(sk)->freebind || inet_sk(sk)->transparent) &&
720 !ipv6_chk_addr(net, &src_info->ipi6_addr,
721 strict ? dev : NULL, 0) &&
722 !ipv6_chk_acast_addr_src(net, dev,
723 &src_info->ipi6_addr))
726 fl6->saddr = src_info->ipi6_addr;
738 if (cmsg->cmsg_len < CMSG_LEN(4)) {
743 if (fl6->flowlabel&IPV6_FLOWINFO_MASK) {
744 if ((fl6->flowlabel^*(__be32 *)CMSG_DATA(cmsg))&~IPV6_FLOWINFO_MASK) {
749 fl6->flowlabel = IPV6_FLOWINFO_MASK & *(__be32 *)CMSG_DATA(cmsg);
752 case IPV6_2292HOPOPTS:
754 if (opt->hopopt || cmsg->cmsg_len < CMSG_LEN(sizeof(struct ipv6_opt_hdr))) {
759 hdr = (struct ipv6_opt_hdr *)CMSG_DATA(cmsg);
760 len = ((hdr->hdrlen + 1) << 3);
761 if (cmsg->cmsg_len < CMSG_LEN(len)) {
765 if (!ns_capable(net->user_ns, CAP_NET_RAW)) {
769 opt->opt_nflen += len;
773 case IPV6_2292DSTOPTS:
774 if (cmsg->cmsg_len < CMSG_LEN(sizeof(struct ipv6_opt_hdr))) {
779 hdr = (struct ipv6_opt_hdr *)CMSG_DATA(cmsg);
780 len = ((hdr->hdrlen + 1) << 3);
781 if (cmsg->cmsg_len < CMSG_LEN(len)) {
785 if (!ns_capable(net->user_ns, CAP_NET_RAW)) {
793 opt->opt_flen += len;
798 case IPV6_RTHDRDSTOPTS:
799 if (cmsg->cmsg_len < CMSG_LEN(sizeof(struct ipv6_opt_hdr))) {
804 hdr = (struct ipv6_opt_hdr *)CMSG_DATA(cmsg);
805 len = ((hdr->hdrlen + 1) << 3);
806 if (cmsg->cmsg_len < CMSG_LEN(len)) {
810 if (!ns_capable(net->user_ns, CAP_NET_RAW)) {
814 if (cmsg->cmsg_type == IPV6_DSTOPTS) {
815 opt->opt_flen += len;
818 opt->opt_nflen += len;
825 if (cmsg->cmsg_len < CMSG_LEN(sizeof(struct ipv6_rt_hdr))) {
830 rthdr = (struct ipv6_rt_hdr *)CMSG_DATA(cmsg);
832 switch (rthdr->type) {
833 #if IS_ENABLED(CONFIG_IPV6_MIP6)
834 case IPV6_SRCRT_TYPE_2:
835 if (rthdr->hdrlen != 2 ||
836 rthdr->segments_left != 1) {
847 len = ((rthdr->hdrlen + 1) << 3);
849 if (cmsg->cmsg_len < CMSG_LEN(len)) {
854 /* segments left must also match */
855 if ((rthdr->hdrlen >> 1) != rthdr->segments_left) {
860 opt->opt_nflen += len;
863 if (cmsg->cmsg_type == IPV6_2292RTHDR && opt->dst1opt) {
864 int dsthdrlen = ((opt->dst1opt->hdrlen+1)<<3);
866 opt->opt_nflen += dsthdrlen;
867 opt->dst0opt = opt->dst1opt;
869 opt->opt_flen -= dsthdrlen;
874 case IPV6_2292HOPLIMIT:
876 if (cmsg->cmsg_len != CMSG_LEN(sizeof(int))) {
881 *hlimit = *(int *)CMSG_DATA(cmsg);
882 if (*hlimit < -1 || *hlimit > 0xff) {
894 if (cmsg->cmsg_len != CMSG_LEN(sizeof(int)))
897 tc = *(int *)CMSG_DATA(cmsg);
898 if (tc < -1 || tc > 0xff)
912 if (cmsg->cmsg_len != CMSG_LEN(sizeof(int)))
915 df = *(int *)CMSG_DATA(cmsg);
916 if (df < 0 || df > 1)
925 net_dbg_ratelimited("invalid cmsg type: %d\n",
935 EXPORT_SYMBOL_GPL(ip6_datagram_send_ctl);
937 void ip6_dgram_sock_seq_show(struct seq_file *seq, struct sock *sp,
938 __u16 srcp, __u16 destp, int bucket)
940 const struct in6_addr *dest, *src;
942 dest = &sp->sk_v6_daddr;
943 src = &sp->sk_v6_rcv_saddr;
945 "%5d: %08X%08X%08X%08X:%04X %08X%08X%08X%08X:%04X "
946 "%02X %08X:%08X %02X:%08lX %08X %5u %8d %lu %d %pK %d\n",
948 src->s6_addr32[0], src->s6_addr32[1],
949 src->s6_addr32[2], src->s6_addr32[3], srcp,
950 dest->s6_addr32[0], dest->s6_addr32[1],
951 dest->s6_addr32[2], dest->s6_addr32[3], destp,
953 sk_wmem_alloc_get(sp),
954 sk_rmem_alloc_get(sp),
956 from_kuid_munged(seq_user_ns(seq), sock_i_uid(sp)),
959 atomic_read(&sp->sk_refcnt), sp,
960 atomic_read(&sp->sk_drops));